draft
bool
1 class
date
stringlengths
19
20
title
stringlengths
9
214
tag
sequence
category
sequence
body
stringlengths
575
57.5k
description
stringlengths
40
192
image
stringlengths
28
59
embeddings_base_en
sequence
embeddings_small_en
sequence
embeddings_mini_lm
sequence
slug
stringlengths
8
191
url
stringlengths
49
232
false
2021-01-28 00:44:37
Materialize: Creating multiple views on one source
[ "materialize" ]
[ "materialize" ]
This is another post describing https://markhneedham.com/blog/tag/materialize/[my exploration^] of https://materialize.com/[Materialize^], a SQL streaming database. In this post we're going to learn how to create multiple views on top of the same underlying source. image::{{<siteurl>}}/uploads/2021/01/materialize-multi-views-banner.png[] We're still going to be using data extracted from Strava, an app that I use to record my runs, but this time we have more detailed information about each run. As in the previous blog posts, each run is represented as JSON document and store in the https://github.com/mneedham/materialize-sandbox/blob/main/strava/data/activities-detailed-all.json[`activities-detailed-all.json`^] file in JSON lines format. Below is an example of one line in this file: [source,bash] ---- head -n1 data/activities-detailed-all.json | jq -c '{id, distance, moving_time, elapsed_time, total_elevation_gain, elv_high, elev_low, average_speed, max_speed, average_heartrate, max_heartrate, start_date, best_efforts, splits_metric, splits_standard, segments_efforts}' ---- .Results [source,json] ---- {"id":259558400,"distance":3116.1,"moving_time":"0:17:48","elapsed_time":"0:17:55","total_elevation_gain":0,"elv_high":null,"elev_low":6,"average_speed":2.918,"max_speed":7.2,"average_heartrate":null,"max_heartrate":null,"start_date":"2015-02-25T06:18:39+00:00","best_efforts":[{"effort_name":"400m","moving_time":131,"elapsed_time":130,"effort_distance":400,"average_heartrate":null,"max_heartrate":null},{"effort_name":"1/2 mile","moving_time":266,"elapsed_time":265,"effort_distance":805,"average_heartrate":null,"max_heartrate":null},{"effort_name":"1k","moving_time":336,"elapsed_time":336,"effort_distance":1000,"average_heartrate":null,"max_heartrate":null},{"effort_name":"1 mile","moving_time":548,"elapsed_time":547,"effort_distance":1609,"average_heartrate":null,"max_heartrate":null}],"splits_metric":[{"distance":1002.9,"elapsed_time":"0:05:48","elevation_difference":3.2,"moving_time":"0:05:41","average_heartrate":null,"split":1,"pace_zone":0,"average_speed":2.94},{"distance":999.4,"elapsed_time":"0:05:48","elevation_difference":-1.9,"moving_time":"0:05:48","average_heartrate":null,"split":2,"pace_zone":0,"average_speed":2.87},{"distance":1001.7,"elapsed_time":"0:05:39","elevation_difference":-2.1,"moving_time":"0:05:39","average_heartrate":null,"split":3,"pace_zone":0,"average_speed":2.95},{"distance":112.1,"elapsed_time":"0:00:40","elevation_difference":0.7,"moving_time":"0:00:40","average_heartrate":null,"split":4,"pace_zone":0,"average_speed":2.8}],"splits_standard":[{"distance":1612.2,"elapsed_time":"0:09:21","elevation_difference":4.7,"moving_time":"0:09:14","average_heartrate":null,"split":1,"pace_zone":0,"average_speed":2.91},{"distance":1503.9,"elapsed_time":"0:08:34","elevation_difference":-4.8,"moving_time":"0:08:34","average_heartrate":null,"split":2,"pace_zone":0,"average_speed":2.93}],"segments_efforts":null} ---- == Connecting to Materialize We're going to query that data using Materialize, which we'll set up using the following Docker Compose configuration: .docker-compose.yml [source,yaml] ---- version: '3' services: materialize: image: materialize/materialized:v0.5.3 container_name: "materialize-sandbox-docker-compose" volumes: - ./data:/data ports: - "6875:6875" ---- The `data` directory containing the https://github.com/mneedham/materialize-sandbox/blob/main/strava/data/activities-detailed-all.json[`activities-detailed-all.json`^] file is in the https://github.com/mneedham/materialize-sandbox/tree/main/strava[mneedham/materialize-sandbox/strava^] GitHub repository. The repository also contains setup instructions. Once we've cloned that repository, we can launch Materialize by running the following command: [source, bash] ---- docker-compose up ---- We're now ready to connect to Materialize, which we can do using the https://www.postgresql.org/docs/9.3/app-psql.html[`psql` CLI tool^]: [source, bash] ---- psql -h localhost -p 6875 materialize ---- .Results [source,text] ---- psql (12.5 (Ubuntu 12.5-0ubuntu0.20.04.1), server 9.5.0) Type "help" for help. materialize=> ---- == Creating a materialized view We're going to start by creating a source around the file: .CREATE SOURCE [source,sql] ---- CREATE SOURCE activities_detailed_source FROM FILE '/data/activities-detailed-all.json' WITH(tail=true) FORMAT TEXT; ---- Not it's time to create some views on top of the source. We'll start with the `activites_detailed` view, which returns the raw values from the JSON file: .CREATE VIEW [source,sql] ---- CREATE VIEW activities_detailed AS SELECT (val->>'id')::float::bigint AS id, (val->>'start_date')::timestamp AS start_date, (val->'best_efforts') AS best_efforts, (val->'splits_metric') AS splits_metric, (val->'splits_standard') AS splits_standard, (val->'segment_efforts') AS segment_efforts FROM (SELECT text::json AS val FROM activities_detailed_source); ---- We're not going to do any direct querying against this view, so we create a `VIEW` rather than a `MATERIALIZED VIEW`. If we want to query that view, we'll need to make sure we append the `AS OF` clause to the end of our query, as shown in the following example: [source,sql] ---- SELECT * FROM activities_detailed LIMIT 1 AS OF 1; ---- .Results [opts="header"] |=== | id | start_date | best_efforts | splits_metric | splits_standard | segment_efforts | 3217642015 | 2020-03-25 18:27:10 | [] a| [source,json] ---- [{"average_heartrate":136.11428571428573,"average_speed":3.09,"distance":108.1,"elapsed_time":"0:00:41","elevation_difference":-0.3,"moving_time":"0:00:35","pace_zone":2.0,"split":1.0}] ---- a| [source,json] ---- [{"average_heartrate":136.11428571428573,"average_speed":3.09,"distance":108.1,"elapsed_time":"0:00:41","elevation_difference":-0.3,"moving_time":"0:00:35","pace_zone":2.0,"split":1.0}] ---- | [] |=== This view returns JSON arrays for `splits_metric`, `splits_standard`, `best_efforts`, and `segment_efforts`. It'd be good if we could explode those array elements into individual rows so that we could query them, which we can do with the `jsonb_array_elements` function that I wrote about in https://markhneedham.com/blog/2020/12/29/materialize-json-arrays/[Materialize: Querying JSON arrays^]. We'd generally be querying each of these things separately, so we'll create one materialized view for each one, as shown in the following diagram: image::{{<siteurl>}}/uploads/2021/01/materialize-views.png[] Let's see how to create a couple of those materialized views. We can do this by running the following queries: .CREATE MATERIALZIED VIEW best_efforts [source,sql] ---- CREATE MATERIALIZED VIEW best_efforts AS SELECT id, start_date, (effort->>'effort_name') AS effort_name, (effort->>'effort_distance')::float AS distance, (effort->>'elapsed_time')::float AS elapsed_time, (effort->>'moving_time')::float AS moving_time, (effort->>'average_heartrate')::float AS average_heartrate, (effort->>'max_heartrate')::float AS max_heartrate FROM ( SELECT id, start_date, best_efforts FROM activities_detailed ), jsonb_array_elements(best_efforts) AS effort; ---- .CREATE MATERIALIZED VIEW segment_efforts [source,sql] ---- CREATE MATERIALIZED VIEW segment_efforts AS SELECT id, start_date, (effort->>'segment_id') AS segment_id, (effort->>'segment_name') AS segment_name, (effort->>'distance')::float AS distance, (effort->>'elapsed_time')::float AS elapsed_time, (effort->>'moving_time')::float AS moving_time FROM ( SELECT id, start_date, segment_efforts FROM activities_detailed ), jsonb_array_elements(segment_efforts) AS effort; ---- == Querying the materialized views Now that we've created those views, it's time to query them. We'll start by finding the fastest 10km runs that I've done [source,sql] ---- select start_date, to_char(to_timestamp(moving_time), 'HH24:MI:SS') AS time from best_efforts WHERE effort_name = '10k' ORDER BY moving_time LIMIT 10; ---- .Results [opts="header"] |=== | start_date | time |2018-08-18 09:50:40 | 00:44:03 |2018-07-11 04:24:10 | 00:44:17 |2019-06-14 10:14:39 | 00:44:32 |2018-10-20 06:14:46 | 00:44:38 |2018-05-19 08:55:00 | 00:44:43 |2018-10-27 09:48:01 | 00:44:54 |2018-07-20 11:05:28 | 00:44:57 |2018-06-01 04:17:44 | 00:45:00 |2019-05-25 06:45:53 | 00:45:03 |2018-08-08 04:28:36 | 00:45:06 |=== All my fastest times were in 2018 or 2019! I haven't been anywhere near that sort of pace for a long while. If we have the id for a specific run we can write a query to find all the best efforts for that run, as shown below: [source,sql] ---- select start_date, effort_name, to_char(to_timestamp(moving_time), 'MI:SS') AS time from best_efforts WHERE id=2448908609 ORDER BY moving_time LIMIT 10; ---- .Results [opts="header"] |=== |start_date | effort_name | time |2019-06-14 10:14:39 | 400m | 01:39 |2019-06-14 10:14:39 | 1/2 mile | 03:23 |2019-06-14 10:14:39 | 1k | 04:15 |2019-06-14 10:14:39 | 1 mile | 06:52 |2019-06-14 10:14:39 | 2 mile | 13:57 |2019-06-14 10:14:39 | 5k | 21:53 |2019-06-14 10:14:39 | 10k | 44:32 |=== Now let's move onto segment efforts. We can find the most popular segments by running the following query: [source,sql] ---- select segment_id, segment_name, count(*) AS count from segment_efforts GROUP BY segment_id, segment_name ORDER BY count DESC LIMIT 5; ---- .Results [opts="header"] |=== |segment_id | segment_name | count |17236468 | Lap of the track | 260 |17875147 | York to Vet | 226 |17875143 | Stanley to Bridge | 186 |23952234 | The misdiseaveing incline | 96 |23952158 | 5 gym dash | 93 |=== Lap of the track is a running track that I've clearly done a lot of laps on. Let's explore those laps in more detail: [source,sql] ---- SELECT start_date, to_char(to_timestamp(min(moving_time)), 'MI:SS') AS fastestTime, to_char(to_timestamp(max(moving_time)), 'MI:SS') AS slowestTime, to_char(to_timestamp(avg(moving_time)), 'MI:SS') AS averageTime, count(*) AS lapsDone FROM segment_efforts WHERE segment_id = '17236468' GROUP BY start_date ORDER BY min(moving_time) LIMIT 5; ---- .Results [opts="header", cols="2,1,1,1,1"] |=== |start_date | fastesttime | slowesttime | averagetime | lapsdone |2018-04-02 16:05:31 | 01:42 | 02:08 | 01:55 | 18 |2018-03-26 02:23:47 | 01:46 | 02:10 | 02:07 | 15 |2016-07-22 05:18:37 | 01:48 | 02:10 | 02:01 | 9 |2016-08-03 12:16:23 | 01:49 | 02:06 | 02:01 | 13 |2020-03-11 02:35:09 | 01:50 | 02:24 | 02:11 | 25 |=== Again my fastest laps were in 2018! I clearly need to work on my speed. == In summary One of the things that I really like about Materialize is that you can defer data transformation. I'm used to having to decide up front how I want to shape the data and then having the queries I can write be limited by that initial transformation. With Materialize you can instead create a single source and then later on create as many views as you want to analyse the data in all different ways.
In this post we'll learn how to create multiple views on top of one source using the Materialize SQL streaming database.
uploads/2021/01/materialize-multi-views-banner.png
[ 0.014617537148296833, -0.0025157220661640167, 0.022202439606189728, 0.044456541538238525, 0.08080438524484634, 0.008508083410561085, 0.030758904293179512, 0.04380060359835625, -0.0133674256503582, -0.009637080132961273, -0.010197236202657223, -0.02594815008342266, -0.07708172500133514, 0.0043127029202878475, -0.01877671107649803, 0.07193607836961746, 0.05712069571018219, 0.011039120145142078, 0.038787245750427246, 0.006978197954595089, 0.026693642139434814, 0.05303492397069931, 0.04689238965511322, 0.016947103664278984, 0.034415531903505325, 0.00745221134275198, -0.0062613580375909805, 0.012324279174208641, -0.053636372089385986, 0.002273029647767544, 0.027796024456620216, -0.012164357118308544, 0.00603870116174221, -0.005966503173112869, 0.047726526856422424, 0.008546263910830021, -0.04270108789205551, 0.04114577919244766, 0.0020139014814049006, -0.016500461846590042, -0.06342192739248276, 0.03365933522582054, -0.020220885053277016, 0.007678866386413574, -0.036131251603364944, 0.010716065764427185, -0.03104453906416893, 0.01674789749085903, -0.03821347653865814, -0.008710556663572788, -0.05320252850651741, 0.04289664328098297, -0.015020032413303852, 0.022497331723570824, 0.0000015299931419576751, 0.06610091030597687, 0.03128257766366005, -0.0576731339097023, 0.009542623534798622, -0.033837396651506424, 0.029391378164291382, 0.003556853160262108, -0.0022113043814897537, 0.0045781685039401054, 0.031154992058873177, -0.044516269117593765, 0.002844026079401374, 0.06390736997127533, -0.02353283017873764, -0.003198669757694006, 0.028579866513609886, 0.024670647457242012, -0.013459320180118084, 0.028740381821990013, 0.02100766822695732, -0.04031401500105858, 0.01203181128948927, 0.06924159824848175, 0.004384978674352169, 0.012040886096656322, -0.004362979903817177, 0.014337544329464436, 0.010710927657783031, 0.06008948013186455, -0.03623171150684357, -0.04371688887476921, -0.018763292580842972, 0.0017164986347779632, -0.05348794162273407, 0.057501353323459625, 0.018511755391955376, -0.03715164214372635, 0.014892511069774628, 0.016463084146380424, -0.011576385237276554, -0.003362087532877922, 0.005362032912671566, -0.014225955121219158, -0.016672607511281967, -0.0223886426538229, -0.03644700348377228, -0.003006949555128813, 0.004386492073535919, 0.02402685582637787, -0.06082526221871376, -0.008825903758406639, -0.03363886475563049, 0.0005550701753236353, -0.000724974786862731, -0.01385972648859024, -0.03692375123500824, 0.007358625065535307, -0.027964748442173004, 0.0066450475715100765, -0.05895991250872612, 0.06191541254520416, 0.013867972418665886, -0.042977556586265564, -0.016999630257487297, -0.0006716343923471868, 0.08959461748600006, 0.016970664262771606, -0.013494695536792278, 0.06581618636846542, -0.0014339799527078867, 0.03267419710755348, -0.022365733981132507, 0.032101865857839584, -0.02040916308760643, -0.047563955187797546, -0.01799873262643814, 0.04400138184428215, -0.014414174482226372, 0.01705159991979599, 0.01456323079764843, -0.04833626374602318, 0.023190995678305626, -0.0005248800734989345, 0.0630846917629242, 0.018526455387473106, -0.02474871650338173, -0.043570030480623245, 0.023208830505609512, -0.008285289630293846, 0.04033287242054939, 0.01597413420677185, -0.001321545336395502, -0.0413399338722229, -0.057671111077070236, 0.004579517524689436, 0.02687475085258484, 0.01220268290489912, 0.04267716407775879, -0.04034612700343132, 0.017537692561745644, 0.1025606319308281, 0.041207414120435715, 0.010448592714965343, -0.008307897485792637, 0.03639422357082367, 0.05718889832496643, 0.04390573501586914, 0.015515466220676899, 0.025251565501093864, -0.013074610382318497, -0.012763235718011856, 0.018263285979628563, 0.059992097318172455, -0.017289819195866585, -0.018761727958917618, -0.04286223277449608, -0.037401068955659866, 0.06559711694717407, -0.0223487950861454, -0.039080969989299774, 0.06962649524211884, 0.0649753287434578, 0.062414683401584625, 0.022310251370072365, 0.010345332324504852, -0.08751194179058075, 0.04080411419272423, 0.029007159173488617, 0.014807984232902527, 0.040920451283454895, -0.0011383519740775228, 0.08005034923553467, 0.025950226932764053, -0.01683127135038376, 0.027786599472165108, -0.06159330904483795, -0.07926212251186371, -0.020506704226136208, -0.017505839467048645, 0.05124678462743759, -0.0271343681961298, 0.004821293987333775, 0.07834942638874054, 0.02340994030237198, 0.03849662467837334, 0.010099326260387897, -0.020417368039488792, 0.030821703374385834, -0.06403319537639618, -0.042429640889167786, 0.03818758577108383, 0.047843556851148605, -0.014944435097277164, -0.046143222600221634, 0.014679730869829655, -0.041025567799806595, -0.03124825283885002, 0.01623324304819107, 0.0005987249314785004, 0.04144353047013283, 0.02427162602543831, 0.034412793815135956, -0.00672892015427351, 0.026263801380991936, -0.028812607750296593, 0.03781622275710106, 0.005146576091647148, -0.03666578605771065, -0.008292138576507568, -0.036605264991521835, 0.12212280929088593, 0.04330912604928017, -0.022961726412177086, -0.05708426982164383, 0.0035796642769128084, 0.0069344015792012215, -0.020812582224607468, -0.007589735556393862, -0.012274840846657753, -0.020250003784894943, -0.018496835604310036, -0.027507835999131203, -0.02421274222433567, 0.012760479934513569, -0.04846896976232529, -0.008581292815506458, 0.05457458645105362, -0.0024974632542580366, 0.06024506315588951, 0.014497336931526661, -0.01464122999459505, 0.0003042451571673155, -0.003391767619177699, -0.060199279338121414, -0.004720374010503292, -0.019285300746560097, -0.014122066088020802, 0.033472660928964615, -0.01254767831414938, -0.017700564116239548, -0.03395714983344078, -0.03839785233139992, 0.025184661149978638, 0.04264262691140175, 0.06933572143316269, -0.0234268419444561, 0.05795544013381004, -0.01454230584204197, 0.039856474846601486, -0.04197628051042557, -0.04784877598285675, -0.07372215390205383, -0.022635316476225853, 0.020774025470018387, 0.05605574697256088, 0.03220033645629883, 0.009578399360179901, -0.0030173982959240675, 0.005963397212326527, 0.014901949092745781, -0.011089138686656952, 0.05646555870771408, -0.001609687926247716, -0.01341157965362072, -0.02711508236825466, -0.02133888192474842, 0.07749675214290619, -0.022166630253195763, -0.0291181318461895, 0.0067155370488762856, -0.07523750513792038, 0.04959437623620033, -0.04941924288868904, -0.029322555288672447, -0.004622882232069969, 0.017570143565535545, 0.05536822974681854, 0.024404315277934074, -0.004513350781053305, 0.08492092043161392, 0.032496463507413864, 0.0036219111643731594, 0.003158822888508439, -0.008172248490154743, 0.062310319393873215, -0.030391709879040718, -0.011897639371454716, 0.06550002843141556, -0.023150399327278137, -0.015204286202788353, -0.032619938254356384, 0.018736856058239937, -0.044001344591379166, -0.29482290148735046, 0.03376799449324608, 0.007420427165925503, -0.04650144279003143, 0.017313525080680847, -0.020039048045873642, 0.009305071085691452, -0.04907195642590523, -0.030044203624129295, 0.007305327337235212, -0.02947898767888546, -0.0530230775475502, -0.02001606673002243, 0.025250697508454323, 0.0229815561324358, 0.03285263106226921, 0.010223370045423508, -0.022384705021977425, 0.003638948081061244, 0.05339754372835159, -0.0023044170811772346, -0.06731018424034119, -0.018328221514821053, 0.04275459423661232, 0.03964676707983017, 0.03494353964924812, -0.07963317632675171, 0.027380624786019325, -0.04755491763353348, 0.002197740599513054, 0.02830749750137329, -0.0034514626022428274, 0.01547389104962349, -0.017131894826889038, -0.013725965283811092, -0.049024906009435654, 0.04619048163294792, -0.008682673797011375, 0.027545994147658348, -0.01785384491086006, -0.020893631502985954, -0.03551451116800308, -0.015624863095581532, 0.002576204249635339, 0.07169564813375473, -0.0019503020448610187, -0.06520634889602661, 0.014027862809598446, -0.03667125478386879, 0.059625301510095596, 0.006216490175575018, -0.0440906323492527, -0.022276170551776886, 0.02224540337920189, -0.02636604569852352, -0.02718290127813816, -0.008054292760789394, -0.017042232677340508, -0.02958253026008606, -0.04430701956152916, -0.0147927301004529, -0.03586670011281967, -0.019357889890670776, -0.036147456616163254, 0.009934855625033379, -0.059778615832328796, -0.06787355989217758, -0.015961110591888428, 0.0788053423166275, 0.023553399369120598, -0.025341739878058434, 0.015392151661217213, -0.014189525507390499, -0.12423881143331528, -0.003696147119626403, 0.005420322064310312, -0.03271879628300667, 0.01677449606359005, -0.02099738083779812, 0.04113256186246872, -0.051638465374708176, -0.04220127314329147, 0.023668300360441208, -0.0016895023873075843, 0.0206442940980196, -0.02843163162469864, 0.03786180168390274, -0.009079819545149803, 0.012052683159708977, -0.008126611821353436, 0.06472774595022202, -0.03546757623553276, -0.02255989797413349, -0.006894638761878014, -0.006291369441896677, 0.021133046597242355, 0.016686659306287766, -0.024823904037475586, 0.005235813558101654, 0.03237118199467659, 0.015025836415588856, -0.06302554905414581, 0.009153136983513832, -0.029240110889077187, -0.00811684224754572, -0.005558333359658718, -0.048387277871370316, 0.018515318632125854, 0.03321974352002144, 0.03468506038188934, 0.002465322380885482, -0.028870699927210808, 0.02034761756658554, -0.028987273573875427, 0.0061983936466276646, -0.007046145852655172, -0.00006468094215961173, 0.02977604605257511, 0.02336762845516205, -0.032160740345716476, -0.053784895688295364, 0.029133489355444908, -0.006202071439474821, -0.017492469400167465, -0.05321094021201134, -0.01927746646106243, -0.01287890039384365, -0.017259331420063972, -0.014081375673413277, 0.012360760010778904, -0.009560281410813332, 0.008384514600038528, 0.013874495401978493, -0.022774210199713707, 0.019114460796117783, -0.03821684792637825, -0.04904467612504959, -0.03504638746380806, 0.02773337997496128, 0.0036645766813308, 0.023991268128156662, 0.01555299386382103, -0.0002970266796182841, 0.0340605229139328, 0.03230937197804451, 0.015496399253606796, 0.03875727578997612, -0.02189761772751808, 0.005935073830187321, -0.01713421382009983, -0.009467004798352718, -0.06502558290958405, 0.012106290087103844, -0.023430394008755684, -0.018216999247670174, -0.009108386933803558, 0.027782689779996872, -0.02812764421105385, -0.01604882813990116, -0.03667963668704033, 0.03173673152923584, -0.031609583646059036, -0.03616245836019516, -0.019440488889813423, -0.021678205579519272, 0.05405293405056, 0.0033252325374633074, 0.018320005387067795, 0.001840853481553495, -0.022625090554356575, 0.0218302421271801, -0.02849464863538742, -0.029231686145067215, -0.013454374857246876, -0.012982148677110672, -0.015060564503073692, 0.0031061668414622545, 0.003368193516507745, 0.03596120327711105, 0.024577321484684944, 0.0033262360375374556, -0.02539650723338127, 0.023211805149912834, 0.008232928812503815, 0.041747286915779114, 0.04999954253435135, -0.00828647892922163, 0.0032507150899618864, -0.010702989064157009, -0.010371202602982521, -0.0274191927164793, 0.0021312464959919453, -0.010930540971457958, -0.02445180155336857, -0.014811268076300621, -0.05795964598655701, 0.05269068107008934, 0.02092333324253559, 0.008928596042096615, 0.021727968007326126, -0.020375395193696022, 0.0032532180193811655, -0.016353541985154152, 0.042142603546381, 0.08724725246429443, -0.06392858922481537, -0.004965742584317923, 0.013645350933074951, -0.026719320565462112, -0.0011983904987573624, 0.012041619047522545, -0.03930186852812767, -0.015515631064772606, -0.021575145423412323, 0.019575301557779312, -0.04301365464925766, -0.026522258296608925, -0.02836517244577408, 0.006820480339229107, -0.0016315947286784649, 0.009599342942237854, -0.002107789507135749, 0.00027084737666882575, -0.017415618523955345, -0.030431052669882774, 0.019776878878474236, -0.020704137161374092, 0.008903701789677143, 0.016404181718826294, -0.034226059913635254, -0.0017007823335006833, -0.04206933081150055, 0.0355549082159996, 0.04768318682909012, -0.011904778890311718, -0.00851517729461193, -0.0347050316631794, 0.000346412998624146, 0.013951673172414303, 0.04248323664069176, -0.005626017693430185, -0.04150491580367088, -0.026130853220820427, 0.015648074448108673, -0.020925218239426613, 0.020263925194740295, -0.022736335173249245, -0.022851569578051567, 0.04592041298747063, 0.03210241720080376, 0.029990196228027344, 0.003685575444251299, -0.03318158537149429, -0.035188283771276474, 0.05736108124256134, -0.06848719716072083, -0.03310850262641907, -0.030512318015098572, -0.05043299123644829, 0.022743096575140953, 0.016921108588576317, 0.012687502428889275, -0.044945620000362396, 0.055198702961206436, 0.026860572397708893, 0.03797174617648125, 0.05873604118824005, -0.004346118308603764, 0.0190989151597023, -0.03787955641746521, -0.0006664253887720406, -0.10579178482294083, -0.01850101910531521, 0.017180558294057846, -0.006739887874573469, 0.012643265537917614, 0.009128415957093239, -0.053994014859199524, 0.026361556723713875, -0.06447292119264603, -0.03295436128973961, 0.02556854858994484, -0.01216132938861847, -0.007009350694715977, 0.01113834697753191, -0.05671625956892967, 0.02541857212781906, 0.03889487683773041, -0.038873523473739624, -0.009475616738200188, -0.024092311039566994, 0.05519704148173332, -0.004121891688555479, 0.02154940739274025, -0.011172010563313961, -0.018399911001324654, 0.06993615627288818, 0.011272550560534, -0.026614028960466385, 0.026673361659049988, -0.025861894711852074, 0.03258484974503517, 0.0243610218167305, -0.0068324957974255085, 0.011511731892824173, 0.0002818556095007807, -0.002123740501701832, -0.05670895427465439, 0.048776134848594666, 0.028824457898736, -0.034156300127506256, -0.033605869859457016, 0.07244625687599182, 0.01868322305381298, -0.025943566113710403, -0.06678910553455353, 0.012621140107512474, -0.047686200588941574, -0.009848713874816895, -0.0008260186878032982, 0.01420549862086773, -0.054575514048337936, 0.05065539479255676, -0.021292777732014656, 0.000752437103074044, 0.05533811077475548, 0.023764323443174362, 0.0005340795614756644, -0.009297105483710766, 0.08522067964076996, 0.07696700841188431, 0.039330627769231796, -0.008339100517332554, 0.0631016418337822, -0.031984906643629074, -0.04982253164052963, 0.0036247270181775093, -0.016504233703017235, -0.027386285364627838, -0.013089762069284916, -0.006597438361495733, 0.0879632979631424, -0.014447527937591076, 0.09164950251579285, -0.023379744961857796, -0.03452446311712265, 0.0008368130656890571, 0.016753999516367912, 0.005398130975663662, 0.02340702712535858, 0.01442128699272871, 0.024001339450478554, -0.028975628316402435, -0.043802037835121155, 0.015481062233448029, -0.0006899014115333557, -0.0016335799591615796, 0.040941182523965836, -0.0004210849874652922, 0.040881041437387466, -0.013797441497445107, 0.04255751147866249, 0.0680835098028183, -0.030394265428185463, 0.00997725035995245, -0.022311203181743622, 0.017293080687522888, 0.004139047581702471, 0.013909818604588509, -0.013624456711113453, -0.02048221230506897, 0.010324850678443909, -0.04580234736204147, 0.005438541993498802, -0.022671794518828392, 0.002890192437916994, 0.02830204740166664, -0.036327797919511795, 0.00968576967716217, 0.018739774823188782, 0.009950768202543259, -0.04065686836838722, -0.04120735824108124, -0.05931658297777176, -0.06272668391466141, -0.055021170526742935, -0.0012520556338131428, 0.01897207647562027, 0.011678324081003666, -0.013960916548967361, -0.022318160161376, -0.016330525279045105, -0.0002646000066306442, 0.05884971842169762, -0.05331559479236603, -0.032788317650556564, 0.013275264762341976, 0.0076948050409555435, 0.02977055497467518, 0.020996104925870895, 0.058364514261484146, -0.001079448382370174, -0.005226050037890673, 0.009748903103172779, 0.015314056538045406, 0.06334433704614639, 0.0018859651172533631, 0.0024828549940139055, -0.09604880958795547, 0.03455600515007973, -0.007042775396257639, -0.045374177396297455, -0.06354203075170517, 0.018328236415982246, 0.037791524082422256, -0.031363289803266525, 0.05890034884214401, -0.024980690330266953, 0.0070205433294177055, -0.05638670176267624, -0.04155110567808151, -0.018564188852906227, -0.008944876492023468, 0.04414113238453865, -0.02560284547507763, 0.07400034368038177, 0.006880622357130051, -0.021328900009393692, -0.02664521336555481, 0.005189280025660992, -0.0002731327258516103, -0.009398462250828743, -0.026369841769337654, -0.014430842362344265, -0.03820331394672394, -0.08701592683792114, -0.06059294193983078, 0.02074543945491314, -0.035053595900535583, -0.035320945084095, 0.016663705930113792, 0.02647695131599903, -0.04130556434392929, 0.000006380632385116769, -0.021788286045193672, 0.02373218908905983, -0.03001498244702816, 0.004127136431634426, -0.041653089225292206, 0.013423723168671131, 0.017213109880685806, -0.0022922491189092398, 0.02487155981361866, -0.05850430950522423, 0.012208028696477413, -0.015284977853298187, 0.04518189653754234, 0.07484894245862961, 0.006014526821672916, -0.008422142826020718 ]
[ -0.08193477988243103, -0.03227049484848976, -0.02305402047932148, -0.01040344312787056, 0.03728804737329483, -0.0409434512257576, -0.032910171896219254, 0.013582400977611542, 0.011864941567182541, 0.002303475048393011, 0.000753167609218508, -0.04920226335525513, -0.027764201164245605, 0.019278300926089287, 0.08640404045581818, -0.002058930927887559, 0.013399341143667698, -0.06410210579633713, -0.021914390847086906, 0.039966415613889694, 0.009161829948425293, -0.01082791667431593, -0.04018251597881317, -0.04881379008293152, 0.009688062593340874, 0.03628028184175491, 0.005689599085599184, -0.04940576106309891, 0.002907348331063986, -0.19863349199295044, 0.01918649487197399, -0.0035153112839907408, 0.022695235908031464, -0.0017029417213052511, 0.012622799724340439, 0.040111806243658066, 0.017667297273874283, 0.05129214748740196, -0.0075080073438584805, 0.055367860943078995, 0.007718472741544247, 0.0170544795691967, -0.07208755612373352, -0.022738296538591385, 0.020264333114027977, 0.009076516143977642, -0.00579213397577405, -0.005802205763757229, 0.008416904136538506, 0.05585746094584465, -0.05682385340332985, -0.007523257751017809, -0.004838396795094013, -0.014439749531447887, 0.004159737378358841, 0.013351046480238438, 0.03958406671881676, 0.07753676176071167, 0.01674075983464718, 0.024814138188958168, 0.016452670097351074, -0.004617895465344191, -0.09323186427354813, 0.10426788777112961, 0.0061460863798856735, 0.0395050048828125, -0.03664341941475868, -0.005256648641079664, -0.006808515638113022, 0.07548166811466217, 0.018628565594553947, -0.021431434899568558, -0.028974948450922966, 0.05598095431923866, 0.04239538311958313, -0.019994959235191345, -0.01338986400514841, 0.03997363522648811, 0.015441917814314365, -0.03360852971673012, -0.06754280626773834, -0.00828804261982441, -0.03977986425161362, -0.027309268712997437, -0.026317322626709938, 0.033882465213537216, -0.012258261442184448, 0.05876949802041054, 0.017746608704328537, 0.010476039722561836, 0.02814260683953762, -0.0035411370918154716, 0.018950287252664566, 0.0395641103386879, -0.0986010879278183, -0.023305807262659073, -0.004390212241560221, 0.034057360142469406, -0.010644694790244102, 0.4230225384235382, -0.01855812966823578, 0.004545663017779589, 0.07762081176042557, 0.03732685372233391, 0.003900740062817931, -0.007945557124912739, -0.0055787283927202225, -0.03788724169135094, 0.022178640589118004, -0.026177726686000824, 0.01633717305958271, 0.00539366016164422, 0.019769970327615738, -0.06579984724521637, 0.01110340841114521, 0.024616578593850136, 0.018002228811383247, 0.021146347746253014, -0.008288905955851078, -0.010645237751305103, -0.020104514434933662, 0.0010432143462821841, 0.02652912214398384, 0.0000876873527886346, 0.0032490240409970284, -0.03339366242289543, 0.04049081727862358, 0.044870562851428986, 0.03572472929954529, -0.00208208616822958, 0.0461917519569397, -0.0016958639025688171, -0.10466936230659485, -0.014747429639101028, -0.0007514456519857049, 0.0006312454934231937, 0.048569656908512115, -0.03959238529205322, 0.011736869812011719, 0.04603634402155876, -0.019565965980291367, -0.015341310761868954, 0.03823992982506752, -0.03115534968674183, -0.03953995928168297, 0.15167008340358734, 0.017737332731485367, -0.03249407187104225, -0.015023535117506981, -0.08165212720632553, -0.02577579952776432, 0.02792033925652504, 0.008508080616593361, -0.06085662916302681, 0.03612552955746651, 0.04301800951361656, 0.07445818930864334, -0.04289614036679268, -0.06900545209646225, -0.019183214753866196, -0.015593302436172962, -0.0348694771528244, -0.041715897619724274, 0.056681446731090546, 0.03397490084171295, -0.13187676668167114, -0.03402184695005417, 0.04039105772972107, 0.035027820616960526, -0.08140021562576294, 0.011688237078487873, 0.021609114482998848, -0.0479893833398819, -0.0063728755339980125, 0.07833480089902878, -0.0012589282123371959, -0.048826295882463455, 0.023718994110822678, 0.05183172971010208, 0.008686518296599388, 0.014664669521152973, -0.005500914994627237, -0.06101229786872864, -0.0010636217193678021, -0.06961941719055176, -0.07571426779031754, -0.045281603932380676, 0.020027529448270798, -0.005086701828986406, -0.027675911784172058, 0.005555335432291031, -0.024363994598388672, -0.09374307841062546, 0.07923523336648941, -0.030959872528910637, -0.03303308039903641, 0.01188488770276308, 0.018884742632508278, -0.014594542793929577, -0.04122738540172577, 0.032444462180137634, 0.019495131447911263, -0.022003520280122757, 0.057539649307727814, -0.04050249606370926, 0.029638390988111496, 0.0271893423050642, -0.03440823405981064, 0.057370997965335846, 0.030546577647328377, -0.036629434674978256, -0.021379470825195312, -0.02331400103867054, 0.01590961217880249, 0.009342879988253117, -0.015613636933267117, -0.019267989322543144, 0.01337412092834711, 0.022529015317559242, 0.03094952553510666, -0.027326906099915504, -0.02050604298710823, -0.009503277949988842, -0.356879860162735, -0.03964633122086525, -0.010182421654462814, 0.008461947552859783, -0.004774224013090134, -0.03948285058140755, 0.010350624099373817, -0.004224881529808044, -0.013048239052295685, 0.003154038218781352, 0.09148185700178146, 0.004383311606943607, 0.017105989158153534, -0.10537094622850418, 0.0011424266267567873, 0.007051248103380203, -0.03692147880792618, 0.0005271734553389251, -0.02056708373129368, 0.002282146830111742, 0.024554962292313576, -0.013558043166995049, -0.043790850788354874, -0.0484880730509758, 0.019612636417150497, -0.0255268681794405, 0.12538431584835052, 0.013989345170557499, 0.053443294018507004, -0.06305458396673203, 0.047555264085531235, 0.017041658982634544, -0.029261372983455658, -0.10268183052539825, -0.005164850037544966, -0.03973932936787605, 0.014637161046266556, 0.028538387268781662, -0.006234959699213505, -0.034980639815330505, -0.07236907631158829, 0.03302079439163208, -0.028639571741223335, -0.05831391364336014, -0.025238849222660065, -0.006207088008522987, -0.03165942803025246, -0.011611057445406914, -0.013459154404699802, 0.05769725888967514, 0.0009512591059319675, -0.0037893138360232115, 0.016279436647892, 0.030997484922409058, 0.013549774885177612, -0.017124474048614502, -0.09886538237333298, 0.007516050711274147, -0.01602228172123432, -0.011920735239982605, 0.010445787571370602, 0.017332717776298523, 0.04099712148308754, -0.056606680154800415, 0.016971083357930183, 0.01905212551355362, 0.011580170132219791, 0.00749276764690876, 0.020840421319007874, -0.04483401030302048, -0.02767420932650566, 0.05705577880144119, -0.019200023263692856, 0.0163339264690876, 0.029864797368645668, 0.04430603235960007, -0.03302213177084923, 0.025971664115786552, 0.046943627297878265, 0.01580694690346718, 0.011399514973163605, 0.009939872659742832, 0.020459579303860664, -0.01793825253844261, 0.004073508083820343, 0.06395133584737778, -0.002283394569531083, -0.04592873901128769, 0.0525202713906765, 0.00392572907730937, -0.005073872394859791, -0.02182171307504177, -0.0323278084397316, -0.057875752449035645, 0.0742315798997879, -0.0045217000879347324, -0.26627621054649353, 0.043298833072185516, 0.053030773997306824, 0.05074521526694298, -0.00928586721420288, 0.006664974614977837, 0.007381469942629337, -0.04963262006640434, 0.029943469911813736, 0.017655687406659126, 0.007674815598875284, 0.058842696249485016, 0.0012263765092939138, 0.007201486732810736, 0.007630137726664543, 0.01448132935911417, 0.05378134176135063, 0.025453872978687286, 0.03660978376865387, -0.008001156151294708, 0.002096682321280241, -0.0029966363217681646, 0.16117064654827118, 0.042575687170028687, -0.0030297606717795134, 0.03823164105415344, -0.0030665285885334015, 0.01124302763491869, 0.06512757390737534, 0.009258817881345749, -0.01834378018975258, 0.009412359446287155, 0.023685041815042496, 0.043802037835121155, 0.017902594059705734, -0.06667336821556091, -0.006125315558165312, 0.03563205152750015, 0.025373822078108788, -0.012257910333573818, 0.012663308531045914, 0.005076305009424686, -0.05860443413257599, 0.03274597227573395, 0.06926528364419937, 0.010281488299369812, -0.0002765469835139811, -0.018862154334783554, -0.07081998139619827, -0.02652420476078987, -0.03262152522802353, -0.033141929656267166, -0.0022681632544845343, 0.0014491567853838205, -0.003278651973232627, 0.08128966391086578, 0.0430845282971859, -0.013369530439376831, 0.040946122258901596, 0.008245107717812061, -0.02326360158622265, -0.04102528467774391, 0.06488703936338425, 0.02251165546476841, 0.01706763729453087 ]
[ 0.007718289270997047, 0.01729419082403183, -0.02981879562139511, 0.0495288260281086, 0.01787169836461544, -0.0017867614515125751, -0.0024549553636461496, 0.02240201085805893, -0.04434727877378464, -0.0005242787883616984, -0.042386844754219055, -0.009626735933125019, 0.0266015212982893, -0.007142982445657253, 0.04471047595143318, 0.010308176279067993, -0.006973830051720142, -0.01105115469545126, 0.025393227115273476, 0.032300498336553574, -0.010998198762536049, 0.015361547470092773, 0.019907580688595772, 0.015994509682059288, -0.009895632974803448, 0.05411805212497711, -0.05512775853276253, -0.014916670508682728, 0.012344682589173317, -0.12074761092662811, -0.0064682732336223125, -0.02593785710632801, 0.004361341707408428, -0.006081886123865843, -0.015331286005675793, 0.03612198680639267, -0.04235833138227463, -0.02879554033279419, -0.045594941824674606, 0.010469978675246239, 0.03717665374279022, -0.007287167012691498, -0.037153854966163635, -0.02630411647260189, -0.01901460997760296, -0.030914675444364548, -0.016982082277536392, -0.04185343533754349, -0.0078144995495677, -0.0032689108047634363, -0.04542659595608711, -0.03330225497484207, -0.010759467259049416, 0.004299878608435392, 0.014838842675089836, 0.005658946465700865, -0.04541601985692978, 0.03192247450351715, -0.00028349331114441156, -0.04632662609219551, 0.03557324409484863, -0.002260911278426647, -0.020077437162399292, -0.029262272641062737, 0.002156481146812439, -0.02505595237016678, -0.013232228346168995, 0.007296540774405003, 0.014432407915592194, -0.0016248432220891118, 0.008873567916452885, 0.01663702353835106, -0.018603594973683357, -0.047819387167692184, -0.028475232422351837, 0.0017574771773070097, 0.021254727616906166, -0.0072896345518529415, -0.019247815012931824, 0.008561692200601101, -0.03254321217536926, 0.0026471016462892294, -0.025200778618454933, 0.026005400344729424, 0.0060988678596913815, -0.010666330344974995, 0.0018418647814542055, 0.023991426452994347, 0.043289925903081894, -0.00014363531954586506, -0.015057842247188091, 0.006776110269129276, -0.03449428454041481, 0.019965706393122673, -0.08272827416658401, -0.010749285109341145, -0.041533056646585464, -0.010286027565598488, 0.004019994754344225, 0.8199276924133301, 0.015367607586085796, 0.012466893531382084, 0.029187727719545364, 0.058580733835697174, 0.008054271340370178, -0.03199079632759094, 0.011774171143770218, 0.01909133791923523, 0.01238173432648182, -0.026208294555544853, 0.04654086381196976, 0.0364450141787529, 0.022689558565616608, -0.00023294577840715647, 0.024605486541986465, 0.05623859539628029, 0.009645155631005764, -0.008783211000263691, 0.009608508087694645, 0.043574340641498566, 0.02683209627866745, -0.02845410257577896, 0.029533792287111282, -0.0010359178995713592, 0.063626728951931, -0.19882196187973022, -0.005743047222495079, -6.997919173852656e-33, 0.027869170531630516, -0.03040541149675846, 0.056029580533504486, -0.019708622246980667, 0.022698430344462395, -0.015712270513176918, -0.022069819271564484, 0.003531934227794409, 0.011501631699502468, -0.029754439368844032, 0.012485792860388756, 0.021998979151248932, -0.002587462542578578, 0.015073825605213642, 0.029343390837311745, -0.03138575702905655, 0.0010364720365032554, 0.021522779017686844, 0.024838902056217194, -0.013609912246465683, 0.039487648755311966, 0.01671277917921543, -0.0299538467079401, 0.039608608931303024, -0.011742383241653442, 0.014878638088703156, 0.05761244148015976, 0.00835595466196537, -0.021656982600688934, -0.02880425751209259, -0.009673047810792923, -0.029227860271930695, -0.018951065838336945, -0.02387065254151821, 0.04440639168024063, -0.024922767654061317, -0.0647994875907898, 0.012882661074399948, -0.023550236597657204, -0.021009063348174095, -0.03160020336508751, -0.009406976401805878, -0.01852269284427166, -0.03204688802361488, -0.051980968564748764, 0.024368707090616226, 0.015190192498266697, 0.0041768853552639484, 0.006661954801529646, -0.011439415626227856, 0.01565338671207428, 0.018439142033457756, 0.012505298480391502, 0.00017612158262636513, 0.005292218644171953, 0.0238483976572752, 0.01123877801001072, 0.0037959262263029814, 0.0037074775900691748, 0.007875781506299973, 0.009463001973927021, -0.043163444846868515, -0.003956397995352745, 0.040661390870809555, 0.011253501288592815, 0.008984996937215328, 0.014208321459591389, 0.023877769708633423, 0.01899215579032898, 0.009233158081769943, -0.06760931015014648, 0.015640592202544212, 0.011611919850111008, -0.02457088604569435, 0.0502164326608181, -0.02351636067032814, 0.01899517886340618, 0.0083883386105299, 0.01668318547308445, 0.02246071957051754, -0.013396567665040493, -0.019008133560419083, -0.014575294218957424, -0.035264648497104645, -0.04896315187215805, -0.0020411175210028887, 0.034981854259967804, -0.010612535290420055, -0.037996917963027954, 0.026056362316012383, 0.01715759187936783, 0.05866655707359314, 0.024105237796902657, -0.03793582692742348, -0.02149898186326027, 7.537525447493811e-33, -0.019338158890604973, -0.029409250244498253, 0.012650394812226295, -0.015368699096143246, 0.03271188586950302, -0.026009835302829742, 0.03267456963658333, 0.03143886849284172, -0.0290352925658226, 0.04259232431650162, -0.01034354418516159, -0.02239280566573143, -0.04188774153590202, 0.031035395339131355, 0.03974437713623047, 0.017700232565402985, 0.036273349076509476, -0.011076636612415314, 0.021593745797872543, 0.015273976139724255, -0.010501863434910774, 0.034230176359415054, 0.012769348919391632, 0.003746834583580494, 0.02492976002395153, 0.033186160027980804, 0.001812177593819797, -0.002293549943715334, -0.02687017433345318, -0.012252634391188622, -0.012933491729199886, -0.05122692510485649, -0.017879532650113106, -0.0016681489069014788, -0.04863164201378822, 0.040220972150564194, -0.011205089278519154, 0.009134388528764248, 0.0023995202500373125, -0.022322922945022583, 0.04942677915096283, 0.004555782303214073, 0.014739244244992733, 0.03304404020309448, 0.010234060697257519, -0.007595297880470753, -0.01803528517484665, 0.020197760313749313, -0.034072380512952805, -0.0074136159382760525, 0.006246439181268215, 0.02601744420826435, 0.0013926876708865166, 0.009498470462858677, 0.02941516414284706, -0.043569039553403854, -0.004223156254738569, -0.003077153814956546, -0.0551440492272377, -0.024317260831594467, 0.003964801784604788, 0.010249474085867405, -0.017169708386063576, 0.015951158478856087, -0.016855919733643532, -0.030866635963320732, -0.017961163073778152, -0.021191861480474472, -0.04530986025929451, -0.000046694720367668197, -0.019989900290966034, 0.012811071239411831, -0.005270048044621944, 0.06541820615530014, 0.017361262813210487, -0.01960836350917816, -0.02053368091583252, 0.009073370136320591, -0.012303164228796959, 0.006996017415076494, 0.02925805374979973, -0.013886491768062115, 0.022865086793899536, -0.04535781592130661, 0.000706430699210614, 0.042725469917058945, -0.03844793513417244, -0.007786209229379892, 0.019793201237916946, -0.004838369786739349, -0.02043914794921875, -0.0422997921705246, -0.030620338395237923, 0.033648692071437836, -0.039053332060575485, -1.2679814531679767e-8, -0.04283680021762848, 0.0077044288627803326, -0.027638154104351997, 0.019992899149656296, 0.04417276754975319, 0.0007198085077106953, -0.005495462566614151, -0.002157622016966343, 0.029443049803376198, -0.0052978829480707645, 0.08138062059879303, -0.034323446452617645, 0.009036251343786716, 0.0076591577380895615, 0.012251827865839005, -0.04657945781946182, -0.0041036889888346195, 0.008972911164164543, 0.01640400104224682, -0.018767639994621277, -0.0025725120212882757, 0.05053787678480148, 0.003408529795706272, -0.0005292040877975523, 0.024436725303530693, 0.03587329387664795, 0.013638039119541645, -0.05979907140135765, -0.017608391121029854, -0.01945456862449646, 0.03930580988526344, -0.02320827916264534, 0.0008334996527992189, 0.013717841356992722, -0.025002826005220413, -0.028427155688405037, 0.061755161732435226, 0.027175279334187508, 0.008943872526288033, 0.031189555302262306, -0.025204157456755638, 0.030994918197393417, 0.008814102970063686, -0.012623574584722519, -0.017595402896404266, 0.022996772080659866, -0.05018000677227974, 0.01035910751670599, 0.042764902114868164, -0.027457132935523987, 0.019350890070199966, -0.015554586425423622, 0.0026970095932483673, 0.02134784683585167, 0.02763896994292736, -0.0034205715637654066, 0.023842131718993187, -0.018346112221479416, -0.054924678057432175, 0.007109117694199085, 0.032859668135643005, -0.02290291152894497, 0.008954377844929695, -0.011175399646162987 ]
materialize-multiple-views-one-source
https://markhneedham.com/blog/2021/01/28/materialize-multiple-views-one-source
false
2021-06-21 00:44:37
Apache Pinot: {'errorCode': 410, 'message': 'BrokerResourceMissingError'}
[ "pinot" ]
[ "Pinot" ]
I've recently been playing around with https://pinot.apache.org/[Apache Pinot^], a realtime analytical data store that's used for user facing analytics use cases. In this blog post I want to walk through some challenges I had connecting to Pinot using the Python driver and how I got things working. I'm running Pinot locally using the Docker image, which I setup in a Docker compose file: .docker-compose.yml [source,yaml] ---- version: '3.7' services: pinot: image: apachepinot/pinot:0.7.1 command: "QuickStart -type batch" container_name: "pinot-quickstart" volumes: - ./config:/config - ./data:/opt/pinot/data ports: - "9000:9000" - "8000:8000" - "8099:8099" ---- I launched that using the following command: [source, bash] ---- docker-compose up ---- And waited for this line in the output: [source, bash] ---- pinot-quickstart | You can always go to http://localhost:9000 to play around in the query console ---- If we navigate to that URL we can run queries against Pinot from the web app, but I want to run some queries from Python, so we'll now install the https://docs.pinot.apache.org/users/clients/python[Python driver^]: [source, bash] ---- pip install pinotdb ---- We'll import the module into our Python script: [source, python] ---- from pinotdb import connect ---- Now let's see if we can connect to the database using https://github.com/python-pinot-dbapi/pinot-dbapi[a sample query from the GitHub repository^]: [source, python] ---- conn = connect(host='localhost', port=8099, path='/query/sql', scheme='http') curs = conn.cursor() curs.execute(""" SELECT * FROM airlineStats LIMIT 5 """) for row in curs: print(row) ---- If we run this query, we'll see the following output: .Output [source, text] ---- Traceback (most recent call last): File "blog.py", line 5, in <module> curs.execute(""" File "/home/markhneedham/.local/share/virtualenvs/pinot-playground-V0PLiJ36/lib/python3.8/site-packages/pinotdb/db.py", line 44, in g return f(self, *args, **kwargs) File "/home/markhneedham/.local/share/virtualenvs/pinot-playground-V0PLiJ36/lib/python3.8/site-packages/pinotdb/db.py", line 270, in execute r = requests.post(self.url, headers=headers, json=payload) File "/home/markhneedham/.local/share/virtualenvs/pinot-playground-V0PLiJ36/lib/python3.8/site-packages/requests/api.py", line 119, in post return request('post', url, data=data, json=json, **kwargs) File "/home/markhneedham/.local/share/virtualenvs/pinot-playground-V0PLiJ36/lib/python3.8/site-packages/requests/api.py", line 61, in request return session.request(method=method, url=url, **kwargs) File "/home/markhneedham/.local/share/virtualenvs/pinot-playground-V0PLiJ36/lib/python3.8/site-packages/requests/sessions.py", line 542, in request resp = self.send(prep, **send_kwargs) File "/home/markhneedham/.local/share/virtualenvs/pinot-playground-V0PLiJ36/lib/python3.8/site-packages/requests/sessions.py", line 655, in send r = adapter.send(request, **kwargs) File "/home/markhneedham/.local/share/virtualenvs/pinot-playground-V0PLiJ36/lib/python3.8/site-packages/requests/adapters.py", line 516, in send raise ConnectionError(e, request=request) requests.exceptions.ConnectionError: HTTPConnectionPool(host='localhost', port=8099): Max retries exceeded with url: /query/sql (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f5e585f84f0>: Failed to establish a new connection: [Errno 111] Connection refused')) ---- Hmmm, we can't even connect to port 8099, so that must be the wrong one. I noticed port 8000 mentioned in some documentation, so perhaps we'll fare better querying on that port: [source, python] ---- conn = connect(host='localhost', port=8000, path='/query/sql', scheme='http') curs = conn.cursor() curs.execute(""" SELECT * FROM airlineStats LIMIT 5 """) for row in curs: print(row) ---- If we run this query we'll see the following output: .Output [source, text] ---- --------------------------------------------------------------------------- DatabaseError Traceback (most recent call last) <ipython-input-182-7ce88c8878a1> in <module> 1 curs = conn.cursor() ----> 2 curs.execute(""" 3 SELECT * FROM airlineStats LIMIT 5 4 """) 5 for row in curs: /opt/conda/lib/python3.8/site-packages/pinotdb/db.py in g(self, *args, **kwargs) 42 if self.closed: 43 raise exceptions.Error(f"{self.__class__.__name__} already closed") ---> 44 return f(self, *args, **kwargs) 45 46 return g /opt/conda/lib/python3.8/site-packages/pinotdb/db.py in execute(self, operation, parameters) 301 if query_exceptions: 302 msg = "\n".join(pformat(exception) for exception in query_exceptions) --> 303 raise exceptions.DatabaseError(msg) 304 305 rows = [] # array of array, where inner array is array of column values DatabaseError: {'errorCode': 410, 'message': 'BrokerResourceMissingError'} ---- We're able to connect this time, but still can't execute the query. The error message indicates that it https://docs.pinot.apache.org/basics/getting-started/frequent-questions/query-faq#i-get-the-following-error-when-running-a-query-what-does-it-mean[can't find a broker to process the query]. This is true - we don't actually have a table called `airlineStats`, so there wouldn't be a broker that could process a query against that table. We do have a table called `baseballStats`, so let's query that instead: [source, python] ---- conn = connect(host='localhost', port=8000, path='/query/sql', scheme='http') curs = conn.cursor() curs.execute(""" SELECT * FROM baseballStats LIMIT 5 """) for row in curs: print(row) ---- .Output [source, text] ---- [0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 'NL', 11, 11, 'aardsda01', 'David Allan', 1, 0, 0, 0, 0, 0, 0, 'SFN', 0, 2004] [2, 45, 0, 0, 0, 0, 0, 0, 0, 0, 'NL', 45, 43, 'aardsda01', 'David Allan', 1, 0, 0, 0, 1, 0, 0, 'CHN', 0, 2006] [0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 'AL', 25, 2, 'aardsda01', 'David Allan', 1, 0, 0, 0, 0, 0, 0, 'CHA', 0, 2007] [1, 5, 0, 0, 0, 0, 0, 0, 0, 0, 'AL', 47, 5, 'aardsda01', 'David Allan', 1, 0, 0, 0, 0, 0, 1, 'BOS', 0, 2008] [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'AL', 73, 3, 'aardsda01', 'David Allan', 1, 0, 0, 0, 0, 0, 0, 'SEA', 0, 2009] ---- Success!
In this post we'll learn about the Apache Pinot BrokerResourceMissingError error message.
null
[ -0.017417429015040398, -0.019061829894781113, -0.01159556582570076, 0.02715482749044895, 0.07151992619037628, 0.022014103829860687, -0.007556458935141563, 0.05697932094335556, -0.0055734566412866116, -0.03247922658920288, -0.029016077518463135, -0.00031852792017161846, -0.07247119396924973, 0.00908499676734209, 0.019101953133940697, 0.06402318924665451, 0.08905339986085892, -0.006374204996973276, 0.02123025245964527, -0.013777119107544422, 0.021773096174001694, 0.06423361599445343, -0.012003682553768158, 0.053220756351947784, -0.011517662554979324, 0.0053409007377922535, -0.009412473067641258, 0.01877387799322605, -0.05463285744190216, -0.02117357961833477, 0.00783627200871706, -0.007812277879565954, 0.013329065404832363, -0.022772081196308136, 0.009465871378779411, 0.011762547306716442, 0.004389057867228985, 0.029490340501070023, -0.009052097797393799, 0.03911063075065613, -0.07745561003684998, 0.02784438244998455, 0.018067741766572, 0.024052323773503304, -0.008214779198169708, 0.03588862344622612, -0.02813025936484337, 0.02739821933209896, 0.013936828821897507, -0.002057457808405161, -0.06885802745819092, 0.03498486429452896, -0.03578531742095947, 0.010446078144013882, 0.019764479249715805, 0.03478371724486351, -0.008776257745921612, -0.07127609848976135, 0.030325429514050484, -0.029067648574709892, -0.00429164944216609, 0.02545957826077938, 0.02101929858326912, 0.007350908126682043, 0.015708891674876213, -0.012955993413925171, -0.03125433251261711, 0.03556147590279579, -0.03991442546248436, -0.0008153131930157542, 0.016453059390187263, 0.0126638887450099, -0.037418246269226074, -0.034506816416978836, 0.007449391297996044, -0.025910241529345512, -0.028415754437446594, 0.056126661598682404, 0.025145821273326874, 0.0533347986638546, -0.029919659718871117, -0.02179519087076187, -0.0008992604562081397, 0.03178144246339798, -0.001621101750060916, -0.036766231060028076, -0.03629104048013687, 0.013007809408009052, -0.06228385120630264, 0.07398106902837753, 0.018117552623152733, -0.043363481760025024, 0.02442300319671631, -0.013129646889865398, -0.01787908375263214, 0.032309483736753464, 0.03287237137556076, 0.0066185095347464085, 0.028214558959007263, -0.0063224006444215775, -0.03060031868517399, 0.004574008285999298, 0.02939022146165371, 0.05954352393746376, -0.06432835757732391, -0.013247862458229065, -0.03201312944293022, -0.014991416595876217, -0.016176048666238785, 0.017805764451622963, -0.016391471028327942, 0.001276461873203516, -0.016882099211215973, 0.002963259583339095, -0.07785507291555405, 0.07226970791816711, 0.027672020718455315, -0.05228529870510101, 0.014631574042141438, -0.0025043420027941465, 0.05376889556646347, 0.035581283271312714, -0.037605080753564835, 0.05446605011820793, -0.009106865152716637, 0.03669949248433113, -0.00909516029059887, 0.049256328493356705, -0.000002239666173409205, -0.0601150207221508, -0.01957322284579277, 0.041264425963163376, 0.021374134346842766, -0.009863120503723621, -0.006127181928604841, -0.016640376299619675, -0.0077311075292527676, 0.011724647134542465, 0.05564006417989731, 0.017426420003175735, -0.019379084929823875, -0.0076537346467375755, 0.007603842299431562, -0.01750960387289524, 0.04301685467362404, 0.029332254081964493, 0.020754540339112282, -0.049404509365558624, -0.020099174231290817, 0.026459485292434692, 0.0028317547403275967, 0.030215945094823837, 0.04144786298274994, -0.034334879368543625, 0.01015130989253521, 0.08460845798254013, 0.028473099693655968, 0.037923846393823624, -0.0379280187189579, -0.016754405573010445, 0.0358368419110775, 0.03454307094216347, 0.008911273442208767, 0.016451694071292877, 0.034630924463272095, -0.055294983088970184, -0.011394611559808254, 0.05037328600883484, -0.012325169518589973, 0.012572069652378559, -0.0604231134057045, -0.07152625918388367, 0.05881624296307564, -0.047173626720905304, 0.016100173816084862, 0.032794371247291565, 0.08474719524383545, 0.013503759168088436, 0.02941831946372986, 0.0034174895845353603, -0.08110041171312332, 0.06630323082208633, 0.008508655242621899, -0.005147396121174097, 0.0157458633184433, -0.005593645852059126, 0.06843510270118713, 0.01136594545096159, 0.037907764315605164, 0.011592552065849304, -0.06137580797076225, -0.08459565043449402, -0.027002744376659393, 0.004716528579592705, 0.05298254266381264, -0.02730347216129303, -0.03329314664006233, 0.07547111809253693, 0.02776733599603176, 0.011193875223398209, -0.012362548150122166, 0.042444005608558655, 0.021614588797092438, -0.09320089966058731, -0.07267789542675018, 0.018519217148423195, 0.012811924330890179, -0.061945296823978424, -0.05516896769404411, 0.008900025859475136, -0.06545127183198929, -0.05704258754849434, 0.042192019522190094, -0.0430988110601902, 0.07555801421403885, 0.035944391041994095, 0.02636418305337429, -0.031670648604631424, 0.053575269877910614, -0.04393129050731659, 0.04745651036500931, 0.02281401865184307, -0.00951881892979145, -0.01426172349601984, 0.0004119636432733387, 0.1007976159453392, 0.06846816092729568, -0.011361565440893173, -0.05918857827782631, 0.05829939618706703, 0.016023460775613785, -0.04086483269929886, -0.01159148570150137, -0.018789825960993767, -0.009063907898962498, 0.008777796290814877, -0.01873098686337471, -0.0034308868926018476, 0.0062614865601062775, -0.006951808929443359, -0.0010797327850013971, 0.06518465280532837, -0.044463299214839935, 0.049196161329746246, 0.024742186069488525, -0.033508945256471634, -0.01231777761131525, -0.0332975834608078, -0.04628166928887367, -0.025335116311907768, 0.02267898991703987, -0.012277673929929733, 0.04049215838313103, -0.027706684544682503, -0.03625182434916496, -0.0611371174454689, -0.07083458453416824, 0.0374549999833107, 0.013263028115034103, 0.04450143873691559, -0.03701319172978401, 0.04492221400141716, -0.03182470425963402, 0.030067764222621918, -0.01117742620408535, -0.03501473367214203, -0.020804766565561295, 0.013084165751934052, 0.0003464105539023876, 0.0345606692135334, 0.03442079573869705, 0.0035933267790824175, 0.023984482511878014, -0.028080584481358528, 0.014756504446268082, 0.019343681633472443, 0.007542639039456844, 0.01338453870266676, 0.0016275597736239433, -0.039402347058057785, 0.012857909314334393, 0.04048514738678932, -0.08325812965631485, 0.003531872294843197, -0.00028981329523958266, -0.07098827511072159, 0.014035661704838276, -0.05477365851402283, -0.02951960265636444, -0.023057343438267708, 0.03713788837194443, 0.023670755326747894, 0.016937656328082085, 0.0032497418578714132, 0.06357162445783615, 0.025924943387508392, -0.0033310011494904757, 0.022496772930026054, -0.010717951692640781, 0.03506363183259964, 0.00847640261054039, 0.02955637313425541, 0.047338180243968964, -0.010559136979281902, -0.009543915279209614, -0.0431160070002079, 0.008041959255933762, -0.052045341581106186, -0.27740412950515747, 0.04254360496997833, -0.032928839325904846, -0.015155169181525707, 0.022783957421779633, -0.015162431634962559, 0.0019030042458325624, -0.026428058743476868, -0.002940007019788027, -0.0016069806879386306, -0.049317266792058945, -0.028068898245692253, -0.04346808046102524, 0.018018582835793495, -0.01731615513563156, 0.027237026020884514, -0.005375990644097328, -0.05653474107384682, 0.03025807812809944, 0.0013246405869722366, -0.005146746523678303, -0.051602479070425034, -0.0037464804481714964, 0.03317873179912567, -0.0007622936391271651, 0.014377261511981487, -0.06736475229263306, 0.06466200202703476, -0.05498812720179558, -0.021402524784207344, 0.0016350735677406192, -0.026948755607008934, -0.01997784525156021, 0.026476003229618073, 0.0025540099013596773, -0.008581466972827911, 0.007151150144636631, -0.006073083262890577, 0.03046443499624729, -0.013219064101576805, -0.05386793613433838, -0.04052535071969032, -0.0012820863630622625, -0.0035315013956278563, 0.0849837213754654, -0.026074061170220375, -0.09980060160160065, -0.006661910098046064, -0.02660234645009041, 0.06872755289077759, -0.039105456322431564, -0.05749741569161415, -0.031033463776111603, 0.008507211692631245, -0.016579989343881607, 0.0135190449655056, -0.008479254320263863, 0.025735080242156982, -0.04659074917435646, -0.02181440033018589, 0.00009771896293386817, -0.02668590657413006, -0.015358630567789078, -0.04891713708639145, -0.012483358383178711, -0.036554548889398575, -0.038694385439157486, 0.014270004816353321, 0.05511443316936493, 0.07148519158363342, -0.02516670897603035, 0.03175749257206917, -0.027746116742491722, -0.11235467344522476, -0.0002810580190271139, -0.028842763975262642, -0.035226766020059586, -0.013752439059317112, -0.0051059541292488575, 0.028105031698942184, -0.03086656704545021, -0.016217652708292007, 0.021178994327783585, -0.001089407131075859, 0.010106771253049374, -0.021350668743252754, 0.017887482419610023, -0.017560111358761787, -0.0055834767408668995, 0.010769828222692013, 0.06827575713396072, -0.059903133660554886, 0.00248672254383564, -0.012093697674572468, -0.046850454062223434, 0.028465425595641136, 0.027586499229073524, 0.04253951087594032, -0.009450649842619896, 0.040220875293016434, 0.01694287545979023, -0.04253790155053139, -0.037113748490810394, -0.01630469411611557, 0.005987954325973988, -0.014178507030010223, -0.059009015560150146, 0.03240345045924187, 0.01630377024412155, 0.05267740413546562, 0.004988238215446472, -0.017110461369156837, 0.009889100678265095, -0.03982978314161301, 0.015024829655885696, -0.0029561729170382023, 0.0413287915289402, 0.003550719702616334, 0.03659093379974365, -0.0023867166601121426, -0.05520256608724594, 0.004841127432882786, 0.05825095623731613, -0.01612892374396324, -0.014358987100422382, -0.029244909062981606, 0.012859894894063473, -0.019439999014139175, 0.018875667825341225, 0.010980291292071342, -0.01285278145223856, 0.03655368834733963, 0.0647520199418068, -0.011032747104763985, 0.02423812448978424, -0.048146240413188934, -0.011553303338587284, -0.039867907762527466, 0.02470734901726246, 0.03927188366651535, -0.015303452499210835, -0.000751851184759289, -0.016301777213811874, 0.03027881681919098, 0.04034477099776268, 0.02255415916442871, -0.002246871590614319, 0.008860628120601177, 0.01106763631105423, 0.024971764534711838, 0.019027104601264, -0.00023862878151703626, -0.010098093189299107, -0.025926267728209496, -0.021866967901587486, -0.017259052023291588, 0.03352923318743706, -0.01624765247106552, -0.021415363997220993, -0.03895266354084015, 0.03221452236175537, -0.06748098880052567, -0.012029457837343216, 0.00673565873876214, -0.020947426557540894, 0.05260273814201355, 0.020446520298719406, 0.008775894530117512, 0.004991151858121157, 0.02403867244720459, 0.005345281213521957, 0.02282647043466568, -0.027883240953087807, -0.01052088662981987, -0.039528198540210724, -0.014805790036916733, 0.018492311239242554, 0.04785659909248352, 0.007602113299071789, -0.022113358601927757, 0.030278947204351425, -0.0017184971366077662, 0.013061454519629478, 0.0064027272164821625, 0.05321133881807327, 0.047512929886579514, -0.04693756252527237, 0.011007207445800304, 0.012028858996927738, -0.00807514414191246, -0.03611639142036438, 0.02533123269677162, -0.009991222061216831, 0.0022684053983539343, -0.017265325412154198, -0.06012884899973869, 0.060438092797994614, 0.015485149808228016, -0.020222432911396027, 0.019191371276974678, -0.029561331495642662, -0.01191015262156725, -0.054547812789678574, 0.07338329404592514, 0.08562958985567093, -0.0418316088616848, -0.0065776277333498, -0.017042482271790504, -0.008373500779271126, -0.01330238115042448, 0.024312810972332954, -0.06311121582984924, 0.004289987031370401, -0.014274399727582932, 0.0015785424038767815, -0.03963092714548111, -0.04612807184457779, -0.010593650862574577, 0.00006840547575848177, 0.0099676214158535, 0.027448462322354317, -0.0014401446096599102, -0.015016645193099976, -0.007560461759567261, -0.04404308646917343, 0.05371192470192909, 0.004815428983420134, 0.009063787758350372, -0.0036048355977982283, -0.010114631615579128, 0.032446812838315964, -0.04082638397812843, 0.010690753348171711, -0.01106084231287241, -0.022404493764042854, 0.011537382379174232, -0.06028134375810623, 0.008528187870979309, -0.009057380259037018, 0.06437405943870544, -0.007036516442894936, 0.019923444837331772, -0.02553199790418148, -0.014763864688575268, -0.013701871037483215, -0.02563856728374958, 0.006284704897552729, -0.011021588928997517, 0.04038836061954498, 0.05134167894721031, -0.01437077671289444, 0.005726405885070562, 0.01843154802918434, -0.043124258518218994, 0.02985578402876854, -0.040549565106630325, -0.03576607629656792, -0.01347596850246191, -0.07280267030000687, 0.03003806807100773, 0.020607175305485725, 0.03301038220524788, -0.08525211364030838, 0.05023631080985069, 0.03323977068066597, 0.009159471839666367, 0.04914359748363495, -0.011947842314839363, 0.04367842897772789, -0.01215159147977829, -0.03491806983947754, -0.0694575160741806, -0.0022785288747400045, 0.05174611136317253, -0.0350431427359581, -0.019125862047076225, 0.026317793875932693, -0.045778729021549225, 0.04528748616576195, -0.067779541015625, -0.04593118652701378, 0.04769553244113922, -0.0008633516263216734, -0.012778058648109436, -0.0059529985301196575, -0.02963940240442753, 0.043845344334840775, 0.04170018434524536, -0.03165336325764656, -0.010804208926856518, -0.0007741796434856951, 0.06472168117761612, 0.030789189040660858, 0.03893188014626503, -0.005901519674807787, -0.03858225792646408, 0.08656473457813263, 0.004424697253853083, 0.025021867826581, 0.056057337671518326, 0.004741779062896967, 0.042770177125930786, 0.015917323529720306, -0.00019591001910157502, 0.00500314449891448, 0.0268861036747694, -0.027549847960472107, -0.0562891811132431, 0.04228528216481209, -0.009010020643472672, 0.015069503337144852, -0.049477558583021164, 0.05444358289241791, 0.003990775905549526, -0.06398892402648926, -0.035984087735414505, 0.01617761142551899, -0.03587764874100685, -0.04529948532581329, -0.030433373525738716, 0.027312593534588814, -0.05451171100139618, 0.04190554842352867, 0.007068119943141937, 0.02168251946568489, 0.05173366144299507, 0.014613793231546879, -0.03578778728842735, 0.05542130768299103, 0.06809963285923004, 0.07004428654909134, 0.008262223564088345, 0.024828782305121422, 0.051803432404994965, -0.004410959780216217, -0.02502445876598358, -0.018299803137779236, -0.022522620856761932, -0.03213392570614815, -0.03194424882531166, 0.009293604642152786, 0.061032798141241074, -0.02162889577448368, 0.060189101845026016, 0.0172903910279274, 0.015172404237091541, -0.03459438309073448, 0.014530661515891552, 0.01947825215756893, 0.036162372678518295, 0.0014565286692231894, 0.052730023860931396, 0.0013913477305322886, -0.042957108467817307, -0.0014815976610407233, 0.00031997115002013743, -0.03394002467393875, 0.015305228531360626, -0.026795383542776108, 0.017074882984161377, 0.0360279455780983, 0.027828292921185493, 0.07777003198862076, -0.0386476144194603, -0.0331326425075531, 0.006094587501138449, 0.042655229568481445, -0.011846245266497135, 0.007789545692503452, -0.03337133303284645, -0.020291250199079514, -0.0008622544119134545, -0.03337801620364189, -0.007966470904648304, -0.009189008735120296, -0.02992287464439869, 0.014562579803168774, -0.014133458025753498, -0.016930153593420982, 0.03029020130634308, -0.010702117346227169, -0.027860065922141075, -0.04277798905968666, -0.04780377075076103, -0.04851047694683075, -0.05158118158578873, -0.03352535516023636, 0.01300572045147419, -0.013179377652704716, -0.017345720902085304, -0.024330617859959602, -0.01293595414608717, -0.0021241572685539722, -0.013081172481179237, -0.04308340698480606, -0.02183847315609455, 0.0026070792227983475, 0.04387374222278595, 0.01179924700409174, -0.014875746332108974, 0.0707719475030899, 0.0028433194383978844, 0.010568217374384403, -0.017534660175442696, 0.02101585641503334, 0.04563774913549423, -0.023586183786392212, -0.01052427850663662, -0.0637800469994545, 0.02094229683279991, 0.03030327707529068, 0.030113300308585167, -0.07553878426551819, -0.007083955220878124, 0.030448297038674355, -0.007704425603151321, 0.0388149619102478, -0.015140917152166367, 0.02949582226574421, -0.0428670309484005, -0.02959148958325386, -0.011181032285094261, 0.02227955125272274, 0.03686986863613129, -0.008851161226630211, 0.06586270779371262, 0.024140119552612305, -0.015457037836313248, -0.003948984667658806, -0.0024094381369650364, 0.022575093433260918, 0.035724323242902756, -0.038363490253686905, -0.023967986926436424, -0.03685000538825989, -0.06526358425617218, -0.026839766651391983, 0.01799609325826168, -0.0333746075630188, -0.04212690144777298, -0.014772388152778149, -0.01038452424108982, -0.015207490883767605, 0.016124090179800987, -0.06107861176133156, -0.012698737904429436, -0.009441128931939602, -0.03873226046562195, 0.006572084501385689, 0.03508489206433296, -0.00538075203076005, -0.015858281403779984, 0.014512943103909492, -0.012528571300208569, -0.029392721131443977, -0.0212042685598135, 0.0671507865190506, 0.02914128452539444, -0.0271676667034626, -0.006486338563263416 ]
[ -0.04262722283601761, -0.036150917410850525, -0.04720945656299591, -0.008366554044187069, 0.0724598839879036, -0.0838162899017334, -0.020372258499264717, 0.017864413559436798, -0.032902829349040985, -0.016588300466537476, -0.011103469878435135, -0.06438537687063217, 0.006873300764709711, -0.03337489813566208, 0.07378839701414108, -0.014192009344696999, 0.021509801968932152, -0.09277695417404175, 0.004461162257939577, 0.03988576680421829, -0.01419860776513815, -0.022407162934541702, -0.06332649290561676, -0.07501940429210663, -0.023671623319387436, 0.052276019006967545, 0.031831949949264526, -0.004107074346393347, -0.03468993306159973, -0.17604252696037292, 0.04115040972828865, -0.026636580005288124, -0.0032448838464915752, -0.019120842218399048, 0.01888841763138771, 0.04097216948866844, 0.03660561144351959, -0.023262862116098404, 0.05471411719918251, 0.03596225008368492, 0.04850505664944649, -0.028462156653404236, -0.06599742919206619, 0.037188395857810974, 0.008691908791661263, -0.01486610621213913, -0.008264411240816116, -0.009412189945578575, 0.05192673206329346, -0.028262147679924965, -0.04390312358736992, 0.02158953621983528, -0.02230038121342659, -0.050975143909454346, 0.02354002743959427, 0.022204231470823288, 0.03349493816494942, 0.04464412108063698, 0.02359280176460743, 0.00539037398993969, 0.008442920632660389, -0.013634842820465565, -0.1427564173936844, 0.11726952344179153, 0.012065568938851357, 0.03587302938103676, -0.06066387519240379, 0.032472603023052216, -0.000826475559733808, 0.033078424632549286, -0.009376981295645237, -0.02858046628534794, -0.05129418522119522, 0.06678202748298645, -0.0029868141282349825, -0.03342210873961449, 0.0045731463469564915, 0.04070918262004852, 0.016140764579176903, -0.008299303241074085, -0.015269821509718895, 0.01534254476428032, -0.019564587622880936, -0.008714296855032444, -0.046109069138765335, 0.0006107570952735841, -0.024201318621635437, 0.06984630227088928, 0.006566530559211969, -0.0005722453934140503, 0.010264619253575802, -0.02091214433312416, 0.011674268171191216, 0.017937013879418373, -0.043072499334812164, 0.012041346170008183, 0.01771513931453228, -0.004226491320878267, -0.04443459212779999, 0.36814409494400024, -0.009199013002216816, 0.005719248671084642, 0.029474636539816856, 0.005771187134087086, 0.015775172039866447, 0.011773101054131985, -0.044985003769397736, -0.014859688468277454, 0.04701545462012291, -0.011410125531256199, 0.0315418541431427, -0.0247978363186121, 0.11727357655763626, -0.029858369380235672, 0.015312951989471912, 0.011957359500229359, -0.04610541835427284, -0.0021805891301482916, -0.031531091779470444, 0.046161409467458725, -0.02351929061114788, 0.013357622548937798, 0.03785604238510132, 0.0528346411883831, 0.02981431409716606, 0.01793690398335457, 0.03221699967980385, 0.03486279025673866, 0.014429382979869843, 0.019957853481173515, 0.04541618749499321, -0.03663565218448639, -0.06194880232214928, 0.0041444990783929825, -0.009927664883434772, -0.001025520614348352, 0.046209223568439484, -0.005380529444664717, 0.02491711638867855, 0.005916576832532883, -0.04086054116487503, -0.057942405343055725, 0.05671317130327225, -0.033786166459321976, -0.014856817200779915, 0.09958214312791824, 0.034407228231430054, -0.02763594500720501, -0.04229186847805977, -0.055783458054065704, -0.03128153830766678, 0.012550066225230694, -0.0004437986935954541, -0.05761624127626419, -0.011524312198162079, 0.025379059836268425, 0.0859723910689354, -0.011618590913712978, -0.051072198897600174, 0.005772178992629051, -0.029079845175147057, -0.05418781563639641, -0.02874728851020336, -0.016644511371850967, 0.04765337333083153, -0.16131626069545746, -0.01671925187110901, 0.009053396061062813, -0.013840773142874241, -0.031153498217463493, 0.0026084361597895622, 0.01730342023074627, -0.03481427580118179, -0.004304667469114065, 0.037750691175460815, -0.05725659430027008, 0.009960846044123173, 0.03515595570206642, 0.06276705116033554, 0.014362327754497528, -0.017473051324486732, 0.01885552704334259, -0.01890193670988083, -0.012885200791060925, -0.028202256187796593, -0.06610308587551117, -0.051683735102415085, -0.0034786479081958532, -0.03026665188372135, -0.028444215655326843, -0.0439278744161129, -0.036849044263362885, -0.06764459609985352, 0.09321573376655579, 0.019256222993135452, -0.032649870961904526, 0.026328688487410545, -0.008224896155297756, -0.00908595509827137, -0.029876433312892914, 0.0297770444303751, 0.037847768515348434, -0.001759735052473843, 0.0444340705871582, -0.07062648981809616, 0.057500679045915604, 0.0034014841075986624, -0.017300933599472046, 0.02414783649146557, 0.03086824342608452, -0.008442404679954052, 0.0274807196110487, -0.0004971084999851882, 0.02967139519751072, -0.019823944196105003, -0.04060569778084755, -0.006853870116174221, 0.008672857657074928, 0.030923813581466675, 0.050136156380176544, -0.020844103768467903, -0.033885467797517776, -0.027462827041745186, -0.3961348235607147, -0.03736329451203346, -0.049332261085510254, 0.011745245195925236, 0.006672608200460672, -0.0420001856982708, 0.006933789234608412, -0.023145662620663643, -0.019916679710149765, 0.013763208873569965, 0.10726230591535568, -0.03172038495540619, 0.06162836402654648, -0.05998416617512703, -0.006665464490652084, 0.03190310671925545, -0.015121899545192719, -0.020015345886349678, -0.021412046626210213, 0.012928374111652374, -0.006600965280085802, -0.044621922075748444, -0.040263138711452484, -0.013522903434932232, 0.010159128345549107, -0.01749804988503456, 0.1360030323266983, -0.0027170812245458364, 0.047771356999874115, -0.06651080399751663, 0.048065513372421265, 0.022220049053430557, 0.0011037614895030856, -0.11351383477449417, -0.016125494614243507, -0.028596406802535057, 0.031616225838661194, 0.03399789333343506, -0.010767496190965176, -0.002048886613920331, -0.051563043147325516, 0.04818790778517723, -0.013840994797647, -0.05952254310250282, -0.031014718115329742, 0.019639836624264717, 0.0037794294767081738, 0.007450921926647425, -0.03946539759635925, 0.06104316934943199, 0.012403098866343498, 0.04379856213927269, 0.023047558963298798, 0.01226089708507061, 0.021895186975598335, -0.011506790295243263, -0.057830408215522766, -0.015155646950006485, -0.004343558102846146, 0.012388483621180058, 0.018261538818478584, 0.06784433871507645, 0.022776642814278603, -0.06840977817773819, -0.007349137682467699, 0.025726109743118286, 0.014400760643184185, -0.01377295795828104, 0.06711290776729584, -0.0004478810587897897, -0.022469231858849525, 0.09507709741592407, 0.011651383712887764, 0.04062303528189659, 0.024079808965325356, 0.03611673414707184, -0.0039137862622737885, 0.028120925650000572, 0.041397955268621445, -0.018243886530399323, 0.05615713819861412, 0.002734482754021883, 0.05936962366104126, -0.015682298690080643, -0.0046478575095534325, 0.05211954936385155, 0.025378594174981117, -0.005198120605200529, 0.05207662656903267, 0.017881061881780624, -0.038705989718437195, 0.0005607820930890739, -0.012322074733674526, -0.042276591062545776, 0.061298005282878876, 0.032908130437135696, -0.27265530824661255, 0.04656482860445976, 0.03018767759203911, 0.042732976377010345, 0.009863906539976597, -0.003338414244353771, 0.04350826516747475, -0.04809245839715004, 0.0174542423337698, 0.023434996604919434, -0.0014172001974657178, 0.014890077523887157, 0.0176925677806139, 0.008779486641287804, 0.017999570816755295, -0.010393049567937851, 0.04394795745611191, -0.0006825446034781635, -0.006810824386775494, -0.025558127090334892, 0.017317695543169975, 0.004534459672868252, 0.14145857095718384, 0.034138571470975876, -0.0009914747206494212, 0.04624699428677559, -0.031378861516714096, 0.014417764730751514, 0.03655543923377991, 0.03912004455924034, -0.007122620474547148, -0.02266964688897133, 0.04184279963374138, -0.039850328117609024, 0.04454872012138367, -0.04535049945116043, -0.024963418021798134, -0.0005901296972297132, 0.05145673453807831, -0.06294851005077362, -0.03418394550681114, 0.021968873217701912, -0.06702421605587006, 0.027087071910500526, 0.056340042501688004, -0.029879720881581306, -0.009952121414244175, -0.048580534756183624, -0.02198684588074684, 0.0010296688415110111, -0.017468508332967758, -0.03854849189519882, -0.007493545766919851, -0.018653586506843567, 0.024668803438544273, 0.0851803794503212, 0.02438369207084179, -0.02106795459985733, 0.010977068915963173, 0.04106061905622482, -0.009264055639505386, -0.05683832988142967, 0.11122158169746399, 0.03137611597776413, 0.02103031426668167 ]
[ 0.02110426314175129, -0.007244694512337446, -0.03119790181517601, 0.022578541189432144, -0.004618803970515728, -0.05033533647656441, 0.01485176756978035, 0.025352414697408676, -0.016102390363812447, -0.020185381174087524, 0.016715925186872482, 0.03041943535208702, 0.019716402515769005, 0.012486187741160393, -0.024520738050341606, -0.036621518433094025, 0.01622874103486538, -0.005169969517737627, 0.031113039702177048, 0.01819482445716858, -0.06037628650665283, 0.018187232315540314, 0.03961493819952011, 0.006023590452969074, -0.01912541314959526, -0.02384066767990589, -0.024707917124032974, 0.00784485973417759, 0.011961140669882298, -0.14496061205863953, 0.015044705010950565, 0.0032115133944898844, 0.018525054678320885, -0.013388711959123611, -0.014854754321277142, 0.015133533626794815, 0.019484983757138252, -0.04252280667424202, -0.04730857536196709, -0.017022451385855675, 0.05127067491412163, -0.051137525588274, -0.007347512990236282, 0.009603253565728664, -0.026183443143963814, -0.04758378863334656, -0.04650713503360748, -0.004910886753350496, 0.006973187904804945, 0.018940292298793793, -0.0451304093003273, 0.009540334343910217, 0.015174776315689087, 0.012837167829275131, 0.034590184688568115, -0.0024084937758743763, -0.006159838289022446, 0.011071544140577316, 0.01892765611410141, 0.013783231377601624, 0.025210855528712273, 0.023604311048984528, -0.0035688343923538923, -0.0436735600233078, 0.022157009690999985, -0.032473862171173096, -0.010193031281232834, -0.0009638795745559037, 0.03391784429550171, 0.001500478247180581, 0.002190917730331421, 0.019846726208925247, -0.051111504435539246, -0.0592985600233078, -0.03418169915676117, 0.01829749159514904, -0.00038241237052716315, 0.008000136353075504, -0.018464388325810432, 0.020420130342245102, -0.04156766086816788, 0.0005099288537167013, -0.004438965115696192, 0.003789670765399933, -0.015535821206867695, -0.008959346450865269, -0.007144568488001823, 0.04527055472135544, -0.017222873866558075, -0.06708589941263199, -0.015638194978237152, -0.004123188089579344, -0.020621081814169884, -0.006730945315212011, -0.06449853628873825, -0.02714514546096325, -0.01760239712893963, -0.023858925327658653, -0.04479273781180382, 0.8258527517318726, 0.02257930487394333, 0.022511718794703484, 0.014425499364733696, -0.009134914726018906, 0.03338326886296272, -0.013926437124609947, -0.007976747117936611, 0.019089438021183014, -0.03077925741672516, -0.02660844847559929, 0.008093316107988358, 0.010322324931621552, 0.02248239703476429, 0.03825077414512634, 0.02198733575642109, 0.036536168307065964, -0.02253446727991104, 0.004693529102951288, -0.006429494358599186, 0.04094356298446655, 0.013899460434913635, -0.004377495497465134, 0.014818948693573475, -0.004931489005684853, 0.006332030054181814, -0.12704944610595703, -0.0010885059600695968, -6.661056288369574e-33, 0.026348954066634178, -0.07095389068126678, 0.0062482114881277084, -0.03410951420664787, 0.045236844569444656, 0.013015060685575008, 0.0031760716810822487, 0.008144640363752842, -0.013373122550547123, -0.012599379755556583, 0.016236551105976105, -0.011836593970656395, 0.003117197658866644, -0.007010632194578648, 0.03206833824515343, -0.01846264861524105, -0.030641112476587296, 0.059113677591085434, -0.000779885274823755, 0.028722338378429413, 0.01903901807963848, -0.00027536306879483163, -0.03903083875775337, 0.0063162874430418015, 0.05057559907436371, 0.020803231745958328, -0.0012514337431639433, -0.0013053370639681816, 0.00046142752398736775, -0.03402283415198326, -0.015297061763703823, -0.0002950236084870994, -0.005988345481455326, -0.03774787485599518, 0.021815596148371696, -0.0707913264632225, 0.0006378266261890531, 0.007364004384726286, -0.06882228702306747, -0.005895936395972967, -0.006654849275946617, -0.03082936443388462, -0.018307195976376534, -0.007981657050549984, -0.04775188863277435, -0.0053816852159798145, -0.020160391926765442, 0.04651235416531563, 0.013584354892373085, 0.026180127635598183, 0.019511155784130096, -0.0033141416497528553, 0.0007954076281748712, 0.000998953590169549, 0.004303202498704195, -0.01277236733585596, -0.01568748988211155, -0.0012823664583265781, -0.006507059559226036, -0.06150658428668976, -0.04510517790913582, -0.02822161093354225, -0.029911024495959282, 0.004035554826259613, -0.007579815108329058, 0.005270606838166714, 0.019793542101979256, 0.04417526721954346, -0.0058846850879490376, 0.03997480124235153, -0.04188323765993118, 0.010512412525713444, -0.03076254390180111, -0.009342164732515812, 0.010653474368155003, -0.021190494298934937, 0.011411082930862904, 0.01546488143503666, 0.004031607415527105, 0.05849733203649521, 0.0037354077212512493, 0.021701065823435783, -0.03353609889745712, 0.004021468572318554, -0.031881604343652725, -0.00437454879283905, 0.03049137070775032, 0.01428708340972662, -0.013027488254010677, -0.004333239048719406, 0.014209410175681114, 0.06889315694570541, -0.008057812228798866, -0.05501876026391983, -0.04026779159903526, 6.848076704901431e-33, -0.01376259420067072, -0.003659625072032213, -0.021546093747019768, 0.01956063136458397, 0.031559016555547714, -0.03564300760626793, 0.039445433765649796, -0.001406185096129775, 0.006137572694569826, -0.006271147634834051, -0.035036876797676086, 0.021255509927868843, -0.008847386576235294, 0.02130953036248684, 0.05186878889799118, 0.027140608057379723, -0.006980306934565306, -0.0017879661172628403, 0.048323847353458405, 0.006992232985794544, -0.014240267686545849, 0.0026463482063263655, 0.025743847712874413, -0.0057719009928405285, -0.015081561170518398, 0.022783417254686356, 0.0005623005563393235, -0.008745667524635792, -0.045043833553791046, -0.00015223886293824762, 0.003706427523866296, -0.007423293776810169, 0.004263058304786682, 0.011395319364964962, -0.025874106213450432, 0.018977178260684013, 0.0006304456037469208, 0.0034354354720562696, 0.0027354212943464518, -0.023383168503642082, 0.04284793511033058, 0.01683012954890728, 0.023304753005504608, 0.033180613070726395, -0.03752444311976433, -0.0026556861121207476, 0.012804380618035793, -0.01352078840136528, -0.0036850646138191223, 0.034461360424757004, -0.019128059968352318, 0.02311999909579754, 0.040585849434137344, 0.03537141904234886, 0.000734386732801795, -0.013897106051445007, -0.006207600235939026, 0.0020539334509521723, -0.0496201254427433, 0.007476987782865763, -0.0018526037456467748, -0.028313348069787025, -0.002007606904953718, 0.03628506138920784, -0.02478042058646679, -0.019324008375406265, -0.045706093311309814, 0.019706077873706818, -0.015896156430244446, -0.03662828728556633, 0.02582690306007862, -0.006899431813508272, -0.003953072242438793, 0.08419214189052582, 0.01069220993667841, -0.02085191383957863, -0.03796350583434105, 0.016739871352910995, 0.016897089779376984, 0.019228968769311905, 0.006821192800998688, 0.035802848637104034, -0.0011340357596054673, -0.047934915870428085, 0.025395985692739487, -0.010113929398357868, -0.03737303614616394, 0.00416418444365263, 0.030462680384516716, 0.007066270802170038, -0.010500325821340084, -0.0033033841755241156, -0.04124564677476883, -0.010244167409837246, 0.02755936235189438, -1.2423509332393223e-8, 0.002851807978004217, 0.025175269693136215, 0.00039606622885912657, 0.04694795981049538, 0.04701317474246025, 0.011792427860200405, -0.0472462996840477, 0.026583395898342133, -0.027109703049063683, 0.03230590745806694, 0.033645134419202805, -0.005651132203638554, -0.015701349824666977, 0.019316213205456734, 0.01866118423640728, -0.017048299312591553, 0.018535858020186424, -0.016707953065633774, 0.029521672055125237, -0.008449257351458073, 0.017984695732593536, 0.029897447675466537, 0.038687992841005325, -0.0190994031727314, -0.049086250364780426, 0.023445721715688705, 0.05228650942444801, -0.0514298751950264, -0.02837943099439144, -0.013995620422065258, 0.024240106344223022, -0.019748259335756302, -0.03105863370001316, 0.02095678076148033, -0.02007616125047207, -0.01435123197734356, 0.007283627055585384, 0.03745894506573677, 0.00858844630420208, 0.023858413100242615, -0.043689001351594925, -0.014740623533725739, -0.03423396870493889, -0.04926823452115059, -0.029045630246400833, -0.022186866030097008, -0.02182846888899803, 0.05496789515018463, 0.003015580354258418, 0.011936802417039871, 0.030678804963827133, -0.027248116210103035, 0.056026674807071686, -0.00073911965591833, 0.08515656739473343, 0.02314753085374832, 0.03898223862051964, -0.015473821200430393, 0.01700008474290371, 0.022916801273822784, 0.023674393072724342, 0.06883879750967026, 0.00018855031521525234, -0.008144921623170376 ]
pinot-broker-resource-missing
https://markhneedham.com/blog/2021/06/21/pinot-broker-resource-missing
false
2021-06-22 00:44:37
Apache Pinot: Analysing England's Covid case data
[ "pinot" ]
[ "Pinot" ]
As I mentioned https://www.markhneedham.com/blog/2021/06/21/pinot-broker-resource-missing/[in my last blog post^], I've been playing around with Apache Pinot, a data store that's optimised for user facing analytical workloads. image::{{<siteurl>}}/uploads/2021/06/pinot-covid-banner.png[] My understanding is that Pinot is a really good fit for datasets where: . The query patterns are of an analytical nature e.g. slicing and dicing on any columns. . We're ingesting the data in real time from a stream of events. Kenny Bastani has some cool blog posts showing how to do this with https://medium.com/apache-pinot-developer-blog/analyzing-wikipedia-in-real-time-with-apache-kafka-and-pinot-4b4e5e36936b[Wikipedia^] and https://medium.com/apache-pinot-developer-blog/using-apache-pinot-and-kafka-to-analyze-github-events-93cdcb57d5f7[GitHub^], and Jackie Jiang showed how to https://www.youtube.com/watch?v=TQoXSoKHLp8[analyse Meetup's RSVP stream^] in last week's Pinot meeetup. In this blog post I'm going to show how we can use Pinot to analyse Coronavirus case data in England that I https://coronavirus.data.gov.uk/details/download[downloaded from the UK's Covid dashboard^]. This dataset is static, so it would fit in the first category of datasets. The code used in this post is all included in the https://github.com/mneedham/pinot-covid-cases[github.com/mneedham/pinot-covid-cases] GitHub repository. == Setup We're going to analyse the dataset using Pinot and its Python driver via a Jupyter notebook. The following Docker Compose config will spin up local instances of Pinot and Jupyter: .docker-compose.yml [source,yaml] ---- version: '3.7' services: pinot: image: apachepinot/pinot:0.7.1 command: "QuickStart -type batch" container_name: "pinot-covid-cases" volumes: - ./config:/config ports: - "9000:9000" - "8000:8000" jupyter: container_name: "jupyter-covid-cases" image: jupyter/scipy-notebook:${JUPYTER_VERSION:-latest} volumes: - ./notebooks:/home/jovyan ports: - "8888:8888" ---- We've mounted a directory at `/covid` on the Pinot container. This directory contains the CSV file that we want to import into Pinot as well as some spec files that we'll describe later on in this blog post. The contents of the directory are shown below: .Contents of /covid [source, bash] ---- tree config/covid/cases/ config/covid/cases/ ├── job-spec.yml ├── ltla_2021-06-21.csv ├── schema.json └── table.json 0 directories, 4 files ---- We can launch the containers by running the following command: [source, bash] ---- docker-compose up ---- And then we're looking for the following lines of output: .Output [source, output] ---- ... jupyter-covid-cases | To access the notebook, open this file in a browser: jupyter-covid-cases | file:///home/jovyan/.local/share/jupyter/runtime/nbserver-7-open.html jupyter-covid-cases | Or copy and paste one of these URLs: jupyter-covid-cases | http://b3f5460bd961:8888/?token=753baf80a0ac8236a35d12fd0426c85cf476765959513805 jupyter-covid-cases | or http://127.0.0.1:8888/?token=753baf80a0ac8236a35d12fd0426c85cf476765959513805 .... pinot-covid-cases | You can always go to http://localhost:9000 to play around in the query console ---- == Dataset Now that we're got the infrastructure up and running let's have a look at the dataset. Below is a sample of the first rows of the CSV file: .Covid cases [source, csv] ---- areaCode,areaName,areaType,date,age,cases,rollingSum,rollingRate E06000003,Redcar and Cleveland,ltla,2021-06-16,00_04,0,1,14.1 E06000003,Redcar and Cleveland,ltla,2021-06-16,00_59,15,64,65.9 E06000003,Redcar and Cleveland,ltla,2021-06-16,05_09,0,0,0.0 E06000003,Redcar and Cleveland,ltla,2021-06-16,10_14,1,3,38.1 E06000003,Redcar and Cleveland,ltla,2021-06-16,15_19,1,6,85.6 E06000003,Redcar and Cleveland,ltla,2021-06-16,20_24,2,12,167.6 E06000003,Redcar and Cleveland,ltla,2021-06-16,25_29,2,12,145.4 E06000003,Redcar and Cleveland,ltla,2021-06-16,30_34,2,3,36.6 E06000003,Redcar and Cleveland,ltla,2021-06-16,35_39,2,7,92.1 ---- For each area we have the number of cases per day for each age group. Before we import this CSV file into Pinot we need to decide which fields we're going to import and the type of each field. Pinot has https://docs.pinot.apache.org/configuration-reference/schema[three field types^]: * Dimension - Attributes about the data. We will split the data on these columns and they'll be used in the selection, filter, and group-by parts of the query. * Date Time - Time stamp for the data. We will filter or group by these columns. * Metric - Measurements. We will aggregate by these columns. We'll map our fields as shown below: [options="header"] |=== | Dimension | Date Time | Metric | `areaName`, `areaCode`, `age` | `date` | `cases` |=== == Create Table Now we're going to create a Pinot table to store the data from our CSV file. First, we need to create a https://docs.pinot.apache.org/configuration-reference/schema[schema config^], as shown below: .schema.json [source,json] ---- { "schemaName": "cases", "dimensionFieldSpecs": [ { "name": "areaCode", "dataType": "STRING" }, { "name": "areaName", "dataType": "STRING" }, { "name": "age", "dataType": "STRING" } ], "metricFieldSpecs": [ { "name": "cases", "dataType": "INT" } ], "dateTimeFieldSpecs": [{ "name": "date", "dataType": "STRING", "format" : "1:DAYS:SIMPLE_DATE_FORMAT:yyyy-MM-dd", "granularity": "1:DAYS" }] } ---- You can find a list of https://docs.pinot.apache.org/basics/components/schema#data-types[supported data types^] in the Pinot documentation. Since Pinot doesn't have a `DATETIME` type, we need to provide a string or number and indicate its format so that Pinot can convert it into an appropriate format when applying operations against that field. Once we've created the schema config, next up we need to create a https://docs.pinot.apache.org/configuration-reference/table[table config^]. .table.json [source,json] ---- { "tableName": "cases", "tableType": "OFFLINE", "segmentsConfig": { "replication": 1, "timeColumnName": "date", "timeType": "DAYS", "retentionTimeUnit": "DAYS", "retentionTimeValue": 365 }, "tenants": { "broker":"DefaultTenant", "server":"DefaultTenant" }, "tableIndexConfig": { "loadMode": "MMAP" }, "ingestionConfig": { "batchIngestionConfig": { "segmentIngestionType": "APPEND", "segmentIngestionFrequency": "DAILY" } }, "metadata": {} } ---- The table type can be either `OFFLINE` (for batch ingestion of data) or `REALTIME` (for streamed ingestion of data). [source, bash] ---- docker exec -it pinot-covid-cases bin/pinot-admin.sh AddTable \ -tableConfigFile /config/covid/cases/table.json \ -schemaFile /config/covid/cases/schema.json -exec ---- .Output [source,text] ---- Executing command: AddTable -tableConfigFile /config/covid/cases/table.json -schemaFile /config/covid/cases/schema.json -controllerProtocol http -controllerHost 192.168.96.2 -controllerPort 9000 -exec Sending request: http://192.168.96.2:9000/schemas to controller: a03d8fd1626e, version: Unknown {"status":"Table cases_OFFLINE succesfully added"} ---- The message indicates that a table with the name `cases_OFFLINE` has been created, but we will be able to query it using the `cases` name. == Import CSV file Now that we've created our table it's time to import our CSV file. To do that we'll need to create an ingestion job spec. An ingestion job spec for our Covid cases CSV file is shown below: .job-spec.yml [source,yaml] ---- executionFrameworkSpec: name: 'standalone' segmentGenerationJobRunnerClassName: 'org.apache.pinot.plugin.ingestion.batch.standalone.SegmentGenerationJobRunner' segmentTarPushJobRunnerClassName: 'org.apache.pinot.plugin.ingestion.batch.standalone.SegmentTarPushJobRunner' segmentUriPushJobRunnerClassName: 'org.apache.pinot.plugin.ingestion.batch.standalone.SegmentUriPushJobRunner' jobType: SegmentCreationAndTarPush inputDirURI: '/config/covid/cases' includeFileNamePattern: 'glob:**/*.csv' outputDirURI: '/opt/pinot/data/cases/segments/' overwriteOutput: true pinotFSSpecs: - scheme: file className: org.apache.pinot.spi.filesystem.LocalPinotFS recordReaderSpec: dataFormat: 'csv' className: 'org.apache.pinot.plugin.inputformat.csv.CSVRecordReader' configClassName: 'org.apache.pinot.plugin.inputformat.csv.CSVRecordReaderConfig' tableSpec: tableName: 'cases' pinotClusterSpecs: - controllerURI: 'http://localhost:9000' ---- `tableSpec.tableName` should match the table name that we used in the table spec and `inputDirURI` refers to the directory that we mounted when launching the Pinot Docker container. We can run the ingestion job by running the following command: [source,bash] ---- docker exec -it pinot-covid-cases bin/pinot-admin.sh LaunchDataIngestionJob \ -jobSpecFile /config/covid/cases/job-spec.yml ---- .Output [source,text] ---- Start pushing segments: [/opt/pinot/data/cases/segments/cases_OFFLINE_2020-01-30_2021-06-16_0.tar.gz]... to locations: [org.apache.pinot.spi.ingestion.batch.spec.PinotClusterSpec@7c214cc0] for table cases Pushing segment: cases_OFFLINE_2020-01-30_2021-06-16_0 to location: http://localhost:9000 for table cases Sending request: http://localhost:9000/v2/segments?tableName=cases to controller: a03d8fd1626e, version: Unknown Response for pushing table cases segment cases_OFFLINE_2020-01-30_2021-06-16_0 to location http://localhost:9000 - 200: {"status":"Successfully uploaded segment: cases_OFFLINE_2020-01-30_2021-06-16_0 of table: cases"} ---- == Querying Pinot We're going to query Pinot via a Jupyter notebook, which is available at http://localhost:8888/notebooks/Explore.ipynb if you're playing along. You can also find the notebook at https://github.com/mneedham/pinot-covid-cases/blob/main/notebooks/Explore.ipynb[github.com/mneedham/pinot-covid-cases/blob/main/notebooks/Explore.ipynb^]. First we need to install the Pinot Python driver: [source, bash] ---- pip install pinotdb ---- We're going to visualise the results of our queries using matplotlib, so let's import that library and pinotdb: [source, python] ---- from pinotdb import connect import pandas as pd pd.options.plotting.backend = "matplotlib" import matplotlib.pyplot as plt plt.style.use('fivethirtyeight') ---- Next we'll create a connection to the database and run a query that counts the number of rows to make sure that everything's working: [source, python] ---- conn = connect(host='pinot-covid-cases', port=8000, path='/query/sql', scheme='http') curs = conn.cursor() curs.execute(""" SELECT count(*) FROM cases """) for row in curs: print(row) ---- .Output [source, text] ---- [3234594] ---- So far so good! Now let's write some more Pinoty (I'm sure that's not a word!) queries. First up, which areas have had the most cases: [source, python] ---- curs.execute(""" SELECT areaName, sum(cases) AS totalCases FROM cases GROUP BY areaName ORDER BY totalCases DESC LIMIT 10 """) df_by_area = pd.DataFrame(curs, columns=["areaName", "numberOfCases"]) df_by_area ---- .Areas with the most Covid cases [format="csv", options="header"] |=== include::content/2021/06/22/data/top_areas.csv[] |=== We can then create a matplotlib visualisation of that data using the code below: [source, python] ---- ax = df_by_area.plot( kind="bar", x="areaName", y="numberOfCases", legend=None, figsize=(10, 5) ) ax.set(xlabel="Area Name", ylabel="Number of cases") ax ---- .Top areas for Coronavirus cases image::{{<siteurl>}}/uploads/2021/06/top_areas.png[] It's a bit tricky to interpret the results of this query because it's not really telling us that the most cases have been in the midlands and north of England. Rather the break down of the local areas in that part of the country doesn't seem to be as granular as in London, for example. Talking of London, for our next query we'll filter the data to only return rows for the `areaName` of `Sutton`, and return the total number of cases by age group: [source, python] ---- area_name="Sutton" curs.execute(f""" SELECT age, sum(cases) as totalCases from cases WHERE areaName = '{area_name}' GROUP BY age ORDER BY totalCases DESC limit 50 """) df_by_area = pd.DataFrame(curs, columns=["age", "numberOfCases"]) df_by_area ax = df_by_area.plot( kind="bar", x="age", y="numberOfCases", legend=None, figsize=(10, 5) ) ax.set(xlabel="Age Group", ylabel="Number of cases") ax ---- .Coronavirus cases by age group in Sutton image::{{<siteurl>}}/uploads/2021/06/cases_by_age_group_sutton.png[] From these results we can see that the number of cases are being double booked - once as a fine grained age range (e.g. 35-39 or 80-84) and once as a coarse grained age range (0-59 or 60+). Let's now have a look at the number of cases in Sutton going back to March 2020 excluding the coarse grained age groups: [source, python] ---- area_name="Sutton" curs.execute(f""" SELECT "date", sum(cases) AS totalCases FROM cases WHERE areaName = '{area_name}' AND age not in ('00_59', '60+') GROUP BY "date" ORDER BY "date" LIMIT 1000 """) df_by_area = pd.DataFrame(curs, columns=["date", "numberOfCases"]) ax = df_by_area.plot( kind="line", x="date", y="numberOfCases", legend=None, figsize=(10, 5), linewidth=1 ) ax.set(xlabel="Area Name", ylabel="Number of cases") ax ---- .Coronavirus cases per day in Sutton image::{{<siteurl>}}/uploads/2021/06/cases_in_sutton.png[] The most cases happened at the end of December 2020/beginning of January 2020, with the peak on 29th December. == In Summary I appreciate that we've only brushed the surface of what Pinot can do in this blog post, but I had to start somewhere and it's been a fun tool to play with. I think my next dataset needs to have more columns per row and preferably have more than one metrics column. I also need to learn more about indexing and in particular the https://docs.pinot.apache.org/basics/indexing/star-tree-index[Star-Tree Index^] that https://www.startree.ai/[the company behind Pinot^] is named after. I should also say that I found the https://communityinviter.com/apps/apache-pinot/apache-pinot[Pinot Community Slack^] really helpful for getting up to speed. Special thanks to https://twitter.com/nehapawar18[Neha Pawar^] and https://www.linkedin.com/in/mayankshriv/[Mayank Shrivastava^] for answering my questions!
In this post we'll learn how to analyse data on the number of Coronavirus cases in England by date, area, and age group.
uploads/2021/06/pinot-covid-banner.png
[ 0.01390166487544775, -0.013362335972487926, 0.013420354574918747, 0.02958127297461033, 0.07244395464658737, 0.0038348312955349684, 0.02289540320634842, 0.05803824961185455, 0.0069966246373951435, -0.02734205685555935, -0.018539611250162125, -0.02646571211516857, -0.06708623468875885, 0.03149830549955368, 0.00032061932142823935, 0.08729156106710434, 0.07095042616128922, 0.005797980818897486, 0.051800284534692764, -0.005721151363104582, 0.029368678107857704, 0.03482125326991081, 0.01992482878267765, 0.05653052031993866, 0.009255008772015572, -0.011125876568257809, 0.0004094656032975763, 0.02344621531665325, -0.04005333036184311, -0.021380996331572533, 0.030559103935956955, 0.02783355489373207, 0.017028115689754486, -0.00007837572047719732, 0.018493138253688812, 0.024610528722405434, -0.0213641244918108, 0.033154312521219254, -0.0012892087688669562, 0.02930682897567749, -0.09978891164064407, 0.02474706992506981, 0.007119196932762861, 0.020508520305156708, -0.020669687539339066, 0.00885705929249525, -0.035565342754125595, 0.02666105143725872, 0.01509556919336319, 0.008696834556758404, -0.05460367724299431, 0.0209366288036108, -0.013973472639918327, 0.036036740988492966, -0.012595683336257935, 0.041642624884843826, -0.009269077330827713, -0.05293085426092148, 0.0286819227039814, -0.04308081045746803, 0.0022899277973920107, -0.007197118364274502, 0.009253457188606262, -0.005255505442619324, 0.010971779935061932, -0.021968934684991837, -0.0029449304565787315, 0.04858401417732239, -0.032728731632232666, -0.000715196190867573, 0.014948774129152298, 0.012318029999732971, -0.015634698793292046, -0.011673328466713428, 0.017907222732901573, -0.039361800998449326, -0.027109265327453613, 0.06303999572992325, 0.023823389783501625, 0.02227095328271389, -0.02806711196899414, -0.02552860416471958, -0.0051746368408203125, 0.03599213808774948, -0.014298245310783386, -0.05113472789525986, -0.016504744067788124, -0.01992453821003437, -0.07758644223213196, 0.09017539024353027, 0.0028060374315828085, -0.018914736807346344, 0.04856456071138382, 0.009195425547659397, -0.018125295639038086, 0.03551137447357178, 0.04143553227186203, -0.027638928964734077, -0.015021434053778648, -0.04401592165231705, -0.0384695790708065, -0.01576477289199829, 0.01514401938766241, 0.04049982503056526, -0.07197419553995132, -0.031258225440979004, -0.013596637174487114, 0.0035202319268137217, -0.0034306927118450403, 0.015154989436268806, -0.016301486641168594, 0.00784661527723074, -0.016113661229610443, 0.005340915638953447, -0.09705772995948792, 0.08421192318201065, 0.03175705298781395, -0.04783451557159424, 0.006811908446252346, 0.0030417884700000286, 0.06962233781814575, 0.027310749515891075, -0.021716516464948654, 0.07336416095495224, 0.024539737030863762, 0.019261280074715614, -0.01510136853903532, 0.023223843425512314, 0.008664499968290329, -0.05226590484380722, -0.003955044783651829, 0.047027360647916794, -0.015493378043174744, -0.026909515261650085, 0.006739855743944645, -0.03363876789808273, 0.009752725251019001, 0.0015191289130598307, 0.04461478814482689, 0.031922128051519394, -0.010787046514451504, -0.03788222745060921, 0.015332461334764957, 0.018280044198036194, 0.0547698438167572, 0.03215537592768669, -0.011057564988732338, -0.04604693874716759, -0.025787867605686188, -0.0055803474970161915, 0.007961301133036613, 0.03077974170446396, 0.040833692997694016, -0.03532039001584053, 0.01891503855586052, 0.07863576710224152, 0.029226407408714294, 0.019415592774748802, -0.00023551032063551247, 0.0003092243568971753, 0.06587672233581543, 0.045442044734954834, 0.041620850563049316, 0.01184542290866375, 0.01156069990247488, -0.028585437685251236, -0.002422095276415348, 0.06488007307052612, -0.019965216517448425, 0.009889459237456322, -0.062360070645809174, -0.03916780278086662, 0.07292743027210236, -0.05331749469041824, 0.003959736321121454, 0.06347422301769257, 0.07065840065479279, 0.017384324222803116, 0.038903288543224335, 0.009445111267268658, -0.08604360371828079, 0.07348401099443436, 0.03456208482384682, -0.010552767664194107, 0.01424119807779789, -0.029901862144470215, 0.07041744887828827, 0.015845462679862976, 0.040565501898527145, 0.03835703432559967, -0.05908984690904617, -0.07750725746154785, -0.01470958162099123, 0.005609819199889898, 0.0466555580496788, -0.02761412411928177, 0.023279692977666855, 0.08074476569890976, 0.015452190302312374, 0.01661951094865799, -0.022999735549092293, 0.03427997976541519, 0.021512379869818687, -0.05975424125790596, -0.06269575655460358, 0.03715655580163002, 0.029923686757683754, -0.061588604003190994, -0.0380781851708889, 0.01074858196079731, -0.031530771404504776, -0.0335521399974823, 0.04674597457051277, -0.04385336861014366, 0.052714668214321136, 0.03224097564816475, 0.05917416140437126, -0.013584168627858162, 0.03964315727353096, -0.0401003398001194, 0.040094636380672455, 0.0031863476615399122, -0.02236705832183361, 0.0006482115713879466, -0.00032252122764475644, 0.127499058842659, 0.08710896968841553, -0.015061742626130581, -0.040738657116889954, 0.03530636802315712, 0.021902842447161674, -0.04444475099444389, -0.019520899280905724, -0.0022224278654903173, -0.005966160912066698, -0.011731893755495548, -0.0430200956761837, -0.019731050357222557, 0.015639545395970345, -0.03329017758369446, 0.024172423407435417, 0.06696143001317978, -0.007854785770177841, 0.0525803379714489, -0.012458509765565395, -0.005756862461566925, -0.023290403187274933, -0.017452159896492958, -0.05175430327653885, -0.01571432314813137, -0.01085477415472269, 0.005662962794303894, 0.03217511251568794, -0.013361643068492413, -0.011410092934966087, -0.05413815379142761, -0.04120154678821564, 0.053943272680044174, 0.05338195711374283, 0.061861783266067505, -0.017964446917176247, 0.03819693997502327, -0.01985795982182026, 0.03364792838692665, -0.004650591406971216, -0.05662095919251442, -0.03714415431022644, -0.018151525408029556, -0.002365530701354146, 0.027565959841012955, 0.036725811660289764, 0.008984899148344994, 0.012500456534326077, 0.0013207823503762484, 0.013498264364898205, -0.008874405175447464, 0.01084105484187603, 0.03843772038817406, -0.010479274205863476, -0.011278116144239902, -0.027909105643630028, 0.052775561809539795, -0.038605064153671265, 0.0054765366949141026, -0.0004095590556971729, -0.0711296871304512, 0.015145749785006046, -0.052656225860118866, -0.033110711723566055, -0.005280549172312021, 0.018232204020023346, 0.035886622965335846, 0.027151037007570267, -0.028690455481410027, 0.05217793211340904, 0.001978835556656122, -0.0009786031441763043, 0.018086843192577362, -0.022365055978298187, 0.04384050890803337, -0.008770321495831013, 0.0276678204536438, 0.0614185705780983, 0.006087686400860548, -0.00011932672350667417, -0.03781171888113022, 0.025482067838311195, -0.027412543073296547, -0.28895801305770874, 0.026378687471151352, -0.0030401861295104027, -0.026620391756296158, 0.01728958636522293, -0.025549784302711487, -0.0008706292137503624, -0.031709518283605576, -0.018227674067020416, -0.009976550005376339, -0.01125778816640377, -0.03028995729982853, -0.029898786917328835, 0.02368786744773388, 0.0011980830458924174, 0.009968655183911324, -0.0021282148081809282, -0.062288109213113785, 0.02173205465078354, 0.029326995834708214, 0.018435772508382797, -0.061381928622722626, -0.019092800095677376, 0.04689130187034607, 0.019516197964549065, 0.024780740961432457, -0.08242738991975784, 0.04584827646613121, -0.07432881742715836, -0.005309528671205044, -0.016416948288679123, -0.007156933657824993, -0.004462908487766981, 0.004305746406316757, 0.006104077212512493, -0.010623152367770672, 0.035174522548913956, -0.0018332249019294977, 0.00752213504165411, -0.004887112881988287, -0.02430264838039875, -0.04055680334568024, -0.01997922733426094, 0.013718551956117153, 0.07876362651586533, 0.01634506694972515, -0.09357781708240509, 0.02475409023463726, -0.01788502372801304, 0.058937862515449524, -0.014568699523806572, -0.05305732786655426, -0.04100583866238594, 0.0068537332117557526, -0.022296201437711716, 0.012136250734329224, -0.027631064876914024, 0.007130411919206381, -0.04163426160812378, -0.03049072064459324, -0.005793997086584568, -0.026934001594781876, -0.00561825605109334, -0.05239196866750717, -0.00865983497351408, -0.06367674469947815, -0.06319542229175568, 0.0013050491688773036, 0.0885542780160904, 0.041546955704689026, -0.042842552065849304, 0.030508963391184807, -0.022784899920225143, -0.11116712540388107, -0.004454412031918764, -0.029220780357718468, -0.0253369752317667, 0.00904589332640171, 0.008169441483914852, 0.046340640634298325, -0.031451012939214706, -0.045662008225917816, 0.023970186710357666, 0.0005981763242743909, 0.03037019446492195, -0.02990853786468506, 0.016594737768173218, -0.01403763797134161, -0.012835224159061909, 0.016100598499178886, 0.05140767619013786, -0.04136339947581291, -0.008865198120474815, -0.018999164924025536, -0.02865014784038067, 0.04093414545059204, 0.011175301857292652, 0.020971981808543205, -0.013645624741911888, 0.048779893666505814, -0.00830856617540121, -0.07466098666191101, 0.007957026362419128, -0.04804243892431259, -0.017912058159708977, -0.009327740408480167, -0.047130826860666275, 0.025690825656056404, 0.023498376831412315, 0.030702704563736916, 0.014069098979234695, -0.04870134964585304, 0.018321305513381958, -0.05472240224480629, -0.006012570578604937, -0.012037616223096848, 0.047009460628032684, 0.02503635361790657, 0.023424753919243813, -0.0048015122301876545, -0.03747379407286644, 0.01702713593840599, -0.0016038579633459449, -0.02974335104227066, -0.035885751247406006, -0.027275413274765015, 0.005722104571759701, -0.016349906101822853, 0.0028856820426881313, 0.019313422963023186, -0.02212921343743801, 0.02919483557343483, 0.03646458312869072, -0.011162232607603073, 0.027328280732035637, -0.025129858404397964, -0.05272570252418518, -0.03505418449640274, 0.02825888805091381, 0.012530080042779446, 0.007929742336273193, 0.028323855251073837, -0.011065336875617504, 0.019590793177485466, 0.03519192710518837, 0.03235814347863197, 0.010937836952507496, -0.0033849328756332397, 0.025186719372868538, 0.021066799759864807, 0.006246981676667929, -0.020972993224859238, -0.009694413281977177, -0.019845768809318542, -0.027986370027065277, -0.014745216816663742, 0.03552069514989853, 0.012047098949551582, -0.023534154519438744, -0.03194821625947952, 0.021013647317886353, -0.05272611230611801, -0.031903695315122604, -0.012849090620875359, -0.014144008979201317, 0.050529222935438156, 0.0011787039693444967, 0.008943697437644005, 0.0016440518666058779, 0.013843302614986897, 0.006290772929787636, 0.03239242359995842, -0.037763964384794235, 0.004629482049494982, -0.016066012904047966, -0.007561089936643839, -0.00038228603079915047, 0.008699852041900158, 0.03461867943406105, -0.0001164307032013312, 0.017023736611008644, -0.018646402284502983, 0.002505183918401599, 0.02505660243332386, 0.052528705447912216, 0.05941307544708252, -0.014808795414865017, -0.01803586632013321, 0.0064085256308317184, -0.0042799292132258415, -0.03971382975578308, -0.00522947683930397, -0.00876743346452713, 0.006759266834706068, -0.009627261199057102, -0.06236795708537102, 0.06865299493074417, -0.00763387605547905, -0.016783958300948143, 0.04377688840031624, 0.014768259599804878, 0.0006315525970421731, -0.0416845828294754, 0.048958491533994675, 0.058890730142593384, -0.05480589717626572, 0.01557911653071642, 0.009079894982278347, -0.029516102746129036, 0.01070727501064539, 0.011775662191212177, -0.05468672141432762, 0.002021573483943939, -0.02410936914384365, 0.019821926951408386, -0.056823164224624634, -0.03189391270279884, -0.019879279658198357, -0.0071885790675878525, 0.011428093537688255, 0.021259663626551628, -0.00965223740786314, -0.017154786735773087, -0.00765540637075901, -0.043255459517240524, 0.05357281491160393, 0.005625580903142691, -0.002769291866570711, 0.015147384256124496, -0.03550852835178375, 0.01247105747461319, -0.033874135464429855, -0.0052231126464903355, 0.01840401627123356, -0.03458188846707344, 0.00969240814447403, -0.02769611030817032, -0.0015327557921409607, 0.0029660575091838837, 0.07341107726097107, -0.020588401705026627, -0.02475108578801155, -0.05041253939270973, -0.01659872755408287, -0.026525726541876793, -0.005887820851057768, 0.015027949586510658, 0.004883250687271357, 0.052905526012182236, 0.04516221955418587, 0.0029538804665207863, -0.007654592394828796, -0.00948985107243061, -0.033264871686697006, 0.03479471802711487, -0.05492423102259636, -0.029644794762134552, -0.03362542390823364, -0.054722972214221954, 0.005113103426992893, -0.0007502323132939637, 0.007952036336064339, -0.020860973745584488, 0.03159382566809654, 0.020276658236980438, 0.012887305580079556, 0.0297145564109087, -0.01024577021598816, 0.019360722973942757, -0.04827898368239403, -0.008121677674353123, -0.08618724346160889, -0.016791153699159622, 0.04237738251686096, -0.0053386325016617775, -0.004729693289846182, 0.020135773345828056, -0.06040800362825394, 0.03235616534948349, -0.08291792869567871, -0.036399807780981064, 0.029520513489842415, -0.02091929130256176, 0.015453818254172802, -0.005272542126476765, -0.04415372759103775, 0.017908187583088875, 0.03550282120704651, -0.037516746670007706, -0.021019117906689644, 0.0009629339911043644, 0.06764673441648483, 0.0030876004602760077, 0.03630448877811432, -0.005069004371762276, -0.017890827730298042, 0.0685533881187439, 0.007243604864925146, 0.0022373683750629425, 0.040319375693798065, -0.01967019960284233, 0.03613909333944321, 0.03003370575606823, 0.00016301751020364463, 0.029563406482338905, 0.021821878850460052, -0.02093997411429882, -0.060677669942379, 0.024719366803765297, -0.007276318501681089, 0.004712235648185015, -0.04726659134030342, 0.06693247705698013, 0.003173155477270484, -0.038793761283159256, -0.031193828210234642, -0.009722303599119186, -0.033982306718826294, -0.03351391479372978, -0.02524327114224434, 0.017535768449306488, -0.04378393292427063, 0.055904850363731384, -0.010336475446820259, 0.01408199779689312, 0.07007097452878952, 0.0012620645575225353, -0.005624889396131039, 0.01618949882686138, 0.08566783368587494, 0.07022237032651901, 0.04375515878200531, -0.0006469712243415415, 0.06532826274633408, -0.026588434353470802, -0.032451972365379333, -0.006677134428173304, -0.01378388050943613, -0.03658737242221832, -0.018970204517245293, 0.021799467504024506, 0.05954347178339958, -0.03534086048603058, 0.08017155528068542, -0.004922724794596434, -0.013717112131416798, -0.02466445043683052, -0.000005710794994229218, 0.023013440892100334, 0.0460062175989151, -0.015205462463200092, 0.041748762130737305, -0.019932489842176437, -0.05012143775820732, 0.0060864826664328575, -0.0013975343899801373, -0.04370807483792305, 0.025122111663222313, -0.032830554991960526, 0.01300177164375782, 0.009621472097933292, 0.016675451770424843, 0.08573084324598312, -0.04433051124215126, 0.00601382739841938, -0.0020870256703346968, 0.027419138699769974, -0.0024136214051395655, 0.023578541353344917, -0.03919205069541931, -0.015120749361813068, -0.030618829652667046, -0.059526242315769196, -0.00024641247000545263, -0.00627052690833807, -0.03928998112678528, 0.0020129987969994545, -0.028131971135735512, -0.012302198447287083, 0.04005918279290199, -0.027189061045646667, -0.04537830129265785, -0.05985710769891739, -0.038438063114881516, -0.05265744403004646, -0.06767813861370087, -0.052708860486745834, 0.02458859793841839, -0.019407127052545547, -0.022824065759778023, -0.015999190509319305, -0.015979766845703125, -0.025975890457630157, 0.020429391413927078, -0.04288412258028984, -0.026992028579115868, 0.020113985985517502, 0.03109629824757576, 0.007758643478155136, 0.009088828228414059, 0.059201210737228394, 0.012960807420313358, -0.0025578502099961042, -0.015613379888236523, 0.02390725165605545, 0.0401776097714901, 0.011552381329238415, 0.011019638739526272, -0.09049974381923676, 0.02215752750635147, 0.02643100544810295, -0.026710044592618942, -0.08005930483341217, 0.027804968878626823, 0.011953208595514297, -0.002630809787660837, 0.049272507429122925, -0.017933093011379242, 0.00596292270347476, -0.05386219546198845, -0.03771709278225899, -0.01783512718975544, 0.00847476813942194, 0.036481283605098724, -0.019223744049668312, 0.08419115096330643, 0.033533986657857895, -0.022249571979045868, -0.024575794115662575, -0.0021801458206027746, 0.004939318634569645, 0.007656171917915344, -0.03681293502449989, -0.015965379774570465, -0.0351499579846859, -0.07899172604084015, -0.03780120238661766, 0.033112868666648865, -0.021682392805814743, -0.04505183920264244, 0.023906318470835686, -0.012027562595903873, -0.006228683050721884, -0.0009976747678592801, -0.04268848896026611, 0.007020459044724703, -0.012635675258934498, -0.018593281507492065, -0.01331640500575304, 0.033130399882793427, -0.022621069103479385, -0.005439413245767355, 0.02130838856101036, -0.04825221002101898, -0.005091384518891573, -0.032078322023153305, 0.03910134360194206, 0.04676242172718048, -0.011784462258219719, -0.02376629412174225 ]
[ -0.03325929120182991, -0.02539633773267269, -0.03215891122817993, -0.0005426064599305391, 0.11015554517507553, -0.04933850094676018, 0.015361669473350048, 0.03404996544122696, -0.053808920085430145, -0.032655980437994, -0.01802128180861473, -0.06236252933740616, -0.014134833589196205, 0.0039827581495046616, 0.06850208342075348, -0.013540079817175865, 0.040184129029512405, -0.10233652591705322, -0.001772011979483068, 0.0473678782582283, -0.055351320654153824, -0.020456159487366676, -0.053318630903959274, -0.06092770770192146, 0.00692497193813324, 0.029882406815886497, 0.03317517787218094, -0.006900695618242025, -0.04430346563458443, -0.18488548696041107, 0.02039540745317936, -0.01560450904071331, 0.019385427236557007, -0.02073809690773487, -0.015888825058937073, 0.029591191560029984, 0.06944939494132996, 0.011000172235071659, 0.046258606016635895, 0.03951670229434967, 0.018814705312252045, -0.022983241826295853, -0.027093693614006042, 0.015388791449368, -0.0008986011962406337, -0.0058245547115802765, -0.023223919793963432, -0.006794374901801348, 0.0382869578897953, 0.002800482325255871, -0.051463525742292404, 0.00959062110632658, -0.020198572427034378, -0.0009172327117994428, 0.03025604598224163, 0.0028325989842414856, 0.0207003615796566, 0.021768013015389442, 0.016108036041259766, 0.000042967538320226595, 0.015789197757840157, -0.008105657063424587, -0.1480851024389267, 0.09952657669782639, -0.009727935306727886, 0.03212538734078407, -0.03839143365621567, 0.02538655884563923, 0.018444057554006577, 0.05792316049337387, -0.008388111367821693, -0.024792127311229706, -0.029836667701601982, 0.04814609885215759, 0.005453878082334995, -0.010228313505649567, 0.01231937762349844, 0.04218989238142967, 0.0006086922367103398, -0.013155218213796616, -0.023173164576292038, 0.054233964532613754, 0.0008193291141651571, -0.007081616669893265, -0.03598860278725624, -0.01030036248266697, -0.011778520420193672, 0.034391049295663834, 0.0007159350207075477, 0.00730957742780447, 0.03621237725019455, 0.0067849066108465195, 0.04485252499580383, 0.007096275221556425, -0.0503978356719017, -0.000391566805774346, 0.007433811202645302, 0.01098643708974123, -0.02535129338502884, 0.4221700429916382, -0.033772315829992294, -0.035628791898489, 0.020300529897212982, 0.009764524176716805, 0.0021155187860131264, -0.009040029719471931, -0.027141347527503967, -0.045082103461027145, 0.05369987711310387, -0.014848614111542702, 0.014922432601451874, -0.01349873747676611, 0.10364185273647308, -0.033701274544000626, 0.006422483362257481, -0.011846192181110382, 0.0036805488634854555, -0.0066687604412436485, -0.025684237480163574, 0.052330780774354935, -0.005836240481585264, -0.001909182989038527, 0.044998280704021454, 0.011323507875204086, 0.02774677611887455, 0.005906842648983002, 0.007561727426946163, 0.0513305701315403, 0.06741151213645935, 0.022244246676564217, 0.05981702730059624, -0.02870875597000122, -0.06651338934898376, -0.01464811060577631, -0.009828031063079834, -0.011914891190826893, 0.0446530245244503, -0.0028552766889333725, 0.011898777447640896, -0.0004320608277339488, -0.019734274595975876, -0.0017454035114496946, 0.050019245594739914, -0.05455461144447327, -0.03636331111192703, 0.1279110461473465, 0.0036640993785113096, -0.024044519290328026, -0.035476069897413254, -0.09514255076646805, 0.0005019432283006608, 0.03882371261715889, -0.020516492426395416, -0.06343469023704529, -0.004061069339513779, 0.03958067670464516, 0.08838637918233871, -0.023317450657486916, -0.05852065980434418, -0.002697593765333295, 0.0027431019116193056, -0.07847060263156891, -0.024313008412718773, -0.014469356276094913, 0.022174566984176636, -0.1325259506702423, -0.011846153065562248, 0.020914940163493156, 0.04040035232901573, -0.029672421514987946, 0.014837043359875679, 0.025505805388092995, -0.01936141774058342, 0.004964351188391447, 0.0436328761279583, -0.047049667686223984, -0.026612892746925354, 0.02573862485587597, 0.051389604806900024, 0.016012251377105713, -0.026403451338410378, 0.011507063172757626, -0.016834815964102745, 0.0006410301430150867, -0.05508928373456001, -0.06337659060955048, -0.03682643547654152, 0.01239984855055809, -0.010811757296323776, -0.015443951822817326, -0.021134980022907257, -0.053265009075403214, -0.0850118026137352, 0.08588051795959473, -0.013553108088672161, -0.015507218427956104, 0.01917918026447296, 0.012578731402754784, -0.007383301854133606, -0.017421821132302284, -0.024747589603066444, 0.02371041290462017, 0.007522861007601023, 0.024183429777622223, -0.05011733993887901, 0.050521958619356155, 0.01782124489545822, -0.031056106090545654, 0.024123704060912132, 0.03805284947156906, 0.001368747209198773, 0.028362512588500977, -0.028913812711834908, 0.020427323877811432, -0.008094541728496552, -0.029252026230096817, 0.006698789075016975, -0.015095998533070087, -0.011361460201442242, 0.06407480686903, -0.000554754282347858, -0.018277740105986595, -0.002115427516400814, -0.39157038927078247, -0.062309492379426956, -0.05035543441772461, 0.022631853818893433, 0.00834950152784586, -0.05540432408452034, 0.020826220512390137, -0.012187490239739418, -0.023185914382338524, 0.0581754669547081, 0.07512141764163971, 0.01799813285470009, 0.027010375633835793, -0.07349558174610138, -0.017046773806214333, 0.03617709130048752, 0.0012443199520930648, -0.02892138622701168, -0.06363177299499512, -0.0022874048445373774, 0.0057801236398518085, -0.036298178136348724, -0.019147496670484543, -0.018211089074611664, 0.011564493179321289, -0.012824916280806065, 0.11418220400810242, 0.0174963790923357, 0.028607157990336418, -0.04946134239435196, 0.021489715203642845, 0.006927405018359423, 0.012457550503313541, -0.08891629427671432, 0.008067830465734005, -0.04461201652884483, 0.013683742843568325, 0.03394049033522606, -0.04282953217625618, -0.023320773616433144, -0.04229003190994263, 0.04642988368868828, -0.006439720746129751, -0.059164632111787796, -0.03975212946534157, 0.030107103288173676, -0.00024100436712615192, 0.014216172508895397, -0.059203747659921646, 0.06518837809562683, 0.015358087606728077, 0.012608365155756474, 0.03960844874382019, 0.00518480921164155, 0.020804693922400475, -0.005755728576332331, -0.07262127101421356, -0.009794498793780804, -0.021862978115677834, 0.016231661662459373, 0.0022150168661028147, 0.041310783475637436, 0.03294191509485245, -0.0655781626701355, -0.01149248518049717, 0.02986999601125717, 0.011072469875216484, 0.0008493518107570708, 0.055814679712057114, 0.0028094653971493244, -0.04309910908341408, 0.1057761162519455, -0.035260964184999466, 0.03511689603328705, 0.03777714818716049, 0.05291234701871872, -0.01718394085764885, -0.005057101137936115, 0.01237556990236044, -0.008829603902995586, 0.07437634468078613, -0.030176008120179176, 0.019703736528754234, -0.017090333625674248, 0.023471416905522346, 0.07827002555131912, 0.024771692231297493, 0.00329090328887105, 0.05370187386870384, 0.023461492732167244, -0.019133571535348892, -0.013794131577014923, -0.02681458741426468, -0.055680159479379654, 0.041795965284109116, 0.025021223351359367, -0.2680334746837616, 0.05094311386346817, 0.045116037130355835, 0.03470812365412712, 0.02295621484518051, -0.03499980643391609, 0.014795124530792236, -0.07045090943574905, 0.028341906145215034, 0.0067200916819274426, 0.03381352499127388, 0.02926662564277649, 0.04234491288661957, 0.009788545779883862, -0.009958992712199688, -0.013569188304245472, 0.024921070784330368, -0.01073483843356371, 0.021873313933610916, -0.043275680392980576, 0.0362810343503952, -0.03149839863181114, 0.15202520787715912, 0.041608985513448715, -0.03413306921720505, 0.028002146631479263, -0.018352683633565903, 0.004131466615945101, 0.01606116071343422, 0.02926413156092167, 0.009924997575581074, -0.03811490163207054, 0.01797804795205593, -0.018342819064855576, 0.041351232677698135, -0.04863562062382698, -0.030489644035696983, 0.031785331666469574, 0.0417465940117836, -0.03435297682881355, -0.013072553090751171, 0.011012575589120388, -0.05105002596974373, 0.02633979357779026, 0.041556987911462784, -0.020639708265662193, 0.01049525011330843, -0.06413858383893967, -0.02148810587823391, 0.0004578427178785205, -0.0063712382689118385, -0.02353372797369957, 0.00046756226220168173, -0.005296164657920599, 0.024189703166484833, 0.07582951337099075, 0.023813508450984955, -0.010140978731215, 0.0211824681609869, 0.03137696534395218, -0.022551611065864563, -0.03285886347293854, 0.0543881393969059, 0.03554163873195648, 0.01950312964618206 ]
[ 0.017290618270635605, -0.000885100569576025, -0.03527722507715225, -0.0016081152716651559, 0.003216632641851902, -0.02075866423547268, -0.01177199836820364, 0.015742173418402672, -0.0035345961805433035, -0.015668056905269623, 0.00790819525718689, 0.02262795716524124, -0.007458383217453957, 0.004098606761544943, -0.030874863266944885, -0.045369409024715424, 0.001071481266990304, -0.03473857417702675, 0.02549717202782631, 0.011558330617845058, -0.02821851149201393, -0.005433300044387579, 0.0127862598747015, 0.0023742530029267073, -0.0031963009387254715, 0.0027365253772586584, 0.004065507557243109, 0.005578520707786083, 0.015526368282735348, -0.1041051372885704, -0.006944951601326466, -0.009306992404162884, 0.013198262080550194, -0.015328316949307919, -0.018469098955392838, 0.00781252235174179, 0.007731087971478701, 0.009588154032826424, -0.03744901716709137, -0.008360205218195915, 0.017972948029637337, -0.017670582979917526, 0.018775207921862602, 0.030563976615667343, 0.021807590499520302, -0.013560930266976357, -0.03772807493805885, -0.0022396899294108152, 0.008741509169340134, -0.01607850380241871, -0.04344528540968895, 0.004226121585816145, 0.009213751181960106, 0.02824454940855503, 0.01593199372291565, -0.015538861975073814, -0.030833253636956215, -0.003518444485962391, 0.025739111006259918, 0.00588559452444315, 0.007098062429577112, 0.0330033041536808, -0.01039169356226921, -0.014098291285336018, 0.01925591006875038, -0.029975293204188347, -0.024062257260084152, 0.045508045703172684, 0.04593782499432564, 0.027196409180760384, -0.03724878281354904, 0.02554464153945446, -0.06492049247026443, -0.03196929395198822, -0.00402791379019618, 0.02965787798166275, -0.025330329313874245, -0.01617099717259407, -0.00861666351556778, -0.0013945635873824358, -0.049874819815158844, 0.0007824960630387068, 0.010751202702522278, -0.006790660787373781, -0.020750122144818306, -0.019540509209036827, 0.009035736322402954, 0.040180228650569916, -0.003805509302765131, -0.029059741646051407, -0.010027130134403706, 0.02224009297788143, -0.005549989175051451, 0.007331464439630508, -0.0759202167391777, -0.025548141449689865, 0.03945595398545265, -0.005585971754044294, -0.026460275053977966, 0.8561961650848389, -0.0003875770780723542, -0.005937684793025255, 0.012117458507418633, 0.008698862977325916, 0.02722136490046978, -0.041682176291942596, -0.02883799746632576, 0.0175700131803751, -0.007264596875756979, -0.04715849459171295, 0.0031093352008610964, 0.01935678906738758, 0.013738813810050488, -0.017171036452054977, 0.036307770758867264, 0.06327773630619049, -0.038933414965867996, -0.005580016877502203, -0.012884609401226044, 0.03298259153962135, -0.0038956282660365105, -0.016941146925091743, 0.003531628055498004, -0.007065444719046354, -0.0027997437864542007, -0.14284515380859375, 0.009397951886057854, -6.43883936692219e-33, 0.06934401392936707, -0.057988401502370834, 0.0019300789572298527, -0.03456709533929825, 0.006241947878152132, -0.010300462134182453, -0.014553750865161419, -0.027052517980337143, 0.0030341080855578184, -0.0073671648278832436, 0.02457549422979355, -0.012477902695536613, 0.02121548168361187, -0.020714500918984413, 0.00204801419749856, -0.024592654779553413, -0.010967433452606201, 0.061065662652254105, -0.027227206155657768, 0.04683553799986839, 0.0355658121407032, 0.002275061095133424, -0.02902369759976864, 0.00918822456151247, 0.015813665464520454, 0.03321852907538414, 0.0026955814100801945, -0.023199087008833885, 0.015244722366333008, -0.03192741796374321, -0.00252905604429543, 0.026810243725776672, 0.014169017784297466, -0.02584884501993656, -0.009131241589784622, -0.059246666729450226, -0.03145018592476845, -0.022861763834953308, -0.007732835598289967, -0.018117349594831467, 0.031185723841190338, -0.01906496472656727, -0.029010294005274773, -0.010326121933758259, -0.032422445714473724, -0.013707135803997517, -0.0019534381572157145, 0.01582292653620243, -0.011703286319971085, -0.0018889005295932293, 0.025268863886594772, 0.0017653482500463724, 0.02140808291733265, -0.008298077620565891, -0.013523170724511147, -0.003130523255094886, 0.00033569434890523553, 0.007767080329358578, 0.021711887791752815, -0.009663551114499569, -0.025734318420290947, -0.025906914845108986, -0.03178682550787926, 0.03075495734810829, -0.019956596195697784, -0.008655992336571217, 0.027367308735847473, -0.002386546228080988, -0.02351921610534191, 0.006050153635442257, -0.06330982595682144, 0.029119445011019707, -0.022009003907442093, -0.008171649649739265, 0.014008425176143646, 0.004480940755456686, 0.011042647063732147, 0.03404456377029419, -0.0030682035721838474, 0.026140203699469566, -0.022946827113628387, 0.005467453505843878, 0.02249331586062908, -0.03324684873223305, -0.010917270556092262, 0.0006169754778966308, -0.00922493077814579, -0.03394785895943642, -0.04186509922146797, 0.013967810198664665, -0.011314365081489086, 0.08800628781318665, 0.015452703461050987, -0.03307003155350685, -0.0012113791890442371, 6.765850875061412e-33, -0.0033627350348979235, 0.00015281510422937572, -0.006015929859131575, 0.0014679933665320277, 0.012600017711520195, 0.0038287153001874685, 0.031225038692355156, -0.009503994137048721, 0.013764908537268639, -0.012552483938634396, -0.03533369302749634, -0.0018409242620691657, -0.018442673608660698, 0.05131138488650322, 0.05410553514957428, 0.033615343272686005, 0.015085728839039803, 0.006523980759084225, 0.01409925613552332, -0.00805375725030899, -0.0063178506679832935, -0.007145871873944998, 0.0196489617228508, -0.018907243385910988, 0.012997886165976524, 0.028604330494999886, 0.006280301604419947, 0.0020970399491488934, -0.020141901448369026, -0.008836966939270496, 0.015065002255141735, -0.011725380085408688, -0.005175190512090921, 0.018213627859950066, -0.03996067866683006, 0.04157344996929169, 0.020122608169913292, -0.015099345706403255, 0.00026638380950316787, -0.008333093486726284, 0.015355810523033142, 0.03871817886829376, -0.017473306506872177, 0.0066440231166779995, -0.009661555290222168, 0.031657181680202484, 0.024352820590138435, 0.014688139781355858, 0.004076698794960976, 0.02767673134803772, -0.016453702002763748, 0.033804502338171005, 0.009522506035864353, 0.03349613398313522, -0.018093392252922058, -0.020060265436768532, -0.013790222816169262, -0.005571071989834309, -0.04133643954992294, -0.016394367441534996, -0.021859485656023026, -0.021644238382577896, 0.012808205559849739, 0.026026112958788872, -0.015879984945058823, -0.0033649869728833437, 0.0014725194778293371, 0.0022414117120206356, -0.010409119538962841, -0.050901420414447784, 0.014703369699418545, 0.0011217279825359583, 0.008917698636651039, 0.05806346982717514, 0.023607274517416954, -0.004634428303688765, -0.026916831731796265, -0.011017981916666031, 0.009152587503194809, 0.0037491824477910995, 0.011923321522772312, 0.0270985160022974, 0.0028086190577596426, -0.02289813756942749, 0.04228237643837929, 0.03730976954102516, -0.00017271414981223643, -0.00032469534198753536, 0.012078837491571903, 0.0011501567205414176, -0.01293148286640644, -0.026305697858333588, -0.010798980481922626, -0.012663085013628006, 0.02948020026087761, -1.2351854650205496e-8, 0.008079346269369125, 0.037314433604478836, -0.019410373643040657, 0.0025718742981553078, 0.04784662649035454, 0.03419950231909752, -0.020842621102929115, 0.01818026229739189, -0.006187939550727606, 0.010024003684520721, 0.0541834682226181, -0.013381727039813995, -0.014078043401241302, -0.004594791680574417, 0.008346190676093102, -0.05414055287837982, -0.021631505340337753, 0.0047399322502315044, 0.002671161899343133, 0.02241114340722561, 0.050509337335824966, 0.0006173626170493662, 0.015993943437933922, -0.013129767961800098, -0.0014228749787434936, 0.014314854517579079, 0.047276854515075684, -0.07248585671186447, 0.006991747301071882, -0.020115312188863754, -0.020678022876381874, -0.027988003566861153, 0.00036436630762182176, 0.03401073440909386, -0.021049734205007553, -0.005729377269744873, 0.017054863274097443, 0.04195915162563324, -0.006099519319832325, 0.02304767817258835, -0.00018369295867159963, -0.05981377139687538, -0.022000178694725037, -0.047376424074172974, -0.028498118743300438, -0.009836659766733646, -0.032457709312438965, 0.01748141646385193, -0.0024136400315910578, 0.0018813923234120011, 0.01918109692633152, 0.014858008362352848, 0.04872171953320503, 0.045300744473934174, 0.08955617249011993, 0.00011359572090441361, 0.02311353199183941, -0.022130033001303673, 0.048610854893922806, -0.017923936247825623, 0.002769123064354062, 0.02215253934264183, -0.00770665192976594, -0.0027151096146553755 ]
pinot-analysing-england-covid-cases
https://markhneedham.com/blog/2021/06/22/pinot-analysing-england-covid-cases
false
2021-12-03 00:44:37
Apache Pinot: Convert DateTime string to Timestamp - IllegalArgumentException: Invalid timestamp
[ "pinot" ]
[ "Pinot" ]
In this post we'll learn how to deal with a field that contains DateTime strings when importing a CSV file into Apache Pinot. We'll also cover some of the error messages that you'll see if you do it the wrong way. .Apache Pinot - Convert DateTime string to Timestamp image::{{<siteurl>}}/uploads/2021/12/datetime-timestamp.png[] == Setup We're going to spin up a local instance of Pinot using the following Docker compose config: .docker-compose.yml [source, yaml] ---- version: '3.7' services: zookeeper: image: zookeeper:3.5.6 hostname: zookeeper container_name: manual-zookeeper ports: - "2181:2181" environment: ZOOKEEPER_CLIENT_PORT: 2181 ZOOKEEPER_TICK_TIME: 2000 pinot-controller: image: apachepinot/pinot:0.9.0 command: "StartController -zkAddress manual-zookeeper:2181" container_name: "manual-pinot-controller" volumes: - ./config:/config - ./data:/data restart: unless-stopped ports: - "9000:9000" depends_on: - zookeeper pinot-broker: image: apachepinot/pinot:0.9.0 command: "StartBroker -zkAddress manual-zookeeper:2181" restart: unless-stopped container_name: "manual-pinot-broker" volumes: - ./config:/config - ./data:/data ports: - "8099:8099" depends_on: - pinot-controller pinot-server: image: apachepinot/pinot:0.9.0 command: "StartServer -zkAddress manual-zookeeper:2181" restart: unless-stopped container_name: "manual-pinot-server" volumes: - ./config:/config - ./data:/data depends_on: - pinot-broker ---- == Data We'll be working with the following CSV file that has `ID` and `Date` columns: .dates.csv [format="csv", options="header"] |=== include::content/2021/12/03/data/dates.csv[] |=== == Create Table Now we're going to create a Pinot schema and table based on this CSV file. The schema is defined below: ./config/schema.json [source.json] ---- { "schemaName": "dates", "dimensionFieldSpecs": [ { "name": "ID", "dataType": "INT" } ], "dateTimeFieldSpecs": [ { "name": "Date", "dataType": "TIMESTAMP", "format" : "1:SECONDS:SIMPLE_DATE_FORMAT:MM/dd/yyyy HH:mm:ss a", "granularity": "1:HOURS" } ] } ---- We're going to use the `TIMESTAMP` data type so that we can write queries that require date operations against the values in this column. Our table config is defined below:s ./config/table.json [source.json] ---- { "tableName": "dates", "tableType": "OFFLINE", "segmentsConfig": { "replication": 1 }, "tenants": { "broker":"DefaultTenant", "server":"DefaultTenant" }, "tableIndexConfig": { "loadMode": "MMAP" }, "nullHandlingEnabled": true, "ingestionConfig": { "batchIngestionConfig": { "segmentIngestionType": "APPEND", "segmentIngestionFrequency": "DAILY" } }, "metadata": {} } ---- Now let's create the table and schema: [source, bash] ---- docker exec -it manual-pinot-controller bin/pinot-admin.sh AddTable \ -tableConfigFile /config/table.json \ -schemaFile /config/schema.json -exec ---- == Import CSV file After we've done that, it's time to import the CSV file. We'll do this using the ingestion job spec defined below: ./config/job-spec.yml [source,yaml] ---- executionFrameworkSpec: name: 'standalone' segmentGenerationJobRunnerClassName: 'org.apache.pinot.plugin.ingestion.batch.standalone.SegmentGenerationJobRunner' segmentTarPushJobRunnerClassName: 'org.apache.pinot.plugin.ingestion.batch.standalone.SegmentTarPushJobRunner' segmentUriPushJobRunnerClassName: 'org.apache.pinot.plugin.ingestion.batch.standalone.SegmentUriPushJobRunner' jobType: SegmentCreationAndTarPush inputDirURI: '/data' includeFileNamePattern: 'glob:**/dates.csv' outputDirURI: '/opt/pinot/data/dates' overwriteOutput: true pinotFSSpecs: - scheme: file className: org.apache.pinot.spi.filesystem.LocalPinotFS recordReaderSpec: dataFormat: 'csv' className: 'org.apache.pinot.plugin.inputformat.csv.CSVRecordReader' configClassName: 'org.apache.pinot.plugin.inputformat.csv.CSVRecordReaderConfig' tableSpec: tableName: 'dates' pinotClusterSpecs: - controllerURI: 'http://localhost:9000' ---- Notice that `includeFileNamePattern` refers to the `dates.csv` file that we saw earlier in this post. We can run the ingestion job like so: [source,bash] ---- docker exec \ -it manual-pinot-controller bin/pinot-admin.sh LaunchDataIngestionJob \ -jobSpecFile /config/job-spec.yml ---- [source, text] ---- 2021/12/03 12:16:56.848 ERROR [RecordReaderSegmentCreationDataSource] [pool-2-thread-1] Caught exception while gathering stats java.lang.RuntimeException: Caught exception while transforming data type for column: Date at org.apache.pinot.segment.local.recordtransformer.DataTypeTransformer.transform(DataTypeTransformer.java:95) ~[pinot-all-0.9.0-jar-with-dependencies.jar:0.9.0-cf8b84e8b0d6ab62374048de586ce7da21132906] at org.apache.pinot.segment.local.recordtransformer.CompositeTransformer.transform(CompositeTransformer.java:83) ~[pinot-all-0.9.0-jar-with-dependencies.jar:0.9.0-cf8b84e8b0d6ab62374048de586ce7da21132906] at org.apache.pinot.segment.local.segment.creator.RecordReaderSegmentCreationDataSource.gatherStats(RecordReaderSegmentCreationDataSource.java:80) ~[pinot-all-0.9.0-jar-with-dependencies.jar:0.9.0-cf8b84e8b0d6ab62374048de586ce7da21132906] at org.apache.pinot.segment.local.segment.creator.RecordReaderSegmentCreationDataSource.gatherStats(RecordReaderSegmentCreationDataSource.java:42) ~[pinot-all-0.9.0-jar-with-dependencies.jar:0.9.0-cf8b84e8b0d6ab62374048de586ce7da21132906] at org.apache.pinot.segment.local.segment.creator.impl.SegmentIndexCreationDriverImpl.init(SegmentIndexCreationDriverImpl.java:173) ~[pinot-all-0.9.0-jar-with-dependencies.jar:0.9.0-cf8b84e8b0d6ab62374048de586ce7da21132906] at org.apache.pinot.segment.local.segment.creator.impl.SegmentIndexCreationDriverImpl.init(SegmentIndexCreationDriverImpl.java:155) ~[pinot-all-0.9.0-jar-with-dependencies.jar:0.9.0-cf8b84e8b0d6ab62374048de586ce7da21132906] at org.apache.pinot.segment.local.segment.creator.impl.SegmentIndexCreationDriverImpl.init(SegmentIndexCreationDriverImpl.java:104) ~[pinot-all-0.9.0-jar-with-dependencies.jar:0.9.0-cf8b84e8b0d6ab62374048de586ce7da21132906] at org.apache.pinot.plugin.ingestion.batch.common.SegmentGenerationTaskRunner.run(SegmentGenerationTaskRunner.java:118) ~[pinot-all-0.9.0-jar-with-dependencies.jar:0.9.0-cf8b84e8b0d6ab62374048de586ce7da21132906] at org.apache.pinot.plugin.ingestion.batch.standalone.SegmentGenerationJobRunner.lambda$submitSegmentGenTask$1(SegmentGenerationJobRunner.java:263) ~[pinot-batch-ingestion-standalone-0.9.0-shaded.jar:0.9.0-cf8b84e8b0d6ab62374048de586ce7da21132906] at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:515) [?:?] at java.util.concurrent.FutureTask.run(FutureTask.java:264) [?:?] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) [?:?] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) [?:?] at java.lang.Thread.run(Thread.java:829) [?:?] Caused by: java.lang.IllegalArgumentException: Invalid timestamp: '09/05/2015 01:30:00 PM' at org.apache.pinot.spi.utils.TimestampUtils.toTimestamp(TimestampUtils.java:43) ~[pinot-all-0.9.0-jar-with-dependencies.jar:0.9.0-cf8b84e8b0d6ab62374048de586ce7da21132906] at org.apache.pinot.common.utils.PinotDataType$10.toTimestamp(PinotDataType.java:524) ~[pinot-all-0.9.0-jar-with-dependencies.jar:0.9.0-cf8b84e8b0d6ab62374048de586ce7da21132906] at org.apache.pinot.common.utils.PinotDataType$9.convert(PinotDataType.java:485) ~[pinot-all-0.9.0-jar-with-dependencies.jar:0.9.0-cf8b84e8b0d6ab62374048de586ce7da21132906] at org.apache.pinot.common.utils.PinotDataType$9.convert(PinotDataType.java:442) ~[pinot-all-0.9.0-jar-with-dependencies.jar:0.9.0-cf8b84e8b0d6ab62374048de586ce7da21132906] at org.apache.pinot.segment.local.recordtransformer.DataTypeTransformer.transform(DataTypeTransformer.java:90) ~[pinot-all-0.9.0-jar-with-dependencies.jar:0.9.0-cf8b84e8b0d6ab62374048de586ce7da21132906] ... 13 more 2021/12/03 12:16:56.856 ERROR [SegmentGenerationJobRunner] [pool-2-thread-1] Failed to generate Pinot segment for file - file:/data/dates.csv java.lang.RuntimeException: Caught exception while transforming data type for column: Date at org.apache.pinot.segment.local.recordtransformer.DataTypeTransformer.transform(DataTypeTransformer.java:95) ~[pinot-all-0.9.0-jar-with-dependencies.jar:0.9.0-cf8b84e8b0d6ab62374048de586ce7da21132906] at org.apache.pinot.segment.local.recordtransformer.CompositeTransformer.transform(CompositeTransformer.java:83) ~[pinot-all-0.9.0-jar-with-dependencies.jar:0.9.0-cf8b84e8b0d6ab62374048de586ce7da21132906] at org.apache.pinot.segment.local.segment.creator.RecordReaderSegmentCreationDataSource.gatherStats(RecordReaderSegmentCreationDataSource.java:80) ~[pinot-all-0.9.0-jar-with-dependencies.jar:0.9.0-cf8b84e8b0d6ab62374048de586ce7da21132906] at org.apache.pinot.segment.local.segment.creator.RecordReaderSegmentCreationDataSource.gatherStats(RecordReaderSegmentCreationDataSource.java:42) ~[pinot-all-0.9.0-jar-with-dependencies.jar:0.9.0-cf8b84e8b0d6ab62374048de586ce7da21132906] at org.apache.pinot.segment.local.segment.creator.impl.SegmentIndexCreationDriverImpl.init(SegmentIndexCreationDriverImpl.java:173) ~[pinot-all-0.9.0-jar-with-dependencies.jar:0.9.0-cf8b84e8b0d6ab62374048de586ce7da21132906] at org.apache.pinot.segment.local.segment.creator.impl.SegmentIndexCreationDriverImpl.init(SegmentIndexCreationDriverImpl.java:155) ~[pinot-all-0.9.0-jar-with-dependencies.jar:0.9.0-cf8b84e8b0d6ab62374048de586ce7da21132906] at org.apache.pinot.segment.local.segment.creator.impl.SegmentIndexCreationDriverImpl.init(SegmentIndexCreationDriverImpl.java:104) ~[pinot-all-0.9.0-jar-with-dependencies.jar:0.9.0-cf8b84e8b0d6ab62374048de586ce7da21132906] at org.apache.pinot.plugin.ingestion.batch.common.SegmentGenerationTaskRunner.run(SegmentGenerationTaskRunner.java:118) ~[pinot-all-0.9.0-jar-with-dependencies.jar:0.9.0-cf8b84e8b0d6ab62374048de586ce7da21132906] at org.apache.pinot.plugin.ingestion.batch.standalone.SegmentGenerationJobRunner.lambda$submitSegmentGenTask$1(SegmentGenerationJobRunner.java:263) ~[pinot-batch-ingestion-standalone-0.9.0-shaded.jar:0.9.0-cf8b84e8b0d6ab62374048de586ce7da21132906] at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:515) [?:?] at java.util.concurrent.FutureTask.run(FutureTask.java:264) [?:?] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) [?:?] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) [?:?] at java.lang.Thread.run(Thread.java:829) [?:?] Caused by: java.lang.IllegalArgumentException: Invalid timestamp: '09/05/2015 01:30:00 PM' at org.apache.pinot.spi.utils.TimestampUtils.toTimestamp(TimestampUtils.java:43) ~[pinot-all-0.9.0-jar-with-dependencies.jar:0.9.0-cf8b84e8b0d6ab62374048de586ce7da21132906] at org.apache.pinot.common.utils.PinotDataType$10.toTimestamp(PinotDataType.java:524) ~[pinot-all-0.9.0-jar-with-dependencies.jar:0.9.0-cf8b84e8b0d6ab62374048de586ce7da21132906] at org.apache.pinot.common.utils.PinotDataType$9.convert(PinotDataType.java:485) ~[pinot-all-0.9.0-jar-with-dependencies.jar:0.9.0-cf8b84e8b0d6ab62374048de586ce7da21132906] at org.apache.pinot.common.utils.PinotDataType$9.convert(PinotDataType.java:442) ~[pinot-all-0.9.0-jar-with-dependencies.jar:0.9.0-cf8b84e8b0d6ab62374048de586ce7da21132906] at org.apache.pinot.segment.local.recordtransformer.DataTypeTransformer.transform(DataTypeTransformer.java:90) ~[pinot-all-0.9.0-jar-with-dependencies.jar:0.9.0-cf8b84e8b0d6ab62374048de586ce7da21132906] ... 13 more ---- Hmmm, that didn't quite work as expected. There was a failure when trying to convert the string to a timestamp, and if we take a look at https://github.com/apache/pinot/blob/master/pinot-spi/src/main/java/org/apache/pinot/spi/utils/TimestampUtils.java#L29[`Timestamputils#toTimestamp`^], we can see that this function actually only supports the following input formats: * 'yyyy-mm-dd hh:mm:ss[.fffffffff]' * Millis since epoch Our DateTime strings have the `MM/dd/yyyy HH:mm:ss a` format, which isn't supported. One way to fix this problem would be to massage `dates.csv` so that the values in the `Date` column are in the expected format. The CSV file would then look like this: .dates.csv [format="csv", options="header"] |=== include::content/2021/12/03/data/dates_clean.csv[] |=== We can then re-run the ingestion job and the date will be imported into the `Date` column. Alternatively, we could write a transformation function in our table config to take care of it. Our table config would then instead look this: ./config/table-transform.json [source.json] ---- { "tableName": "dates", "tableType": "OFFLINE", "segmentsConfig": { "replication": 1 }, "tenants": { "broker":"DefaultTenant", "server":"DefaultTenant" }, "tableIndexConfig": { "loadMode": "MMAP" }, "nullHandlingEnabled": true, "ingestionConfig": { "batchIngestionConfig": { "segmentIngestionType": "APPEND", "segmentIngestionFrequency": "DAILY" }, "transformConfigs": [ {"columnName": "Date", "transformFunction": "FromDateTime(\"Date\", 'MM/dd/yyyy HH:mm:ss a')" } ] }, "metadata": {} } ---- This transform function uses the https://docs.pinot.apache.org/users/user-guide-query/supported-transformations#datetime-functions[`FromDateTime`^] function, which converts a DateTime string to epoch millis. Before we update the table config, let's drop the segment that we created earlier (by running the ingest job): .Drop dates table segments [source, bash] ---- curl -X DELETE "http://localhost:9000/segments/dates?type=OFFLINE" -H "accept: application/json" ---- Now we can update the table config: .Update table config [source, bash] ---- curl 'http://localhost:9000/tables/dates_OFFLINE' \ -X 'PUT' \ -H 'Content-Type: application/json' \ --data-binary "@config/table-transform.json" ---- .Output [source, text] ---- {"_code":400,"_error":"Invalid table config: dates_OFFLINE with error: Arguments of a transform function '[Date]' cannot contain the destination column 'Date'"} ---- Hmmm, we can't use the same name for the transformed and source columns. We'll have to instead update our schema and table config to store the transformed value in a `Timestamp` column instead. The updated schema and table config are shown below: ./config/schema-transform.json [source.json] ---- { "schemaName": "dates", "dimensionFieldSpecs": [ { "name": "ID", "dataType": "INT" } ], "dateTimeFieldSpecs": [ { "name": "Timestamp", "dataType": "TIMESTAMP", "format" : "1:MILLISECONDS:EPOCH", "granularity": "1:HOURS" } ] } ---- ./config/table-transform.json [source.json] ---- { "tableName": "dates", "tableType": "OFFLINE", "segmentsConfig": { "replication": 1 }, "tenants": { "broker":"DefaultTenant", "server":"DefaultTenant" }, "tableIndexConfig": { "loadMode": "MMAP" }, "nullHandlingEnabled": true, "ingestionConfig": { "batchIngestionConfig": { "segmentIngestionType": "APPEND", "segmentIngestionFrequency": "DAILY" }, "transformConfigs": [ {"columnName": "Timestamp", "transformFunction": "FromDateTime(\"Date\", 'MM/dd/yyyy HH:mm:ss a')" } ] }, "metadata": {} } ---- We can't remove columns from a schema, so let's drop the schema and table and re-create them both: [source,bash] ---- curl -X DELETE "http://localhost:9000/schemas/dates" -H "accept: application/json" && curl -X DELETE "http://localhost:9000/tables/dates?type=offline" -H "accept: application/json" ---- [source, bash] ---- docker exec -it manual-pinot-controller bin/pinot-admin.sh AddTable \ -tableConfigFile /config/table-transform.json \ -schemaFile /config/schema-transform.json -exec ---- We can then run the ingestion job again and the datetime values will be loaded into the `Timestamp` column, as shown in the screenshot below: .The dates table with timestamps loaded image::{{<siteurl>}}/uploads/2021/12/query.png[] Success!
In this post we'll learn how to convert a DateTime string to timestamp in Apache Pinot.
uploads/2021/12/datetime-timestamp.png
[ -0.008100292645394802, -0.009877496398985386, -0.01809646375477314, 0.05420968309044838, 0.08302289992570877, 0.003750917501747608, 0.010482938028872013, 0.052463021129369736, 0.025347812101244926, -0.018701503053307533, -0.014728379435837269, -0.015724318102002144, -0.037773169577121735, 0.025420181453227997, -0.015628265216946602, 0.07987461239099503, 0.0727982223033905, -0.015465843491256237, 0.034685809165239334, -0.013543612323701382, 0.02995706908404827, 0.008383267559111118, -0.00007727371848886833, 0.04380886256694794, 0.00022285745944827795, -0.01675075851380825, -0.039280276745557785, 0.019025642424821854, -0.03690032288432121, 0.000815390725620091, 0.01906067505478859, 0.001494741067290306, 0.01252411212772131, 0.005765664391219616, -0.00983890239149332, -0.003406667849048972, -0.027662042528390884, 0.0032635326497256756, 0.006412175949662924, 0.03388737142086029, -0.07456865161657333, 0.026267508044838905, 0.020794231444597244, 0.005097731947898865, -0.021206052973866463, 0.027884649112820625, -0.018164878711104393, 0.023981010541319847, 0.017311999574303627, 0.014426526613533497, -0.05730002000927925, 0.011989286169409752, -0.029901009052991867, 0.02269240841269493, 0.006379640195518732, 0.050222791731357574, -0.006290425080806017, -0.055386289954185486, 0.03679652139544487, -0.021331651136279106, -0.004069686401635408, -0.011804256588220596, 0.011023092083632946, -0.008438888005912304, 0.001635430147871375, -0.020559899508953094, -0.01963157393038273, 0.04610610753297806, -0.03695736825466156, -0.02355794422328472, 0.016140619292855263, 0.019378429278731346, 0.005396263673901558, -0.033051177859306335, 0.02393239177763462, -0.027749819681048393, -0.035346515476703644, 0.0608878917992115, 0.0025548783596605062, 0.06047439947724342, -0.03593633323907852, -0.002126081846654415, 0.029597347602248192, 0.020271526649594307, 0.01184028573334217, -0.04432615637779236, -0.05439502373337746, -0.008927525021135807, -0.05668208748102188, 0.08676701039075851, 0.019820135086774826, -0.018906906247138977, 0.04712365195155144, 0.005099031608551741, 0.0040159281343221664, 0.0314289927482605, 0.02156534045934677, 0.0010766206542029977, 0.02690587192773819, -0.0028090206906199455, -0.04892981797456741, 0.0005340721108950675, 0.02480999194085598, 0.05579661205410957, -0.05980012193322182, -0.0606793649494648, -0.04135148972272873, -0.005692880135029554, 0.0007326292106881738, 0.02832961082458496, -0.04015687108039856, -0.013699430972337723, -0.0026349066756665707, 0.009012189693748951, -0.07054654508829117, 0.05758058652281761, 0.03246673569083214, -0.04474543780088425, 0.017332779243588448, 0.024602001532912254, 0.05147789046168327, 0.0230414979159832, -0.023509522899985313, 0.058555230498313904, 0.004661246202886105, 0.03069925308227539, -0.0011516546364873648, 0.04733193665742874, -0.014486884698271751, -0.06742918491363525, -0.05408843234181404, 0.04409344121813774, 0.022269392386078835, -0.013586425222456455, -0.0003430263604968786, -0.053455278277397156, -0.019758256152272224, 0.02279185876250267, 0.05459732562303543, 0.030958611518144608, -0.021794820204377174, -0.004312075674533844, 0.015378945507109165, 0.0013000748585909605, 0.05011622607707977, 0.05347446724772453, 0.00023951054026838392, -0.035642195492982864, -0.028319841250777245, 0.016858840361237526, 0.007420768495649099, 0.020869949832558632, 0.044639699161052704, -0.04102281853556633, -0.0030280884820967913, 0.07652871310710907, 0.01245157327502966, 0.02610687166452408, -0.04242921993136406, -0.004707415588200092, 0.039829716086387634, 0.01974724605679512, 0.005411537829786539, 0.03102985955774784, 0.030041901394724846, -0.046067334711551666, 0.000893126823939383, 0.043500255793333054, -0.026302102953195572, 0.0027366862632334232, -0.047664448618888855, -0.037209752947092056, 0.06019030138850212, -0.05771994963288307, 0.011760530062019825, 0.07402122765779495, 0.08907094597816467, 0.014759430661797523, 0.031162215396761894, -0.00659449677914381, -0.08833366632461548, 0.08420337736606598, 0.013043328188359737, 0.014306916855275631, 0.014045760035514832, -0.008717981167137623, 0.03910864144563675, 0.0031618825159966946, 0.04726197198033333, 0.013384242542088032, -0.07440494745969772, -0.06594223529100418, -0.03109932132065296, -0.00824066810309887, 0.0492614284157753, -0.019864527508616447, -0.009771269746124744, 0.06042732670903206, -0.000220378307858482, 0.02436951734125614, -0.008348796516656876, 0.041164811700582504, 0.00021044343884568661, -0.0714220181107521, -0.07111291587352753, 0.02228105068206787, 0.03597750514745712, -0.039208922535181046, -0.012836521491408348, -0.0027914263773709536, -0.07043908536434174, -0.006383983418345451, 0.07315025478601456, -0.026158398017287254, 0.06729204207658768, 0.05253574624657631, 0.04937650263309479, -0.02889307402074337, 0.03939715027809143, -0.06948813050985336, 0.04318578541278839, 0.016637075692415237, -0.03529684245586395, -0.013208085671067238, -0.016194019466638565, 0.12373065948486328, 0.07501212507486343, -0.010306146927177906, -0.044810306280851364, 0.057974182069301605, 0.026929786428809166, -0.06037606671452522, -0.012719129212200642, -0.00010230781481368467, 0.01804344542324543, 0.010753964073956013, -0.01702665537595749, -0.019113115966320038, -0.008365603163838387, 0.016188278794288635, 0.025167478248476982, 0.07956001162528992, -0.01536999735981226, 0.06273255497217178, -0.008461706340312958, 0.010208330117166042, -0.030800843611359596, -0.03198527917265892, -0.0784023180603981, -0.005092089995741844, 0.010155138559639454, -0.011998982168734074, 0.06305136531591415, -0.025430062785744667, -0.06096899136900902, -0.054171036928892136, -0.07722780108451843, 0.03462301939725876, 0.034253742545843124, 0.04253535717725754, -0.0010247285244986415, 0.05819444730877876, -0.05243993550539017, 0.00016627699369564652, -0.02509329281747341, -0.059756189584732056, -0.009533368982374668, 0.018450429663062096, 0.0064184824004769325, 0.02391633950173855, 0.018600132316350937, 0.001582103781402111, 0.03926241397857666, 0.011076737195253372, 0.01681080460548401, -0.017910508438944817, 0.03066718950867653, 0.007502940483391285, 0.004209219012409449, -0.022410692647099495, 0.004354775883257389, 0.039697639644145966, -0.06346508115530014, -0.023668689653277397, 0.008562535978853703, -0.06362281739711761, 0.038776200264692307, -0.04461553692817688, -0.03190021961927414, -0.027582664042711258, 0.03415408357977867, 0.015298420563340187, 0.031807661056518555, 0.012533063068985939, 0.058487869799137115, 0.017258426174521446, -0.004626581910997629, 0.030688632279634476, 0.002702944213524461, 0.04301023110747337, 0.00046627441770397127, 0.02283279225230217, 0.051778651773929596, 0.00995947141200304, -0.029516957700252533, -0.03745870664715767, 0.003999186214059591, -0.043110642582178116, -0.2753603160381317, 0.05552738532423973, -0.04744848236441612, -0.02695980854332447, -0.0055719357915222645, -0.013764304108917713, 0.0471632219851017, -0.03285209834575653, -0.013943315483629704, -0.006579152308404446, -0.03348812460899353, -0.016954330727458, -0.03873801603913307, 0.02701275423169136, -0.008331269957125187, 0.007434796541929245, -0.003047932405024767, -0.07016497850418091, 0.0017972170608118176, -0.010730252601206303, -0.003418890293687582, -0.051338888704776764, -0.0003868649073410779, 0.05200588330626488, 0.0067203463986516, 0.047890760004520416, -0.04748343303799629, 0.05197115242481232, -0.04541818052530289, -0.021419137716293335, 0.00427531823515892, -0.03739657253026962, 0.015184306539595127, -0.011184420436620712, 0.008834908716380596, -0.018300428986549377, 0.008958086371421814, 0.021692950278520584, 0.020651502534747124, 0.0033283019438385963, -0.04353312402963638, -0.035934947431087494, -0.0024877116084098816, 0.008281607180833817, 0.08771726489067078, -0.006938188802450895, -0.06315844506025314, 0.007364587392657995, -0.002120043383911252, 0.06709422916173935, -0.026061762124300003, -0.050084300339221954, -0.010354164987802505, -0.013412754982709885, -0.029184484854340553, 0.014578969217836857, -0.0028013286646455526, -0.0010598301887512207, -0.028302859514951706, -0.026925241574645042, -0.0001520159567007795, -0.04731264337897301, 0.0003716927021741867, -0.05860603228211403, -0.04740674048662186, -0.04651687294244766, -0.07628440111875534, 0.017506984993815422, 0.07816891372203827, 0.05118845775723457, -0.042415451258420944, 0.04167258366942406, 0.0019122244557365775, -0.10946794599294662, -0.005008538719266653, -0.03438044711947441, -0.04955177754163742, -0.031700585037469864, -0.03477185219526291, 0.03988564759492874, -0.03807217255234718, -0.03712640702724457, 0.02835896797478199, 0.01011147815734148, 0.01031227596104145, -0.028478261083364487, 0.005202143453061581, -0.04759618267416954, -0.006077037192881107, -0.015305653214454651, 0.044458236545324326, -0.0560271292924881, -0.0017688395455479622, -0.019951924681663513, -0.027964673936367035, 0.0660763829946518, 0.02295883744955063, 0.019411688670516014, 0.003453661687672138, 0.04774850606918335, 0.017756398767232895, -0.04776746779680252, 0.009903306141495705, -0.04755813255906105, -0.002109655411913991, -0.012669933959841728, -0.047365885227918625, 0.045675382018089294, 0.013539139181375504, 0.050634272396564484, 0.012038965709507465, -0.027632175013422966, 0.013275135308504105, -0.05668516457080841, -0.005968861747533083, -0.011029285378754139, 0.017322883009910583, 0.016737617552280426, 0.03936449810862541, -0.006336243823170662, -0.029527805745601654, 0.006710798013955355, 0.018039612099528313, -0.02159881591796875, -0.04085645079612732, -0.03163554519414902, 0.016084665432572365, -0.015422041527926922, 0.01944911666214466, -0.014106683433055878, -0.03754618763923645, 0.03409156948328018, 0.05477333068847656, -0.010181214660406113, 0.01575036533176899, -0.01312753465026617, -0.023449473083019257, -0.04580945149064064, 0.019384173676371574, 0.015649544075131416, -0.004825202282518148, 0.0006601135828532279, -0.019369754940271378, 0.0029215796384960413, 0.04527074098587036, 0.02461024560034275, -0.0009342628181912005, -0.017809998244047165, 0.010530432686209679, 0.03137182071805, -0.0023100681137293577, -0.021145224571228027, -0.01488429307937622, -0.028241563588380814, -0.05406304448843002, -0.013791775330901146, 0.02700655907392502, 0.007988412864506245, 0.008310776203870773, -0.0349651575088501, 0.01183249056339264, -0.0632149949669838, -0.017501821741461754, -0.03467278927564621, 0.002332432195544243, 0.03961969166994095, 0.010003110393881798, 0.011332755908370018, 0.01297410111874342, 0.002451092703267932, -0.0072254897095263, 0.035742633044719696, -0.0349176824092865, 0.005353526212275028, -0.008938112296164036, -0.016620788723230362, 0.035093650221824646, 0.025667795911431313, 0.018838774412870407, 0.00534554198384285, 0.009060594253242016, 0.00033153005642816424, 0.014154189266264439, 0.0030422175768762827, 0.03346862643957138, 0.05294472351670265, -0.024928202852606773, -0.01416139304637909, 0.007068576291203499, -0.01886066049337387, -0.028933726251125336, -0.0019507916877046227, -0.0077408975921571255, -0.004002884961664677, -0.024393858388066292, -0.0600215420126915, 0.058877427130937576, 0.021865425631403923, 0.010953626595437527, 0.010284977033734322, 0.011783262714743614, -0.009870464913547039, -0.03930061310529709, 0.043349653482437134, 0.08493348956108093, -0.03904085233807564, 0.01098555140197277, 0.00010657687380444258, 0.006618104409426451, -0.007415737956762314, 0.03187466040253639, -0.04285693168640137, 0.004459896124899387, -0.016084615141153336, 0.02243857830762863, -0.05725289136171341, -0.034304406493902206, -0.029360774904489517, -0.0062895421870052814, 0.0017870244337245822, 0.0311692226678133, -0.0034103540237993, 0.004785650409758091, -0.010384263470768929, -0.0376226045191288, 0.04391903802752495, 0.021865272894501686, 0.03187256678938866, 0.01583482325077057, -0.01769494265317917, 0.034382641315460205, -0.060129567980766296, 0.003332896390929818, 0.0028406712226569653, -0.054393500089645386, -0.02299356646835804, -0.05821816995739937, 0.014770490117371082, -0.00881663803011179, 0.09434028714895248, -0.006394048687070608, -0.00827326625585556, -0.025035610422492027, -0.004457985050976276, -0.013575009070336819, -0.0019936973694711924, 0.0029473702888935804, -0.01384048257023096, 0.0402195006608963, 0.0529928132891655, 0.0044124312698841095, 0.004724031779915094, -0.0066813076846301556, -0.021680422127246857, 0.025935329496860504, -0.04069780930876732, -0.029062388464808464, -0.0000834220991237089, -0.05340031534433365, 0.02600092999637127, 0.03308476507663727, 0.02559187449514866, -0.04682932794094086, 0.04060908779501915, 0.05126752704381943, 0.011471819132566452, 0.04113146290183067, -0.008814440108835697, 0.02015809342265129, -0.010054786689579487, -0.013242589309811592, -0.07932401448488235, 0.02193991281092167, 0.043418001383543015, -0.013414151035249233, -0.016811277717351913, 0.005132655613124371, -0.03613293543457985, 0.03123209998011589, -0.06533307582139969, -0.0508543960750103, 0.04546792060136795, -0.01137371826916933, 0.02765839174389839, -0.01105837244540453, -0.04440011829137802, 0.03691011294722557, 0.045662157237529755, -0.05831555649638176, -0.008256287313997746, -0.007619468495249748, 0.06686728447675705, -0.017195338383316994, 0.03512981906533241, -0.020764416083693504, -0.029445907101035118, 0.06347908079624176, 0.01566287688910961, 0.009628063067793846, 0.0394064225256443, -0.015241206623613834, 0.05089477449655533, 0.030826391652226448, -0.03945944458246231, 0.006137275602668524, 0.019803812727332115, -0.029583778232336044, -0.05374743789434433, -0.003358410904183984, 0.0001049212078214623, 0.0017432539025321603, -0.04286963865160942, 0.06194225698709488, 0.013219393789768219, -0.01748683489859104, -0.028962261974811554, -0.013157493434846401, -0.007543252315372229, -0.019794898107647896, -0.0059907096438109875, 0.03612919896841049, -0.052215881645679474, 0.04173710569739342, 0.0046082125045359135, 0.012028460390865803, 0.07999476790428162, 0.007367878220975399, -0.012412674725055695, 0.05121790990233421, 0.07871464639902115, 0.06400351971387863, 0.01261697057634592, -0.002680127276107669, 0.05225846916437149, -0.0028485655784606934, -0.03463679924607277, -0.0018913977546617389, -0.016089940443634987, -0.028904180973768234, -0.023807181045413017, -0.0005595749826170504, 0.07151661068201065, -0.019689464941620827, 0.06477779150009155, 0.01382378302514553, -0.008227509446442127, -0.03499297425150871, 0.008932567201554775, 0.04029660299420357, 0.008683468215167522, 0.003533816197887063, 0.02284446358680725, 0.0037270844914019108, -0.036242686212062836, 0.013665021397173405, 0.012266408652067184, -0.04100796952843666, 0.029645804315805435, -0.04975305125117302, 0.009662571363151073, 0.005473416298627853, 0.01026222389191389, 0.048185087740421295, -0.03439343720674515, -0.009948738850653172, 0.013449843972921371, 0.041193313896656036, -0.0038731528911739588, -0.001461018342524767, -0.037549905478954315, -0.023410571739077568, -0.03847750648856163, -0.03562551364302635, 0.010758992284536362, 0.008426884189248085, -0.02983279526233673, 0.014852874912321568, -0.020100703462958336, -0.011700917035341263, 0.05191202834248543, -0.024953505024313927, -0.05643264576792717, -0.046330831944942474, -0.03948470577597618, -0.055444467812776566, -0.0831977128982544, -0.024949010461568832, 0.018757671117782593, -0.010899707674980164, -0.03323092684149742, -0.021557200700044632, -0.02210732363164425, -0.010158735327422619, 0.013425273820757866, -0.031019549816846848, -0.023739272728562355, 0.013660191558301449, 0.037051018327474594, 0.004619878251105547, 0.013226157054305077, 0.06127913296222687, 0.0019003902561962605, -0.010846283286809921, -0.017743727192282677, -0.007910652086138725, 0.04792754724621773, -0.02918902225792408, -0.013047510758042336, -0.07228511571884155, 0.026953332126140594, 0.061872173100709915, -0.009424345567822456, -0.07711777836084366, 0.02058858424425125, 0.02838074043393135, -0.019868796691298485, 0.04560888931155205, -0.030447695404291153, -0.004307826980948448, -0.04153972491621971, -0.021383941173553467, -0.013904083520174026, 0.015049265697598457, 0.047966379672288895, -0.01498023048043251, 0.06283698230981827, 0.06354670226573944, -0.049672406166791916, -0.0060068098828196526, -0.005048742052167654, 0.01692354679107666, 0.017866430804133415, -0.06403008848428726, -0.025862256065011024, -0.060055144131183624, -0.0424768328666687, -0.025904349982738495, 0.014034440740942955, -0.009049675427377224, -0.04825754091143608, 0.016612200066447258, -0.009829520247876644, -0.030273912474513054, 0.00031834252877160907, -0.06851435452699661, -0.015417365357279778, -0.02417207509279251, -0.021692177280783653, -0.03956262022256851, 0.03857970982789993, -0.008031100034713745, -0.033549439162015915, 0.009119254536926746, -0.026860229671001434, -0.0029044481925666332, -0.02282169833779335, 0.05111946910619736, 0.041571538895368576, -0.011682756245136261, -0.004389541689306498 ]
[ -0.06913615763187408, -0.03938717767596245, -0.014223379082977772, -0.028354793787002563, 0.08270665258169174, -0.08941589295864105, -0.008764655329287052, 0.0023593020159751177, -0.030109697952866554, -0.0096672298386693, -0.0002705836668610573, -0.0631631538271904, -0.010453324764966965, -0.011752991937100887, 0.04394008591771126, -0.011008260771632195, -0.002025830326601863, -0.03777331858873367, 0.0044610523618757725, 0.03907456248998642, -0.0007550694281235337, -0.00043318941607140005, -0.06360425055027008, -0.049924932420253754, -0.002784213051199913, 0.04977458715438843, 0.021722175180912018, -0.01562058087438345, -0.025877421721816063, -0.20012244582176208, 0.024094725027680397, -0.03315730765461922, -0.03147212415933609, -0.01078885793685913, 0.023579677566885948, 0.0062759872525930405, 0.03674747049808502, 0.0007315517868846655, 0.036122627556324005, 0.058409906923770905, 0.03942510858178139, -0.016422053799033165, -0.06380829215049744, 0.0023505105637013912, -0.0261349119246006, -0.03725901618599892, -0.012097288854420185, -0.001620101509615779, 0.025600798428058624, 0.0061289118602871895, -0.04229705408215523, 0.01642516255378723, -0.013188859447836876, -0.021003684028983116, 0.005745693109929562, 0.02925148978829384, 0.06931579858064651, 0.05277544632554054, 0.026802722364664078, -0.006445169914513826, 0.009054169990122318, -0.01849569007754326, -0.15213218331336975, 0.14009089767932892, 0.015172282233834267, 0.030344143509864807, -0.017547601833939552, 0.024107951670885086, -0.029479898512363434, 0.040911369025707245, -0.009804188273847103, -0.026236360892653465, -0.07554303854703903, 0.06203243136405945, 0.01194133423268795, -0.03243133798241615, -0.014126871712505817, 0.026992863044142723, 0.0168107021600008, -0.0116023700684309, -0.05536939203739166, 0.007302266079932451, -0.0054880608804523945, -0.018935536965727806, -0.023725857958197594, 0.034413453191518784, 0.008163762278854847, 0.04693314805626869, -0.009166611358523369, 0.013337391428649426, 0.02278904803097248, -0.033255234360694885, 0.03417668864130974, 0.03161066398024559, -0.08533306419849396, 0.012754272669553757, 0.01992873288691044, 0.020061954855918884, -0.02713724970817566, 0.381898432970047, -0.03843376785516739, 0.00012210328713990748, 0.013483304530382156, 0.0049609290435910225, 0.014024457894265652, 0.021609662100672722, -0.0358610562980175, -0.03244855999946594, 0.04560483992099762, -0.01732248067855835, -0.0025023610796779394, 0.017087111249566078, 0.09886393696069717, -0.05963205173611641, 0.016254091635346413, 0.01912040263414383, -0.009529146365821362, 0.00254639470949769, -0.02266625314950943, 0.06302963942289352, 0.02292924001812935, -0.0050298599526286125, 0.03296762332320213, 0.051192063838243484, 0.007056131027638912, -0.007999211549758911, 0.044062208384275436, 0.030111053958535194, 0.032858408987522125, 0.007662443444132805, 0.04195283353328705, -0.036351703107357025, -0.04688902571797371, -0.010608785785734653, 0.040329210460186005, 0.00436109583824873, 0.017264746129512787, -0.017202511429786682, 0.006582499481737614, -0.03189714998006821, -0.04673121124505997, -0.07399431616067886, 0.054455313831567764, -0.015420826151967049, -0.027910141274333, 0.13636937737464905, 0.01712017133831978, -0.037810295820236206, -0.020941246300935745, -0.06431986391544342, -0.0678647831082344, 0.027093127369880676, 0.02033161371946335, -0.05766609311103821, 0.016257107257843018, 0.01782514713704586, 0.0642891451716423, -0.01564164273440838, -0.08015961945056915, -0.008196287788450718, -0.01538021583110094, -0.04413697496056557, -0.023210277780890465, -0.0022345620673149824, 0.05596958100795746, -0.1317279040813446, -0.03151264041662216, 0.014962660148739815, 0.019830260425806046, -0.030364084988832474, -0.025023289024829865, 0.023530133068561554, -0.012326345779001713, -0.026658372953534126, 0.058032967150211334, -0.016195928677916527, 0.03129752352833748, 0.016204610466957092, 0.04469592869281769, 0.025114942342042923, -0.024013400077819824, 0.029381176456809044, -0.03533753752708435, 0.003052692161872983, -0.013034035451710224, -0.08139199018478394, -0.06591369956731796, -0.001078109722584486, -0.006984954234212637, -0.02808423340320587, -0.01140435878187418, -0.05199599638581276, -0.05462479591369629, 0.09893620014190674, -0.0011497477535158396, -0.022641438990831375, 0.01973499171435833, 0.02226472645998001, 0.03449787199497223, -0.06532775610685349, 0.016368437558412552, 0.004638304468244314, 0.017250334843993187, 0.020115617662668228, -0.03134575113654137, 0.03206232190132141, 0.044177353382110596, -0.0544779896736145, 0.025454474613070488, 0.03991696983575821, 0.0005651055253110826, 0.024748194962739944, 0.003666018368676305, 0.008724124170839787, -0.007784797810018063, 0.011466358788311481, -0.015139689669013023, -0.004675494506955147, 0.03919167071580887, 0.05311103165149689, -0.038366615772247314, -0.03161723539233208, -0.006737124174833298, -0.35803288221359253, -0.03926528990268707, -0.03963305801153183, -0.01046820729970932, 0.014417624101042747, -0.037165429443120956, -0.005798629485070705, -0.030927930027246475, 0.01612541638314724, 0.005953969433903694, 0.07337092608213425, -0.047078605741262436, 0.015080061741173267, -0.08159645646810532, 0.001998684136196971, 0.04484504461288452, -0.012445465661585331, -0.015426204539835453, -0.020089805126190186, 0.01892515830695629, -0.016163043677806854, -0.03576987609267235, -0.03157041594386101, -0.024668332189321518, 0.01668248139321804, -0.03962819650769234, 0.10080520063638687, 0.007576336152851582, 0.048697177320718765, -0.06963865458965302, 0.04717159643769264, 0.011825469322502613, 0.02105734311044216, -0.08587609976530075, -0.011297523975372314, -0.05750615894794464, -0.0010564601980149746, 0.0290362648665905, 0.008234305307269096, -0.014974555931985378, -0.036113157868385315, 0.03851984813809395, -0.019988996908068657, -0.038360338658094406, -0.0040898374281823635, 0.004272643476724625, 0.03503270074725151, 0.01552334800362587, -0.0437232069671154, 0.014516550116240978, 0.025073396041989326, 0.009838997386395931, 0.00621591554954648, 0.03394090384244919, 0.038663145154714584, -0.01914871856570244, -0.04052364453673363, -0.01008455827832222, 0.03095434606075287, -0.003689171513542533, 0.036538414657115936, 0.05435912683606148, 0.02044411189854145, -0.050475601106882095, -0.03280293941497803, 0.015773076564073563, -0.020418589934706688, -0.02827989123761654, 0.033034298568964005, -0.0053925723768770695, -0.036668840795755386, 0.10430622100830078, -0.010790993459522724, 0.021629495546221733, 0.03534650802612305, 0.027135193347930908, -0.028436731547117233, 0.003126086900010705, 0.030614681541919708, -0.008849171921610832, 0.05803292989730835, -0.00660221092402935, 0.07120580226182938, -0.010611492209136486, 0.031726349145174026, 0.06871842592954636, -0.0010728966444730759, 0.010688329115509987, 0.07468178868293762, 0.0058924793265759945, -0.023919863626360893, -0.01672619767487049, 0.004995191469788551, -0.051096975803375244, 0.08803470432758331, 0.020831497386097908, -0.2831900715827942, 0.07459075003862381, 0.0795440599322319, 0.0420820526778698, 0.0000043181839828321245, 0.012906733900308609, -0.00644206115975976, -0.06425420194864273, -0.005800359882414341, 0.023981550708413124, -0.024540456011891365, 0.03544865548610687, 0.02713773213326931, -0.010241617448627949, 0.01062143873423338, 0.025184955447912216, 0.02396557293832302, -0.0016261388082057238, 0.0107108848169446, -0.035410601645708084, -0.0010455625597387552, -0.00949457660317421, 0.1814257800579071, 0.048131901770830154, -0.009299049153923988, 0.02543393149971962, -0.00452067144215107, 0.019000999629497528, 0.06660427898168564, 0.050368618220090866, 0.0087072579190135, -0.02135857753455639, 0.07884927839040756, -0.006595284212380648, 0.034079410135746, -0.05605270713567734, -0.03822967782616615, 0.002252347068861127, 0.021863622590899467, -0.03007718175649643, -0.05418388172984123, 0.032178040593862534, -0.07334808260202408, 0.022964224219322205, 0.050295595079660416, -0.016018856316804886, -0.020267194136977196, -0.048592887818813324, -0.018808938562870026, -0.003788940841332078, -0.022003844380378723, -0.04680706560611725, -0.019191408529877663, -0.012223384343087673, -0.016466112807393074, 0.07957867532968521, 0.05648767203092575, -0.03786730021238327, 0.000378369411919266, 0.03513703495264053, 0.013270755298435688, -0.05413853004574776, 0.09623365849256516, 0.02384701743721962, 0.004515030421316624 ]
[ 0.018698623403906822, 0.004967470653355122, 0.010275471955537796, 0.01189277321100235, 0.019248567521572113, 0.0067279585637152195, -0.022218823432922363, 0.028263889253139496, 0.008121858350932598, -0.01730348914861679, -0.010152150876820087, 0.0008565475582145154, -0.00919963326305151, -0.007286828011274338, -0.023235497996211052, -0.041572947055101395, 0.020038442686200142, -0.019049977883696556, 0.04915246367454529, 0.02506164275109768, -0.048246532678604126, -0.006081318017095327, 0.018454985693097115, 0.010489944368600845, -0.009905222803354263, -0.01732661761343479, -0.06994523853063583, 0.010885239578783512, -0.008414874784648418, -0.11666124314069748, -0.020947163924574852, 0.013067778199911118, 0.005671228282153606, -0.007460008375346661, 0.006521035451442003, 0.03568102791905403, 0.028704967349767685, -0.0102913873270154, -0.03651004657149315, 0.007284705061465502, 0.01890558749437332, -0.020441222935914993, 0.014833683148026466, -0.007198401726782322, -0.003317935625091195, -0.02341201715171337, 0.002783251227810979, -0.03943462669849396, -0.03781849145889282, 0.03179612755775452, -0.08002404123544693, 0.010364075191318989, -0.0075926873832941055, -0.017549140378832817, 0.013227416202425957, 0.03082936815917492, -0.03180428221821785, -0.012490969151258469, 0.015051005408167839, -0.0159317497164011, -0.004491382744163275, 0.02444971166551113, -0.03577122837305069, -0.020877743139863014, 0.04307067394256592, -0.05991445854306221, -0.009326529689133167, 0.002508329227566719, 0.03454415500164032, -0.018245363608002663, 0.00794119294732809, 0.010428719222545624, -0.02394753135740757, -0.017994195222854614, -0.062116000801324844, 0.04422518238425255, 0.02901630662381649, 0.0012887181947007775, 0.010762659832835197, -0.03649897873401642, -0.05201216787099838, -0.02177209034562111, 0.005941266193985939, 0.001839063479565084, -0.018083231523633003, -0.018064681440591812, -0.00999249517917633, 0.07052243500947952, -0.01388503797352314, -0.06259804964065552, -0.006466186139732599, 0.0015529502416029572, -0.022373288869857788, 0.011600468307733536, -0.04384241998195648, -0.014601006172597408, 0.008083936758339405, -0.00010742823360487819, -0.004320547915995121, 0.8146883845329285, 0.0013691254425793886, 0.030677257105708122, -0.009637253358960152, -0.005710267927497625, 0.053929153829813004, -0.010109626688063145, -0.03663361445069313, 0.005370830651372671, -0.02582051418721676, -0.025000911206007004, 0.02421656996011734, 0.011368600651621819, 0.002790785161778331, 0.008222903124988079, 0.027667056769132614, 0.05051731318235397, -0.03380923345685005, -0.02486453764140606, -0.023607974871993065, 0.037721242755651474, 0.03488228842616081, -0.034750133752822876, -0.0029729276429861784, -0.030329151079058647, -0.01909543387591839, -0.1483498513698578, 0.05216040834784508, -6.0014338782193865e-33, 0.02871757000684738, -0.06606084108352661, 0.021753650158643723, -0.01341507863253355, 0.07656733691692352, 0.024582207202911377, -0.008150071837008, -0.0030514521058648825, 0.003433865960687399, -0.003925820346921682, 0.022490231320261955, -0.04946993663907051, -0.03900410234928131, -0.05107725039124489, 0.004216888453811407, -0.011364911682903767, -0.027071386575698853, 0.026110457256436348, 0.03047538362443447, -0.006693613715469837, 0.06341584771871567, -0.016847506165504456, -0.04669199883937836, 0.0056439111940562725, 0.05947834998369217, -0.008942432701587677, 0.005293714813888073, -0.02853560447692871, -0.0026990543119609356, -0.038957979530096054, 0.02656572312116623, -0.013093585148453712, -0.01439553964883089, -0.025973785668611526, 0.050408247858285904, -0.07678389549255371, -0.011194504797458649, 0.010883035138249397, -0.07808822393417358, -0.012970052659511566, -0.011623617261648178, -0.04236961156129837, -0.02428324520587921, -0.009147653356194496, -0.015132313594222069, 0.005353306420147419, 0.009454241953790188, 0.03632291033864021, 0.012762644328176975, 0.037865009158849716, 0.01236591674387455, 0.015348832122981548, 0.0309907179325819, -0.03592703863978386, -0.022359320893883705, 0.020625455304980278, -0.005224631633609533, -0.008851590566337109, -0.044110722839832306, -0.04174349457025528, -0.011024421080946922, -0.014026381075382233, -0.03556715324521065, -0.0009699942893348634, -0.0045201960019767284, 0.021341999992728233, 0.0470181480050087, 0.03188483417034149, 0.02093202993273735, 0.06393022835254669, -0.03791383281350136, 0.014670716598629951, 0.004854509141296148, -0.019890055060386658, 0.0018344223499298096, -0.03013169765472412, 0.06153154373168945, 0.00770199578255415, 0.03137270361185074, 0.022324882447719574, -0.010577448643743992, 0.006386881694197655, -0.02946789190173149, 0.02207019366323948, -0.02091902866959572, 0.005675284657627344, 0.0657322034239769, 0.042850784957408905, 0.002640904625877738, 0.0018428163602948189, 0.03738966956734657, 0.06344857066869736, 0.023883473128080368, -0.055357083678245544, -0.023283662274479866, 6.497146825458853e-33, -0.007309524808079004, -0.01782577857375145, -0.008869058452546597, 0.03114643320441246, 0.04994960129261017, -0.047095317393541336, 0.03057706542313099, 0.04622911661863327, 0.03207053616642952, -0.0015375663060694933, -0.0008454119088128209, 0.011518738232553005, -0.01687748357653618, 0.02848700061440468, 0.03438786789774895, 0.014918474480509758, 0.003649497637525201, -0.009609605185687542, 0.016373036429286003, -0.022532805800437927, -0.0038572039920836687, -0.008193643763661385, 0.012509053573012352, 0.013009992428123951, 0.05366187542676926, 0.048149313777685165, 0.012806182727217674, 0.011869046837091446, -0.02199666015803814, 0.004565625451505184, 0.028097519651055336, -0.002855389378964901, 0.0051730042323470116, -0.01918898895382881, -0.04786587134003639, 0.021479599177837372, 0.0017553786747157574, -0.0027106197085231543, -0.013853457756340504, 0.005949401296675205, -0.0023197848349809647, 0.006798465270549059, -0.05161403864622116, 0.006514568813145161, -0.03404335677623749, 0.035111214965581894, 0.033137645572423935, -0.0006414803792722523, 0.010752123780548573, 0.02341100201010704, -0.01593850925564766, -0.020958388224244118, 0.012171967886388302, 0.010267420671880245, 0.03929091617465019, -0.007747222203761339, 0.00698928814381361, 0.0031787571497261524, -0.03026406280696392, -0.029841449111700058, -0.0037278763484209776, -0.01134517602622509, -0.00021272343292366713, 0.02441355586051941, -0.016178803518414497, -0.032429102808237076, -0.02590889297425747, 0.0018161418847739697, -0.014699328690767288, -0.00917520560324192, 0.05060747265815735, 0.03056362085044384, -0.03451335430145264, 0.058350518345832825, -0.006460950244218111, -0.00012737573706544936, 0.001047095051035285, 0.032964225858449936, -0.004024341702461243, -0.006644102279096842, 0.0074435207061469555, 0.03733383119106293, 0.007300694938749075, -0.0013471286511048675, 0.01579912193119526, 0.024319663643836975, -0.04668263718485832, 0.030950138345360756, 0.03212622553110123, -0.011774878948926926, -0.018134446814656258, -0.03647911921143532, -0.029886756092309952, 0.017170725390315056, 0.0051946863532066345, -1.211646605270289e-8, -0.00026974474894814193, 0.016207635402679443, -0.0334034189581871, 0.020750408992171288, 0.037540365010499954, -0.0012336733052507043, -0.03656642511487007, -0.012151041999459267, 0.012427465058863163, 0.030704522505402565, 0.0747322142124176, -0.0026796720921993256, 0.004074954427778721, 0.00249648280441761, 0.006280248053371906, -0.010718973353505135, -0.007983943447470665, -0.01114677544683218, 0.01967519335448742, -0.009481659159064293, 0.021546509116888046, 0.01271017361432314, 0.04210570827126503, -0.03964434191584587, -0.03963920846581459, 0.04632309079170227, 0.003095563966780901, -0.037285808473825455, 0.008023045025765896, 0.005256605334579945, 0.027286143973469734, -0.03563712164759636, -0.006106558721512556, -0.01621662825345993, -0.05278768390417099, -0.01756800152361393, -0.01655377633869648, -0.0014344906667247415, -0.022825615480542183, 0.02956453152000904, -0.0017872093012556434, -0.02746986411511898, -0.039343707263469696, -0.0327189639210701, -0.028154943138360977, -0.026935836300253868, -0.03251053765416145, 0.022715270519256592, -0.01895173080265522, -0.0015735968481749296, -0.005410022102296352, -0.0043921153992414474, 0.05262441188097, 0.004615194629877806, 0.07646720856428146, 0.04245014488697052, 0.05231720581650734, -0.013126382604241371, 0.01587740331888199, -0.006274813786149025, 0.012592005543410778, 0.026952220126986504, -0.01542710792273283, -0.014976303093135357 ]
apache-pinot-convert-datetime-string-timestamp-invalid-timestamp
https://markhneedham.com/blog/2021/12/03/apache-pinot-convert-datetime-string-timestamp-invalid-timestamp
false
2021-12-07 00:44:37
Apache Pinot: Exploring range queries
[ "pinot" ]
[ "Pinot" ]
:icons: font In https://www.markhneedham.com/blog/2021/11/30/apache-pinot-exploring-index-chicago-crimes/[our last post about the Chicago Crimes dataset and Apache Pinot^], we learnt how to use various indexes to filter columns by exact values. In this post we're going to learn how to write range queries against the dataset. .Apache Pinot - Range Queries image::{{<siteurl>}}/uploads/2021/12/range-queries.png[] == Recap To recap, the Chicago Crimes dataset contains more than 7 million crimes committed in Chicago from 2001 until today. For each crime we have various identifiers, a timestamp, location, and codes reprsenting the type of crime that's been committed. A subset of the data is shown below: .Chicago Crimes Dataset image::{{<siteurl>}}/uploads/2021/11/chicago-crimes.png[Chicago Crimes Dataset, role='medium-zoom-image'] We loaded this data into Apache and Pinot and then analysed the `numEntriesScannedInFilter` and `timeUsedMs` values returned in the query metadata to see how well we'd optimised our queries. == Setup We're going to use the same Docker Compose script as before, which spins up the various components for Apache Pinot 0.9.0: .docker-compose.yml [source, yaml] ---- version: '3.7' services: zookeeper: image: zookeeper:3.5.6 hostname: zookeeper container_name: manual-zookeeper ports: - "2181:2181" environment: ZOOKEEPER_CLIENT_PORT: 2181 ZOOKEEPER_TICK_TIME: 2000 pinot-controller: image: apachepinot/pinot:0.9.0 command: "StartController -zkAddress manual-zookeeper:2181" container_name: "manual-pinot-controller" volumes: - ./config:/config - ./data:/data restart: unless-stopped ports: - "9000:9000" depends_on: - zookeeper pinot-broker: image: apachepinot/pinot:0.9.0 command: "StartBroker -zkAddress manual-zookeeper:2181" restart: unless-stopped container_name: "manual-pinot-broker" volumes: - ./config:/config - ./data:/data ports: - "8099:8099" depends_on: - pinot-controller pinot-server: image: apachepinot/pinot:0.9.0 command: "StartServer -zkAddress manual-zookeeper:2181" restart: unless-stopped container_name: "manual-pinot-server" volumes: - ./config:/config - ./data:/data depends_on: - pinot-broker ---- == Schema We've made a small change to our schema since the last blog post. Instead of storing the timestamp as a `STRING`, we're going to store it as a `TIMESTAMP` so that we can perform date time operations. We'll also change the column name from `Timestamp` to `DateEpoch`. The updated schema is shown below: ./config/schema.json [source,json] ---- { "schemaName": "crimes", "dimensionFieldSpecs": [ { "name": "ID", "dataType": "INT" }, { "name": "CaseNumber", "dataType": "STRING" }, { "name": "Block", "dataType": "STRING" }, { "name": "IUCR", "dataType": "STRING" }, { "name": "PrimaryType", "dataType": "STRING" }, { "name": "Arrest", "dataType": "BOOLEAN" }, { "name": "Domestic", "dataType": "BOOLEAN" }, { "name": "Beat", "dataType": "STRING" }, { "name": "District", "dataType": "STRING" }, { "name": "Ward", "dataType": "STRING" }, { "name": "CommunityArea", "dataType": "STRING" }, { "name": "FBICode", "dataType": "STRING" }, { "name": "Latitude", "dataType": "DOUBLE" }, { "name": "Longitude", "dataType": "DOUBLE" } ], "dateTimeFieldSpecs": [ { "name": "DateEpoch", "dataType": "TIMESTAMP", "format" : "1:MILLISECONDS:EPOCH", "granularity": "1:MILLISECONDS" } ] } ---- If you read the first post about this dataset you'll remember that the timestamp was a DateTime string in the `MM/dd/yyyy HH:mm:ss a` format, rather than the number of milliseconds since the epoch. We're going to take care of that with a https://docs.pinot.apache.org/users/user-guide-query/supported-transformations[transformation function^] in our table config. == Table The table config is described below: ./config/table.json [source, json] ---- { "tableName": "crimes", "tableType": "OFFLINE", "segmentsConfig": { "replication": 1 }, "tenants": { "broker":"DefaultTenant", "server":"DefaultTenant" }, "tableIndexConfig": { "loadMode": "MMAP", "sortedColumn": ["Beat"] }, "nullHandlingEnabled": true, "ingestionConfig": { "batchIngestionConfig": { "segmentIngestionType": "APPEND", "segmentIngestionFrequency": "DAILY" }, "transformConfigs": [ {"columnName": "CaseNumber", "transformFunction": "\"Case Number\"" }, {"columnName": "PrimaryType", "transformFunction": "\"Primary Type\"" }, {"columnName": "CommunityArea", "transformFunction": "\"Community Area\"" }, {"columnName": "FBICode", "transformFunction": "\"FBI Code\"" }, {"columnName": "DateEpoch", "transformFunction": "FromDateTime(\"Date\", 'MM/dd/yyyy HH:mm:ss a')" } ] }, "metadata": {} } ---- As mentioned in the previous section, we're using the `FromDateTime` transformation function to convert the DateTime strings in the `Date` column into timestamps. [NOTE] ==== For more details on the data transformation works see my blog post https://www.markhneedham.com/blog/2021/12/03/apache-pinot-convert-datetime-string-timestamp-invalid-timestamp/[Converting a DateTime String to Timestamp in Apache Pinot^]. ==== Now let's create the table and schema: [source, bash] ---- docker exec -it manual-pinot-controller bin/pinot-admin.sh AddTable \ -tableConfigFile /config/table.json \ -schemaFile /config/schema.json -exec ---- == Import CSV Now we're going to import the crimes into Pinot, using the following ingestion spec: ./config/job-spec-sorted.yml [source,yaml] ---- executionFrameworkSpec: name: 'standalone' segmentGenerationJobRunnerClassName: 'org.apache.pinot.plugin.ingestion.batch.standalone.SegmentGenerationJobRunner' segmentTarPushJobRunnerClassName: 'org.apache.pinot.plugin.ingestion.batch.standalone.SegmentTarPushJobRunner' jobType: SegmentCreationAndTarPush inputDirURI: '/data' includeFileNamePattern: 'glob:**/Crimes_beat_sorted.csv' outputDirURI: ' ' pinotFSSpecs: - scheme: file className: org.apache.pinot.spi.filesystem.LocalPinotFS recordReaderSpec: dataFormat: 'csv' className: 'org.apache.pinot.plugin.inputformat.csv.CSVRecordReader' configClassName: 'org.apache.pinot.plugin.inputformat.csv.CSVRecordReaderConfig' tableSpec: tableName: 'crimes' pinotClusterSpecs: - controllerURI: 'http://localhost:9000' ---- [source,bash] ---- docker exec \ -it manual-pinot-controller bin/pinot-admin.sh LaunchDataIngestionJob \ -jobSpecFile /config/job-spec-sorted.yml ---- == Range Querying Now it's time to do some range querying. Let's start by counting the crimes committed on 1st January 2019, which we can do by running the following query: [source,sql] ---- SELECT count(*) FROM crimes WHERE DateEpoch BETWEEN FromDateTime('2019-01-01', 'yyyy-MM-dd') AND FromDateTime('2019-01-02', 'yyyy-MM-dd') ---- As in the last post, we'll be looking at the output in JSON format to see what's going on under the covers: .Output [source,json] ---- { "numDocsScanned": 1065, "numEntriesScannedInFilter": 7434990, "numEntriesScannedPostFilter": 0, "timeUsedMs": 80 } ---- As we might expect, the SQL engine has scanned all 7,434,990 rows to check which ones match the date range. 1,065 crimes were committed on this day and the query took 80 ms. Now we're going to create another table called `crimes_index` that has a https://docs.pinot.apache.org/basics/indexing/range-index[range index^] applied to the `DateEpoch` column: ./config/table-range-index.json [source, json] ---- { "tableName": "crimes_range_index", "tableType": "OFFLINE", "segmentsConfig": { "replication": 1, "schemaName": "crimes", <1> }, "tenants": { "broker":"DefaultTenant", "server":"DefaultTenant" }, "tableIndexConfig": { "loadMode": "MMAP", "sortedColumn": ["Beat"], "rangeIndexVersion": 2, "rangeIndexColumns": ["DateEpoch"] <2> }, "nullHandlingEnabled": true, "ingestionConfig": { "batchIngestionConfig": { "segmentIngestionType": "APPEND", "segmentIngestionFrequency": "DAILY" }, "transformConfigs": [ {"columnName": "CaseNumber", "transformFunction": "\"Case Number\"" }, {"columnName": "PrimaryType", "transformFunction": "\"Primary Type\"" }, {"columnName": "CommunityArea", "transformFunction": "\"Community Area\"" }, {"columnName": "FBICode", "transformFunction": "\"FBI Code\"" }, {"columnName": "DateEpoch", "transformFunction": "FromDateTime(\"Date\", 'MM/dd/yyyy HH:mm:ss a')" } ] }, "metadata": {} } ---- <1> We need to explicitly specify the schema name since it doesn't match the table name. <2> Add a range index on the `DateEpoch` column. Run the following command to create the table: [source, bash] ---- docker exec -it manual-pinot-controller bin/pinot-admin.sh AddTable \ -tableConfigFile /config/table-range-index.json \ -schemaFile /config/schema.json -exec ---- Now let's copy the segment from the `crimes` table to the `crimes_range_index` table. We can do this with the following ingestion spec: ./config/job-spec-download-only.yml [source,yaml] ---- executionFrameworkSpec: name: 'standalone' segmentTarPushJobRunnerClassName: 'org.apache.pinot.plugin.ingestion.batch.standalone.SegmentTarPushJobRunner' jobType: SegmentTarPush outputDirURI: '/opt/pinot/data/crimes' pinotFSSpecs: - scheme: file className: org.apache.pinot.spi.filesystem.LocalPinotFS tableSpec: tableName: 'crimes_range_index' pinotClusterSpecs: - controllerURI: 'http://localhost:9000' ---- Run the ingestion spec: [source,bash] ---- docker exec \ -it manual-pinot-controller bin/pinot-admin.sh LaunchDataIngestionJob \ -jobSpecFile /config/job-spec-download-only.yml ---- [NOTE] ==== For more details on how this ingestion spec works, see my blog post https://www.markhneedham.com/blog/2021/12/06/apache-pinot-copy-segment-new-table/[Apache Pinot: Copying a segment to a new table^]. ==== Now let's re-run the query against the new table: [source,sql] ---- SELECT count(*) FROM crimes_range_index WHERE DateEpoch BETWEEN FromDateTime('2019-01-01', 'yyyy-MM-dd') AND FromDateTime('2019-01-02', 'yyyy-MM-dd') ---- .Output [source, json] ---- { "numDocsScanned": 1065, "numEntriesScannedInFilter": 0, "numEntriesScannedPostFilter": 0, "timeUsedMs": 14 } ---- `numEntriesScannedInFilter` is now down to 0 and the query is more than 5 times faster than it was before. Now let's see what happens if we filter on multiple columns. We have a sorted index on the `Beat` column, so let's find the crimes committed on a specific beat on 1st January 2019: [source, sql] ---- SELECT count(*) FROM crimes WHERE DateEpoch BETWEEN FromDateTime('2019-01-01', 'yyyy-MM-dd') AND FromDateTime('2019-01-02', 'yyyy-MM-dd') AND Beat = '0421' ---- .Output [source, json] ---- { "numDocsScanned": 13, "numEntriesScannedInFilter": 57573, "numEntriesScannedPostFilter": 0, "timeUsedMs": 3 } ---- [source, sql] ---- SELECT count(*) FROM crimes_range_index WHERE DateEpoch BETWEEN FromDateTime('2019-01-01', 'yyyy-MM-dd') AND FromDateTime('2019-01-02', 'yyyy-MM-dd') AND Beat = '0421' ---- .Output [source, json] ---- { "numDocsScanned": 13, "numEntriesScannedInFilter": 0, "numEntriesScannedPostFilter": 0, "timeUsedMs": 12 } ---- In this case, the combination of sorted index on `Beat` and a scan of the forward index on `DateEpoch` is quicker than querying indexes on both fields. Admittedly this is far from the normal usage of Pinot. I'm only running one query at a time, whereas there would normally be thousands (if not more) concurrent queries, which would tip things in favour of using the indexes on both fields. Having said that, there is https://github.com/apache/pinot/issues/7600[a GitHub issue^] to have the query engine be smarter when deciding whether to scan or use an index. If we include more beats, the query that uses both indexes is slightly quicker: [source, sql] ---- SELECT count(*) FROM crimes WHERE DateEpoch BETWEEN FromDateTime('2019-01-01', 'yyyy-MM-dd') AND FromDateTime('2019-01-02', 'yyyy-MM-dd') AND Beat IN ('0421', '0423', '0624', '1834', '0511', '1112', '1533', '0823', '0414', '1522') ---- .Output [source, json] ---- { "numDocsScanned": 90, "numEntriesScannedInFilter": 513052, "numEntriesScannedPostFilter": 0, "timeUsedMs": 12 } ---- [source, sql] ---- SELECT count(*) FROM crimes_range_index WHERE DateEpoch BETWEEN FromDateTime('2019-01-01', 'yyyy-MM-dd') AND FromDateTime('2019-01-02', 'yyyy-MM-dd') AND Beat IN ('0421', '0423', '0624', '1834', '0511', '1112', '1533', '0823', '0414', '1522') ---- .Output [source, json] ---- { "numDocsScanned": 90, "numEntriesScannedInFilter": 0, "numEntriesScannedPostFilter": 0, "timeUsedMs": 11 } ---- == Conclusion In this post we learnt how to use Apache Pinot's range index so that we could find crimes that happened on a given day. We then combined filter predicates and saw that sometimes it can be faster to do a column scan rather than merging together the results of querying two indexes. We haven't yet explored how to query the spatial data that this dataset contains, so perhaps that's what we'll look at in our next post!
In this post we'll learn how to write range queries against Apache Pinot using a Chicago Crimes dataset.
uploads/2021/12/range-queries.png
[ -0.0002117542753694579, 0.0010512042790651321, -0.012479149736464024, 0.0452294647693634, 0.07948178797960281, 0.009898308664560318, 0.02611292339861393, 0.03911728784441948, -0.010120545513927937, -0.019358044490218163, -0.014747263863682747, -0.008879665285348892, -0.0667155534029007, 0.03147530555725098, 0.00490954564884305, 0.09249983727931976, 0.06676575541496277, 0.009516910649836063, 0.0236776452511549, -0.019173352047801018, 0.04670024663209915, 0.02790253609418869, 0.010666446760296822, 0.0591118186712265, 0.025358354672789574, 0.0074394517578184605, 0.0028152873273938894, 0.02139626070857048, -0.04991729184985161, 0.006146138533949852, 0.02136845327913761, 0.00051385338883847, 0.011401232331991196, -0.006759080104529858, 0.0056222970597445965, 0.013765117153525352, -0.023605449125170708, 0.0006299285450950265, 0.011914721690118313, 0.037055760622024536, -0.08843979984521866, 0.028178486973047256, 0.008324096910655499, 0.010192668996751308, -0.0220103170722723, 0.01607518643140793, -0.0526321642100811, 0.008926537819206715, 0.025945231318473816, 0.014752241782844067, -0.061318475753068924, 0.044292647391557693, -0.033078961074352264, 0.0177743062376976, -0.00901072844862938, 0.04152826592326164, -0.009426706470549107, -0.07075739651918411, 0.023290155455470085, -0.04347774386405945, -0.0158403143286705, -0.004789159633219242, 0.03237849101424217, -0.0036983792670071125, -0.01266622357070446, -0.007558672688901424, -0.0007273207302205265, 0.0548359714448452, -0.03636637330055237, -0.006403432227671146, 0.003796817734837532, 0.010875576175749302, -0.008613725192844868, -0.023963632062077522, 0.009071547538042068, -0.027756404131650925, -0.03544487804174423, 0.04038842022418976, 0.014935667626559734, 0.045805949717760086, -0.028174014762043953, -0.02568930573761463, 0.026805097237229347, 0.021290646865963936, 0.004769167862832546, -0.06294134259223938, -0.04668436944484711, -0.03207779675722122, -0.05541707202792168, 0.07695982605218887, 0.010124051943421364, -0.02151631750166416, 0.019019221886992455, 0.011695269495248795, -0.01167844794690609, 0.031087644398212433, 0.029687030240893364, -0.026011908426880836, 0.0037637255154550076, -0.0013110146392136812, -0.03357798978686333, -0.029074808582663536, 0.04275351017713547, 0.06955423951148987, -0.07934074103832245, -0.0390247143805027, -0.03160493075847626, 0.006544060539454222, -0.009034527465701103, 0.025496279820799828, -0.02454458922147751, -0.002856733975932002, -0.007832296192646027, 0.011039157398045063, -0.06931526213884354, 0.07437892258167267, 0.03911899775266647, -0.021800430491566658, 0.031021714210510254, 0.03359955549240112, 0.040948931127786636, 0.013755595311522484, -0.013431684114038944, 0.07077408581972122, -0.015010427683591843, 0.024201365187764168, 0.011155451647937298, 0.03370731323957443, 0.020450489595532417, -0.06761284917593002, -0.026180803775787354, 0.044411394745111465, 0.009775523096323013, -0.010830581188201904, -0.022609686478972435, -0.05182337015867233, 0.0033674584701657295, -0.008037799969315529, 0.040657851845026016, 0.012087296694517136, 0.00034132724977098405, -0.029387835413217545, 0.02614516019821167, -0.01067872904241085, 0.07834701240062714, 0.011415345594286919, -0.010705910623073578, -0.04431827366352081, -0.019674118608236313, 0.009620251134037971, 0.02857433632016182, 0.04115651175379753, 0.04209224879741669, -0.03844354301691055, 0.00997574720531702, 0.07251936197280884, 0.03514670580625534, 0.00046226163976825774, -0.018788766115903854, -0.005468113347887993, 0.03984803333878517, 0.02959108166396618, 0.01955299824476242, 0.039412494748830795, 0.018123809248209, -0.016047632321715355, -0.017269382253289223, 0.04807033762335777, -0.04227792099118233, -0.0036718405317515135, -0.053516000509262085, -0.037018001079559326, 0.05942380800843239, -0.05044572427868843, -0.010087707079946995, 0.05160432308912277, 0.07959042489528656, 0.02651333063840866, 0.02307031862437725, 0.008873377926647663, -0.08342888951301575, 0.04441044107079506, 0.01723664440214634, 0.009269018657505512, 0.01638915203511715, -0.014494331553578377, 0.07239361852407455, -0.00032863757223822176, 0.06123465299606323, 0.03448821231722832, -0.05483805015683174, -0.053497880697250366, -0.006320254411548376, -0.0068656993098556995, 0.060342609882354736, -0.025497162714600563, 0.017816223204135895, 0.036663349717855453, -0.003559296252205968, 0.03931163623929024, -0.0007739206193946302, 0.015476623550057411, 0.047503747045993805, -0.06704151630401611, -0.08334136754274368, 0.011326326057314873, 0.02691650576889515, -0.039566900581121445, -0.03307273983955383, 0.03056369721889496, -0.027356145903468132, -0.018337076529860497, 0.04488857835531235, -0.008758324198424816, 0.07053646445274353, 0.0185565073043108, 0.0394233763217926, -0.007402592804282904, 0.05565556511282921, -0.07989362627267838, 0.027333006262779236, 0.005822401028126478, -0.012781448662281036, -0.005629315506666899, -0.018496476113796234, 0.1155322790145874, 0.08792910724878311, -0.02841143123805523, -0.031829576939344406, 0.02661350928246975, 0.03824076056480408, -0.04070686548948288, 0.015313622541725636, -0.010730519890785217, -0.005686338059604168, 0.012967560440301895, -0.019364899024367332, -0.037551525980234146, 0.02723771519958973, -0.03420182690024376, 0.012415317818522453, 0.060904137790203094, -0.0012704067630693316, 0.056942522525787354, 0.012706602923572063, -0.012647479772567749, 0.006240873131901026, -0.02102692238986492, -0.07587280869483948, -0.02227596379816532, 0.006290080491453409, 0.0010111650917679071, 0.03411354124546051, -0.03870849683880806, -0.01682211272418499, -0.053909484297037125, -0.03607199713587761, 0.038946621119976044, 0.05376817658543587, 0.06365017592906952, -0.0027856980450451374, 0.03834996372461319, -0.03239293769001961, -0.007726525887846947, -0.013446057215332985, -0.054940156638622284, -0.0036088291089981794, -0.000875231868121773, 0.009300833567976952, 0.012625167146325111, 0.0026246977504342794, 0.014991709031164646, 0.028211936354637146, 0.0027659288607537746, 0.0396614633500576, 0.0012642641086131334, 0.01487282756716013, 0.012825091369450092, -0.0046560391783714294, -0.012138895690441132, -0.012726661749184132, 0.040790483355522156, -0.029269954189658165, -0.01433036383241415, -0.010119996964931488, -0.08014194667339325, 0.052400633692741394, -0.05798899009823799, -0.0664716586470604, -0.022705039009451866, 0.03391711786389351, 0.008231054060161114, 0.030852749943733215, -0.017078295350074768, 0.027153966948390007, 0.011632154695689678, -0.00957934558391571, 0.03598664700984955, -0.015978271141648293, 0.017039762809872627, -0.020662350580096245, 0.021982921287417412, 0.027858152985572815, -0.013944197446107864, 0.006247310899198055, -0.051634468138217926, 0.0016680065309628844, -0.021150603890419006, -0.29038485884666443, 0.03751274570822716, -0.029917875304818153, -0.017798881977796555, -0.016133548691868782, -0.012952697463333607, 0.012536964379251003, -0.04215335100889206, -0.005901623517274857, -0.01538748387247324, -0.023744087666273117, -0.03830375894904137, -0.020535042509436607, 0.027020640671253204, 0.00975229125469923, 0.006989787798374891, 0.003496894147247076, -0.059439510107040405, -0.002638533478602767, 0.008161279372870922, 0.025803720578551292, -0.05439579114317894, -0.01097608171403408, 0.027487454935908318, 0.033355314284563065, 0.06939344108104706, -0.07173797488212585, 0.03378434479236603, -0.05673133581876755, -0.026569189503788948, 0.015666404739022255, -0.03130359947681427, -0.01868194341659546, 0.0029800303746014833, -0.0067422762513160706, -0.003232737770304084, 0.03973912075161934, 0.008204707875847816, 0.01337459683418274, 0.0015467234188690782, -0.012804761528968811, -0.039178330451250076, -0.018583830446004868, 0.015096921473741531, 0.09549757093191147, 0.01092719566076994, -0.08291073888540268, 0.009394394233822823, -0.028185781091451645, 0.057008251547813416, -0.0344310961663723, -0.045746032148599625, -0.023824358358979225, 0.00803492683917284, -0.01451200246810913, -0.021973466500639915, -0.0026138450484722853, 0.011727129109203815, -0.04173566401004791, -0.06143671274185181, 0.01026102527976036, -0.051633719354867935, -0.012942471541464329, -0.04052449017763138, -0.016865475103259087, -0.06944644451141357, -0.047560304403305054, -0.0009937125723809004, 0.07230009138584137, 0.02873760275542736, -0.0407525859773159, 0.038915764540433884, -0.0018042020965367556, -0.1178610697388649, -0.0208177100867033, -0.011619229800999165, -0.037790264934301376, -0.019054200500249863, -0.030611928552389145, 0.0511116124689579, -0.035810746252536774, -0.04131655767560005, 0.02950127050280571, 0.03326182812452316, 0.015408219769597054, -0.029271837323904037, 0.019127504900097847, -0.020198972895741463, -0.01734919287264347, 0.005285443738102913, 0.04803760349750519, -0.05038226395845413, -0.017167702317237854, -0.020649490877985954, -0.010071471333503723, 0.03137204423546791, 0.03079361654818058, 0.0007829024689272046, 0.0002894642821047455, 0.03543730452656746, 0.02053753472864628, -0.05187784507870674, 0.01587265357375145, -0.044693659991025925, -0.004961146041750908, 0.0026159908156841993, -0.03312268480658531, 0.04099442809820175, 0.02174880914390087, 0.014191200956702232, 0.0323079489171505, -0.04574303328990936, 0.02015618234872818, -0.0638686940073967, -0.006904211826622486, -0.014987772330641747, 0.03027023747563362, 0.04410535469651222, 0.047523051500320435, -0.0066826133988797665, -0.048337165266275406, 0.023217754438519478, -0.005193937569856644, -0.017809079959988594, -0.05660589411854744, -0.04140356183052063, 0.019734323024749756, -0.0052995276637375355, 0.013652212917804718, 0.021770251914858818, -0.03648834303021431, 0.05319121107459068, 0.037698984146118164, -0.018887819722294807, 0.03278563171625137, -0.013431228697299957, -0.02918638102710247, -0.05268067121505737, 0.034867752343416214, 0.035489507019519806, 0.008795984089374542, 0.01924397423863411, 0.01128475833684206, 0.02472999133169651, 0.0631483942270279, 0.034036364406347275, 0.01669728010892868, -0.027081696316599846, 0.0044317240826785564, 0.019532689824700356, -0.008940409868955612, -0.01792674884200096, 0.0019211339531466365, -0.03899892792105675, -0.03209888935089111, -0.046188514679670334, 0.034095242619514465, -0.00459665060043335, -0.028148284181952477, -0.031125323846936226, 0.019269956275820732, -0.06459318846464157, -0.0043386295437812805, -0.019160404801368713, -0.00947761069983244, 0.05118245258927345, -0.002210234524682164, 0.02398541569709778, 0.00006326899165287614, 0.009336747229099274, 0.006763577926903963, 0.0034413794055581093, -0.025273647159337997, 0.009722528047859669, -0.024933798238635063, -0.03600487858057022, -0.0011518870014697313, 0.031144117936491966, 0.014970740303397179, 0.017961425706744194, -0.0014724708162248135, -0.014322789385914803, 0.020279139280319214, 0.011195655912160873, 0.06095876172184944, 0.04956771060824394, -0.04216769337654114, -0.019629452377557755, -0.00005032514673075639, -0.022789176553487778, -0.028596431016921997, 0.001889362814836204, -0.02858181856572628, 0.010233437642455101, -0.028546730056405067, -0.07685479521751404, 0.0515783317387104, -0.003194334451109171, 0.005617100745439529, 0.03288660943508148, 0.008473211899399757, -0.010661859065294266, -0.04157307371497154, 0.03916364535689354, 0.048186007887125015, -0.049770236015319824, 0.019373394548892975, 0.02238239161670208, -0.015402746386826038, 0.0007099159411154687, 0.015498537570238113, -0.06161743775010109, 0.0007311410154215991, 0.003051547799259424, 0.02774021029472351, -0.051850683987140656, -0.009326934814453125, -0.03373037278652191, 0.0021296623162925243, -0.01316760666668415, 0.02483377978205681, -0.017540892586112022, -0.005957021843641996, -0.007550142705440521, -0.02531888522207737, 0.05968686565756798, 0.0033964128233492374, -0.007610585540533066, 0.017425427213311195, -0.018132507801055908, 0.01691458187997341, -0.017564602196216583, 0.008033642545342445, 0.023059271275997162, -0.035800717771053314, -0.015395205467939377, -0.04842144623398781, 0.009271377697587013, -0.012744791805744171, 0.06974341720342636, -0.011933969333767891, 0.004768282175064087, -0.019449271261692047, -0.007387007586658001, -0.006948164664208889, -0.00639816839247942, 0.012139983475208282, -0.019284529611468315, 0.05382183939218521, 0.03791259974241257, -0.000027064535970566794, -0.0063966684974730015, -0.01035159733146429, -0.029295990243554115, 0.05195513740181923, -0.03543223440647125, -0.01752934604883194, -0.00644318200647831, -0.05279633402824402, 0.040278177708387375, 0.011679813265800476, 0.03400662541389465, -0.036249253898859024, 0.01771584525704384, 0.02583673782646656, 0.0069961086846888065, 0.019470902159810066, -0.023575397208333015, 0.04656364396214485, -0.021889703348279, 0.0076806130819022655, -0.07749837636947632, 0.005965027958154678, 0.03252701088786125, -0.01745147630572319, -0.013418391346931458, 0.0008820018847472966, -0.05357760190963745, 0.02983579784631729, -0.08438179641962051, -0.04114382341504097, 0.033156976103782654, 0.0016745789907872677, -0.003576686605811119, 0.018321989104151726, -0.03673781082034111, 0.02841527760028839, 0.04214773327112198, -0.04540731757879257, -0.019208306446671486, 0.011486724019050598, 0.053640615195035934, -0.005993677303195, 0.03377915546298027, -0.011151712387800217, -0.015187199227511883, 0.07050209492444992, 0.03224959596991539, -0.0005376079934649169, 0.06762701272964478, -0.017420286312699318, 0.0514393150806427, 0.002610640600323677, -0.028433140367269516, 0.028043562546372414, 0.02165006846189499, -0.026087310165166855, -0.05875987187027931, 0.015014400705695152, -0.0068925851956009865, 0.008009008131921291, -0.07473919540643692, 0.06905236840248108, 0.013495384715497494, -0.032943375408649445, -0.0238865427672863, 0.005123467184603214, -0.01638445258140564, -0.038434237241744995, -0.034483764320611954, 0.02776760794222355, -0.037009697407484055, 0.06304362416267395, 0.0005748511175625026, 0.029567154124379158, 0.07008790969848633, 0.0002700836630538106, 0.0012898783897981048, 0.034346502274274826, 0.0946829542517662, 0.07413751631975174, 0.02466714195907116, -0.023180019110441208, 0.07806682586669922, -0.03488854691386223, -0.02817782200872898, -0.02195848897099495, -0.021990487352013588, -0.040989503264427185, -0.03338121995329857, 0.03716757521033287, 0.07564974576234818, -0.04332711920142174, 0.0629485696554184, -0.021639136597514153, -0.01125138346105814, -0.015548452734947205, -0.007077820133417845, 0.03569239750504494, 0.04510728269815445, -0.012993434444069862, 0.029738618060946465, -0.017399409785866737, -0.037284787744283676, 0.021983759477734566, 0.029516393318772316, -0.041252151131629944, 0.019222375005483627, -0.0286287572234869, 0.014281515032052994, -0.003114527789875865, 0.017926780506968498, 0.08229149878025055, -0.04848571494221687, -0.016291746869683266, 0.009905528277158737, 0.03335641697049141, 0.018695514649152756, -0.014311238192021847, -0.04513038694858551, -0.03795550391077995, -0.034170594066381454, -0.03246983885765076, -0.0021812787745147943, -0.007673470303416252, -0.024350669234991074, 0.013000039383769035, -0.030047081410884857, -0.014476966112852097, 0.03539268299937248, -0.01659858040511608, -0.055337246507406235, -0.0627589225769043, -0.06131327152252197, -0.03293278068304062, -0.06277775764465332, -0.033480752259492874, 0.0020644913893193007, -0.016813015565276146, -0.059126123785972595, -0.004726974293589592, -0.024921178817749023, -0.016941649839282036, 0.028781630098819733, -0.03209606185555458, -0.023218557238578796, 0.013545158319175243, 0.05604489520192146, 0.025166677311062813, 0.014673247933387756, 0.06507465988397598, -0.0010536056943237782, -0.011833515018224716, -0.02924415096640587, -0.008267201483249664, 0.05795053765177727, -0.0046360851265490055, -0.01164236944168806, -0.07601527869701385, 0.026532335206866264, 0.03253902867436409, -0.0287503432482481, -0.07301875948905945, 0.027390265837311745, 0.018424242734909058, -0.0022336042020469904, 0.05703512206673622, -0.014756273478269577, -0.0036219630856066942, -0.04652209207415581, -0.013541525229811668, -0.02510814554989338, -0.00871181394904852, 0.04960101097822189, -0.03992519527673721, 0.05965239554643631, 0.019464105367660522, -0.024372173473238945, -0.017759155482053757, 0.012654525227844715, 0.024434391409158707, 0.0027835366781800985, -0.058304041624069214, -0.013668129220604897, -0.02094273827970028, -0.06525925546884537, -0.014493751339614391, 0.02109760046005249, -0.006832156330347061, -0.046578746289014816, 0.005395009182393551, 0.0006619719206355512, -0.021099237725138664, 0.019187191501259804, -0.04557700455188751, 0.01452693622559309, -0.023196808993816376, -0.028495678678154945, -0.00048326290561817586, 0.03827536851167679, -0.035153232514858246, 0.010623985901474953, 0.01883574016392231, -0.030046818777918816, 0.00583891524001956, -0.03555334731936455, 0.05206464231014252, 0.02505594678223133, -0.0054998318664729595, -0.027421453967690468 ]
[ -0.06691090762615204, -0.06000629812479019, -0.03229551017284393, -0.03846532478928566, 0.1072823628783226, -0.025014854967594147, 0.006196490954607725, -0.01554384920746088, 0.0012455899268388748, -0.03418487310409546, 0.029654912650585175, -0.008494578301906586, -0.040624260902404785, 0.01415317039936781, 0.02345173992216587, 0.006527685094624758, 0.007680890150368214, -0.0234529972076416, -0.006087826564908028, 0.022556079551577568, -0.01611803099513054, -0.03693364933133125, -0.02089192159473896, -0.056954167783260345, -0.014365929178893566, 0.041769273579120636, 0.03304395452141762, -0.017860885709524155, -0.016133412718772888, -0.20681017637252808, 0.011840279214084148, -0.0325724333524704, 0.044687338173389435, -0.03317096829414368, -0.02041717804968357, 0.004807604476809502, 0.028701767325401306, 0.02954661101102829, 0.057631030678749084, 0.040519870817661285, 0.02063727378845215, 0.026760488748550415, -0.046152133494615555, -0.02043476328253746, 0.01769232377409935, -0.025789616629481316, -0.007253702264279127, -0.008726907894015312, 0.012306982651352882, 0.006865707226097584, -0.05073279142379761, -0.021927164867520332, -0.02623763680458069, 0.05110844597220421, -0.00870590377599001, -0.0017324814107269049, 0.04051237925887108, 0.02091296575963497, 0.019543517380952835, 0.02688758075237274, 0.04371432214975357, -0.0031485590152442455, -0.15022651851177216, 0.10114001482725143, -0.008783634752035141, 0.03307599201798439, -0.01254455465823412, 0.0008567845216020942, -0.0015875239623710513, 0.03623860329389572, 0.007260884158313274, -0.019194886088371277, -0.046069178730249405, 0.02983253262937069, -0.020116707310080528, -0.025081554427742958, -0.009843824431300163, 0.0384494885802269, -0.007031204178929329, -0.05043315887451172, -0.04005785658955574, -0.027181239798665047, 0.03096567653119564, -0.013155574910342693, -0.02803458459675312, 0.006118570454418659, -0.01703251712024212, 0.04481479153037071, -0.006046970374882221, -0.002480420283973217, 0.049907948821783066, -0.04014597833156586, 0.044245392084121704, -0.002695855451747775, -0.08341711759567261, -0.016707001253962517, -0.008807656355202198, 0.04014632850885391, -0.008697624318301678, 0.443345308303833, -0.023169362917542458, -0.031577177345752716, 0.014231948181986809, -0.012857077643275261, 0.019823921844363213, 0.008102481253445148, -0.0012479937868192792, -0.060125987976789474, 0.0200638510286808, -0.004342298023402691, 0.041975267231464386, 0.000499857822433114, 0.10082931071519852, -0.030865972861647606, 0.041418448090553284, -0.0028621561359614134, 0.02764233760535717, 0.027736134827136993, 0.007237395271658897, 0.03527996316552162, -0.00024109098012559116, -0.0029925149865448475, 0.018188059329986572, 0.009186264127492905, 0.021067077293992043, -0.024623485282063484, 0.0255024004727602, 0.0657709538936615, 0.03287474811077118, 0.013382552191615105, -0.00993083231151104, -0.03471377491950989, -0.05480977147817612, -0.005579576827585697, -0.0009372772183269262, 0.007164244540035725, 0.06223222240805626, -0.03285917639732361, 0.02337825670838356, -0.00484048668295145, -0.04175112769007683, -0.023349950090050697, 0.06536474078893661, -0.02611367218196392, -0.016862092539668083, 0.1355608105659485, -0.0009814038639888167, -0.08563999086618423, -0.026211870834231377, -0.080128014087677, -0.014077368192374706, 0.045249633491039276, 0.02254488319158554, -0.05608569085597992, -0.03108096309006214, 0.04193117097020149, 0.06665658205747604, -0.02584017999470234, -0.07787780463695526, -0.014484185725450516, 0.0389348603785038, -0.026529062539339066, -0.0273139588534832, 0.010743645019829273, 0.07180710136890411, -0.10386691242456436, -0.018900416791439056, 0.0401282012462616, 0.01282946951687336, -0.030775874853134155, 0.005660340655595064, 0.020348839461803436, -0.02397535741329193, 0.01982385665178299, 0.014263724908232689, -0.046996280550956726, -0.03633332625031471, 0.020820317789912224, 0.020636441186070442, 0.02326630987226963, -0.034353725612163544, -0.003789264941588044, -0.04970483109354973, 0.024419546127319336, -0.028395308181643486, -0.07190801948308945, -0.04273379221558571, 0.00614514946937561, 0.006265461910516024, 0.03820176050066948, -0.031034409999847412, -0.05072992295026779, -0.016584942117333412, 0.06146612390875816, -0.012267512269318104, -0.0008008012664504349, 0.020267844200134277, 0.005843264516443014, -0.018375523388385773, -0.0169441606849432, 0.01920364983379841, -0.01173069141805172, 0.0007462777430191636, 0.017146162688732147, -0.025637799873948097, 0.06833933293819427, 0.01852925680577755, -0.054299429059028625, 0.0016453634016215801, 0.037989888340234756, -0.008697419427335262, 0.04086074233055115, -0.0060562267899513245, 0.024554291740059853, 0.012866919860243797, -0.02579481340944767, 0.0065351505763828754, 0.0069337086752057076, 0.04827699065208435, 0.035994257777929306, -0.03793613612651825, -0.01743542030453682, -0.04321736842393875, -0.3611031770706177, -0.06875209510326385, -0.0422700010240078, -0.003745162161067128, -0.0268009752035141, -0.07227578014135361, 0.013318706303834915, -0.03349577262997627, 0.002949125599116087, 0.07815316319465637, 0.0368327870965004, -0.023324765264987946, -0.007143960800021887, -0.042851440608501434, 0.014745061285793781, 0.047951675951480865, 0.005365621764212847, -0.00957435928285122, -0.032574329525232315, -0.01672774739563465, 0.01909794472157955, -0.00620099063962698, -0.03862227499485016, -0.033137913793325424, 0.0008781568030826747, -0.016990788280963898, 0.10476947575807571, 0.030497165396809578, 0.0304929930716753, -0.060417525470256805, 0.0253397598862648, -0.01690347120165825, 0.0386752188205719, -0.056953322142362595, 0.0029642819426953793, -0.058471277356147766, -0.014717807993292809, 0.018088284879922867, -0.027216197922825813, -0.010024717077612877, -0.08189506828784943, 0.023534588515758514, -0.03725887089967728, -0.04237745329737663, -0.03973522409796715, 0.001112611498683691, 0.005503237247467041, -0.007566516287624836, -0.0033022824209183455, 0.03926364332437515, 0.027978070080280304, -0.0024616119917482138, 0.012242496013641357, -0.000021680942154489458, 0.0041050720028579235, -0.021228011697530746, -0.057722508907318115, 0.0016393554396927357, 0.020463157445192337, -0.015162931755185127, 0.04470350593328476, 0.0411892794072628, 0.025488199666142464, -0.08836161345243454, 0.010062873363494873, 0.04040255770087242, -0.025600804015994072, -0.012474561110138893, 0.030127130448818207, -0.03148477524518967, -0.06140677630901337, 0.09762277454137802, 0.027910778298974037, 0.025116879492998123, 0.047702986747026443, 0.028930023312568665, -0.021263647824525833, 0.0007068137056194246, 0.007974454201757908, -0.003162587061524391, 0.07063019275665283, -0.008339669555425644, 0.02637958899140358, -0.041109584271907806, 0.05884036421775818, 0.09045684337615967, 0.03074892982840538, -0.008577486500144005, 0.09566821902990341, 0.029141070321202278, -0.009531667456030846, -0.004585553891956806, -0.004201557952910662, -0.0959322527050972, 0.03968357667326927, 0.023998694494366646, -0.25149500370025635, 0.029683535918593407, 0.08381391316652298, 0.05903918668627739, 0.023605182766914368, 0.007009264547377825, 0.046608202159404755, -0.06062553450465202, 0.023546012118458748, -0.008199173957109451, 0.013596078380942345, 0.03843027353286743, 0.016252776607871056, -0.018625281751155853, 0.015239506959915161, -0.04098774120211601, -0.01293685007840395, 0.02103440836071968, 0.015133514069020748, -0.0013108716811984777, 0.00500213447958231, -0.012091225944459438, 0.18455661833286285, 0.04883606731891632, 0.013181166723370552, 0.028645681217312813, -0.0058878567069768906, -0.010562729090452194, 0.01237125787883997, 0.003583786077797413, 0.01356457732617855, -0.04027198255062103, 0.04878523200750351, -0.02438192255795002, 0.04205175116658211, -0.017156504094600677, -0.037426359951496124, 0.06120939180254936, 0.01090822834521532, -0.03545960783958435, -0.021582147106528282, 0.00665324879810214, -0.05495016649365425, 0.043845146894454956, 0.05448450520634651, -0.01593395136296749, -0.011705489829182625, -0.020538397133350372, -0.012576891109347343, 0.04334898665547371, -0.02586204931139946, -0.07291639596223831, -0.009312505833804607, -0.0275252815335989, 0.016291841864585876, 0.08350885659456253, 0.006676390767097473, -0.02033950202167034, 0.020989540964365005, 0.054965659976005554, -0.02229693904519081, -0.016263863071799278, 0.049451958388090134, 0.015386697836220264, 0.019487449899315834 ]
[ 0.05486658215522766, 0.003598644398152828, -0.0008085185545496643, 0.01042126677930355, 0.04129830002784729, 0.0010931710712611675, 0.009812857024371624, 0.02024151012301445, -0.008812122978270054, 0.0054142591543495655, 0.013626746833324432, 0.019881660118699074, 0.004996200557798147, 0.0024597959127277136, -0.02640387788414955, -0.023826105520129204, -0.015399216674268246, 0.010488524101674557, 0.03250434249639511, 0.040028586983680725, -0.039872363209724426, -0.006507290061563253, 0.03839478641748428, -0.03748731315135956, -0.05567289516329765, 0.016517937183380127, -0.033858224749565125, -0.007429370656609535, 0.014808100648224354, -0.11144527792930603, -0.013825214467942715, -0.022208701819181442, 0.009858007542788982, 0.021515289321541786, -0.0313643217086792, -0.04036468639969826, 0.03275391831994057, 0.0032282378524541855, -0.01624281145632267, 0.013157774694263935, 0.031024696305394173, -0.010621215216815472, -0.005513506010174751, 0.001567608444020152, -0.03107469156384468, -0.03371178358793259, -0.03491980582475662, -0.008015924133360386, -0.019789351150393486, -0.00402887212112546, -0.05432622507214546, 0.010602394118905067, -0.00920806173235178, 0.03411544859409332, 0.007278528530150652, -0.026059094816446304, -0.034288059920072556, 0.0004425187362357974, 0.00384414941072464, -0.016435574740171432, 0.013322125189006329, 0.042749106884002686, -0.01741480827331543, -0.03315522521734238, 0.005817158613353968, -0.03889269754290581, 0.0026217419654130936, -0.009251521900296211, 0.031087743118405342, 0.0060164788737893105, -0.008247697725892067, 0.010431741364300251, -0.025312265381217003, -0.044367242604494095, -0.06203317269682884, 0.03384046629071236, -0.008241871371865273, 0.004566905088722706, -0.005146977491676807, -0.014440832659602165, -0.022641565650701523, -0.005638659931719303, 0.03840441629290581, 0.01387858297675848, -0.008589196018874645, -0.014226186089217663, -0.0348578616976738, 0.030771683901548386, 0.008906233124434948, -0.039876993745565414, 0.005001806188374758, 0.01615435630083084, -0.011163769289851189, 0.0015114572597667575, -0.06874925643205643, -0.01401090994477272, 0.013644092716276646, 0.026608433574438095, -0.025431983172893524, 0.8477421402931213, -0.004238367546349764, 0.012745794840157032, -0.007763550616800785, -0.052593450993299484, 0.0415189228951931, 0.002761830808594823, -0.017354387789964676, 0.012966901063919067, -0.038086459040641785, -0.01403034571558237, 0.02199450135231018, 0.02476227842271328, 0.01865747943520546, 0.01126064918935299, 0.06631240248680115, 0.02067400887608528, -0.04309643805027008, -0.0020501299295574427, -0.01924710161983967, 0.04651372507214546, 0.04010618105530739, 0.007482570596039295, -0.0016005238285288215, 0.016961732879281044, -0.01042344979941845, -0.16378405690193176, -0.005458627827465534, -6.710130973464497e-33, 0.06363948434591293, -0.03154723346233368, -0.030755117535591125, -0.03247317299246788, -0.0001289606443606317, -0.0082990862429142, -0.027873698621988297, -0.015976281836628914, -0.019414052367210388, 0.013511565513908863, 0.01890561915934086, -0.03610191121697426, -0.01688401773571968, -0.01572437956929207, 0.018547730520367622, -0.00786062516272068, -0.0012272418243810534, 0.03031078539788723, 0.015516821295022964, -0.007507564965635538, 0.005126857664436102, 0.0021447199396789074, -0.018443793058395386, 0.0018931528320536017, 0.022606953978538513, 0.01510485727339983, -0.0327804759144783, -0.01327778771519661, -0.0017387350089848042, -0.04512421414256096, -0.012915856204926968, 0.03149060904979706, 0.028025686740875244, -0.022392485290765762, 0.030489087104797363, -0.05915287882089615, -0.018776413053274155, 0.01881670393049717, -0.05836145207285881, -0.039059095084667206, 0.008021014742553234, -0.003951723221689463, -0.03599685803055763, -0.024892544373869896, 0.015361955389380455, 0.012388354167342186, -0.018382813781499863, 0.02655402384698391, -0.025633903220295906, 0.016671765595674515, 0.042318083345890045, -0.0029096207581460476, -0.004842869937419891, -0.008441178128123283, -0.026082148775458336, 0.03966489061713219, -0.005987478885799646, 0.004557244945317507, -0.01052094716578722, 0.02005743980407715, -0.01671319641172886, -0.01493435725569725, -0.014345303177833557, 0.023712772876024246, -0.011276531964540482, -0.008332653902471066, 0.02394852228462696, 0.01644742861390114, 0.01027556974440813, 0.027421170845627785, -0.05068536102771759, 0.032082345336675644, 0.007421467918902636, -0.001102242968045175, -0.015893181785941124, -0.05593057721853256, 0.018315808847546577, 0.00828348845243454, -0.006902665365487337, 0.02776343561708927, -0.03293163701891899, 0.008760843425989151, 0.0006203171797096729, -0.020663859322667122, -0.02197125554084778, -0.0004586796276271343, 0.06379825621843338, 0.01873788610100746, -0.03968687728047371, -0.007901761680841446, 0.05607897415757179, 0.05852975696325302, -0.007805365603417158, -0.05466630682349205, 0.008240909315645695, 6.657715680361331e-33, -0.018894623965024948, -0.019918834790587425, -0.019890274852514267, -0.012927590869367123, 0.01788473315536976, -0.028148870915174484, 0.048710450530052185, 0.020206578075885773, 0.007641805335879326, 0.005989316385239363, -0.04594904184341431, -0.01688247174024582, 0.0046426174230873585, 0.04111172631382942, 0.048385635018348694, 0.012887523509562016, 0.0014980487758293748, -0.01709788478910923, -0.0016717719845473766, -0.0008478578529320657, -0.007131633814424276, 0.0010822222102433443, 0.018345415592193604, 0.0324450246989727, 0.004288503434509039, 0.030662119388580322, 0.0008596653351560235, 0.009580256417393684, -0.02797282487154007, -0.022844884544610977, 0.013983086682856083, -0.017951441928744316, 0.009389160200953484, -0.016406629234552383, -0.0242063719779253, 0.022286055609583855, 0.007003412581980228, -0.025598838925361633, -0.013257349841296673, 0.0015847573522478342, 0.011503276415169239, 0.03491285815834999, -0.01896234042942524, 0.028405534103512764, -0.0423317551612854, 0.014465751126408577, 0.016941094771027565, -0.00016179410158656538, 0.0022024454083293676, -0.005753766279667616, -0.019968586042523384, 0.011903082020580769, 0.009834696538746357, 0.017422955483198166, 0.01720540225505829, -0.012981224805116653, -0.02216983772814274, 0.007696665357798338, -0.03558006137609482, 0.023774202913045883, -0.0030978701543062925, 0.02863009087741375, -0.01982872374355793, 0.03930366784334183, 0.010948381386697292, -0.0314151830971241, -0.026400819420814514, -0.028331508859992027, -0.024776045233011246, -0.0036757872439920902, 0.01837974414229393, -0.0029664388857781887, -0.0006994529976509511, 0.05572378262877464, 0.018449651077389717, -0.039192624390125275, -0.015364053659141064, 0.02228967845439911, -0.0028576392214745283, 0.017418690025806427, 0.024039769545197487, 0.01934536173939705, -0.005197999998927116, 0.005181679502129555, 0.02286708913743496, 0.03308326378464699, -0.02848650887608528, 0.03286350518465042, -0.0007310271030291915, -0.006207428406924009, 0.0016457196325063705, -0.052418727427721024, -0.010716646909713745, 0.0038748665247112513, 0.021092666313052177, -1.2738988530713868e-8, -0.02260410226881504, 0.0071180276572704315, -0.014482897706329823, 0.03932327404618263, 0.04254757985472679, 0.031914450228214264, -0.04818202555179596, 0.01140926219522953, -0.021027062088251114, -0.006555754225701094, 0.06540869921445847, 0.008187002502381802, 0.0035438614431768656, 0.016849510371685028, 0.01149030588567257, -0.06868670880794525, 0.015644999220967293, -0.02265925519168377, 0.02053648605942726, -0.013911840505897999, -0.0013776659034192562, 0.018620764836668968, 0.001463040942326188, -0.008662541396915913, -0.006947479676455259, 0.007064432371407747, 0.001922152005136013, -0.05136033520102501, -0.021087244153022766, 0.030441785231232643, 0.015871936455368996, -0.024932540953159332, -0.022105304524302483, 0.013229142874479294, -0.021639367565512657, -0.008377373218536377, 0.010579550638794899, 0.009111412800848484, -0.011964044533669949, -0.00035879758070223033, -0.001491605187766254, -0.03727613389492035, -0.016131654381752014, -0.03556390106678009, -0.020758848637342453, -0.025061707943677902, 0.01251984853297472, 0.022906750440597534, 0.04673618823289871, -0.009708797559142113, -0.005230403505265713, -0.00007528169226134196, 0.027603602036833763, 0.027344027534127235, 0.07217811793088913, -0.011104528792202473, 0.039471112191677094, 0.02535223588347435, 0.009119282476603985, -0.004303659312427044, 0.028143111616373062, 0.014176527038216591, -0.001827307278290391, -0.008278277702629566 ]
apache-pinot-exploring-range-queries
https://markhneedham.com/blog/2021/12/07/apache-pinot-exploring-range-queries
false
2021-12-06 00:44:37
Apache Pinot: Copying a segment to a new table
[ "pinot" ]
[ "Pinot" ]
In this post we'll learn how to use the same Pinot segment in multiple tables. .Apache Pinot - Copy segment to another table image::{{<siteurl>}}/uploads/2021/12/segment-new-table.png[] == Setup First, we're going to spin up a local instance of Pinot using the following Docker compose config: .docker-compose.yml [source, yaml] ---- version: '3.7' services: zookeeper: image: zookeeper:3.5.6 hostname: zookeeper container_name: manual-zookeeper ports: - "2181:2181" environment: ZOOKEEPER_CLIENT_PORT: 2181 ZOOKEEPER_TICK_TIME: 2000 pinot-controller: image: apachepinot/pinot:0.9.0 command: "StartController -zkAddress manual-zookeeper:2181" container_name: "manual-pinot-controller" volumes: - ./config:/config - ./data:/data restart: unless-stopped ports: - "9000:9000" depends_on: - zookeeper pinot-broker: image: apachepinot/pinot:0.9.0 command: "StartBroker -zkAddress manual-zookeeper:2181" restart: unless-stopped container_name: "manual-pinot-broker" volumes: - ./config:/config - ./data:/data ports: - "8099:8099" depends_on: - pinot-controller pinot-server: image: apachepinot/pinot:0.9.0 command: "StartServer -zkAddress manual-zookeeper:2181" restart: unless-stopped container_name: "manual-pinot-server" volumes: - ./config:/config - ./data:/data depends_on: - pinot-broker ---- == Data We'll be working with a CSV file taken https://docs.pinot.apache.org/basics/getting-started/pushing-your-data-to-pinot[from Pinot's documentation^]: .transcript.csv [format="csv", options="header"] |=== include::content/2021/12/06/data/transcript.csv[] |=== == Create Table Let's create a Pinot schema and table based on this CSV file. The schema is defined below: ./config/schema.json [source.json] ---- { "schemaName": "transcript", "dimensionFieldSpecs": [ { "name": "studentID", "dataType": "INT" }, { "name": "firstName", "dataType": "STRING" }, { "name": "lastName", "dataType": "STRING" }, { "name": "gender", "dataType": "STRING" }, { "name": "subject", "dataType": "STRING" } ], "metricFieldSpecs": [ { "name": "score", "dataType": "FLOAT" } ], "dateTimeFieldSpecs": [{ "name": "timestampInEpoch", "dataType": "LONG", "format" : "1:MILLISECONDS:EPOCH", "granularity": "1:MILLISECONDS" }] } ---- Our table config is defined below: ./config/table.json [source.json] ---- { "tableName": "transcript", "tableType": "OFFLINE", "segmentsConfig": { "replication": 1 }, "tenants": { "broker":"DefaultTenant", "server":"DefaultTenant" }, "tableIndexConfig": { "loadMode": "MMAP" }, "ingestionConfig": { "batchIngestionConfig": { "segmentIngestionType": "APPEND", "segmentIngestionFrequency": "DAILY" } }, "metadata": {} } ---- Now let's create the table and schema: [source, bash] ---- docker exec -it manual-pinot-controller bin/pinot-admin.sh AddTable \ -tableConfigFile /config/table.json \ -schemaFile /config/schema.json -exec ---- == Import CSV file After we've done that, it's time to import the CSV file. We'll do this using the ingestion job spec defined below: ./config/job-spec.yml [source,yaml] ---- executionFrameworkSpec: name: 'standalone' segmentGenerationJobRunnerClassName: 'org.apache.pinot.plugin.ingestion.batch.standalone.SegmentGenerationJobRunner' segmentTarPushJobRunnerClassName: 'org.apache.pinot.plugin.ingestion.batch.standalone.SegmentTarPushJobRunner' jobType: SegmentCreationAndTarPush inputDirURI: '/data' includeFileNamePattern: 'glob:**/transcript.csv' outputDirURI: '/opt/pinot/data/transcript' overwriteOutput: true pinotFSSpecs: - scheme: file className: org.apache.pinot.spi.filesystem.LocalPinotFS recordReaderSpec: dataFormat: 'csv' className: 'org.apache.pinot.plugin.inputformat.csv.CSVRecordReader' configClassName: 'org.apache.pinot.plugin.inputformat.csv.CSVRecordReaderConfig' tableSpec: tableName: 'transcript' pinotClusterSpecs: - controllerURI: 'http://localhost:9000' ---- `includeFileNamePattern` refers to the `transcript.csv` file that we saw earlier in this post. We can run the ingestion job like so: [source,bash] ---- docker exec \ -it manual-pinot-controller bin/pinot-admin.sh LaunchDataIngestionJob \ -jobSpecFile /config/job-spec.yml ---- This ingestion job does two things. _segmentGenerationJobRunnerClassName_ writes the segment file to the https://docs.pinot.apache.org/basics/components/deep-store[deep store^], which is stored under `/opt/pinot/data/transcript` on our Pinot Controller container. We can run the following command to check that it's there: [source,bash] ---- docker exec -it manual-pinot-controller ls -lh /opt/pinot/data/transcript ---- .Output [source,text] ---- total 4.0K -rw-r--r-- 1 root root 1.7K Dec 6 17:08 transcript_OFFLINE_0.tar.gz ---- And then once the segment has been written to the deep store, _segmentTarPushJobRunnerClassName_ copies the segment file down to the Pinot Server. == Copy segment to new table Now let's say we create a new table `transcript2` that uses the same schema, but has an inverted index on one of the columns. The table config is described below: ./config/table-indexes.json [source.json] ---- { "tableName": "transcript2", "tableType": "OFFLINE", "segmentsConfig": { "replication": 1, "schemaName": "transcript" }, "tenants": { "broker":"DefaultTenant", "server":"DefaultTenant" }, "tableIndexConfig": { "loadMode": "MMAP", "invertedIndexColumns": ["subject"] }, "ingestionConfig": { "batchIngestionConfig": { "segmentIngestionType": "APPEND", "segmentIngestionFrequency": "DAILY" } }, "metadata": {} } ---- Create the table: [source, bash] ---- docker exec -it manual-pinot-controller bin/pinot-admin.sh AddTable \ -tableConfigFile /config/table-indexes.json \ -exec ---- Once the table's created, we're going to download the segment (`transcript_OFFLINE_0.tar.gz`) to this table, which we can do using the following ingestion job spec: ./config/job-spec-download-only.yml [source,yaml] ---- executionFrameworkSpec: name: 'standalone' segmentTarPushJobRunnerClassName: 'org.apache.pinot.plugin.ingestion.batch.standalone.SegmentTarPushJobRunner' jobType: SegmentTarPush outputDirURI: '/opt/pinot/data/transcript' pinotFSSpecs: - scheme: file className: org.apache.pinot.spi.filesystem.LocalPinotFS tableSpec: tableName: 'transcript2' pinotClusterSpecs: - controllerURI: 'http://localhost:9000' ---- This time our job type is _SegmentTarPush_, which means it will only run the _segmentTarPushJobRunnerClassName_ job. This job will (indirectly) copy the segment from _outputDirURI_ down to the Pinot Server. [source,bash] ---- docker exec \ -it manual-pinot-controller bin/pinot-admin.sh LaunchDataIngestionJob \ -jobSpecFile /config/job-spec-download-only.yml ---- We can then navigate to the `transcripts2` table (via http://localhost:9000/#/tables) in the Pinot Data Explorer, and see that the segment has been loaded: .transcripts2 table with segment downloaded from transcripts table image::{{<siteurl>}}/uploads/2021/12/segment-downloaded.png[] We can now run queries against this segment from the `transcripts2` table.
In this post we'll learn how to use a copy of a Pinot segment in another table.
uploads/2021/12/segment-new-table.png
[ -0.015706010162830353, -0.00825762003660202, -0.018132472410798073, 0.05571218207478523, 0.08145560324192047, -0.00014127721078693867, 0.007542383391410112, 0.05677201971411705, -0.01004155445843935, -0.025709040462970734, -0.01662313938140869, -0.027588825672864914, -0.05247657746076584, 0.016172144562005997, 0.013937079347670078, 0.06187000498175621, 0.07673291862010956, -0.0021010672207921743, 0.021141070872545242, -0.0041900575160980225, 0.02648976445198059, 0.029774798080325127, 0.011082550510764122, 0.040906790643930435, 0.01584840752184391, -0.0110573535785079, -0.016968615353107452, 0.02630612999200821, -0.049632299691438675, -0.0129797188565135, 0.0118856281042099, -0.0023044992703944445, 0.013484126888215542, -0.02252764254808426, 0.009512223303318024, -0.018000846728682518, -0.024422841146588326, 0.010152819566428661, 0.0013845806242898107, 0.022709159180521965, -0.0799354687333107, 0.031221529468894005, 0.026254981756210327, 0.004248544108122587, -0.007906458340585232, 0.03813396021723747, -0.03847409039735794, -0.0004912311560474336, 0.02677219733595848, 0.004831784870475531, -0.07716967165470123, 0.01407640241086483, -0.029950810596346855, 0.025841770693659782, 0.00362201570533216, 0.04040064662694931, -0.010067304596304893, -0.0519539900124073, 0.025467315688729286, -0.023133262991905212, -0.02670029178261757, 0.006797943264245987, 0.010702493600547314, 0.007193373050540686, 0.0031241888646036386, -0.03631937876343727, -0.012867742218077183, 0.03743043914437294, -0.042452290654182434, 0.003749993396922946, 0.016650190576910973, 0.009721002541482449, 0.015138075686991215, -0.023425638675689697, 0.04277580603957176, -0.025141915306448936, -0.03391541540622711, 0.048645514994859695, 0.013462034985423088, 0.04347999766469002, -0.03254587948322296, -0.015957217663526535, -0.001944428775459528, 0.021806415170431137, 0.0025525905657559633, -0.046127595007419586, -0.0464315339922905, -0.010593188926577568, -0.06093832477927208, 0.09088802337646484, -0.006842075381428003, -0.0320594385266304, 0.018508104607462883, 0.002354015363380313, -0.006637436803430319, 0.03917240351438522, 0.028419407084584236, 0.010612552985548973, 0.03318367525935173, 0.006893476005643606, -0.03459649905562401, -0.0004834315041080117, 0.015067211352288723, 0.060515083372592926, -0.07982148975133896, -0.03650560975074768, -0.026396028697490692, -0.01326079573482275, -0.01566370390355587, 0.022303573787212372, -0.03028634935617447, -0.017143867909908295, -0.01362786814570427, 0.02573862485587597, -0.09025437384843826, 0.08143414556980133, 0.033707596361637115, -0.036500025540590286, 0.03732801228761673, 0.008957864716649055, 0.04642941802740097, 0.03232887014746666, -0.012853697873651981, 0.07109230756759644, -0.015743635594844818, 0.010516856797039509, -0.02009582333266735, 0.04832784831523895, -0.018348300829529762, -0.07442415505647659, -0.03013800084590912, 0.055264733731746674, 0.029760025441646576, -0.005410523619502783, -0.007119426038116217, -0.03821523115038872, 0.0011968908365815878, -0.012221798300743103, 0.053573161363601685, 0.012917185202240944, -0.03440725803375244, -0.008435510098934174, 0.02317175641655922, 0.012109355069696903, 0.053214140236377716, 0.030832555145025253, 0.0036385993007570505, -0.04658862203359604, -0.02699558064341545, 0.022987274453043938, 0.02199416048824787, 0.033114220947027206, 0.042966634035110474, -0.04694989323616028, 0.010067272931337357, 0.06805610656738281, 0.021317141130566597, 0.02461080625653267, -0.037443798035383224, -0.013528835028409958, 0.04434536397457123, 0.011642977595329285, 0.03466597944498062, 0.03411846607923508, 0.040964797139167786, -0.04215056076645851, 0.0001082777525880374, 0.0638214573264122, -0.012264162302017212, 0.0005438611842691898, -0.06508402526378632, -0.034140001982450485, 0.057061824947595596, -0.055853843688964844, 0.0020344359800219536, 0.052707329392433167, 0.08777210861444473, 0.02628723718225956, 0.033994849771261215, 0.004462489392608404, -0.08453719317913055, 0.06420555710792542, 0.02349172532558441, 0.011034863069653511, 0.008317116647958755, -0.012409081682562828, 0.05024627968668938, 0.00700457114726305, 0.04544926807284355, 0.01910746470093727, -0.0737638920545578, -0.0726211667060852, -0.00840230006724596, 0.009782884269952774, 0.06389005482196808, 0.005402397830039263, -0.018506718799471855, 0.06815794855356216, 0.0037493149284273386, 0.011960177682340145, -0.018284915015101433, 0.04115946218371391, 0.020839856937527657, -0.08864130824804306, -0.07339174300432205, 0.026818498969078064, 0.009371645748615265, -0.05127279460430145, -0.024467220529913902, 0.003541662124916911, -0.07127434760332108, -0.01673426851630211, 0.07157129049301147, -0.0320105254650116, 0.09027346968650818, 0.02636488527059555, 0.028242046013474464, -0.03952298313379288, 0.05213254690170288, -0.05118763819336891, 0.03907125070691109, 0.018649108707904816, -0.01899968460202217, 0.019056687131524086, -0.011455168947577477, 0.10855185240507126, 0.08240843564271927, -0.006376832723617554, -0.05658404901623726, 0.06523293256759644, 0.031348537653684616, -0.04400324821472168, -0.00830959901213646, -0.009368671104311943, 0.015774844214320183, 0.006145597901195288, -0.018085194751620293, -0.020781714469194412, 0.01396465115249157, -0.002926311921328306, 0.008367235772311687, 0.0679025948047638, -0.02381054498255253, 0.0565759651362896, 0.02534979023039341, 0.013292763382196426, -0.004217290319502354, -0.034209270030260086, -0.07803013920783997, -0.023262521252036095, 0.0046208640560507774, -0.013439737260341644, 0.05597090348601341, -0.03353337198495865, -0.0224792268127203, -0.063561350107193, -0.048589032143354416, 0.010374493896961212, 0.019968561828136444, 0.04543932154774666, -0.019992001354694366, 0.05734925717115402, -0.057827938348054886, 0.0041962675750255585, -0.018752073869109154, -0.06344451755285263, -0.01720203272998333, -0.00012522774341050535, 0.0067335763014853, 0.03581828996539116, 0.016131369397044182, -0.0038614626973867416, 0.027509277686476707, -0.00984610989689827, 0.02414705604314804, 0.00017347728135064244, 0.01708110235631466, 0.01737821474671364, 0.022803043946623802, -0.012080546468496323, -0.010582993738353252, 0.04482707008719444, -0.05367067828774452, -0.001646145828999579, -0.005168925505131483, -0.06690425425767899, 0.03034581057727337, -0.0664656013250351, -0.041501905769109726, -0.023957068100571632, 0.044720977544784546, 0.01272699236869812, 0.02776668407022953, -0.007563621271401644, 0.04829893633723259, 0.021450862288475037, -0.020433828234672546, 0.03929699957370758, -0.01177971251308918, 0.038952890783548355, -0.013211366720497608, 0.017167305573821068, 0.04054039344191551, -0.010632738471031189, -0.0225909985601902, -0.02620552107691765, 0.01783212460577488, -0.048001259565353394, -0.271870881319046, 0.044921018183231354, -0.019857442006468773, -0.013093751855194569, 0.0041072857566177845, -0.023768112063407898, 0.021526359021663666, -0.03684839606285095, -0.0013166454154998064, 0.013202718459069729, -0.041735198348760605, -0.01158097293227911, -0.010444321669638157, 0.019487930461764336, -0.0032170445192605257, 0.028487805277109146, -0.012304232455790043, -0.06463926285505295, 0.004719865508377552, 0.000845393689814955, -0.0020994546357542276, -0.057207267731428146, -0.001132600475102663, 0.02965354733169079, 0.004905475303530693, 0.021661698818206787, -0.07639019191265106, 0.06225746497511864, -0.037895988672971725, -0.009600772522389889, -0.00860057957470417, -0.025935422629117966, 0.0005273897550068796, 0.01024574413895607, 0.00043301473488099873, -0.01909974031150341, 0.020313609391450882, 0.017878970131278038, 0.013774366118013859, 0.0017231095116585493, -0.02292991429567337, -0.046643584966659546, -0.015912583097815514, 0.020312711596488953, 0.0705568790435791, -0.010737312957644463, -0.0620291642844677, -0.0049641551449894905, -0.02366023324429989, 0.07121582329273224, -0.02132764272391796, -0.056754935532808304, -0.008696526288986206, 0.005967254750430584, -0.01705261319875717, 0.01741042733192444, 0.005541082471609116, 0.00726667046546936, -0.032874539494514465, -0.03442986682057381, -0.01195172406733036, -0.0495353639125824, -0.020145641639828682, -0.06888897716999054, -0.01287411991506815, -0.05487407371401787, -0.06818361580371857, 0.0276662427932024, 0.06377925723791122, 0.04939723759889603, -0.03985517472028732, 0.03654133901000023, -0.020315196365118027, -0.11288687586784363, -0.02090701274573803, -0.03170857951045036, -0.04238263890147209, -0.008046623319387436, -0.025534577667713165, 0.05635439604520798, -0.025499822571873665, -0.022191334515810013, 0.011540803126990795, 0.012709114700555801, 0.016930369660258293, -0.025344209745526314, 0.013821857050061226, -0.03291911259293556, 0.0009136794251389802, -0.006463607307523489, 0.05198419839143753, -0.042241666465997696, -0.024789758026599884, -0.0297441016882658, -0.007704938296228647, 0.06103833019733429, 0.017585663124918938, 0.018384499475359917, -0.003266410669311881, 0.04039152339100838, 0.02667940966784954, -0.03884841501712799, 0.0023676627315580845, -0.02713295817375183, -0.0042269593104720116, 0.008385258726775646, -0.05791538581252098, 0.02433544211089611, 0.016069089993834496, 0.05241328477859497, 0.019251927733421326, -0.0410204641520977, 0.02633250504732132, -0.058038774877786636, -0.004597450140863657, 0.011422155424952507, 0.018356774002313614, 0.02373187243938446, 0.02883904241025448, -0.008567235432565212, -0.04659738764166832, 0.01707111857831478, 0.015466734766960144, -0.021509790793061256, -0.03250964358448982, -0.03819656744599342, 0.02106488309800625, -0.013777214102447033, 0.004025165922939777, 0.0023316943552345037, -0.014379809610545635, 0.03922593593597412, 0.048827994614839554, -0.027808375656604767, 0.02476310543715954, -0.006997476797550917, -0.03117099218070507, -0.036206070333719254, 0.02645246312022209, 0.0352313332259655, -0.01884631998836994, 0.001980917528271675, -0.0025984609965234995, 0.025061441585421562, 0.03481191396713257, 0.02293102815747261, 0.0020288005471229553, -0.008888778276741505, 0.007337301038205624, 0.016448386013507843, -0.0010078437626361847, -0.02197943441569805, -0.005469151772558689, -0.01974334381520748, -0.017617659643292427, -0.046679433435201645, 0.028818611055612564, -0.002812845166772604, -0.004719606600701809, -0.04019243270158768, 0.01983390562236309, -0.05862274393439293, -0.006234659347683191, -0.030350740998983383, -0.005043894052505493, 0.05504552274942398, 0.006939015816897154, 0.0003028826031368226, 0.007034556474536657, 0.004020121414214373, 0.014318924397230148, 0.015035067684948444, -0.03476540371775627, -0.005958930589258671, -0.022286949679255486, 0.0015200809575617313, 0.003859384683892131, 0.027870245277881622, 0.0238661952316761, -0.018209490925073624, 0.010148243978619576, -0.017141705378890038, 0.0392264798283577, -0.019672755151987076, 0.05030070245265961, 0.02925887331366539, -0.03836338222026825, 0.021607939153909683, 0.02289234846830368, -0.01401467528194189, -0.02798035368323326, 0.025219209492206573, -0.009568115696310997, 0.03022785484790802, -0.022470315918326378, -0.062319766730070114, 0.06213841587305069, 0.022160407155752182, -0.020668400451540947, 0.02078433521091938, -0.0017585877794772387, -0.0008220399031415582, -0.04970327019691467, 0.051361702382564545, 0.10094990581274033, -0.04975603520870209, 0.020068271085619926, 0.011752717196941376, -0.004137629643082619, -0.009446240030229092, 0.02398209646344185, -0.06399554759263992, 0.004255637992173433, -0.023313485085964203, 0.014882012270390987, -0.06772640347480774, -0.04253139719367027, -0.022974733263254166, 0.002744229044765234, 0.01319869700819254, 0.029760701581835747, -0.010967417620122433, -0.010535527020692825, -0.017380988225340843, -0.04031076282262802, 0.05970720574259758, 0.01078005600720644, 0.014319072477519512, 0.009422266855835915, -0.023577040061354637, 0.036136921495199203, -0.03526398912072182, 0.014732107520103455, -0.0007967285928316414, -0.03420885279774666, 0.004812941886484623, -0.04378390312194824, 0.011328193359076977, -0.014968043193221092, 0.08073563128709793, 0.010799125768244267, 0.011420512571930885, -0.024583781138062477, -0.005159113090485334, -0.018698832020163536, -0.01848020777106285, 0.014412572607398033, -0.01071818545460701, 0.046847473829984665, 0.04625575244426727, -0.00753657054156065, -0.001750898314639926, 0.0012442886363714933, -0.024730965495109558, 0.0415244922041893, -0.04285383224487305, -0.03811981901526451, -0.006109888665378094, -0.07000485807657242, 0.04397059977054596, 0.023594865575432777, 0.049162134528160095, -0.06178901344537735, 0.04596263915300369, 0.036156848073005676, -0.001171786105260253, 0.0030945483595132828, -0.03006094880402088, 0.024714378640055656, -0.023938821628689766, 0.01670107990503311, -0.06828623265028, 0.009451404213905334, 0.05008818581700325, -0.02325684204697609, -0.003937890753149986, 0.00040741442353464663, -0.056084614247083664, 0.027447398751974106, -0.07785800099372864, -0.04008746147155762, 0.036403533071279526, -0.006014518905431032, 0.0047129979357123375, -0.019844401627779007, -0.028322171419858932, 0.021384797990322113, 0.01640566624701023, -0.039218515157699585, 0.0037102140486240387, 0.005130463279783726, 0.0507747121155262, 0.007216715253889561, 0.030795160681009293, -0.010728353634476662, -0.03203249350190163, 0.08873339742422104, 0.0029233803506940603, 0.001358476234599948, 0.05055203661322594, -0.024389656260609627, 0.049153365194797516, 0.021842174232006073, -0.01613348163664341, 0.018195217475295067, 0.01926591992378235, -0.037906013429164886, -0.049908559769392014, 0.02184721827507019, 0.0008714456926099956, 0.019617777317762375, -0.05010727047920227, 0.05329904705286026, 0.003958459477871656, -0.04769221320748329, -0.04783013090491295, 0.013779445551335812, -0.03284323215484619, -0.03663237765431404, -0.017094003036618233, 0.05254402756690979, -0.057538364082574844, 0.03504081442952156, -0.0112161198630929, -0.0007754027028568089, 0.06363851577043533, 0.00974845327436924, -0.03425703942775726, 0.056642767041921616, 0.08820075541734695, 0.07704903930425644, 0.014604393392801285, -0.003112718928605318, 0.05358317866921425, -0.02338186837732792, -0.04240994527935982, -0.01736537739634514, -0.016371220350265503, -0.03232521936297417, -0.02078789286315441, 0.028838593512773514, 0.05824121832847595, -0.0315563827753067, 0.07144004106521606, 0.02590569294989109, -0.013050696812570095, -0.013029877096414566, 0.014035290107131004, 0.01754186674952507, 0.027855006977915764, 0.00399067671969533, 0.025999514386057854, 0.004482657182961702, -0.04366397112607956, -0.002599538303911686, 0.0078223692253232, -0.03358225151896477, 0.008929172530770302, -0.030973024666309357, 0.017835721373558044, 0.016289036720991135, 0.006508220918476582, 0.07315387576818466, -0.03205357491970062, -0.020004093647003174, 0.013609358109533787, 0.0391167588531971, -0.0004486067919060588, -0.013285539112985134, -0.033496394753456116, -0.037374358624219894, -0.029814183712005615, -0.027897683903574944, 0.007504149805754423, -0.009370215237140656, -0.011202136985957623, -0.01788957603275776, -0.026237832382321358, -0.0005764800007455051, 0.047396041452884674, -0.004759020637720823, -0.07225971668958664, -0.03693929687142372, -0.05014067888259888, -0.07221892476081848, -0.05825028195977211, -0.021569497883319855, -0.0007810016395524144, -0.003763654502108693, -0.03610212728381157, -0.024919813498854637, -0.03676678612828255, 0.003032867331057787, 0.01910216733813286, -0.04604025185108185, -0.024958547204732895, 0.012380207888782024, 0.050573695451021194, 0.0050657968968153, -0.0008008432923816144, 0.07691984623670578, 0.03253023698925972, 0.01225344743579626, -0.02460707351565361, -0.00538714649155736, 0.050777025520801544, -0.014574023894965649, -0.00989142432808876, -0.08488895744085312, 0.036767520010471344, 0.04612370952963829, 0.015039623714983463, -0.06893657892942429, 0.016936900094151497, 0.020761286839842796, -0.012247800827026367, 0.03618409112095833, -0.026054317131638527, 0.014012305065989494, -0.05319520831108093, -0.036287542432546616, -0.036476388573646545, -0.004777270834892988, 0.028773024678230286, -0.012602918781340122, 0.07343265414237976, 0.035182222723960876, -0.027276016771793365, -0.02160087414085865, 0.02623460441827774, 0.019387640058994293, 0.018301965668797493, -0.04939642176032066, -0.029728403314948082, -0.028980672359466553, -0.05573783442378044, -0.02172962762415409, 0.02669684588909149, -0.006398965138942003, -0.042334675788879395, -0.00213136849924922, 0.006227754522114992, -0.020917609333992004, 0.011335724964737892, -0.049304503947496414, -0.016537489369511604, -0.020989352837204933, -0.02697664685547352, -0.005346099846065044, 0.021263698115944862, -0.013267461210489273, -0.03309483081102371, 0.0213557630777359, -0.027597438544034958, -0.001437734579667449, -0.021133700385689735, 0.06723620742559433, 0.041148535907268524, -0.010249769315123558, -0.016518263146281242 ]
[ -0.0663498118519783, -0.06234530359506607, -0.022488821297883987, -0.03281833231449127, 0.04821760579943657, -0.05168065428733826, 0.00493142195045948, -0.00038139490061439574, -0.007472852244973183, -0.02726256102323532, 0.0009354841895401478, -0.05191681534051895, -0.007646572310477495, -0.026582492515444756, 0.060265883803367615, -0.011995536275207996, 0.009158410131931305, -0.018507499247789383, 0.022307660430669785, 0.009388444013893604, -0.010400289669632912, -0.04278377443552017, -0.049980584532022476, -0.05016045644879341, 0.006320199463516474, 0.051035068929195404, 0.027465559542179108, -0.012015697546303272, -0.012248998507857323, -0.22688794136047363, 0.023741936311125755, -0.005982822738587856, -0.060838017612695694, -0.019688954576849937, 0.003952714614570141, 0.008069484494626522, 0.026405485346913338, 0.004976237658411264, 0.05495394766330719, 0.05661569535732269, 0.02976376563310623, -0.005316555965691805, -0.06393630057573318, 0.019532732665538788, 0.0009535277495160699, -0.01859353855252266, -0.02560701034963131, -0.014489342458546162, 0.08146720379590988, 0.002195963403210044, -0.024247288703918457, -0.02036963403224945, -0.01971222274005413, -0.026770183816552162, -0.0016351501690223813, 0.03418884798884392, 0.05607760325074196, 0.07506373524665833, 0.025881532579660416, 0.019901348277926445, 0.036403097212314606, -0.00480154762044549, -0.13739420473575592, 0.12894238531589508, 0.015110098756849766, 0.047409240156412125, -0.050664495676755905, 0.05146247148513794, -0.0169476717710495, 0.07302561402320862, 0.018845872953534126, -0.023458968847990036, -0.046769045293331146, 0.057633176445961, 0.004119792953133583, -0.05873112753033638, -0.019034525379538536, 0.04926275089383125, -0.025399280712008476, -0.016555773094296455, -0.07464060932397842, 0.011936340481042862, -0.0273490808904171, -0.028025442734360695, -0.04675239697098732, 0.026764340698719025, -0.001081370748579502, 0.03925647214055061, -0.02863365411758423, -0.0150526724755764, 0.012323171831667423, -0.011014767922461033, 0.03972243890166283, 0.002938243793323636, -0.08044295758008957, 0.017462648451328278, -0.003815669333562255, -0.016283243894577026, -0.018808608874678612, 0.3857617974281311, -0.010919656604528427, -0.006442206911742687, 0.04219517111778259, 0.007370796520262957, 0.0033343336544930935, 0.02984130010008812, -0.030878083780407906, -0.007605752907693386, 0.039206381887197495, 0.006730551365762949, 0.012371068820357323, -0.006459065712988377, 0.08086161315441132, -0.04298221692442894, 0.0006331715267151594, 0.006707587279379368, -0.010330718010663986, 0.01494037639349699, -0.02619912102818489, 0.0266118124127388, 0.005209286231547594, -0.00511147128418088, 0.032181378453969955, 0.04173282906413078, 0.0015465220203623176, -0.02277269959449768, 0.03270368278026581, 0.02743532508611679, 0.058309461921453476, 0.010020879097282887, 0.036440134048461914, -0.01741224154829979, -0.028302596881985664, -0.015546307899057865, 0.002807542448863387, -0.002082684775814414, 0.05218680202960968, -0.0375470295548439, 0.005020054057240486, -0.00805356539785862, -0.020688466727733612, -0.04454819858074188, 0.07369662076234818, -0.05763097479939461, -0.005356961395591497, 0.14131364226341248, -0.011523326858878136, -0.03282858058810234, -0.017345882952213287, -0.07882482558488846, -0.04551570862531662, 0.0022488951217383146, 0.018803343176841736, -0.05682801827788353, -0.0038240894209593534, 0.029001692309975624, 0.0312655083835125, 0.016692185774445534, -0.03999245911836624, 0.007442558649927378, -0.005261269398033619, -0.037803784012794495, -0.02974041923880577, -0.004674866329878569, 0.06875909119844437, -0.1489824503660202, -0.03732573986053467, 0.00746017275378108, 0.00021847969037480652, -0.02734692208468914, -0.029028907418251038, 0.030316337943077087, -0.023976560682058334, -0.004327492788434029, 0.03983172029256821, -0.039467357099056244, -0.006670226808637381, 0.00005217097350396216, 0.059852760285139084, 0.0182371623814106, 0.004111784510314465, 0.0015284463297575712, -0.050081681460142136, -0.016640959307551384, -0.028219446539878845, -0.07197505235671997, -0.06023354083299637, -0.017174728214740753, -0.036004260182380676, -0.016910312697291374, -0.03873492032289505, -0.03227979317307472, -0.059231795370578766, 0.11280731856822968, 0.003975294530391693, -0.04988432675600052, 0.023935042321681976, 0.0032985471189022064, 0.009309493936598301, -0.033651940524578094, 0.007527488749474287, 0.030766624957323074, 0.004740143660455942, 0.0474897064268589, -0.0648999884724617, 0.0476689450442791, 0.017942054197192192, -0.05295131728053093, 0.046324893832206726, 0.03986562415957451, -0.013476939871907234, 0.03483276441693306, -0.021759608760476112, 0.033750105649232864, -0.00627891393378377, 0.02244528755545616, -0.009431879967451096, 0.0010538286296650767, 0.037200942635536194, 0.06403575092554092, -0.016331959515810013, -0.042003605514764786, -0.003752008080482483, -0.35628005862236023, -0.07118714600801468, -0.04796001687645912, -0.021632244810461998, -0.009197904728353024, -0.035417087376117706, 0.015863487496972084, -0.013478636741638184, -0.032105058431625366, 0.000020337543901405297, 0.0805642381310463, -0.06290162354707718, 0.023528646677732468, -0.037331387400627136, -0.014565857127308846, 0.060596197843551636, 0.007667007390409708, 0.011009160429239273, -0.02563745155930519, 0.01357395201921463, 0.006589832715690136, -0.003340732539072633, -0.014266975224018097, 0.005439063999801874, 0.034098196774721146, -0.02228347398340702, 0.1041240319609642, -0.0035987617447972298, 0.05251991003751755, -0.03647749498486519, 0.04349415749311447, 0.03236210346221924, 0.005214202683418989, -0.07363350689411163, -0.038352902978658676, -0.014638049528002739, -0.004751672502607107, 0.0012471495429053903, -0.00614845659583807, -0.014153930358588696, -0.04130541533231735, 0.04969899728894234, -0.04209190607070923, -0.09133212268352509, -0.003196528647094965, 0.009531262330710888, -0.0012414985103532672, 0.03571004047989845, -0.033571403473615646, 0.04250558465719223, 0.024418296292424202, 0.006625758484005928, -0.007309763692319393, 0.031078949570655823, 0.03342442587018013, -0.01757379062473774, -0.047082703560590744, -0.03336239978671074, 0.019930021837353706, 0.013842917047441006, 0.04591576009988785, 0.057995088398456573, 0.02613069862127304, -0.07281702011823654, 0.013323294930160046, 0.0381232313811779, -0.019258780404925346, -0.01937403716146946, 0.05496218055486679, -0.006799766793847084, -0.0417545810341835, 0.05468154698610306, 0.03523946553468704, 0.024545717984437943, 0.03128456696867943, 0.03210165351629257, -0.021140476688742638, 0.009905579499900341, 0.01755545660853386, -0.004543900024145842, 0.04636732488870621, -0.05754154175519943, 0.0401337631046772, -0.0027041269931942225, 0.02277141809463501, 0.08557721227407455, 0.0072434209287166595, 0.005338882561773062, 0.07935290783643723, -0.0013231717748567462, -0.023616204038262367, -0.004287033807486296, -0.00015389802865684032, -0.02839168719947338, 0.05695189908146858, 0.0455479770898819, -0.28296640515327454, 0.07419693470001221, 0.06050717830657959, 0.059825245290994644, 0.011074320413172245, 0.04057299718260765, 0.03320103883743286, -0.06336195766925812, 0.028029518201947212, 0.015407199040055275, -0.009637271985411644, 0.02688346616923809, 0.037429217249155045, 0.028703123331069946, 0.014573527500033379, 0.026404347270727158, 0.03804527968168259, 0.002581491833552718, -0.0019269248005002737, -0.04310818389058113, 0.0013903275830671191, 0.013566355220973492, 0.17452658712863922, 0.02522372454404831, -0.01693844608962536, 0.015048308297991753, -0.0027442993596196175, 0.02019028179347515, 0.02282470278441906, 0.051486026495695114, -0.01026837807148695, -0.018458694219589233, 0.05697097256779671, -0.045182060450315475, 0.0454082190990448, -0.03201846778392792, -0.025226162746548653, -0.02708584815263748, 0.028944380581378937, -0.05301433801651001, -0.03459974005818367, 0.009447934105992317, -0.08227618038654327, 0.020713049918413162, 0.05386815220117569, -0.018816392868757248, -0.022017057985067368, -0.03929879143834114, -0.01910555176436901, 0.004278472624719143, -0.02092870883643627, -0.040537361055612564, -0.01071826834231615, -0.028124840930104256, 0.004619599785655737, 0.04248759150505066, 0.032243914902210236, -0.014129934832453728, -0.04386026784777641, 0.04260805621743202, 0.00276060844771564, -0.04789780080318451, 0.08962120115756989, 0.03530191257596016, 0.02512958273291588 ]
[ 0.028127819299697876, -0.03140460327267647, -0.017923513427376747, 0.001370698562823236, 0.01719762198626995, -0.03672531619668007, 0.013635464943945408, 0.018164804205298424, -0.011620903387665749, -0.0004984776023775339, 0.0065148016437888145, 0.016491081565618515, 0.003224543295800686, 0.02565506100654602, -0.021892834454774857, -0.042016588151454926, 0.008476757444441319, 0.00027344547561369836, 0.027453241869807243, 0.022051099687814713, -0.03954504802823067, -0.00005437682193587534, 0.04651457443833351, -0.006580648012459278, -0.037087466567754745, -0.0077831195667386055, -0.07177136838436127, 0.018799660727381706, -0.0006029264186508954, -0.11869926750659943, -0.011241458356380463, -0.020692283287644386, 0.024237627163529396, -0.015919705852866173, -0.005584706086665392, 0.009794826619327068, 0.01623031124472618, -0.011781774461269379, -0.025556284934282303, 0.017086585983633995, 0.035153042525053024, -0.01827171817421913, -0.0029676826670765877, 0.0007923836237750947, 0.0003033275716006756, -0.01591029390692711, -0.04237973690032959, -0.01773878186941147, -0.0076106092892587185, 0.017065279185771942, -0.06958749145269394, 0.004778790287673473, 0.01767372526228428, -0.004530833102762699, 0.031075546517968178, 0.015760377049446106, -0.005072572268545628, -0.00590977119281888, 0.03433053195476532, 0.00007070617721183226, 0.026173653081059456, 0.048886317759752274, -0.013454347848892212, -0.03394491225481033, 0.03126978501677513, -0.03695928677916527, -0.031191544607281685, 0.0032630350906401873, 0.043752703815698624, -0.009642346762120724, -0.0029151849448680878, 0.00246675917878747, -0.016657616943120956, -0.04842941462993622, -0.053541149944067, 0.035833463072776794, 0.005185422953218222, 0.03274887800216675, -0.00192132533993572, -0.0253585334867239, -0.057187359780073166, -0.029627541080117226, -0.005782636348158121, 0.000034103104553651065, -0.025768067687749863, 0.004228721838444471, 0.0025655687786638737, 0.02349894493818283, -0.002737871604040265, -0.0379006452858448, 0.005826165899634361, 0.0016883843345567584, -0.011950979009270668, -0.005173212848603725, -0.0653177946805954, -0.024472808465361595, 0.005819009616971016, -0.01322353258728981, -0.03692157194018364, 0.821458101272583, 0.019279081374406815, 0.0054322159849107265, 0.03126082569360733, -0.021698208525776863, 0.05264813452959061, -0.021177854388952255, -0.02864699624478817, 0.007925983518362045, -0.01602371409535408, -0.01673121750354767, 0.0027160656172782183, 0.02981594391167164, 0.02413315512239933, 0.017389655113220215, 0.009322280995547771, 0.034688882529735565, -0.033736228942871094, -0.0244531761854887, -0.021371567621827126, 0.05748862400650978, 0.03214851766824722, -0.03624663129448891, 0.004277519416064024, 0.011871765367686749, -0.012910479679703712, -0.15849818289279938, -0.011535829864442348, -6.51087366074058e-33, 0.042294301092624664, -0.08938093483448029, -0.0010568350553512573, -0.01273333840072155, 0.06863962858915329, 0.018429039046168327, 0.0035618531983345747, -0.0042395093478262424, -0.017414268106222153, -0.004281850066035986, 0.02537018433213234, -0.029389094561338425, -0.020752761512994766, -0.017223121598362923, -0.008450265973806381, -0.027070432901382446, -0.03219664469361305, 0.028037382289767265, -0.005234281532466412, 0.011382531374692917, 0.029585909098386765, 0.013522983528673649, -0.046456340700387955, 0.01626925729215145, 0.08191587775945663, 0.010480293072760105, -0.02413165383040905, -0.041118670254945755, 0.0028762223664671183, -0.024151787161827087, 0.002073120791465044, -0.021539252251386642, 0.0035468689166009426, -0.04298558831214905, 0.005643224343657494, -0.07677125185728073, 0.0014345395611599088, -0.009105609729886055, -0.07157308608293533, -0.05675482749938965, 0.013223815709352493, -0.029102550819516182, -0.02430899813771248, 0.01395036093890667, -0.022865116596221924, 0.005435331258922815, 0.015564496628940105, 0.06331145763397217, -0.0052637201733887196, 0.01518166158348322, 0.025752948597073555, -0.0016092966543510556, 0.026828987523913383, -0.024559954181313515, -0.01824427768588066, -0.004917164333164692, -0.013211114332079887, 0.015457737259566784, -0.027675941586494446, -0.024291012436151505, -0.02513236738741398, -0.01821702904999256, -0.053417932242155075, 0.03050849586725235, -0.005051141604781151, 0.01839476078748703, 0.011218889616429806, 0.028022481128573418, -0.0011117851827293634, 0.024317188188433647, -0.06297966837882996, 0.016323814168572426, -0.01197552215307951, -0.018397094681859016, -0.004636638797819614, -0.044945649802684784, 0.0034622857347130775, 0.019975949078798294, 0.001602045027539134, 0.011705462820827961, -0.03183672949671745, 0.040190521627664566, -0.04389279708266258, 0.01436914224177599, -0.02865121327340603, 0.01531937438994646, 0.061247266829013824, 0.011985255405306816, -0.015992924571037292, 0.008764689788222313, 0.034220557659864426, 0.07938497513532639, 0.011854194104671478, -0.061194054782390594, -0.0009472109377384186, 6.815690366168339e-33, -0.026689870283007622, -0.0027126178611069918, -0.009966540150344372, 0.014754602685570717, 0.02836478501558304, -0.022582612931728363, 0.03827332705259323, 0.009913570247590542, 0.01840313710272312, -0.017329860478639603, -0.035926152020692825, 0.03216763585805893, -0.01690952479839325, 0.03959119692444801, 0.038352370262145996, 0.01013166829943657, -0.00020074720669072121, 0.009934699162840843, 0.025812633335590363, 0.00187418214045465, 0.025041265413165092, -0.025317290797829628, 0.03363355994224548, 0.015630289912223816, 0.014160211198031902, 0.058438219130039215, -0.007928697392344475, 0.01712317392230034, -0.024503929540514946, -0.016474120318889618, 0.03112395480275154, 0.003186345100402832, 0.016118422150611877, -0.008293025195598602, -0.03173704817891121, 0.011875398457050323, -0.009761583060026169, 0.008116304874420166, -0.008634870871901512, -0.012693551369011402, 0.007570887450128794, -0.010759350843727589, -0.0037701774854213, 0.008018016815185547, -0.03783873841166496, 0.000033248299587285146, 0.04302217811346054, 0.004225699231028557, -0.01984049193561077, 0.011504593305289745, -0.02871876209974289, -0.007321008946746588, 0.012821127660572529, 0.013403534889221191, 0.029395125806331635, 0.005259490106254816, -0.012679778970777988, 0.017899010330438614, -0.04239233583211899, -0.012041260488331318, 0.02586439996957779, 0.007061229553073645, 0.018041325733065605, 0.04834902659058571, -0.02026550844311714, -0.021308960393071175, -0.02267683483660221, 0.013269486837089062, -0.02320513129234314, 0.0058409348130226135, 0.039733998477458954, 0.03584812209010124, 0.008423403836786747, 0.06801433861255646, 0.020487874746322632, 0.007084686309099197, -0.02449544332921505, 0.0016312445513904095, 0.007932206615805626, -0.00019614430493675172, -0.0030521561857312918, 0.02174057811498642, 0.01081957295536995, -0.03346472233533859, 0.03129478543996811, -0.01543272752314806, -0.017036210745573044, 0.04517292231321335, 0.028596214950084686, 0.002865805057808757, -0.016602369025349617, -0.04929373785853386, -0.013314160518348217, 0.0029434827156364918, 0.02301129512488842, -1.222140255663362e-8, 0.002827467629685998, 0.004508333280682564, -0.034245364367961884, 0.03653312847018242, 0.04935905337333679, 0.033448074012994766, -0.053069401532411575, -0.00016873536515049636, -0.027278391644358635, 0.0125371553003788, 0.0556524358689785, 0.027016492560505867, -0.02014295570552349, 0.029400238767266273, 0.005243766587227583, -0.027295401319861412, 0.018409810960292816, -0.0315018855035305, 0.02361726388335228, -0.006958981044590473, -0.004646720364689827, 0.018463216722011566, 0.019871478900313377, -0.016439296305179596, -0.03194664791226387, 0.01952284388244152, 0.024558819830417633, -0.05797623097896576, -0.006595860701054335, 0.00206297286786139, 0.02996869385242462, -0.035788051784038544, -0.007265451364219189, 0.028253627941012383, -0.02056290954351425, 0.0001220830890815705, -0.015178105793893337, 0.021252237260341644, 0.008862046524882317, 0.007289899978786707, -0.012575606815516949, -0.035374965518713, -0.029854007065296173, -0.04884685203433037, -0.0109298937022686, 0.0024092779494822025, -0.026734333485364914, 0.03963075950741768, 0.0021930981893092394, -0.01075856015086174, -0.004314957186579704, -0.008977088145911694, 0.054562609642744064, 0.016174552962183952, 0.08573529124259949, 0.03182823210954666, 0.03626875951886177, -0.012630111537873745, 0.03208126127719879, 0.0066773188300430775, 0.021473301574587822, 0.036434371024370193, -0.0013570210430771112, -0.005335714668035507 ]
apache-pinot-copy-segment-new-table
https://markhneedham.com/blog/2021/12/06/apache-pinot-copy-segment-new-table
false
2020-03-31 00:21:00
Streamlit: multiselect - AttributeError: 'numpy.ndarray' object has no attribute 'index'
[ "streamlit" ]
[ "Streamlit" ]
In this post we'll learn how to overcome a problem I encountered while building a small https://www.streamlit.io/[Streamlit^] application to analyse https://github.com/CSSEGISandData/COVID-19[John Hopkin's data on the COVID-19 disease^]. The examples in this post use https://github.com/CSSEGISandData/COVID-19/blob/master/csse_covid_19_data/csse_covid_19_time_series/time_series_covid19_deaths_global.csv[a CSV file that contains time series data of deaths in each country^]. I started with the following code to create https://docs.streamlit.io/api.html#streamlit.multiselect[a multiselect widget^] that lists all countries and selected the `United Kingdom` by default: [source,python] ---- import streamlit as st import pandas as pd default_countries = ["United Kingdom"] url="https://github.com/CSSEGISandData/COVID-19/raw/master/csse_covid_19_data/csse_covid_19_time_series/time_series_covid19_deaths_global.csv" df=pd.read_csv(url) countries = st.sidebar.multiselect( 'Select countries', options=df["Country/Region"].unique(), default=default_countries ) ---- We can run our application by executing the following command: [source,bash] ---- $ streamlit run app.py You can now view your Streamlit app in your browser. Local URL: http://localhost:8501 Network URL: http://192.168.1.192:8501 ---- And if we view that page in our web browser we'll see the following: [source, text] ---- AttributeError: 'numpy.ndarray' object has no attribute 'index' Traceback: File "/home/markhneedham/.local/share/virtualenvs/covid-19-r91ZMWVf/lib/python3.7/site-packages/streamlit/ScriptRunner.py", line 322, in _run_script exec(code, module.__dict__) File "/home/markhneedham/projects/covid-19/app.py", line 55, in <module> default=default_countries File "/home/markhneedham/.local/share/virtualenvs/covid-19-r91ZMWVf/lib/python3.7/site-packages/streamlit/DeltaGenerator.py", line 121, in wrapped_method return dg._enqueue_new_element_delta(marshall_element, delta_type, last_index) File "/home/markhneedham/.local/share/virtualenvs/covid-19-r91ZMWVf/lib/python3.7/site-packages/streamlit/DeltaGenerator.py", line 342, in _enqueue_new_element_delta rv = marshall_element(msg.delta.new_element) File "/home/markhneedham/.local/share/virtualenvs/covid-19-r91ZMWVf/lib/python3.7/site-packages/streamlit/DeltaGenerator.py", line 119, in marshall_element return method(dg, element, *args, **kwargs) File "/home/markhneedham/.local/share/virtualenvs/covid-19-r91ZMWVf/lib/python3.7/site-packages/streamlit/DeltaGenerator.py", line 1693, in multiselect indices = _check_and_convert_to_indices(options, default) File "/home/markhneedham/.local/share/virtualenvs/covid-19-r91ZMWVf/lib/python3.7/site-packages/streamlit/DeltaGenerator.py", line 1691, in _check_and_convert_to_indices return [options.index(value) for value in default_values] File "/home/markhneedham/.local/share/virtualenvs/covid-19-r91ZMWVf/lib/python3.7/site-packages/streamlit/DeltaGenerator.py", line 1691, in <listcomp> return [options.index(value) for value in default_values] ---- I tried changing the type of the collection passed to `default`, but kept getting the same error, until I eventually converted `options` to a Python list. This resulted in the following code: [source,python] ---- import streamlit as st import pandas as pd default_countries = ["United Kingdom"] url="https://github.com/CSSEGISandData/COVID-19/raw/master/csse_covid_19_data/csse_covid_19_time_series/time_series_covid19_deaths_global.csv" df=pd.read_csv(url) countries = st.sidebar.multiselect( 'Select countries', options=list(df["Country/Region"].unique()), default=default_countries ) ---- And now if we run the application we'll see the following output: image::{{<siteurl>}}/uploads/2020/03/streamlit-multiselect.png[title="Streamlit multiselect widget"] Job done!
Learn how to overcome a problem specifying default values with Streamlit's multiselect widget.
null
[ 0.02284516952931881, -0.0037567284889519215, -0.015051690861582756, 0.02636129781603813, 0.07662653923034668, 0.019146908074617386, 0.022111792117357254, 0.06548961997032166, 0.037251248955726624, -0.02826709859073162, -0.012986958958208561, -0.03997521847486496, -0.08500966429710388, 0.021799052134156227, -0.0015212639700621367, 0.07086571305990219, 0.07081679254770279, 0.011074545793235302, 0.04450848326086998, 0.01282881572842598, 0.0027090965304523706, 0.04043830186128616, -0.005584940779954195, 0.055289603769779205, 0.001528789522126317, -0.002506317337974906, 0.028134820982813835, -0.009374997578561306, -0.035733189433813095, -0.005180628038942814, 0.046837955713272095, 0.019716886803507805, -0.008496313355863094, -0.009959222748875618, 0.02079963870346546, 0.006401249673217535, -0.026599163189530373, 0.032105304300785065, -0.013078385964035988, 0.019899040460586548, -0.09100839495658875, 0.006627591792494059, -0.038632988929748535, 0.003963950090110302, -0.016935037449002266, 0.006359024439007044, -0.022863486781716347, 0.041835010051727295, -0.003750280011445284, 0.0055780657567083836, -0.043988920748233795, 0.00851842388510704, 0.0023770860861986876, -0.006752343848347664, -0.00924524012953043, 0.041670870035886765, 0.013405163772404194, -0.07055344432592392, 0.023871051147580147, -0.028088731691241264, 0.014466684311628342, -0.008203335106372833, 0.023202208802103996, 0.02345995604991913, 0.015120003372430801, -0.02251262031495571, -0.009531923569738865, 0.0700671374797821, -0.026148851960897446, -0.029261723160743713, 0.008233238011598587, 0.028095556423068047, -0.04076748341321945, 0.0008531123166903853, 0.021635524928569794, -0.05222443863749504, -0.024752816185355186, 0.04329269379377365, 0.010239316150546074, 0.031818926334381104, -0.009720291942358017, -0.012258945032954216, 0.009216842241585255, 0.03617308661341667, 0.006579325534403324, -0.04804840311408043, -0.0162948090583086, -0.015251323580741882, -0.06710924953222275, 0.05338267982006073, 0.0060196202248334885, -0.028456583619117737, 0.05096176639199257, 0.011500237509608269, 0.0031388155184686184, 0.028239721432328224, 0.018185334280133247, 0.001061544637195766, -0.013313036412000656, -0.051707495003938675, -0.042767688632011414, 0.0006760240066796541, 0.019308172166347504, 0.030303699895739555, -0.08090348541736603, -0.023116320371627808, -0.00672224210575223, -0.026669781655073166, 0.02733335644006729, 0.00043772507342509925, -0.011534604243934155, -0.017044957727193832, -0.03401174396276474, -0.014414343982934952, -0.11395189166069031, 0.09810325503349304, 0.038774654269218445, -0.04194051772356033, 0.026055950671434402, -0.007272223010659218, 0.024804679676890373, 0.014911203645169735, -0.019293874502182007, 0.07104423642158508, 0.03532653674483299, 0.027694515883922577, -0.010692535899579525, 0.020375795662403107, -0.0014755725860595703, -0.04909565672278404, -0.0010623849229887128, 0.05964598432183266, -0.01305757649242878, -0.017645349726080894, 0.011902171187102795, 0.002098304219543934, -0.019649360328912735, -0.004669510759413242, 0.0214966032654047, 0.04570618271827698, 0.005564168561249971, -0.04209689795970917, 0.014803590252995491, 0.02575007639825344, 0.02215101569890976, 0.03209374099969864, -0.0020525315776467323, -0.048860251903533936, -0.025713035836815834, -0.008507157675921917, 0.002100899815559387, 0.001823969418182969, 0.08779564499855042, -0.018628358840942383, -0.019106421619653702, 0.09037236124277115, 0.05977550521492958, 0.004882891662418842, 0.02039223164319992, 0.009321540594100952, 0.0664006695151329, 0.07043688744306564, 0.027487242594361305, 0.018591774627566338, -0.003029366722330451, -0.03776591643691063, 0.0007518912316299975, 0.022062640637159348, -0.022526510059833527, -0.004031199961900711, -0.06042533367872238, -0.012902872636914253, 0.0728921964764595, -0.03739289939403534, 0.012941166758537292, 0.040101345628499985, 0.05753299966454506, 0.020888449624180794, 0.028032179921865463, -0.006711361464112997, -0.07708055526018143, 0.03532109037041664, 0.0015457168919965625, 0.016193902119994164, 0.050075266510248184, -0.011668147519230843, 0.07464326173067093, 0.031926319003105164, 0.022705454379320145, 0.03367575630545616, -0.059731584042310715, -0.05771409347653389, -0.0437566414475441, 0.023103417828679085, 0.04345140606164932, -0.06383425742387772, -0.0031309090554714203, 0.11750222742557526, 0.004239360336214304, 0.04038253799080849, -0.012373511679470539, 0.0065323845483362675, 0.01643539033830166, -0.022246772423386574, -0.056430574506521225, 0.02263156697154045, 0.04815986379981041, -0.029004095122218132, -0.020215805619955063, 0.01907798834145069, -0.02377089485526085, 0.000342807819833979, 0.016568662598729134, -0.019216110929846764, 0.030039826408028603, 0.017362147569656372, 0.04094996303319931, 0.00029995443765074015, 0.029157018288969994, -0.04087972640991211, 0.037386052310466766, -0.01734892465174198, -0.016960762441158295, -0.020269855856895447, 0.004313633311539888, 0.12094554305076599, 0.06866350769996643, -0.001755853765644133, -0.05392776429653168, -0.009877377189695835, 0.006593490485101938, -0.02214553765952587, -0.0035259081050753593, -0.01960235834121704, -0.022536104544997215, -0.009714515879750252, -0.04023899510502815, -0.04387478157877922, 0.01154341734945774, -0.03945932537317276, 0.03189185634255409, 0.05700506642460823, 0.016286540776491165, 0.02978699840605259, -0.011761247180402279, -0.04124567285180092, -0.028919881209731102, -0.01507929153740406, -0.032687827944755554, -0.012088296003639698, 0.014924537390470505, 0.011616604402661324, 0.03401742875576019, -0.008653168566524982, -0.005641349125653505, -0.01771974191069603, -0.05874112993478775, 0.030291013419628143, 0.056765615940093994, 0.03628666326403618, 0.009563228115439415, 0.05361773818731308, -0.024382108822464943, 0.02347729168832302, -0.0009473598911426961, -0.044539324939250946, -0.057289522141218185, -0.03606685250997543, 0.012463774532079697, 0.0068907057866454124, 0.05174873769283295, 0.014245305210351944, 0.021628910675644875, -0.00888906978070736, 0.0036613030824810266, 0.01030407939106226, 0.028405707329511642, 0.012444747611880302, -0.007696432527154684, -0.005572613328695297, -0.020857764407992363, 0.06068333238363266, -0.02260187640786171, -0.026929635554552078, 0.0008159372373484075, -0.059079043567180634, 0.020814336836338043, -0.04597831889986992, -0.02114959806203842, 0.015779247507452965, -0.010330695658922195, 0.04792392626404762, 0.028008857741951942, -0.00349751440808177, 0.04647400230169296, -0.009321850724518299, 0.004142506513744593, 0.00519191287457943, 0.001480022561736405, 0.036295969039201736, -0.014733772724866867, 0.007542597595602274, 0.07811522483825684, 0.011416194029152393, -0.01212493609637022, -0.049072448164224625, 0.019262973219156265, -0.021794486790895462, -0.2895835041999817, 0.03986363857984543, 0.005134011618793011, -0.017975613474845886, 0.04188618063926697, -0.01353329885751009, 0.031684014946222305, -0.02982645481824875, -0.022288717329502106, -0.004802198149263859, 0.013329881243407726, -0.022863419726490974, -0.027188094332814217, 0.013921246863901615, 0.004479540977627039, 0.008194297552108765, -0.035140395164489746, -0.04705477133393288, 0.023239757865667343, 0.05171695351600647, 0.016741925850510597, -0.026162974536418915, -0.011480676010251045, 0.07004959136247635, 0.02566629648208618, 0.03186720237135887, -0.055291395634412766, 0.06804068386554718, -0.04564766585826874, -0.021052371710538864, 0.03757578879594803, -0.025794807821512222, 0.0072896769270300865, -0.005815071053802967, -0.026575639843940735, -0.009913354180753231, 0.029441362246870995, 0.0198731180280447, -0.01721327006816864, -0.006459521129727364, -0.038242410868406296, -0.02597649209201336, -0.022587168961763382, -0.01616835594177246, 0.06241767108440399, 0.00954272598028183, -0.04593552649021149, 0.03770148381590843, -0.025018133223056793, 0.0698690190911293, -0.016657229512929916, -0.03354402258992195, -0.04932187870144844, 0.03898410126566887, -0.044731155037879944, -0.010328201577067375, -0.040014706552028656, 0.012028299272060394, -0.05738462880253792, -0.03510751202702522, 0.0045982361771166325, -0.023197663947939873, -0.008776751346886158, -0.07089516520500183, 0.005906551610678434, -0.05376337096095085, -0.05653587728738785, -0.02235756255686283, 0.06702708452939987, 0.038759198039770126, -0.044486768543720245, -0.008835066109895706, -0.018863670527935028, -0.11101558059453964, 0.014046706259250641, -0.06061506271362305, -0.0045493547804653645, -0.006335283629596233, 0.0084652965888381, 0.026129255071282387, -0.04567229747772217, -0.057748936116695404, 0.04275905340909958, 0.025800302624702454, 0.0066409907303750515, -0.014100073836743832, 0.0384247824549675, -0.018985116854310036, -0.033219508826732635, -0.01242656446993351, 0.05879071354866028, -0.03823123127222061, -0.009221040643751621, 0.0027013379149138927, -0.04192937910556793, 0.045562196522951126, -0.0076428549364209175, 0.0357213169336319, -0.0027381833642721176, 0.04963020607829094, 0.02083452045917511, -0.05394522845745087, -0.019767945632338524, -0.0850401222705841, 0.020355362445116043, -0.005069454666227102, -0.04867859557271004, 0.026310786604881287, 0.01794123835861683, 0.004483731463551521, -0.0020942839328199625, -0.025641856715083122, 0.014762830920517445, -0.05939320847392082, -0.00984883587807417, -0.00836162082850933, 0.05111885070800781, -0.0004907648544758558, 0.030924756079912186, -0.02158154733479023, -0.04333268478512764, 0.036226775497198105, 0.01335653755813837, -0.0013403863413259387, -0.03753508999943733, -0.058202069252729416, 0.003934809006750584, -0.009238573722541332, -0.0064092641696333885, 0.00891774334013462, -0.019413014873862267, 0.02689327299594879, 0.023608671501278877, -0.014087118208408356, 0.02303471975028515, -0.03366503864526749, -0.04465587064623833, -0.04988684505224228, 0.013312255963683128, 0.034756600856781006, 0.0033841615077108145, 0.005666687153279781, -0.017004620283842087, 0.024742349982261658, 0.04020314663648605, -0.015396760776638985, -0.004510601982474327, 0.034263644367456436, -0.006680337246507406, 0.009556339122354984, -0.02225126512348652, -0.018957078456878662, 0.004053066018968821, -0.004832630977034569, -0.06989403069019318, -0.006400450598448515, 0.04423869401216507, 0.00929152499884367, -0.015068373642861843, -0.040014028549194336, 0.0040031298995018005, -0.039227090775966644, -0.03352637588977814, -0.011797095648944378, 0.003985044080764055, 0.05644843727350235, -0.007145584560930729, 0.014078491367399693, 0.04372864216566086, -0.005265515297651291, 0.016640737652778625, 0.007189308758825064, -0.036825429648160934, -0.008696354925632477, -0.020073259249329567, -0.00904001947492361, -0.010474269278347492, 0.0006796641973778605, -0.002280231798067689, 0.03427716717123985, 0.019053032621741295, -0.011529486626386642, 0.004536677151918411, 0.023501336574554443, 0.05198048800230026, 0.08021445572376251, -0.008800542913377285, -0.014222047291696072, -0.0028387177735567093, -0.004549739882349968, -0.03178699314594269, -0.013010728172957897, -0.03885909914970398, -0.00876915268599987, -0.01996154896914959, -0.0671883299946785, 0.023010052740573883, 0.006205008365213871, 0.007404235191643238, 0.011269742622971535, -0.03506680205464363, 0.025320809334516525, -0.03185528144240379, 0.01462166290730238, 0.019428759813308716, -0.05588504299521446, 0.012246817350387573, -0.0028732051141560078, -0.008248516358435154, -0.009723910130560398, -0.010979466140270233, -0.0628625899553299, -0.00997980684041977, -0.034328289330005646, 0.016310008242726326, -0.028700362890958786, -0.052164264023303986, -0.06041213497519493, 0.010843801312148571, -0.012044087052345276, 0.01733504608273506, -0.008730584755539894, -0.004805967677384615, -0.012819674797356129, -0.030024200677871704, 0.03694093972444534, -0.02233194001019001, -0.030731217935681343, 0.059533603489398956, 0.014004115015268326, -0.011423151940107346, -0.02463463507592678, 0.032838281244039536, 0.030329305678606033, -0.015905769541859627, -0.0077832043170928955, -0.005132002755999565, -0.02585526555776596, 0.017177144065499306, 0.05351428687572479, -0.013816284947097301, -0.0031150151044130325, -0.018458086997270584, -0.02174798958003521, 0.0234008077532053, 0.01693902350962162, -0.008770808577537537, 0.007842871360480785, 0.027874305844306946, 0.0732843428850174, -0.00007383383490378037, 0.0029594923835247755, 0.010613683611154556, -0.0602998286485672, 0.0281960628926754, -0.03777920827269554, -0.022051244974136353, -0.053792450577020645, -0.03397368639707565, 0.023851171135902405, -0.0021089420188218355, -0.006286758929491043, -0.04413163661956787, 0.04534910246729851, 0.03193199634552002, 0.0010515251196920872, 0.07167181372642517, 0.022945396602153778, 0.002863609232008457, -0.062148626893758774, -0.011435380205512047, -0.11018487811088562, 0.007621994707733393, 0.02124953083693981, -0.0184515118598938, 0.00715741328895092, 0.017580000683665276, -0.029756445437669754, 0.04622994735836983, -0.057455625385046005, -0.03093050792813301, 0.013307828456163406, -0.02215910144150257, 0.015380670316517353, 0.010402294807136059, -0.048671554774045944, 0.030340228229761124, 0.05565717816352844, -0.050850704312324524, -0.032780155539512634, -0.03263850510120392, 0.061522651463747025, -0.004859968554228544, 0.02492600493133068, -0.004554702900350094, -0.0030835471116006374, 0.04202662408351898, 0.02668776363134384, 0.0017507676966488361, 0.02607434056699276, -0.005802005063742399, 0.04303804039955139, 0.02256876230239868, -0.007417397107928991, -0.005114159546792507, 0.017061986029148102, 0.01535316463559866, -0.042509689927101135, 0.05046256631612778, 0.03964721038937569, 0.010554893873631954, -0.04500645399093628, 0.08968077600002289, 0.006179897580295801, -0.05253787711262703, -0.027812857180833817, -0.020097335800528526, -0.05356312170624733, -0.018589425832033157, -0.033602066338062286, -0.0043245540000498295, -0.037338145077228546, 0.06713603436946869, -0.013175183907151222, 0.003932494670152664, 0.06772152334451675, -0.0058143059723079205, 0.0015323060797527432, 0.003243250772356987, 0.07882603257894516, 0.05659039318561554, 0.04221075773239136, -0.017983971163630486, 0.07053951174020767, -0.02998463436961174, -0.04776957258582115, 0.024087417870759964, -0.02998962253332138, -0.016537031158804893, -0.023014092817902565, 0.02202034741640091, 0.05450860410928726, 0.010537587106227875, 0.0865403339266777, -0.003919154871255159, -0.01001108530908823, -0.04485094174742699, 0.043653517961502075, 0.04665103182196617, 0.004499699454754591, 0.023714829236268997, 0.032268181443214417, -0.005448531825095415, -0.008023380301892757, 0.028371987864375114, -0.024406302720308304, -0.057689908891916275, 0.015936898067593575, -0.013391043059527874, -0.0000672087844577618, -0.003997999243438244, 0.01180361956357956, 0.07799942046403885, -0.04304458200931549, 0.0005160818109288812, -0.021417681127786636, 0.0273587703704834, -0.007975290529429913, 0.04691961407661438, -0.0005849740118719637, 0.0021953005343675613, -0.01980213262140751, -0.05530829727649689, 0.007809874601662159, -0.01235137414187193, -0.04680387303233147, -0.0015353673370555043, -0.033179353922605515, 0.019532732665538788, 0.027716221287846565, -0.01782333105802536, -0.052503399550914764, -0.0451456680893898, -0.054408710449934006, -0.04364154487848282, -0.08250289410352707, -0.02381458505988121, 0.028515810146927834, -0.0005447783041745424, -0.006068548187613487, -0.04113680124282837, -0.004819730296730995, -0.010698733851313591, 0.01654045470058918, -0.02499525621533394, -0.015180623158812523, 0.0396418571472168, 0.03526885807514191, 0.0018850704655051231, 0.0003803303116001189, 0.046777285635471344, -0.021993650123476982, -0.014602411538362503, -0.03678533807396889, 0.0125123281031847, 0.048727188259363174, 0.010702687315642834, 0.027511630207300186, -0.09318795055150986, 0.014451205730438232, 0.003942118491977453, -0.008893043734133244, -0.08032865077257156, 0.039690934121608734, 0.04106494411826134, 0.02221609093248844, 0.05542716011404991, -0.027107806876301765, -0.01965763233602047, -0.07010798901319504, -0.028800927102565765, -0.03138313814997673, 0.026562999933958054, 0.039683666080236435, -0.022482968866825104, 0.05896546691656113, 0.042702000588178635, 0.01476026326417923, -0.03842468559741974, -0.0023160611744970083, -0.01665428653359413, -0.00920356996357441, -0.03149623051285744, -0.03714026138186455, -0.0791415423154831, -0.07616520673036575, -0.013154542073607445, 0.028502516448497772, -0.03487379103899002, -0.03516348823904991, 0.00014206362538971007, 0.0018080781446769834, -0.01988569274544716, 0.004691556561738253, -0.033726487308740616, 0.008386132307350636, -0.03182346001267433, -0.02062917686998844, -0.023901578038930893, 0.04613153263926506, 0.012441931292414665, 0.013835199177265167, 0.018165437504649162, -0.041589025408029556, 0.018622661009430885, -0.015471884049475193, 0.005718505475670099, 0.05762966349720955, -0.02207239344716072, 0.023226633667945862 ]
[ -0.04789365455508232, -0.02473084069788456, 0.0003487364447209984, -0.015555187128484249, 0.1096283569931984, -0.05840039998292923, 0.003476017154753208, 0.033845365047454834, -0.010586326010525227, 0.008155135437846184, -0.017034871503710747, -0.07906058430671692, -0.028189321979880333, -0.0018893240485340357, 0.04440055042505264, 0.004558937158435583, -0.02860621176660061, -0.1008136197924614, -0.049283504486083984, 0.04026311635971069, -0.01953507773578167, -0.013889902271330357, -0.011211827397346497, -0.052950311452150345, 0.00007313564856303856, 0.016848132014274597, 0.05502859875559807, -0.038201864808797836, -0.010981479659676552, -0.19968178868293762, 0.007298777345567942, -0.05128731206059456, -0.004306172952055931, -0.019791675731539726, -0.017511814832687378, -0.008449934422969818, 0.02187594212591648, 0.032769575715065, -0.0011317223543301225, 0.030140584334731102, 0.02423793449997902, 0.03360065817832947, -0.02534564770758152, -0.028442801907658577, 0.02063010074198246, -0.0121794193983078, -0.020096315070986748, -0.010642983950674534, 0.019149325788021088, 0.020278168842196465, -0.05210858955979347, 0.01134649571031332, -0.006271190010011196, -0.0019434163114055991, 0.016391970217227936, -0.007336393930017948, 0.024617934599518776, 0.040581297129392624, 0.029706856235861778, 0.010844304226338863, 0.02800220251083374, -0.014506186358630657, -0.17049016058444977, 0.11085616797208786, -0.006518035661429167, 0.06331751495599747, -0.012922900728881359, -0.003936584573239088, -0.009371614083647728, 0.03552395477890968, -0.021624594926834106, -0.00966418907046318, 0.005034522153437138, 0.05664801970124245, 0.01734187640249729, 0.0031782109290361404, -0.004819056484848261, 0.02612326666712761, 0.0498487763106823, -0.020917728543281555, -0.014278113842010498, 0.03965791314840317, 0.017390599474310875, -0.044491030275821686, 0.022611413151025772, -0.006299764849245548, -0.03322017565369606, 0.01779443770647049, -0.035644423216581345, 0.0013809602241963148, 0.016414042562246323, -0.02550959400832653, 0.057854264974594116, 0.0455038957297802, -0.07761324942111969, -0.04054230451583862, 0.011349779553711414, 0.04298461973667145, -0.04520371928811073, 0.3948531448841095, -0.04359220340847969, -0.020937686786055565, 0.030237482860684395, 0.07076404243707657, 0.03760858252644539, -0.007439228240400553, -0.005885933991521597, -0.034535422921180725, 0.021857183426618576, -0.015448693186044693, 0.024113323539495468, -0.018059778958559036, 0.06273379176855087, -0.07030268758535385, -0.0039086597971618176, -0.006776899565011263, 0.004017185419797897, -0.009365526027977467, 0.0015323309926316142, 0.05997324362397194, 0.006413572933524847, -0.02909092605113983, 0.04196286201477051, -0.007025488652288914, 0.02051742747426033, 0.020949192345142365, 0.05066877231001854, 0.08583590388298035, 0.04543092101812363, -0.004812793806195259, 0.05914326012134552, -0.04163103550672531, -0.08002961426973343, 0.0023000785149633884, -0.01139384787529707, 0.001023161574266851, 0.023969432339072227, -0.024164820089936256, -0.013516104780137539, 0.03406967222690582, 0.0036748957354575396, -0.04559902846813202, 0.01633327826857567, -0.015539822168648243, -0.01765277050435543, 0.12742243707180023, -0.0003745139401871711, -0.019656382501125336, -0.04657575488090515, -0.0521942563354969, 0.019499914720654488, 0.03915717825293541, -0.0064388602040708065, -0.044198568910360336, 0.024186203256249428, 0.04350711777806282, 0.0892629474401474, -0.04921352118253708, -0.03558596596121788, -0.02134060300886631, -0.011477258987724781, -0.08526411652565002, -0.008693531155586243, 0.07062371075153351, 0.04315835237503052, -0.09011135250329971, -0.03732043877243996, 0.031033702194690704, 0.019171549007296562, -0.057781849056482315, 0.015019849874079227, -0.007601054850965738, -0.00003093458144576289, 0.004968878347426653, 0.07091721892356873, -0.007962997071444988, -0.015298339538276196, 0.03517216816544533, 0.028252873569726944, 0.011312786489725113, -0.006537071894854307, 0.01782984845340252, -0.008369766175746918, 0.02287978120148182, -0.07211698591709137, -0.06245846673846245, -0.031099744141101837, -0.027594715356826782, 0.0036909705959260464, -0.07266811281442642, -0.025780554860830307, -0.033544838428497314, -0.06253522634506226, 0.04836026206612587, -0.018700091168284416, 0.005569769535213709, 0.007711044978350401, 0.0012002727016806602, 0.046266548335552216, -0.03751995041966438, 0.03365856409072876, -0.001864355057477951, 0.009500289335846901, 0.00724317692220211, -0.030461052432656288, 0.02448171377182007, 0.06648644059896469, -0.046200841665267944, 0.03552016243338585, 0.018620071932673454, 0.013973630964756012, 0.009078124538064003, -0.008309279568493366, 0.00717939343303442, -0.03139860928058624, -0.03607581555843353, -0.004761845339089632, -0.01997259072959423, -0.02865269035100937, 0.06777272373437881, 0.027546709403395653, -0.058741744607686996, -0.036477066576480865, -0.38020527362823486, -0.05381639674305916, -0.0044470420107245445, -0.01054861955344677, -0.015159598551690578, -0.04917680844664574, -0.01089369785040617, -0.0018450433854013681, -0.005142662674188614, 0.10869855433702469, 0.10505950450897217, 0.02389761246740818, 0.011821883730590343, -0.058351222425699234, -0.013790527358651161, 0.0398438423871994, -0.010856006294488907, -0.01845720410346985, -0.04755188524723053, 0.02925979718565941, 0.02263672463595867, -0.024882204830646515, -0.016343222931027412, -0.009573846124112606, 0.02044561505317688, -0.038529880344867706, 0.12424346059560776, 0.025986986234784126, 0.0519905649125576, -0.05866434797644615, 0.009676177985966206, -0.002417766023427248, 0.006097057834267616, -0.09428127110004425, 0.012594607658684254, -0.03274212405085564, -0.007980556227266788, 0.022721244022250175, -0.03621881082653999, -0.037328727543354034, -0.0538371242582798, 0.04068542644381523, 0.0008895481587387621, -0.015292024239897728, -0.03984067961573601, 0.011997159570455551, -0.025188488885760307, 0.00016348817734979093, -0.036657970398664474, 0.06021358445286751, 0.001111236517317593, -0.003017525654286146, 0.030278200283646584, 0.04459601268172264, 0.026401447132229805, -0.025043081492185593, -0.09103262424468994, -0.0018765982240438461, -0.038426198065280914, -0.018427008762955666, -0.008961562067270279, 0.01676415093243122, 0.05981038138270378, -0.05745208263397217, -0.007971064187586308, 0.010089065879583359, 0.010033989325165749, 0.002754100365564227, 0.04710560664534569, -0.00019880897889379412, -0.04960582032799721, 0.11497452855110168, -0.028644748032093048, 0.009939181618392467, 0.013579359278082848, 0.061016492545604706, 0.022879157215356827, 0.025619348511099815, 0.0393962562084198, -0.019332265481352806, 0.0731285810470581, -0.01592363603413105, -0.0069108447059988976, -0.014831960201263428, 0.04702576994895935, 0.03311417996883392, -0.028537964448332787, -0.01231580413877964, 0.061084263026714325, 0.024044042453169823, -0.021620219573378563, -0.048573192209005356, -0.036196283996105194, -0.06589004397392273, 0.03274718299508095, 0.011541837826371193, -0.2711236774921417, 0.04203356057405472, 0.05436365306377411, 0.0257976446300745, -0.00954673532396555, -0.05739086866378784, 0.01892305724322796, -0.029592394828796387, 0.004786227829754353, 0.01818247139453888, -0.002524341456592083, 0.009142045862972736, 0.023143595084547997, -0.010767783038318157, -0.01638784259557724, -0.0036024274304509163, 0.01827632635831833, 0.011552146635949612, 0.03658287599682808, -0.003841735888272524, 0.02253623679280281, -0.03822183236479759, 0.15207165479660034, 0.032816436141729355, 0.0014558659167960286, 0.040514908730983734, 0.0030884419102221727, 0.005772980861365795, 0.03752608224749565, 0.05776337534189224, 0.013911212794482708, -0.011036724783480167, 0.02537713199853897, 0.025868283584713936, 0.046550240367650986, -0.04324698448181152, -0.029516734182834625, 0.03495332598686218, 0.02311798930168152, -0.04139676317572594, -0.01681506074965, 0.029830392450094223, -0.01918758638203144, 0.016798997297883034, 0.05671361833810806, 0.0007866460946388543, -0.01948302797973156, -0.05997391790151596, -0.027903195470571518, -0.009618381038308144, -0.004114443901926279, -0.022287487983703613, 0.01833718828856945, -0.0007667283061891794, 0.019694581627845764, 0.06800008565187454, 0.04032456874847412, -0.021748090162873268, 0.05328972265124321, -0.009706211276352406, -0.001728604780510068, -0.05612718313932419, 0.07426203787326813, 0.0069871568121016026, -0.0006389227346517146 ]
[ -0.001189957489259541, 0.04373985528945923, -0.028555430471897125, 0.01153321098536253, 0.030567215755581856, 0.00409792922437191, -0.01377066783607006, 0.018921801820397377, 0.010570559650659561, -0.012060240842401981, -0.02401643618941307, -0.022167230024933815, -0.00919918529689312, -0.015179073438048363, -0.010866395197808743, -0.04357462376356125, -0.046735793352127075, -0.029616789892315865, 0.0054354011081159115, -0.04846620932221413, -0.01046963594853878, 0.029642367735505104, 0.020817097276449203, -0.010738534852862358, -0.01019157376140356, -0.013876969926059246, -0.009100356139242649, 0.014366906136274338, 0.020125893875956535, -0.08997482806444168, -0.0036216864828020334, -0.04531349614262581, -0.032199837267398834, -0.004418088123202324, -0.04330103099346161, -0.005918449722230434, 0.020667877048254013, -0.014984776265919209, -0.047271497547626495, 0.021843064576387405, 0.0505889430642128, 0.012158320285379887, 0.018943512812256813, -0.002919306978583336, -0.016970595344901085, -0.003005402162671089, -0.03266597539186478, -0.0018759062513709068, -0.004001535475254059, 0.015939252451062202, -0.0425141341984272, -0.0016853766283020377, -0.019562039524316788, 0.030970633029937744, 0.02195517159998417, -0.028283769264817238, -0.04657557234168053, -0.0140194371342659, 0.0007907012477517128, -0.04055947810411453, 0.004633576143532991, -0.01441255584359169, -0.012466317042708397, -0.011532185599207878, 0.03292152285575867, -0.008989626541733742, -0.05320046842098236, 0.029932893812656403, 0.022359339520335197, 0.016938406974077225, -0.021321475505828857, 0.03830384090542793, -0.06463298201560974, -0.0017578690312802792, -0.046446431428194046, -0.0482245609164238, 0.009693723171949387, -0.020908722653985023, -0.0032409692648798227, 0.018415506929159164, -0.013214915990829468, 0.01105122733861208, 0.032840508967638016, -0.007900013588368893, 0.02394103817641735, -0.013197147287428379, 0.0003925372438970953, 0.017702540382742882, 0.015493514947593212, 0.0010235171066597104, -0.025464903563261032, 0.01653255522251129, 0.04296259209513664, 0.0549548864364624, -0.07186787575483322, -0.00020187014888506383, 0.042530156672000885, 0.011206606402993202, -0.040200214833021164, 0.8182212710380554, 0.012365835718810558, -0.029532672837376595, 0.06274144351482391, 0.018732905387878418, 0.012592312879860401, -0.03583117574453354, 0.01613193191587925, 0.028553014621138573, 0.022791342809796333, -0.04864216223359108, -0.01112203486263752, 0.03656016290187836, 0.01026755291968584, 0.009417662397027016, 0.024101750925183296, 0.04061740264296532, -0.023142123594880104, 0.00008324846567120403, -0.028323713690042496, 0.049331966787576675, -0.01763051562011242, 0.003290357533842325, -0.02317935973405838, -0.024952959269285202, 0.04958448186516762, -0.13140180706977844, 0.04911823198199272, -6.38796544078654e-33, 0.05502468720078468, -0.03946644440293312, 0.02703278511762619, 0.008442787453532219, 0.034190285950899124, -0.0046521439217031, 0.002527069766074419, 0.003967051859945059, -0.022933954373002052, -0.026265021413564682, 0.012738918885588646, 0.00038382806815207005, -0.02014225535094738, -0.00925974827259779, 0.006304698996245861, -0.04059964790940285, -0.011146766133606434, 0.04725976660847664, 0.021715741604566574, 0.017884720116853714, 0.053864166140556335, 0.019131561741232872, 0.024878399446606636, 0.016805201768875122, -0.002387130865827203, 0.008958891965448856, -0.015899283811450005, -0.0058638062328100204, -0.01204410009086132, -0.032038867473602295, -0.03458390757441521, 0.024724947288632393, -0.00630609318614006, -0.07070853561162949, 0.038686320185661316, -0.06411787122488022, -0.016316793859004974, -0.0030192267149686813, -0.027587244287133217, 0.01790684275329113, -0.009006859734654427, 0.004160790238529444, -0.02404567413032055, -0.030041765421628952, -0.012691139243543148, -0.003061458468437195, -0.019331926479935646, 0.01121518388390541, -0.017082175239920616, 0.027072852477431297, 0.003515611868351698, 0.042039260268211365, 0.009078694507479668, -0.014485529623925686, 0.0013040527701377869, 0.022084327414631844, -0.03313989192247391, 0.0007412706618197262, 0.002320320578292012, -0.03818153962492943, 0.02491368167102337, -0.016444006934762, 0.003491332521662116, 0.0236195120960474, 0.023472268134355545, -0.015777533873915672, 0.09345830231904984, 0.03962701931595802, 0.0037607282865792513, -0.044682323932647705, -0.07637856900691986, 0.002932123839855194, -0.014377480372786522, -0.031770601868629456, 0.05254912003874779, -0.025674493983387947, 0.03147110342979431, -0.03566703200340271, 0.014813900925219059, 0.01168739888817072, -0.021575817838311195, -0.014497046358883381, 0.03186127915978432, -0.022779028862714767, -0.02461058460175991, 0.0401843823492527, 0.031416360288858414, 0.0024957384448498487, -0.028146566823124886, -0.002094886265695095, -0.005167560186237097, 0.06994609534740448, 0.025569217279553413, -0.03806164488196373, -0.03521184250712395, 6.749967007645926e-33, 0.004063556902110577, -0.04698456823825836, -0.0029196578543633223, 0.00044142320984974504, 0.026411179453134537, -0.010257498361170292, 0.060259100049734116, 0.012776781804859638, 0.022314833477139473, 0.016750358045101166, -0.0008437950746156275, -0.026378201320767403, -0.036234766244888306, 0.015021741390228271, 0.06809443980455399, 0.03175028786063194, 0.0049579753540456295, 0.0036960297729820013, 0.03853007033467293, -0.030509348958730698, -0.020988542586565018, -0.013603173196315765, 0.0019792753737419844, -0.007224415894597769, 0.03175012394785881, 0.04828760027885437, 0.006492563523352146, -0.016794420778751373, -0.007415394764393568, -0.007354950066655874, 0.01993156597018242, -0.01559198647737503, -0.0023063879925757647, 0.01500765047967434, -0.03553159162402153, 0.030318206176161766, 0.029520869255065918, 0.011172622442245483, 0.01500634290277958, 0.01915920339524746, 0.023570382967591286, 0.018980465829372406, -0.015028523281216621, 0.009822831489145756, 0.01680115796625614, 0.060863107442855835, -0.0005391499144025147, 0.03014618158340454, -0.03777176886796951, 0.012908387929201126, 0.0034466569777578115, 0.02637970820069313, -0.03238220885396004, 0.04606258496642113, 0.01809050515294075, -0.024109572172164917, 0.029195662587881088, 0.016133463010191917, -0.05116286873817444, -0.05362361669540405, -0.04477354884147644, -0.008073963224887848, -0.03922034054994583, 0.015104959718883038, 0.007841544225811958, 0.005211540497839451, -0.031676243990659714, 0.00551674235612154, 0.052434153854846954, -0.03499726951122284, 0.024996811524033546, -0.02697865664958954, -0.02669084258377552, 0.006983659230172634, 0.013729472644627094, 0.010890829376876354, 0.004257706459611654, 0.011122933588922024, -0.023338470607995987, 0.03347659483551979, -0.0009293993934988976, 0.009221727028489113, 0.03309603035449982, -0.01854216307401657, 0.009068755432963371, 0.017533069476485252, -0.013700734823942184, -0.04568878188729286, 0.04308909922838211, 0.008545059710741043, -0.03010416030883789, -0.02574467658996582, -0.04754074290394783, -0.03875938430428505, -0.0047332183457911015, -1.209398803325712e-8, -0.019509078934788704, 0.014038280583918095, -0.03670648857951164, 0.03504622355103493, -0.01279456727206707, 0.02175549603998661, -0.026096146553754807, -0.010933509096503258, 0.014505889266729355, 0.03365640714764595, 0.046059828251600266, -0.03217334300279617, 0.016587859019637108, -0.015717478469014168, 0.010089099407196045, -0.05785461887717247, -0.037685997784137726, 0.01709526591002941, 0.019976692274212837, 0.004792855586856604, 0.019125571474432945, 0.044889844954013824, -0.006932494230568409, 0.0015419513219967484, 0.023585814982652664, 0.006403494160622358, 0.030586056411266327, -0.09762509167194366, -0.004802292212843895, -0.004983251448720694, -0.009172010235488415, -0.04643290117383003, -0.017565893009305, 0.02408171258866787, -0.0057515837252140045, -0.035978905856609344, 0.009932595305144787, 0.01769169420003891, 0.009903526864945889, -0.003786034882068634, 0.02280689775943756, -0.013003574684262276, -0.005493138916790485, -0.02950664423406124, -0.016705088317394257, -0.02030348964035511, -0.030662035569548607, 0.014047986827790737, 0.04414099082350731, -0.020805392414331436, -0.010417071171104908, 0.007117082830518484, 0.0362972654402256, 0.05004435032606125, 0.04357658699154854, -0.0019411892862990499, 0.011463087052106857, -0.04903934895992279, -0.04116326943039894, -0.017191126942634583, 0.04597347974777222, 0.02823578007519245, -0.03105943277478218, -0.00009594546281732619 ]
streamlit-multiselect-numpy-no-attribute-index
https://markhneedham.com/blog/2020/03/31/streamlit-multiselect-numpy-no-attribute-index
false
2020-04-18 00:21:00
Python: Find the starting Sunday for all the weeks in a month
[ "python" ]
[ "python" ]
In this post we're going to learn how to find the dates of all the Sundays in a given month, as well as the Sunday immediately preceding the 1st day in the month, assuming that day isn't a Sunday. Let's start by importing some libraries that we're going to use in this blog post: [source, python] ---- from dateutil import parser import datetime import calendar ---- Next we need to find the first day of the current month, which we can do with the following code: [source,python] ---- today = datetime.date.today() start = today.replace(day=1) >>> start datetime.date(2020, 4, 1) ---- Now we need to find the last day of the month. I found a cool https://stackoverflow.com/questions/42950/how-to-get-the-last-day-of-the-month[StackOverflow thread^] that suggested lots of different approaches. I liked the following one best: [source,python] ---- weekday, last_day = calendar.monthrange(now.year, now.month) >>> last_day 30 ---- We can now create a new date by updating the day to be `last_day`: [source,python] ---- end = today.replace(day=last_day) ---- And now let's output the `start` and `end` variables: [source,python] ---- >>> start datetime.date(2020, 4, 1) >>> end datetime.date(2020, 4, 30) ---- So far so good! Our next task is to create a collection containing all the days between these dates. One way to do this is to iterate over a range of the number of days between these dates, and then add the https://docs.python.org/3/library/datetime.html#datetime.timedelta[timedelta^] of the increasing number of days to the start date. We can compute the number of days between these two dates by using a subtraction operation, which will return a `timedelta` object. We'll then call the `days` property on that: [source,python] ---- >>> end - start datetime.timedelta(days=29) >>> (end - start).days 29 ---- Now let's create a range from 0 to that number of days and create a list containing the dates between these two dates: [source,python] ---- >>> [start + datetime.timedelta(day) for day in range(0, (end - start).days + 1)] [datetime.date(2020, 4, 1), datetime.date(2020, 4, 2), datetime.date(2020, 4, 3), datetime.date(2020, 4, 4), datetime.date(2020, 4, 5), datetime.date(2020, 4, 6), datetime.date(2020, 4, 7), datetime.date(2020, 4, 8), datetime.date(2020, 4, 9), datetime.date(2020, 4, 10), datetime.date(2020, 4, 11), datetime.date(2020, 4, 12), datetime.date(2020, 4, 13), datetime.date(2020, 4, 14), datetime.date(2020, 4, 15), datetime.date(2020, 4, 16), datetime.date(2020, 4, 17), datetime.date(2020, 4, 18), datetime.date(2020, 4, 19), datetime.date(2020, 4, 20), datetime.date(2020, 4, 21), datetime.date(2020, 4, 22), datetime.date(2020, 4, 23), datetime.date(2020, 4, 24), datetime.date(2020, 4, 25), datetime.date(2020, 4, 26), datetime.date(2020, 4, 27), datetime.date(2020, 4, 28), datetime.date(2020, 4, 29), datetime.date(2020, 4, 30)] ---- NOTE: The `range` function doesn't include the upper bound, so we had to add 1 so that the end date is included. So far so good. Now we want to filter the list to only return Sundays. We can use the `isoweekday` function to do this. Sundays are represented by a value of 7, which gives us the following code: [source,python] ---- >>> [date for date in [start + datetime.timedelta(day) for day in range(0, (end - start).days + 1)] if date.isoweekday() == 7] [datetime.date(2020, 4, 5), datetime.date(2020, 4, 12), datetime.date(2020, 4, 19), datetime.date(2020, 4, 26)] ---- We've now got all the Sundays in April. And our final step is get the Sunday preceding April 1st. We can work this out by https://stackoverflow.com/questions/19216334/python-give-start-and-end-of-week-data-from-a-given-date[subtracting the `isoweekday`^] of our `start` variable: [source,python] ---- >>> start.isoweekday() 3 >>> start - datetime.timedelta(days = start.isoweekday()) datetime.date(2020, 3, 29) ---- We can now update our `start` date. This leads to the following code to compute start and end dates: [source,python] ---- today = datetime.date.today() weekday, last_day = calendar.monthrange(now.year, now.month) start = today.replace(day=1) start = start - datetime.timedelta(days = start.isoweekday()) end = today.replace(day=last_day) ---- Let's quickly check those dates: [source,python] ---- >>> start datetime.date(2020, 3, 29) >>> end datetime.date(2020, 4, 30) ---- And now we can find all the Sundays between these dates: [source,python] ---- >>> [date for date in [start + datetime.timedelta(day) for day in range(0, (end - start).days + 1)] if date.isoweekday() == 7] [datetime.date(2020, 3, 29), datetime.date(2020, 4, 5), datetime.date(2020, 4, 12), datetime.date(2020, 4, 19), datetime.date(2020, 4, 26)] ---- And we're done!
Learn how to find the Sundays in a given month.
null
[ -0.009342227131128311, -0.033098991960287094, -0.014480970799922943, 0.014574882574379444, 0.05628679692745209, 0.010595115832984447, 0.030134668573737144, 0.03838925063610077, 0.0007903949008323252, 0.008519171737134457, -0.01990150287747383, -0.01103254035115242, -0.051974885165691376, 0.005542400758713484, -0.02303527109324932, 0.058990105986595154, 0.06646537780761719, -0.03333891183137894, 0.00787308719009161, -0.011856833472847939, 0.018572213128209114, 0.051590826362371445, -0.03000529110431671, 0.032495394349098206, 0.0030027381144464016, -0.0019548353739082813, -0.008963052183389664, -0.012484214268624783, -0.04975974187254906, 0.005205431487411261, 0.004448891617357731, 0.019642582163214684, -0.0029310190584510565, 0.014670475386083126, 0.0424153171479702, -0.00466245086863637, 0.009218873456120491, -0.025301283225417137, 0.0021969990339130163, 0.03777363896369934, -0.036657124757766724, 0.001041711075231433, 0.0011303850915282965, 0.00297486106865108, -0.062113553285598755, 0.015496651642024517, -0.020957136526703835, 0.025838611647486687, 0.002209874801337719, -0.007460352964699268, -0.05075855180621147, 0.030073275789618492, 0.022322149947285652, -0.02442237362265587, -0.03307802602648735, 0.06993389874696732, 0.0033713465090841055, -0.05275411903858185, -0.009899435564875603, 0.013617233373224735, 0.018804755061864853, -0.004817010834813118, 0.0006627583061344922, 0.020709671080112457, 0.022255828604102135, -0.010897948406636715, -0.018679259344935417, 0.06068461015820503, -0.027906421571969986, -0.012474646791815758, -0.021599672734737396, 0.019016273319721222, -0.044308677315711975, -0.00906023196876049, -0.02197205275297165, -0.008520202711224556, -0.018890734761953354, 0.029576865956187248, 0.021812647581100464, 0.031906165182590485, -0.03545139729976654, 0.02576635405421257, 0.06801948696374893, 0.030886981636285782, 0.009355760179460049, 0.015318263322114944, -0.051271043717861176, -0.02898777835071087, -0.047709930688142776, 0.046915777027606964, 0.030156027525663376, -0.05080193653702736, 0.030082587152719498, 0.04572633281350136, -0.00785086303949356, -0.0037678831722587347, -0.007163390051573515, 0.012851431965827942, 0.015052292495965958, -0.0074281212873756886, -0.015828963369131088, -0.043344154953956604, 0.03342308849096298, 0.006762438453733921, -0.04319193214178085, -0.05340419337153435, -0.04385444149374962, -0.01535449642688036, 0.030632110312581062, 0.03141041845083237, -0.06298360973596573, 0.02914346195757389, -0.002867921721190214, 0.015152567066252232, -0.05705612897872925, 0.042462680488824844, 0.009857889264822006, -0.065741166472435, -0.038541197776794434, -0.02025967463850975, 0.028830133378505707, 0.001557003241032362, -0.011950816959142685, 0.0799190104007721, 0.008464074693620205, 0.06307312101125717, 0.0066842492669820786, 0.07466930150985718, -0.020446864888072014, -0.057142067700624466, -0.00575260492041707, 0.05832129716873169, 0.005750252399593592, -0.007359860464930534, -0.0193986464291811, -0.02066141739487648, -0.04758892208337784, 0.01015484519302845, 0.10163439065217972, 0.039385128766298294, 0.011164159514009953, -0.022950168699026108, -0.007315596099942923, -0.030554180964827538, -0.012185480445623398, 0.02381232939660549, 0.00024156676954589784, -0.04981192573904991, -0.03972345590591431, -0.013789943419396877, 0.027110842987895012, 0.0024601544719189405, 0.02835245430469513, -0.04168066009879112, 0.011192811653017998, 0.03040577843785286, 0.023406125605106354, 0.021314125508069992, -0.05314686521887779, -0.0011473625199869275, 0.03364674746990204, 0.034464459866285324, -0.019244827330112457, 0.047629375010728836, -0.020836561918258667, -0.02911168336868286, 0.020295826718211174, 0.044732049107551575, -0.015689874067902565, -0.013227062299847603, -0.033211711794137955, -0.0380113311111927, 0.055161502212285995, -0.04965183511376381, -0.0012969332747161388, 0.028120476752519608, 0.09750539064407349, 0.011384979821741581, 0.02593890391290188, -0.01730288192629814, -0.0675523579120636, 0.01638336293399334, -0.00737724220380187, 0.04366173967719078, 0.06805175542831421, -0.01603122055530548, 0.06707212328910828, 0.02413776144385338, 0.0050024776719510555, 0.022701628506183624, -0.07625916600227356, -0.05497289448976517, -0.029614292085170746, -0.030160294845700264, 0.06107185408473015, -0.05460600554943085, -0.007152393460273743, 0.05272776260972023, 0.0012637288309633732, 0.07495483756065369, -0.004752818029373884, 0.012362278066575527, -0.01649530790746212, -0.027925804257392883, -0.048274267464876175, 0.030853576958179474, 0.029074793681502342, -0.001107705757021904, -0.013393948785960674, 0.0033394251950085163, -0.00462750531733036, 0.010580349713563919, 0.03847908973693848, -0.0045516411773860455, 0.02451133541762829, 0.0545213520526886, 0.05117502808570862, -0.037581916898489, 0.04202687367796898, -0.04918830841779709, 0.014537540264427662, 0.03792976588010788, -0.026979295536875725, -0.03633735701441765, -0.0033462003339082003, 0.1103198379278183, 0.060182295739650726, -0.04997917264699936, -0.03727500140666962, -0.01074094045907259, -0.0015237553743645549, -0.026698153465986252, -0.005081889219582081, 0.00713830441236496, -0.002668391913175583, 0.004425181541591883, -0.01601199060678482, -0.0539419949054718, -0.00991025660187006, -0.0307905375957489, 0.001618927693925798, 0.07646923512220383, -0.011359683237969875, 0.05637317895889282, -0.028980890288949013, 0.006587729789316654, -0.0014571595238521695, -0.004319784697145224, -0.0440482571721077, 0.026757363229990005, 0.022665774449706078, -0.01838839054107666, 0.06001824885606766, -0.02543899230659008, -0.025186872109770775, -0.004279409535229206, -0.04247545823454857, 0.044784314930438995, 0.06653843075037003, 0.0747610479593277, -0.017145132645964622, 0.034234415739774704, 0.015155249275267124, 0.011023696511983871, -0.03690642490983009, -0.036191631108522415, -0.06218072399497032, 0.0008090102928690612, 0.014575954526662827, 0.06562701612710953, 0.018263917416334152, 0.012911607511341572, 0.03810720145702362, 0.03940063342452049, -0.02976435050368309, -0.0048876539804041386, 0.04525152966380119, -0.015382785350084305, -0.017677228897809982, -0.0450877845287323, -0.006879573222249746, 0.05290387198328972, -0.027831315994262695, -0.030732441693544388, -0.01919073611497879, -0.0573163665831089, 0.05385693535208702, -0.05064046010375023, -0.03928152471780777, -0.0051902541890740395, 0.004895945079624653, 0.039228688925504684, 0.040400467813014984, 0.013730386272072792, 0.08509529381990433, 0.019104590639472008, 0.009980575181543827, 0.004466716665774584, -0.014007453806698322, 0.029098790138959885, 0.034175582230091095, -0.005759535823017359, 0.08275937288999557, 0.019873781129717827, 0.007813042029738426, -0.04579128697514534, 0.01602049358189106, -0.01580674946308136, -0.26478952169418335, 0.004337136168032885, -0.03435947000980377, -0.049641452729701996, 0.007746471092104912, -0.005595948547124863, 0.037766002118587494, -0.04787750542163849, -0.007009659428149462, 0.01717584952712059, -0.02940077893435955, -0.05899878963828087, -0.06047361344099045, 0.06982230395078659, 0.00588221475481987, 0.003412125166505575, 0.0024287684354931116, -0.010172038339078426, 0.018034933134913445, 0.05349915847182274, 0.0005630158120766282, -0.0360468365252018, -0.020481696352362633, 0.06939046084880829, 0.0035699072759598494, 0.06352128833532333, -0.06202104687690735, 0.024230247363448143, -0.0592421218752861, -0.018213771283626556, 0.016392923891544342, -0.044298965483903885, 0.03072185069322586, -0.03588453680276871, 0.019147563725709915, -0.020849721506237984, 0.052684616297483444, 0.018693340942263603, 0.009377779439091682, -0.003437560051679611, -0.04624589532613754, -0.058812327682971954, 0.0007873272988945246, 0.013613360933959484, 0.07992677390575409, 0.01275894045829773, -0.044919710606336594, -0.022044457495212555, -0.045324139297008514, 0.046457935124635696, -0.016754666343331337, -0.03631163388490677, 0.0003733818302862346, -0.016603585332632065, -0.0012184861116111279, -0.0370493158698082, -0.03823256865143776, -0.012104976922273636, -0.024046840146183968, -0.03351764380931854, 0.004281903151422739, -0.02830195426940918, 0.005581648554652929, -0.04474857077002525, -0.043150387704372406, -0.05557426065206528, -0.06094175577163696, 0.009862160310149193, 0.057876430451869965, 0.06521504372358322, -0.05018684267997742, -0.017985129728913307, -0.005121094640344381, -0.11293621361255646, -0.004582281690090895, -0.007795296143740416, -0.02242194674909115, -0.002995426533743739, -0.013922168873250484, 0.030039500445127487, -0.06027040258049965, -0.0457511767745018, 0.03022734448313713, 0.033334407955408096, 0.025330880656838417, -0.01908407174050808, 0.0025731392670422792, -0.010001187212765217, -0.03593776375055313, -0.0029837244655936956, 0.04688470438122749, -0.028179021552205086, 0.0016352626262232661, -0.001965377014130354, 0.005290573928505182, 0.06981100142002106, -0.014089735224843025, 0.0031437103170901537, 0.022189786657691002, 0.01328032836318016, 0.014979873783886433, -0.030796129256486893, 0.013570282608270645, -0.02653794176876545, -0.017546435818076134, -0.01891232468187809, -0.028075460344552994, 0.024652035906910896, 0.006808874197304249, 0.031334102153778076, 0.009289051406085491, -0.017846157774329185, -0.022167911753058434, -0.042984552681446075, -0.021456820890307426, -0.02185308001935482, 0.015529243275523186, 0.02726197987794876, 0.01097679790109396, 0.030011804774403572, -0.07737589627504349, -0.013212992809712887, -0.013527125120162964, 0.017725665122270584, -0.04980047047138214, -0.030938493087887764, -0.01526415254920721, -0.02849874086678028, 0.027564719319343567, 0.03181661292910576, -0.018827177584171295, 0.02454640343785286, 0.03528666868805885, -0.016974031925201416, 0.026456087827682495, -0.027788488194346428, -0.010694476775825024, -0.04128308221697807, 0.001135497004725039, 0.0348694808781147, 0.004402702674269676, -0.010828250087797642, 0.0003584794176276773, 0.04754547029733658, 0.05222831293940544, 0.02681383118033409, 0.018545418977737427, -0.014589229598641396, -0.01156520750373602, 0.041021864861249924, -0.022176513448357582, -0.03179259970784187, 0.019030876457691193, -0.033579349517822266, -0.04604543000459671, 0.022701308131217957, 0.06562171876430511, -0.0002207916259067133, -0.040733981877565384, -0.025070741772651672, 0.011754496954381466, -0.07785762846469879, 0.01034619566053152, -0.02856508642435074, 0.012893824838101864, 0.05750001594424248, -0.0157199464738369, 0.0271474476903677, 0.02064487896859646, 0.0007244135485962033, -0.010491641238331795, 0.020799413323402405, -0.04632610082626343, 0.038069069385528564, 0.013542033731937408, -0.0167660191655159, 0.03587361052632332, 0.047447994351387024, 0.005658406298607588, -0.015122132375836372, -0.006545650772750378, 0.022285006940364838, -0.005415884777903557, 0.013738586567342281, 0.03385898843407631, 0.05303244665265083, 0.004088370129466057, -0.018223999068140984, -0.05874405428767204, -0.0530165433883667, -0.029187435284256935, 0.0019640482496470213, -0.014269193634390831, -0.022370686754584312, -0.013387610204517841, -0.09442436695098877, 0.043954405933618546, 0.04450109228491783, 0.03385499492287636, -0.0009309580782428384, -0.03626556694507599, -0.04193849861621857, -0.043674930930137634, 0.04164069890975952, 0.048682667315006256, -0.039996691048145294, 0.04019983485341072, 0.005319963209331036, 0.006170542445033789, -0.015462980605661869, 0.0598658062517643, -0.04900314286351204, -0.014409719035029411, -0.03271544724702835, -0.008339542895555496, -0.016406865790486336, -0.03619089350104332, -0.04189314693212509, 0.012365474365651608, -0.020697925239801407, 0.016501326113939285, 0.016978835687041283, 0.008106190711259842, 0.004728133324533701, -0.010911168530583382, -0.0030751843005418777, -0.009443326853215694, -0.004192159976810217, 0.0190582275390625, 0.006574197206646204, 0.013621669262647629, -0.04006440192461014, 0.03196011856198311, 0.016677793115377426, -0.031467005610466, -0.02466282993555069, -0.041312288492918015, 0.006790253333747387, -0.021242689341306686, 0.06656073778867722, -0.019900143146514893, -0.008192415349185467, -0.028556810691952705, -0.028585584834218025, -0.02420727349817753, 0.004277253523468971, -0.010702474042773247, -0.026908298954367638, 0.014984775334596634, 0.05793250352144241, -0.019387705251574516, 0.034068237990140915, 0.00974470004439354, -0.03540835902094841, 0.029489202424883842, -0.04515891149640083, -0.04953011870384216, -0.021445151418447495, -0.050620514899492264, 0.0161004476249218, 0.02606760524213314, 0.008067869581282139, -0.05127948150038719, 0.04203624278306961, 0.03195368871092796, 0.09169559925794601, 0.08364493399858475, -0.002364739077165723, 0.021161509677767754, -0.003025058889761567, -0.020836124196648598, -0.10085660219192505, -0.018263373523950577, 0.02540029212832451, 0.009753759019076824, -0.020768214017152786, -0.03156931325793266, -0.011558881029486656, 0.017729880288243294, -0.07614874839782715, -0.03571305796504021, 0.02889641560614109, 0.0019269107142463326, -0.00348896742798388, 0.04619859158992767, -0.02014975994825363, 0.021374162286520004, 0.0657724067568779, -0.029258856549859047, -0.012400830164551735, -0.007719525136053562, 0.06215644255280495, -0.012522750534117222, 0.029552187770605087, -0.015781361609697342, 0.01594911701977253, 0.08409411460161209, 0.028953807428479195, -0.004704856779426336, 0.022629689425230026, -0.018957601860165596, 0.028248095884919167, 0.012629115022718906, -0.027695031836628914, -0.0416061095893383, 0.008979925885796547, 0.0014759846962988377, -0.047831740230321884, 0.011440466158092022, 0.009861832484602928, -0.016168948262929916, -0.0330263189971447, 0.08036636561155319, 0.00571553036570549, -0.042740192264318466, -0.03427090123295784, -0.0025339145213365555, -0.0429314561188221, -0.01776580512523651, -0.008220680058002472, -0.0035545257851481438, -0.02686881646513939, 0.04601715877652168, -0.022923145443201065, 0.008689140900969505, 0.06057119742035866, 0.003970789257436991, 0.009432434104382992, 0.022017663344740868, 0.07146138697862625, 0.07597381621599197, 0.044057976454496384, 0.018595049157738686, 0.07121185213327408, -0.023332791402935982, -0.05008319020271301, 0.006384031847119331, -0.06914888322353363, -0.004012596793472767, -0.03493604063987732, 0.03833936154842377, 0.07867462188005447, -0.016390668228268623, 0.06111352518200874, 0.013249234296381474, -0.01967998407781124, -0.019282173365354538, 0.009648216888308525, 0.056267473846673965, 0.07001208513975143, 0.020664837211370468, 0.020588379353284836, -0.004896746017038822, -0.0303193312138319, 0.07684643566608429, -0.008510072715580463, -0.010127544403076172, 0.03011893667280674, -0.012133956886827946, 0.015222006477415562, 0.0012233450543135405, 0.060526784509420395, 0.05580440163612366, -0.012917731888592243, -0.011501834727823734, 0.007890026085078716, 0.008131914772093296, -0.013283678330481052, -0.002095361240208149, -0.005948422476649284, 0.0088186115026474, 0.004347413312643766, -0.036175090819597244, -0.028463203459978104, -0.012758489698171616, -0.06960182636976242, 0.022793177515268326, -0.030571352690458298, 0.003946659155189991, 0.006951353512704372, 0.004060978069901466, -0.04710252955555916, -0.04460882395505905, -0.05153924599289894, -0.03526151180267334, -0.07617662101984024, -0.016955865547060966, 0.04207630828022957, -0.010815548710525036, -0.024369819089770317, 0.0075065200217068195, -0.003693928010761738, -0.02670692279934883, -0.02237471379339695, -0.05393708124756813, -0.04945577308535576, 0.03484320268034935, 0.046812765300273895, 0.011687817983329296, 0.022086063399910927, 0.047993261367082596, -0.0461403951048851, -0.04391039162874222, -0.030225742608308792, 0.005912956781685352, 0.05071927607059479, 0.030200913548469543, -0.001628413680009544, -0.057264544069767, 0.03495185449719429, 0.02160492353141308, 0.0028377159032970667, -0.06726080924272537, 0.020001200959086418, 0.026452509686350822, 0.030253885313868523, 0.04039580747485161, -0.04064996540546417, -0.0074783675372600555, -0.03677310049533844, -0.006584979128092527, 0.01817714050412178, 0.008622902445495129, 0.054886579513549805, -0.037896715104579926, 0.059271190315485, 0.027453796938061714, 0.004962666891515255, -0.04302913323044777, -0.007835804484784603, -0.009225957095623016, -0.008760698139667511, -0.039566438645124435, -0.023197989910840988, -0.05211034417152405, -0.051479194313287735, -0.04285242408514023, 0.021615559235215187, -0.03469226881861687, -0.041936542838811874, 0.03131405636668205, 0.023824118077754974, -0.061844684183597565, 0.05957797169685364, -0.032671213150024414, 0.0035908438730984926, -0.024404823780059814, -0.022760573774576187, -0.020573794841766357, 0.016231857240200043, -0.011567546054720879, -0.005896894261240959, 0.0068746027536690235, -0.02524133026599884, -0.04542311280965805, -0.012208104133605957, 0.014127968810498714, 0.026733726263046265, 0.004320668522268534, -0.019994979724287987 ]
[ -0.08569838106632233, 0.0013886892702430487, -0.018965037539601326, -0.0376657173037529, 0.03009248897433281, -0.049330681562423706, -0.012669514864683151, -0.022077934816479683, -0.018281016498804092, 0.01000980008393526, -0.0004084346874151379, -0.034715499728918076, 0.019697561860084534, 0.009389643557369709, 0.05627961456775665, -0.02005074918270111, -0.05115371569991112, -0.03695090115070343, -0.02953208051621914, 0.03588319197297096, 0.03967773914337158, 0.005993281956762075, -0.06356681138277054, -0.0363040417432785, 0.06728969514369965, 0.06801962107419968, 0.04045723378658295, -0.027681250125169754, -0.035041388124227524, -0.1571027934551239, -0.020928962156176567, -0.04535707086324692, 0.010120861232280731, -0.03486393019556999, 0.02855338715016842, 0.018265722319483757, 0.07275760173797607, 0.03492165356874466, -0.0060237073339521885, 0.03932243585586548, 0.027358558028936386, 0.006930691655725241, -0.02493581920862198, -0.016799334436655045, -0.028405191376805305, -0.00811923947185278, -0.008076578378677368, 0.046002138406038284, 0.0016412833938375115, 0.01589198037981987, -0.015677612274885178, 0.004729686304926872, -0.015282470732927322, -0.028075015172362328, 0.005512040574103594, -0.02629404328763485, 0.01482892595231533, 0.06291567534208298, 0.01494374219328165, 0.010644886642694473, -0.005838732700794935, -0.02692653238773346, -0.17010262608528137, 0.11305655539035797, -0.02942214347422123, 0.014238703064620495, -0.04100927710533142, 0.01384254451841116, -0.00751013308763504, 0.09110318869352341, -0.04512639343738556, 0.00565302511677146, 0.011051291599869728, 0.053681630641222, 0.01788649521768093, -0.028767110779881477, 0.01843825727701187, -0.019421759992837906, 0.05549222603440285, -0.03188420087099075, -0.0377025343477726, -0.00008785191312199458, 0.06020860746502876, -0.044888854026794434, 0.0062781041488051414, 0.013423974625766277, -0.025523224845528603, 0.05248737335205078, 0.001327208592556417, 0.06123381108045578, -0.006783074699342251, -0.026370784267783165, -0.016598261892795563, 0.008301048539578915, -0.057956576347351074, -0.028220346197485924, 0.03393305465579033, 0.017960449680685997, -0.021540140733122826, 0.37341901659965515, -0.05954041704535484, 0.04997847229242325, -0.0010889496188610792, 0.060135483741760254, -0.02622310444712639, -0.03893057629466057, -0.014421405270695686, -0.0492645762860775, -0.03163108602166176, -0.043993424624204636, -0.052113793790340424, -0.029337508603930473, 0.08396808058023453, -0.1324458122253418, -0.0040337396785616875, -0.006770340725779533, 0.04728245362639427, 0.0405423566699028, 0.03252536058425903, 0.060768116265535355, 0.017161685973405838, -0.03535548225045204, 0.0570189505815506, 0.028235096484422684, -0.010078542865812778, 0.058602556586265564, 0.018577691167593002, 0.05953706428408623, 0.0029505977872759104, -0.03378269448876381, 0.08627768605947495, -0.06679747253656387, -0.047142144292593, -0.003581864992156625, 0.07682006806135178, 0.00482403626665473, 0.011613883078098297, -0.0628977045416832, 0.02686162479221821, -0.047180142253637314, -0.033800072968006134, -0.11279946565628052, 0.04173528030514717, 0.005109572783112526, -0.04477202147245407, 0.12288320064544678, 0.0015253917081281543, -0.021744634956121445, -0.012307741679251194, -0.025015175342559814, -0.060273926705121994, 0.03239932656288147, 0.039307087659835815, -0.04066775366663933, 0.034904319792985916, 0.04577003791928291, 0.12341389805078506, 0.0016193219926208258, -0.017191769555211067, -0.020239297300577164, -0.057963088154792786, -0.019912688061594963, -0.035525210201740265, 0.010252242907881737, 0.0571243092417717, -0.10219008475542068, -0.007494316436350346, 0.011107136495411396, -0.019655006006360054, -0.07653050869703293, 0.017627110704779625, 0.027722002938389778, -0.041456714272499084, -0.0063318233005702496, 0.12990395724773407, 0.017638783901929855, 0.0413656085729599, 0.02827073447406292, 0.07579018920660019, -0.001726610236801207, -0.015770364552736282, 0.027103736996650696, -0.014347856864333153, -0.017248479649424553, -0.00950554758310318, -0.06470757722854614, -0.04408805072307587, -0.006141535472124815, -0.007051225285977125, -0.031264014542102814, 0.04132676497101784, -0.06752518564462662, -0.02975146844983101, 0.039165087044239044, -0.03877019137144089, -0.028950201347470284, -0.024781106039881706, 0.01430988684296608, -0.005758137442171574, -0.016064075753092766, -0.00870592799037695, -0.07354342937469482, 0.03973531723022461, 0.03170514479279518, -0.004567151423543692, 0.012359051033854485, 0.07187101989984512, -0.09443537145853043, 0.054211609065532684, 0.038302354514598846, -0.019915591925382614, -0.008293352089822292, 0.022849850356578827, -0.07394462078809738, -0.0015682931989431381, -0.019523734226822853, -0.020246529951691628, -0.03035464696586132, -0.028984127566218376, 0.044810645282268524, 0.02473757602274418, -0.06580308824777603, 0.03569774329662323, -0.3131917417049408, -0.021075718104839325, 0.012412749230861664, -0.006064824294298887, 0.0683039203286171, -0.03169704228639603, -0.00987037643790245, -0.017847657203674316, 0.024509090930223465, 0.07735448330640793, 0.058360688388347626, -0.029531043022871017, -0.013749906793236732, -0.07684043049812317, 0.016290709376335144, 0.06189702823758125, -0.03440098837018013, -0.01587579771876335, 0.008909418247640133, 0.033729635179042816, -0.0028519846964627504, -0.037647344172000885, -0.034384362399578094, -0.09722800552845001, -0.0006737438961863518, -0.0408145897090435, 0.07290931046009064, -0.010855555534362793, 0.026943733915686607, -0.07392778992652893, 0.021804122254252434, -0.046917811036109924, -0.008034219034016132, -0.07455889880657196, -0.02325316146016121, -0.023845110088586807, 0.006096834782510996, 0.0033838029485195875, -0.0026117758825421333, -0.03166003152728081, -0.008858120068907738, 0.058615878224372864, -0.009786485694348812, -0.0005519380792975426, -0.03849783167243004, 0.050231944769620895, 0.0449446402490139, -0.02482173964381218, 0.01893318071961403, 0.0019477579044178128, -0.013804391026496887, -0.01454248372465372, 0.019250964745879173, 0.0038466600235551596, -0.0021220112685114145, -0.027564993128180504, -0.07071579992771149, -0.0198005773127079, -0.02762679010629654, -0.0242918748408556, 0.013153891079127789, 0.038203805685043335, 0.014772841706871986, -0.01667136885225773, -0.006523586343973875, 0.050909433513879776, -0.019007932394742966, -0.03149520605802536, 0.009653139859437943, 0.02366924099624157, 0.01647160016000271, 0.041103191673755646, -0.03459637984633446, -0.017644397914409637, 0.025782644748687744, 0.00975755788385868, 0.013047905638813972, 0.07899180799722672, 0.024264182895421982, -0.006745623890310526, 0.0022309969644993544, -0.034674327820539474, 0.09686966240406036, -0.0033101427834481, 0.04820573329925537, 0.03073962777853012, 0.006895327474921942, 0.048119790852069855, 0.03319348394870758, -0.0017907292349264026, 0.001800345373339951, -0.025565793737769127, -0.0257043968886137, -0.0004175466310698539, 0.06639924645423889, -0.008087815716862679, -0.24153995513916016, 0.04780774563550949, 0.06833761185407639, 0.014090145006775856, 0.05618758872151375, 0.003011307679116726, -0.025342116132378578, 0.018469609320163727, -0.04566144943237305, -0.002686964115127921, 0.026479655876755714, 0.03532160818576813, 0.02667425386607647, -0.021884441375732422, 0.008721251972019672, 0.0144499521702528, 0.0166593249887228, 0.013470420613884926, -0.03405807167291641, 0.027722489088773727, 0.036597758531570435, -0.0023463028483092785, 0.1354784220457077, -0.015367315150797367, 0.05493512749671936, 0.034302130341529846, 0.00950225256383419, -0.008549134247004986, 0.09862276166677475, 0.019587442278862, 0.01962100900709629, -0.0438639335334301, 0.017375299707055092, 0.011873838491737843, 0.027773329988121986, -0.04117288440465927, -0.03976602852344513, 0.05864729359745979, 0.020480943843722343, -0.06532727181911469, -0.0412878580391407, 0.05659983307123184, -0.059665221720933914, 0.01456773467361927, 0.0886790081858635, 0.01042798813432455, -0.007853496819734573, -0.0847363993525505, -0.005161271430552006, -0.024681467562913895, -0.045022688806056976, -0.06912649422883987, -0.04181049019098282, 0.0404798649251461, -0.011460298672318459, 0.04143299534916878, 0.04990352690219879, -0.014098557643592358, 0.029788298532366753, 0.03784459829330444, 0.0027665477246046066, -0.007502240594476461, 0.1051485538482666, 0.011429143138229847, 0.030509179458022118 ]
[ -0.014590868726372719, 0.04465291276574135, 0.01771732047200203, 0.042847659438848495, -0.04617840796709061, -0.027211952954530716, -0.0427713617682457, -0.003837469033896923, -0.018194498494267464, -0.06192738935351372, -0.04101794213056564, -0.017189133912324905, -0.010538891889154911, 0.004181172698736191, 0.034277044236660004, -0.03377445042133331, -0.008706832304596901, -0.002435558708384633, 0.05907741189002991, -0.009923628531396389, -0.04328136518597603, 0.03518263250589371, 0.012600020505487919, 0.02613506279885769, -0.030034087598323822, 0.023696687072515488, -0.03863029554486275, 0.009295732714235783, 0.009160843677818775, -0.1259576380252838, -0.06082000210881233, 0.0032984246499836445, -0.013370441272854805, -0.02633005380630493, 0.007324551697820425, -0.0277260635048151, 0.005107881035655737, -0.010780608281493187, 0.040579792112112045, 0.01607448048889637, -0.008556913584470749, -0.008438173681497574, -0.002345337998121977, 0.00596153037622571, -0.04040108621120453, 0.019443413242697716, 0.005816630553454161, 0.04732668399810791, -0.019764292985200882, 0.02667619101703167, -0.03519181162118912, 0.004446405451744795, -0.059752244502305984, 0.024303635582327843, 0.05614589899778366, 0.008412614464759827, 0.005759087856858969, -0.03378827124834061, 0.01547137089073658, -0.036329422146081924, 0.009438932873308659, 0.03671932965517044, -0.03178290277719498, -0.01889781653881073, 0.007561761420220137, -0.04862498492002487, -0.03487318381667137, 0.016611071303486824, 0.026002515107393265, 0.004340808372944593, -0.05068182200193405, 0.012829236686229706, -0.005537082441151142, 0.025734221562743187, -0.003782591549679637, -0.020742204040288925, -0.0025229391176253557, -0.034632761031389236, 0.024331502616405487, 0.010267102159559727, -0.011577487923204899, -0.0036549705546349287, 0.006200904026627541, 0.035834766924381256, -0.005678380373865366, -0.02753724716603756, 0.012343531474471092, 0.045142095535993576, 0.032659292221069336, -0.027655882760882378, -0.007908315397799015, -0.025093458592891693, 0.0036056183744221926, 0.006670075468719006, -0.06891250610351562, -0.010523580946028233, -0.03203529119491577, 0.007203437853604555, 0.020437117666006088, 0.7998437881469727, 0.030566979199647903, -0.0007687021279707551, -0.02052490971982479, 0.016628434881567955, 0.03958820551633835, 0.012860003858804703, -0.057164233177900314, -0.038641467690467834, -0.004342335741966963, -0.03218594565987587, 0.021525824442505836, -0.007599901407957077, 0.025850621983408928, -0.006667230743914843, 0.03677607327699661, 0.03234981745481491, 0.020759450271725655, 0.03540889546275139, -0.006999393925070763, 0.021687205880880356, 0.027422545477747917, 0.017789384350180626, 0.008777505718171597, -0.026227714493870735, -0.00011205890768906102, -0.1267593950033188, 0.028682207688689232, -7.74649307823949e-33, 0.0037207717541605234, -0.020891642197966576, 0.05352829769253731, -0.024903669953346252, 0.030887749046087265, 0.04803112894296646, 0.01571427285671234, 0.006796509958803654, 0.011999433860182762, -0.022026075050234795, -0.010624615475535393, -0.004514860920608044, 0.014714646153151989, -0.04026145488023758, 0.03902259096503258, -0.019243068993091583, -0.03418871387839317, 0.05040283873677254, 0.023446369916200638, 0.061105698347091675, 0.039253734052181244, -0.020615696907043457, 0.007331286557018757, 0.02041732519865036, 0.012120967730879784, -0.02017773501574993, 0.010258580558001995, 0.013002204708755016, 0.04046808183193207, -0.0597890242934227, -0.01566687785089016, 0.012821094132959843, 0.030072379857301712, -0.023165782913565636, 0.048311974853277206, -0.05512256175279617, 0.010622149333357811, -0.008070722222328186, -0.043870653957128525, -0.020675363019108772, -0.04011133313179016, -0.016018392518162727, -0.019803453236818314, -0.0501600056886673, -0.04782477021217346, 0.011662732809782028, 0.02457534521818161, 0.06399914622306824, 0.022276105359196663, 0.009501723572611809, 0.010587035678327084, -0.001424667309038341, -0.010979288257658482, -0.03853268548846245, -0.004090870264917612, 0.03360248729586601, 0.02534150704741478, -0.007061912212520838, 0.024159494787454605, -0.04901428893208504, -0.00045634928392246366, -0.022652534767985344, 0.027664557099342346, -0.014436179772019386, -0.0016790998633950949, -0.00753085408359766, 0.02165188454091549, 0.03715995326638222, -0.00034705406869761646, 0.03278513252735138, -0.044766269624233246, -0.01789427548646927, -0.04144598916172981, -0.02921258844435215, 0.03500203415751457, -0.05137605220079422, 0.01413758099079132, -0.019306529313325882, 0.0090760113671422, 0.037965063005685806, 0.0642988309264183, -0.009366090409457684, 0.010453812777996063, -0.028447715565562248, -0.02504478581249714, -0.02461562119424343, 0.03483063355088234, 0.05698271095752716, 0.003363508963957429, -0.0023072827607393265, 0.009307949803769588, -0.031498514115810394, 0.004290349315851927, 0.001059875125065446, 0.02207268960773945, 7.812904835641102e-33, 0.014438774436712265, -0.0352444164454937, -0.027825437486171722, 0.020406613126397133, 0.01698850654065609, -0.06467361003160477, 0.012297113426029682, 0.03318765014410019, -0.0075796181336045265, 0.07030446827411652, 0.04890449345111847, -0.00602260185405612, -0.037240348756313324, 0.03602072596549988, 0.046820204704999924, 0.004359368700534105, 0.02723105065524578, 0.014408676885068417, 0.006640143692493439, -0.008420556783676147, -0.0381971076130867, -0.010129519738256931, -0.017415912821888924, 0.01990094967186451, 0.04307575151324272, 0.059457600116729736, -0.014239149168133736, -0.0044054901227355, 0.019923418760299683, 0.015463165007531643, 0.012366804294288158, -0.0252392515540123, -0.0040887948125600815, 0.0013093709712848067, -0.023132415488362312, 0.04414955526590347, 0.013643372803926468, -0.03247450664639473, 0.07083430141210556, -0.02445773035287857, 0.03660045191645622, 0.02628938853740692, 0.025575129315257072, 0.012138783000409603, 0.0033262954093515873, 0.04933770373463631, -0.014481215737760067, 0.05419432371854782, 0.007871690206229687, -0.013021199963986874, -0.014818384312093258, 0.006408187560737133, -0.026622513309121132, 0.01464119553565979, 0.01802179589867592, -0.024416502565145493, 0.0016528514679521322, -0.013373961672186852, -0.044415734708309174, -0.009058956056833267, -0.03809714317321777, -0.03800341486930847, -0.03967951983213425, 0.006808814592659473, -0.051191069185733795, -0.030040156096220016, -0.08437655866146088, -0.023326192051172256, 0.02174706757068634, 0.0056768362410366535, -0.011575871147215366, -0.020028717815876007, -0.022836357355117798, 0.01920684427022934, -0.028958281502127647, 0.003983538597822189, -0.005322881508618593, 0.014162388630211353, -0.045152392238378525, 0.022894252091646194, -0.012421219609677792, -0.029887329787015915, -0.000940360187087208, 0.02635835111141205, -0.03931525722146034, -0.014514644630253315, -0.04301278665661812, -0.004176763352006674, 0.04968418553471565, 0.022302791476249695, -0.01418317947536707, -0.03530372306704521, -0.020298993214964867, 0.04096256569027901, 0.035659462213516235, -1.304553176595391e-8, -0.00994066707789898, 0.0012195229064673185, -0.0019495056476444006, 0.03193296492099762, 0.002092299284413457, -0.014411886222660542, -0.005835299380123615, -0.026342811062932014, 0.027058308944106102, 0.016925405710935593, 0.07377296686172485, -0.053242992609739304, 0.022134577855467796, 0.041010744869709015, -0.00848822109401226, 0.01607649028301239, -0.01557609997689724, -0.010072799399495125, 0.035422105342149734, -0.03572084382176399, 0.0538976825773716, -0.02602001652121544, 0.01186027005314827, 0.015366862528026104, 0.02664187178015709, 0.034784287214279175, 0.035420987755060196, -0.04703361168503761, 0.02277219668030739, -0.023699725046753883, 0.01712625101208687, -0.04426367208361626, -0.022757966071367264, -0.01175075676292181, -0.03883199393749237, -0.045710738748311996, -0.018012577667832375, 0.04234584420919418, -0.02168489620089531, 0.04768836870789528, 0.028585396707057953, -0.0428411029279232, -0.04992462694644928, -0.024065373465418816, -0.03223356232047081, -0.0011753002181649208, -0.029661880806088448, 0.004876108840107918, 0.0055278753861784935, -0.01296414714306593, 0.011334204114973545, 0.01047961413860321, 0.051118459552526474, -0.0024907367769628763, 0.037373222410678864, 0.05117502436041832, 0.008231696672737598, -0.03645450249314308, -0.04010660946369171, -0.010945439338684082, -0.022244777530431747, 0.03305529057979584, -0.00799770001322031, -0.019551318138837814 ]
python-starting-sundays-in-a-month
https://markhneedham.com/blog/2020/04/18/python-starting-sundays-in-a-month
false
2020-04-27 00:21:00
Python: Select keys from map/dictionary
[ "python" ]
[ "Python" ]
In this post we're going to learn how to filter a Python map/dictionary to return a subset of keys or values. I needed to do this recently while logging some maps that had a lot of keys that I wasn't interested in. We'll start with the following map: [source, python] ---- x = {"a": 1, "b": 2, "c": 3, "d": 4} {'a': 1, 'b': 2, 'c': 3, 'd': 4} ---- We want to filter this map so that we only have the keys `a` and `c`. If we just want the values, we can create a list comprehension to do this: [source,python] ---- >>> [x[key] for key in ["a", "b"]] [1, 2] ---- But what if we want to return the values as well? This is where https://markhneedham.com/blog/2013/08/13/python-forlist-comprehensions-and-dictionaries/[dictionary comprehensions^] come in handy. We can tweak our code as follows: [source,python] ---- >>> {key: x[key] for key in ["a", "b"]} {'a': 1, 'b': 2} ---- Or we can iterate over all the entries in the map and filter it that way: [source,python] ---- >>> {key:value for key,value in x.items() if key in ["a", "b"]} {'a': 1, 'b': 2} ---- This approach is longer but more flexible. For example, we could find the keys and values for all entries with a value great than 2 with the following code: [source,python] ---- >>> {key:value for key,value in x.items() if value > 2} {'c': 3, 'd': 4} ----
Learn how to filter a map to select specific keys
null
[ -0.0047211614437401295, -0.022402508184313774, 0.0018224096857011318, 0.00165850343182683, 0.06895797699689865, 0.02273070625960827, -0.002017017686739564, 0.02806679531931877, 0.00022877591254655272, -0.017278004437685013, -0.04517936334013939, -0.003324389224871993, -0.08327893167734146, 0.018447861075401306, 0.0006312710465863347, 0.07751812040805817, 0.09152421355247498, -0.029063114896416664, 0.005803133826702833, 0.0036809146404266357, 0.0522199310362339, 0.05923405662178993, 0.013533957302570343, 0.01011575199663639, 0.003243875689804554, 0.018325773999094963, -0.0045007397420704365, 0.03203029930591583, -0.04474109038710594, -0.008701150305569172, 0.03453535959124565, 0.03113461844623089, -0.011515912599861622, -0.005631184671074152, 0.004010886885225773, -0.004296606872230768, -0.01715458370745182, 0.018710311502218246, -0.00542251393198967, 0.031659629195928574, -0.03818527236580849, 0.0369814932346344, -0.015626806765794754, 0.038836557418107986, -0.049796413630247116, 0.01792845129966736, -0.06352566182613373, 0.024786824360489845, -0.01915963739156723, -0.013649551197886467, -0.008289708755910397, 0.019248509779572487, 0.005887650419026613, -0.021154625341296196, -0.015885502099990845, 0.057451386004686356, 0.013553065247833729, -0.07243149727582932, 0.040026113390922546, 0.01243396196514368, -0.021572453901171684, -0.0023470947053283453, -0.002645560773089528, 0.055472232401371, 0.02279079332947731, -0.025177856907248497, -0.02889963798224926, 0.06280145049095154, -0.04296489804983139, -0.006920971907675266, 0.0024471457581967115, 0.03938034176826477, -0.035977598279714584, -0.007293356116861105, -0.015145760029554367, -0.04356291890144348, -0.0025008232332766056, 0.03718452900648117, -0.004103312734514475, 0.029326453804969788, -0.010786842554807663, -0.0028375491965562105, 0.028059877455234528, 0.021778654307127, 0.0015952249523252249, -0.03879522159695625, -0.03766629472374916, -0.008367876522243023, -0.05072053149342537, 0.030740439891815186, 0.019445152953267097, -0.045698877424001694, 0.026939118281006813, -0.022719936445355415, -0.017032884061336517, -0.005787394009530544, -0.011056645773351192, -0.006435058079659939, 0.006906834430992603, -0.0026704473420977592, -0.017176248133182526, -0.02664567157626152, 0.03223487362265587, 0.004066281486302614, -0.08096045255661011, -0.03278275951743126, -0.02303578332066536, -0.006177866365760565, 0.006323185283690691, 0.01843222603201866, -0.04108279570937157, 0.012138350866734982, -0.008597668260335922, 0.0022994468454271555, -0.09153500199317932, 0.020885854959487915, 0.011946949176490307, -0.032854095101356506, -0.022116713225841522, 0.03441686928272247, 0.0533377043902874, 0.02700352668762207, -0.0005624882760457695, 0.08643554151058197, 0.0311469417065382, -0.0008632326498627663, 0.0052456785924732685, 0.08997379243373871, 0.017937036231160164, -0.06746012717485428, -0.001279515796341002, 0.03553019464015961, -0.01863867975771427, -0.016413629055023193, -0.016778208315372467, -0.03855333849787712, -0.03700185567140579, 0.026045922189950943, 0.03321950137615204, 0.031011832877993584, 0.013862960040569305, -0.024754036217927933, -0.004313587676733732, -0.010089470073580742, 0.015859326347708702, 0.029282063245773315, -0.023107154294848442, 0.0003794610674958676, -0.01849462278187275, 0.015470931306481361, 0.015295141376554966, 0.0547066368162632, 0.03924914449453354, -0.009813187643885612, 0.004877091385424137, 0.07140190899372101, -0.008585398085415363, 0.03936143219470978, -0.018118899315595627, 0.008108021691441536, 0.032254792749881744, 0.03166254982352257, 0.01624654047191143, 0.05081508308649063, -0.008409006521105766, -0.010652191936969757, 0.0007843051571398973, 0.07265179604291916, -0.0026259177830070257, -0.0018699131906032562, -0.01828182116150856, -0.05382963642477989, 0.06375455856323242, -0.035636723041534424, -0.00788775086402893, 0.024317335337400436, 0.07415518909692764, 0.04520045593380928, 0.05344543978571892, 0.00949032697826624, -0.08113107085227966, 0.029358219355344772, -0.010203634388744831, 0.00018490295042283833, 0.033847976475954056, -0.003958181943744421, 0.06704125553369522, 0.03555525094270706, 0.02807278372347355, 0.02410702593624592, -0.06495314836502075, -0.07055783271789551, -0.039987772703170776, -0.001243971986696124, 0.06727379560470581, -0.03721410781145096, -0.011970066465437412, 0.06143740192055702, 0.029962290078401566, 0.07022610306739807, 0.034853242337703705, -0.010808908380568027, 0.010884150862693787, -0.05691416189074516, -0.03915183246135712, 0.03727055341005325, 0.03716811537742615, -0.037714023143053055, -0.024382030591368675, 0.021644441410899162, -0.012317379005253315, -0.024310428649187088, 0.02482941560447216, -0.03170880302786827, 0.03729424998164177, 0.03959638997912407, 0.04115445166826248, -0.019562048837542534, 0.06586169451475143, -0.05550205707550049, 0.01953745074570179, -0.012511072680354118, -0.020826784893870354, -0.019660376012325287, 0.01024347823113203, 0.13406316936016083, 0.06229269877076149, -0.00030713758314959705, -0.038283634930849075, -0.008761860430240631, -0.004429285414516926, -0.04319978505373001, -0.008213460445404053, -0.035528987646102905, -0.004910116549581289, 0.016558639705181122, -0.05607760697603226, -0.018772736191749573, 0.014457875862717628, -0.027977900579571724, -0.02704302780330181, 0.07191306352615356, -0.023150578141212463, 0.04545765742659569, 0.010577667504549026, -0.024950146675109863, -0.006330117117613554, -0.019509337842464447, -0.035761281847953796, -0.0007542552193626761, -0.007345316931605339, -0.020586365833878517, 0.07081326842308044, -0.043936390429735184, -0.017251379787921906, -0.007979745976626873, -0.04469935968518257, 0.002298867329955101, 0.04956378787755966, 0.06658901274204254, -0.04385317862033844, 0.09110748767852783, -0.013149833306670189, 0.008602959103882313, -0.014554377645254135, -0.059128403663635254, -0.03405066207051277, -0.01691426709294319, 0.006421851925551891, 0.036848824471235275, 0.02659885585308075, 0.03201641887426376, 0.02876373566687107, -0.012389342300593853, -0.002845816081389785, -0.0016133225290104747, 0.04297124594449997, 0.025645574554800987, -0.036213673651218414, -0.04439631849527359, -0.019837651401758194, 0.07219889014959335, -0.03060442954301834, -0.020549243316054344, -0.01905273273587227, -0.07783307135105133, 0.044363800436258316, -0.055289313197135925, -0.04074184224009514, 0.013919280841946602, 0.03931931033730507, 0.04142732545733452, -0.0129794767126441, -0.006633386015892029, 0.053381431847810745, 0.0024768977891653776, -0.028993647545576096, 0.03726418688893318, 0.005806995090097189, 0.026706000789999962, -0.022755933925509453, 0.027435513213276863, 0.05681119114160538, 0.02634717896580696, -0.00986324343830347, -0.05899156630039215, 0.0027895139064639807, -0.01921062171459198, -0.28057175874710083, 0.02763408236205578, -0.013776103034615517, -0.018472865223884583, 0.006194365676492453, -0.021373286843299866, -0.009489797987043858, -0.04734168201684952, -0.013061805628240108, 0.012807792983949184, -0.02407723292708397, -0.05200771242380142, -0.04792996123433113, 0.07287093251943588, 0.008779860101640224, 0.01817827858030796, -0.014448516070842743, -0.024159081280231476, 0.009870339184999466, 0.04730452597141266, 0.014353903010487556, -0.0916762575507164, -0.015633586794137955, 0.05461040139198303, -0.006980308797210455, 0.054638441652059555, -0.04485991969704628, 0.01911727339029312, -0.08218362182378769, -0.004404815379530191, -0.0031352308578789234, -0.014389188028872013, 0.012197237461805344, -0.018970025703310966, -0.011999660171568394, -0.032109178602695465, 0.03033388778567314, -0.004213001579046249, -0.02141737937927246, 0.02578631602227688, -0.0532211996614933, -0.032691262662410736, -0.013448131270706654, -0.011400601826608181, 0.08323762565851212, -0.0119278309866786, -0.042013514786958694, -0.043564699590206146, -0.028812751173973083, 0.06554466485977173, -0.013370362110435963, -0.06477121263742447, -0.018977170810103416, 0.045073188841342926, -0.022199217230081558, -0.0070372819900512695, 0.0030982019379734993, -0.004273992031812668, -0.04014233872294426, -0.007347473409026861, -0.01070278137922287, -0.03290716931223869, -0.017389798536896706, -0.033284883946180344, -0.012304935604333878, -0.037614092230796814, -0.06017901748418808, -0.024492556229233742, 0.04677267745137215, 0.019266460090875626, -0.03471512347459793, -0.031443387269973755, -0.013059924356639385, -0.10584425926208496, 0.011565476655960083, 0.004979950375854969, -0.030429864302277565, -0.00962888915091753, 0.02410634607076645, 0.021985625848174095, -0.07021765410900116, -0.060747526586055756, 0.023983340710401535, 0.017486587166786194, -0.0015201533678919077, -0.04509584233164787, -0.004985034000128508, -0.021092580631375313, -0.03516516089439392, -0.014264886267483234, 0.05792415142059326, 0.002775110537186265, 0.001981247216463089, -0.00218237959779799, -0.010670125484466553, 0.04444696754217148, 0.03729579970240593, -0.004182413686066866, 0.01799059845507145, 0.042780570685863495, 0.026503944769501686, -0.055764440447092056, 0.025426100939512253, -0.017112374305725098, -0.01093993242830038, -0.005849670153111219, -0.04077601432800293, 0.00501236179843545, 0.05596401169896126, -0.012050972320139408, -0.015340045094490051, -0.018362408503890038, -0.0035384157672524452, -0.04071321710944176, -0.005658735521137714, -0.04259476065635681, 0.03741297125816345, 0.01311295572668314, 0.05038983374834061, -0.00200814101845026, -0.06444288790225983, 0.032681144773960114, 0.03110191971063614, 0.012828425504267216, -0.07868766784667969, -0.045168325304985046, -0.021165665239095688, -0.00833215657621622, 0.02845391072332859, 0.021962566301226616, 0.0009799886029213667, 0.032209113240242004, 0.026378566399216652, -0.040539778769016266, 0.03412194922566414, -0.05227644741535187, -0.01140236109495163, -0.000736601825337857, -0.03863707557320595, -0.0062890187837183475, 0.0015321825630962849, -0.035345520824193954, 0.019047463312745094, 0.04964674636721611, 0.0060747889801859856, 0.01494838111102581, 0.03821472451090813, 0.011385386809706688, -0.0037335751112550497, 0.028384944424033165, -0.010065220296382904, -0.031564000993967056, 0.02350844070315361, -0.017783381044864655, -0.015424830839037895, 0.02582501992583275, 0.02868875302374363, -0.009266000241041183, -0.0345819927752018, -0.056755680590867996, 0.03558620065450668, -0.052051883190870285, -0.0030945497564971447, -0.02809319645166397, 0.018582822754979134, 0.04957468435168266, -0.041587263345718384, 0.03967130556702614, -0.015181516297161579, 0.029315851628780365, 0.046593356877565384, 0.01542123407125473, -0.02460375800728798, 0.011402502655982971, -0.006156261079013348, -0.04212042689323425, 0.02183719351887703, 0.05066193267703056, -0.014341970905661583, -0.00030190497636795044, -0.002838276093825698, -0.007943520322442055, 0.02254093810915947, 0.00048025333671830595, 0.04887153208255768, 0.01969720609486103, -0.019849596545100212, -0.02298956923186779, -0.0166570246219635, -0.04203703626990318, -0.039725251495838165, -0.010380979627370834, -0.025032246485352516, 0.0075469776056706905, -0.030849114060401917, -0.07414322346448898, 0.001560801756568253, 0.008012774400413036, -0.027537576854228973, 0.024896536022424698, 0.003093837294727564, -0.01637900434434414, 0.0012617255561053753, 0.008729798719286919, 0.06352461129426956, -0.04981769993901253, 0.01214862521737814, 0.003536162432283163, -0.00044352273107506335, 0.01485555898398161, 0.04952189326286316, -0.04640164598822594, -0.009004064835608006, -0.011377747170627117, -0.010358765721321106, -0.03699376434087753, -0.022954227402806282, 0.01680806465446949, 0.038747143000364304, -0.03363382816314697, -0.008413848467171192, -0.00480202492326498, 0.014604734256863594, -0.025764722377061844, -0.019672701135277748, 0.05256275087594986, -0.026089513674378395, -0.0014825176913291216, 0.02388753555715084, -0.057318057864904404, 0.02085370384156704, -0.016112184152007103, 0.03555457666516304, 0.0400286540389061, -0.0122408177703619, 0.0011426382698118687, -0.06890556216239929, 0.0028367885388433933, -0.033048950135707855, 0.06280989199876785, -0.005717465654015541, -0.02979567088186741, -0.0481315441429615, 0.0035945598501712084, -0.033019017428159714, 0.028985915705561638, -0.004873392637819052, -0.010480561293661594, 0.003622142132371664, 0.03577865660190582, -0.009966786950826645, 0.04196963831782341, -0.003184569999575615, -0.05448582395911217, 0.08100325614213943, -0.024228302761912346, -0.04194202274084091, -0.040732208639383316, -0.05029168352484703, 0.013951326720416546, 0.0032644171733409166, 0.0185370035469532, -0.03801463171839714, 0.05100828781723976, 0.024233760312199593, 0.0037964959628880024, 0.020918119698762894, -0.01810973323881626, 0.02525346912443638, -0.033603519201278687, -0.00911801028996706, -0.07748193293809891, 0.011752840131521225, 0.04976829141378403, 0.003940504509955645, -0.03274125978350639, 0.013208499178290367, -0.057497184723615646, 0.02837771363556385, -0.059560444205999374, -0.020988045260310173, 0.04966702684760094, -0.005537611432373524, 0.014617988839745522, -0.0032634539529681206, -0.0389103889465332, 0.02284148894250393, 0.04032997414469719, -0.03208576515316963, -0.031605783849954605, -0.01492408849298954, 0.06161259114742279, -0.005971294827759266, 0.020703433081507683, -0.00424201600253582, 0.019294828176498413, 0.06616126000881195, 0.03568541631102562, 0.03419336676597595, 0.03966405615210533, -0.026978354901075363, 0.02650907263159752, 0.02231733500957489, 0.011664209887385368, -0.027004534378647804, 0.03517605736851692, 0.010306403040885925, -0.04486636444926262, 0.027594564482569695, 0.014172065071761608, -0.016883958131074905, -0.057092975825071335, 0.07672015577554703, 0.013779339380562305, -0.05568302795290947, -0.02326303720474243, 0.04061128944158554, -0.08141712099313736, -0.00390506605617702, -0.02365827187895775, -0.01364833489060402, -0.03487471118569374, 0.053891174495220184, -0.003628069069236517, -0.020241746678948402, 0.061917152255773544, -0.025923360139131546, -0.02281491458415985, 0.04855188727378845, 0.0718218982219696, 0.08349219709634781, 0.041787028312683105, 0.011976143345236778, 0.050728172063827515, -0.02957584150135517, -0.028105678036808968, 0.009367432445287704, -0.018504522740840912, 0.003744743065908551, 0.007327370345592499, 0.027252761647105217, 0.0705452710390091, 0.006219653878360987, 0.06159980222582817, -0.01433300506323576, 0.014437766745686531, 0.017311472445726395, -0.004153307992964983, 0.030110465362668037, 0.06708424538373947, -0.005602703895419836, 0.03477173671126366, -0.015882199630141258, -0.03692709654569626, 0.02333049662411213, 0.0064935823902487755, -0.016463791951537132, 0.023396920412778854, -0.03234955668449402, -0.003291071392595768, 0.037201955914497375, 0.0401046946644783, 0.061402589082717896, -0.02378815971314907, -0.02399391308426857, -0.01097147073596716, 0.003651002189144492, -0.01615142822265625, 0.021313507109880447, -0.01129539217799902, -0.010719586163759232, 0.01891219988465309, -0.03022090345621109, -0.028987672179937363, -0.04924525320529938, -0.014219049364328384, 0.01802399568259716, -0.018227465450763702, 0.0012392007047310472, 0.0007099805516190827, 0.03501053526997566, -0.03980109468102455, -0.04562673717737198, -0.09028413146734238, -0.0264635868370533, -0.07410919666290283, -0.007034885697066784, 0.017243025824427605, -0.003657775931060314, -0.0057348161935806274, -0.032645706087350845, -0.02784869819879532, -0.039936333894729614, 0.008622046560049057, -0.03205116093158722, -0.03228532150387764, 0.01726713590323925, 0.0504915714263916, 0.027565915137529373, 0.013713031075894833, 0.06879105418920517, -0.019376231357455254, -0.009930118918418884, 0.006753478664904833, 0.014132956974208355, 0.06852597743272781, 0.03023640811443329, -0.014268467202782631, -0.0835505872964859, -0.02641860768198967, 0.02975579723715782, 0.017358368262648582, -0.07067173719406128, -0.01159643940627575, 0.03135703131556511, 0.0024809292517602444, 0.033123571425676346, -0.01850115694105625, -0.0034224744886159897, -0.021344764158129692, -0.02018951252102852, 0.013135185465216637, 0.00234044948592782, 0.042218632996082306, -0.02123076841235161, 0.07063374668359756, 0.028585469350218773, -0.01786520890891552, -0.027392905205488205, -0.008594370447099209, -0.030373135581612587, 0.02429361268877983, -0.04523357003927231, -0.03025038167834282, -0.033668454736471176, -0.06335937976837158, -0.010665245354175568, -0.00005803617023047991, -0.03385910764336586, -0.03651566058397293, -0.0018201271304860711, 0.023467717692255974, -0.011511008255183697, 0.06549223512411118, -0.03937671333551407, 0.027640268206596375, -0.03357192873954773, -0.022397322580218315, -0.014694511890411377, 0.03214770928025246, -0.027471017092466354, 0.025091953575611115, 0.025227876380085945, -0.02911553718149662, -0.0075478460639715195, -0.010349377989768982, 0.031123332679271698, 0.06079184263944626, -0.030375424772500992, 0.01452154666185379 ]
[ -0.08286042511463165, -0.035909414291381836, -0.018736883997917175, -0.03927120938897133, 0.04345924034714699, -0.0705181360244751, 0.04182146117091179, 0.01711982861161232, -0.002101501217111945, -0.00825553946197033, -0.0032318634912371635, -0.10446980595588684, 0.023152392357587814, -0.008238807320594788, 0.026144076138734818, -0.03153008595108986, -0.020351087674498558, -0.03643367812037468, -0.04907578229904175, 0.02938580885529518, 0.03146648034453392, 0.0164504274725914, -0.05816008150577545, -0.03825504705309868, 0.019775737076997757, 0.042244262993335724, 0.04280988872051239, -0.01936204358935356, -0.019330939278006554, -0.22903312742710114, 0.0036098025739192963, -0.031056279316544533, 0.041362278163433075, -0.027807995676994324, 0.001099074725061655, 0.04474884271621704, 0.012789899483323097, 0.041402243077754974, -0.003303524339571595, 0.046966198831796646, 0.05645085126161575, 0.004630620591342449, -0.0459442175924778, -0.011863406747579575, 0.014715291559696198, -0.009030238725244999, -0.027142221108078957, -0.03958266228437424, -0.005524251144379377, 0.005498544313013554, -0.05418204516172409, 0.013026401400566101, -0.043735161423683167, -0.026298539713025093, -0.017599407583475113, 0.0067615807056427, 0.027655355632305145, 0.08594906330108643, 0.012103713117539883, -0.005335810594260693, 0.016272636130452156, -0.020011035725474358, -0.11882730573415756, 0.09883154928684235, 0.008552462793886662, 0.07710358500480652, -0.005516005214303732, -0.02736646868288517, -0.0076710544526577, 0.055134888738393784, 0.01761299930512905, -0.008705704472959042, -0.03516760095953941, 0.06706545501947403, -0.006155621260404587, -0.05874140188097954, -0.014425485394895077, 0.027290571480989456, 0.04498514533042908, -0.022052770480513573, -0.07509816437959671, 0.00970134325325489, 0.0422712005674839, -0.026343952864408493, 0.016470711678266525, -0.03756821155548096, -0.010707447305321693, 0.04968041181564331, 0.011640173383057117, 0.01356836874037981, 0.03958120569586754, -0.028856296092271805, 0.012789174914360046, 0.04741103574633598, -0.055426355451345444, -0.019895197823643684, 0.006319860927760601, 0.017685847356915474, -0.016802189871668816, 0.4158863127231598, -0.028246091678738594, -0.00942516140639782, 0.02611774578690529, 0.017190273851156235, -0.007362978532910347, -0.02418142929673195, -0.01308464165776968, -0.051757484674453735, -0.008839591406285763, -0.017877694219350815, 0.01922249235212803, -0.0513714924454689, 0.07627282291650772, -0.05143529921770096, -0.026455899700522423, -0.0003030861262232065, 0.020851081237196922, 0.06120038777589798, 0.010733005590736866, 0.013570976443588734, -0.02183532901108265, -0.02641480602324009, 0.04242875054478645, -0.0016238109674304724, 0.03448706865310669, 0.03963039815425873, 0.025751503184437752, 0.06521794199943542, 0.023309923708438873, 0.03150258585810661, 0.023477880284190178, -0.058022599667310715, -0.07966912537813187, 0.040478941053152084, -0.008237379603087902, 0.00023262665490619838, 0.02813444286584854, -0.0176117904484272, 0.02153545431792736, 0.02700575441122055, -0.009094644337892532, -0.06070743501186371, 0.020551105961203575, -0.022307509556412697, -0.022631430998444557, 0.13826090097427368, -0.01121319830417633, -0.04261670261621475, -0.06005166098475456, -0.06163974478840828, -0.025332065299153328, 0.02078503929078579, -0.013478618115186691, -0.042589813470840454, -0.00023340428015217185, 0.07953136414289474, 0.10790346562862396, -0.029048876836895943, -0.06659141182899475, -0.018593572080135345, -0.040807630866765976, -0.05319487676024437, -0.05886317417025566, 0.02477548085153103, 0.037969011813402176, -0.07821207493543625, -0.020249396562576294, -0.03405751660466194, -0.032576609402894974, -0.07761647552251816, -0.002192605286836624, 0.04021880030632019, -0.02416228875517845, 0.01130981370806694, 0.04335464909672737, -0.02421576902270317, -0.048528898507356644, -0.005952708423137665, 0.0430021695792675, -0.011181051842868328, -0.04029684513807297, 0.017747072502970695, -0.05329116806387901, -0.008009637705981731, -0.04184309020638466, -0.05320095270872116, -0.049241386353969574, 0.03630075231194496, -0.03602633252739906, 0.01006254181265831, 0.00028263728017918766, -0.036580268293619156, -0.02948213368654251, 0.03274897113442421, -0.014203404076397419, -0.01519857533276081, 0.04251798987388611, -0.021123051643371582, -0.021465172991156578, -0.019773297011852264, -0.008776830509305, 0.026898780837655067, -0.012571764178574085, 0.0484466515481472, -0.04125256463885307, 0.02781241573393345, 0.04939178004860878, -0.03661193326115608, 0.04348943382501602, 0.041969917714595795, -0.006108334753662348, 0.005233411211520433, -0.011380961164832115, -0.020991582423448563, -0.01672111079096794, -0.05529450252652168, -0.004896586295217276, 0.0011248650262132287, 0.01923259347677231, 0.027225984260439873, -0.039983730763196945, -0.07899702340364456, -0.0159800685942173, -0.339216023683548, -0.03466944396495819, -0.017128508538007736, 0.02540457993745804, 0.025751342996954918, -0.07218547910451889, -0.021735483780503273, -0.022308336570858955, -0.05021674558520317, 0.04203220084309578, 0.06660683453083038, -0.01791626401245594, 0.014779230579733849, -0.02059227041900158, -0.0043549733236432076, 0.046353429555892944, -0.03443419933319092, -0.020623603835701942, -0.03961188718676567, 0.05055306851863861, 0.012774424627423286, -0.014200420118868351, -0.0051505062729120255, -0.04992248862981796, -0.003227496286854148, -0.05346953123807907, 0.11547679454088211, -0.020204728469252586, 0.06800033152103424, -0.03773677721619606, 0.052267856895923615, 0.006180706899613142, -0.005956362001597881, -0.05892834812402725, -0.009645607322454453, -0.015668388456106186, -0.02990679442882538, 0.0238499715924263, 0.011986776255071163, -0.03643837943673134, 0.008015385828912258, 0.04432734474539757, -0.05451921001076698, -0.016809595748782158, -0.028740322217345238, 0.019798515364527702, -0.0005619145231321454, 0.003602562239393592, 0.009035838767886162, 0.08075358718633652, 0.018989114090800285, 0.03987390175461769, 0.022903932258486748, 0.004732229746878147, 0.0019950473215430975, -0.013361005112528801, -0.05847294628620148, -0.03660634160041809, -0.030999621376395226, -0.0012917120475322008, 0.017237478867173195, 0.03045128844678402, 0.020007165148854256, -0.03357304260134697, -0.0089685944840312, 0.02758697047829628, -0.004313269164413214, -0.005965409800410271, 0.026392174884676933, -0.019351907074451447, -0.03270038962364197, 0.08022165298461914, -0.002047743648290634, 0.017583033069968224, 0.007347471080720425, 0.0917326956987381, -0.004086610395461321, 0.07903853803873062, 0.04717877879738808, -0.00850767083466053, 0.06583261489868164, 0.006108027417212725, 0.028580300509929657, -0.00815471913665533, 0.06542475521564484, 0.03987612575292587, 0.0008591777295805514, 0.013945831917226315, 0.03243134915828705, 0.003056393237784505, 0.02758009172976017, -0.00744152907282114, -0.0025706167798489332, -0.053062207996845245, 0.07837691158056259, 0.0012615806190297008, -0.2323068529367447, 0.03832409530878067, 0.08857828378677368, 0.07895074784755707, -0.002092446433380246, 0.010158785618841648, 0.047290392220020294, -0.04807198420166969, 0.003907639998942614, -0.013332824222743511, 0.007838967256247997, 0.04696737229824066, 0.007197063881903887, -0.01596880704164505, -0.0007867214735597372, -0.027644623070955276, 0.07944074273109436, -0.02322162128984928, 0.03378263860940933, 0.03866139426827431, 0.02334681712090969, 0.008509764447808266, 0.18390962481498718, 0.011669104918837547, 0.04332372918725014, -0.007285840809345245, -0.002454132540151477, -0.020268062129616737, 0.06078200042247772, 0.02446926198899746, 0.021547188982367516, -0.0448840856552124, 0.0364043228328228, 0.00620616739615798, 0.049791477620601654, -0.03144758939743042, -0.03365009278059006, 0.016245653852820396, 0.023384487256407738, -0.021199027076363564, 0.01136116124689579, 0.007033531088382006, -0.0933852419257164, 0.006051983684301376, 0.061852265149354935, 0.005128574091941118, 0.017104411497712135, -0.04527423903346062, -0.02913752570748329, 0.009294833056628704, -0.015755366533994675, -0.016282960772514343, -0.025294335559010506, -0.019037824124097824, 0.025958310812711716, 0.08614368736743927, 0.029317490756511688, -0.021364083513617516, 0.026297003030776978, 0.029444972053170204, -0.014133674092590809, -0.0539432056248188, 0.12028617411851883, -0.0006299654487520456, -0.0009025532053783536 ]
[ 0.03459934517741203, 0.05293320119380951, 0.005216565914452076, -0.0010115886107087135, -0.03478134050965309, -0.0562787801027298, 0.004973066970705986, -0.011365119367837906, -0.005714620463550091, -0.009920094162225723, -0.0319855622947216, 0.0016925787786021829, 0.013751729391515255, -0.014898983761668205, 0.03521900624036789, 0.021936915814876556, -0.02836780995130539, 0.01664530485868454, 0.018616758286952972, -0.05043765902519226, -0.03539809212088585, 0.03085937537252903, 0.033639926463365555, -0.004681599326431751, -0.02851361595094204, 0.013150532729923725, -0.02260197140276432, 0.009702468290925026, -0.0038106476422399282, -0.08937104791402817, -0.06540177017450333, -0.035840265452861786, -0.018206385895609856, 0.036627043038606644, -0.001559376367367804, -0.00041133732884190977, 0.01004597544670105, 0.032196976244449615, 0.006041610613465309, 0.02917606011033058, -0.002678183140233159, 0.0387972928583622, -0.0069554331712424755, 0.028742868453264236, -0.013684557750821114, 0.0536222979426384, -0.003967574797570705, -0.005963100120425224, -0.014941970817744732, 0.008624400943517685, -0.04689909517765045, 0.040997982025146484, -0.03484192118048668, 0.00014325877418741584, 0.026413418352603912, -0.019410675391554832, -0.018977632746100426, -0.04924076795578003, 0.03221095725893974, -0.045689910650253296, 0.004464626312255859, 0.0006974585703574121, -0.017648523673415184, -0.02411273680627346, 0.0007969540311023593, -0.003519512712955475, -0.04956338182091713, 0.0015278051141649485, 0.05677149072289467, -0.018004296347498894, -0.0009673717431724072, -0.028326179832220078, -0.00464250473305583, -0.07796678692102432, 0.016739042475819588, -0.0380399264395237, 0.021190499886870384, -0.09051927924156189, -0.004658857826143503, -0.006575106177479029, -0.02162238582968712, -0.0033869047183543444, -0.006396168377250433, 0.047141775488853455, -0.009594560600817204, -0.08237610012292862, 0.000751716026570648, -0.015769271180033684, -0.020530054345726967, 0.013053523376584053, -0.054738033562898636, -0.04859757795929909, 0.04061189293861389, 0.01765790581703186, -0.035214614123106, 0.029879411682486534, 0.03746308386325836, -0.015771279111504555, 0.004478686023503542, 0.7878526449203491, 0.0037064836360514164, 0.008580412715673447, 0.022392284125089645, -0.02558404952287674, 0.0186367966234684, 0.02091600000858307, -0.009873972274363041, -0.06365609914064407, -0.01521253027021885, -0.0174782183021307, 0.02463769167661667, -0.01170414499938488, 0.03825684264302254, 0.03173598274588585, 0.003456908743828535, 0.04208410158753395, 0.022865112870931625, 0.048825040459632874, 0.009554756805300713, 0.027317065745592117, 0.020003527402877808, -0.005927903577685356, 0.03707771375775337, 0.00030645931838080287, 0.008254718966782093, -0.17147839069366455, -0.0034969402477145195, -7.22642425539297e-33, 0.01667754165828228, -0.028743797913193703, 0.029793033376336098, -0.009859651327133179, 0.046213313937187195, -0.009534553624689579, 0.009726175107061863, -0.01844286546111107, -0.015236862003803253, -0.011259675957262516, 0.006066730711609125, 0.026775412261486053, -0.015665430575609207, 0.028073139488697052, 0.015253285877406597, -0.00556825939565897, 0.006546828895807266, 0.05180225893855095, -0.03080069087445736, 0.03943431377410889, 0.03641343116760254, 0.00232740119099617, 0.0036686304956674576, 0.027255339547991753, 0.01677248813211918, -0.008936615660786629, -0.01600872538983822, 0.021792761981487274, 0.009093277156352997, -0.04318700730800629, -0.050401315093040466, 0.04397714510560036, -0.002313334960490465, -0.03994738310575485, 0.02077816240489483, -0.035844482481479645, 0.007359537295997143, 0.013051890768110752, 0.0013135225744917989, -0.08422151207923889, -0.04543513059616089, 0.0037255180068314075, 0.0013132651802152395, -0.06504708528518677, -0.02551676705479622, -0.03826062008738518, 0.0069390651769936085, 0.05755383521318436, 0.02004021219909191, 0.04220225289463997, 0.0676577091217041, -0.03969736397266388, -0.012751827947795391, 0.02605491131544113, -0.010506104677915573, -0.01667526364326477, 0.013107061386108398, 0.015729941427707672, 0.032561060041189194, 0.025010783225297928, -0.006653827615082264, 0.013656998053193092, 0.030313929542899132, 0.04810970649123192, 0.0257081538438797, -0.006184016354382038, 0.08122369647026062, 0.05180681496858597, 0.018595987930893898, 0.005600715056061745, -0.04266256466507912, -0.008847106248140335, -0.03955468162894249, -0.05021036043763161, -0.0036931897047907114, -0.016627520322799683, -0.009324594400823116, -0.018879972398281097, -0.0063505410216748714, 0.022951623424887657, 0.04055507481098175, 0.00027753261383622885, -0.00510008679702878, -0.008859422989189625, -0.0188845656812191, 0.006088131107389927, -0.005527897737920284, 0.048093196004629135, 0.012716109864413738, -0.016078395769000053, -0.016602106392383575, 0.04572787508368492, -0.03680414706468582, -0.04044683650135994, -0.021666336804628372, 6.70326167835188e-33, -0.0033128762152045965, -0.021905625239014626, -0.011238501407206059, 0.010204899124801159, 0.003315039910376072, -0.05285774916410446, 0.06918448209762573, 0.013538392260670662, 0.025098448619246483, 0.038508012890815735, 0.004527539946138859, -0.054281093180179596, 0.017133528366684914, 0.017864413559436798, 0.03576277196407318, 0.02260454371571541, -0.03913092613220215, 0.0478535033762455, 0.012035943567752838, -0.019711868837475777, -0.023132845759391785, -0.012112090364098549, 0.014808088541030884, 0.012532521970570087, -0.026417048647999763, 0.01834055781364441, -0.02234591543674469, -0.022688601166009903, -0.007208415772765875, 0.013505100272595882, -0.009090088307857513, 0.02089960128068924, 0.03394079953432083, -0.04904681444168091, -0.012600341811776161, 0.0029739930760115385, 0.017692867666482925, -0.022899815812706947, 0.003698121290653944, -0.01673279143869877, 0.038499537855386734, 0.03379271551966667, 0.017003605142235756, -0.003945904318243265, 0.011549524962902069, 0.02541060373187065, 0.035477835685014725, 0.005769857205450535, 0.014937924221158028, 0.013759997673332691, 0.036705516278743744, -0.004313748795539141, -0.010612680576741695, -0.0039647785015404224, -0.008420763537287712, 0.002410824177786708, -0.05375566706061363, 0.0016614178894087672, -0.05041704326868057, -0.030019233003258705, -0.0493723526597023, -0.042380332946777344, 0.029256684705615044, 0.03620622307062149, -0.005089587531983852, 0.010856317356228828, -0.07128113508224487, -0.028329376131296158, -0.034168463200330734, -0.03660234808921814, 0.026691269129514694, -0.035232268273830414, -0.007962118834257126, 0.022194232791662216, -0.03588002547621727, 0.002786062890663743, -0.04367191717028618, -0.014615461230278015, 0.013340277597308159, 0.04159904271364212, 0.013041866943240166, -0.014939370565116405, 0.008008141070604324, 0.0626785159111023, -0.035386160016059875, 0.007489682640880346, 0.023494325578212738, -0.018001487478613853, 0.025279678404331207, -0.0005330892745405436, 0.00243158801458776, -0.028925467282533646, -0.032715510576963425, 0.029882997274398804, 0.015714462846517563, -1.2568301066551157e-8, -0.043745316565036774, 0.05737151578068733, 0.009386657737195492, 0.07505153119564056, 0.006680636666715145, 0.01568438671529293, 0.0009117681765928864, 0.031092815101146698, -0.0036794536281377077, -0.008155285380780697, 0.003178877755999565, -0.019007492810487747, -0.024431658908724785, -0.027442462742328644, 0.02804042398929596, 0.010386952199041843, -0.0009312521433457732, -0.019087953492999077, 0.038455232977867126, -0.003268300788477063, 0.024062111973762512, 0.01706770621240139, 0.007465631701052189, 0.02071423828601837, -0.021616408601403236, 0.028249617666006088, 0.04927550256252289, -0.08666078001260757, 0.00613693380728364, -0.04284558445215225, 0.018704893067479134, -0.0591551698744297, 0.0004471367865335196, -0.007138274144381285, -0.03325102850794792, -0.05470031499862671, -0.04451389238238335, 0.012178880162537098, 0.0015188807155936956, 0.005515700671821833, -0.026542065665125847, -0.011380153708159924, -0.011681592091917992, -0.02995387464761734, -0.05353780463337898, -0.0012144821230322123, -0.0427827388048172, 0.05130521208047867, -0.01961241476237774, -0.01645970344543457, 0.017523910850286484, 0.000031137591577135026, 0.05139912664890289, -0.010749902576208115, 0.027984514832496643, 0.07886279374361038, 0.024770531803369522, -0.005830349866300821, -0.04241933301091194, -0.023382598534226418, 0.03744707256555557, 0.008723434060811996, -0.04147009924054146, 0.0009339130483567715 ]
python-select-keys-from-map-dictionary
https://markhneedham.com/blog/2020/04/27/python-select-keys-from-map-dictionary
false
2020-04-21 00:21:00
QuickGraph #6: COVID-19 Taxonomy Graph
[ "quickgraph", "neo4j", "apoc", "covid-19" ]
[ "QuickGraph" ]
It's been several months since https://markhneedham.com/blog/2020/01/23/quick-graph-australian-open/[our last QuickGraph^] and the world feels very different than it was back then. I've been reading a couple of books about viruses - https://www.amazon.co.uk/Spillover-Animal-Infections-Human-Pandemic-ebook/dp/B009EQG794/[Spillover^] and https://www.amazon.co.uk/Pale-Rider-Spanish-Changed-World-ebook/dp/B01GH07CG6[Pale Rider^] - and am now very curious to learn more about the medical terms reference in the books. With the https://github.com/neo4j-labs/neosemantics/releases/tag/4.0.0-beta[Pre Release of neosemantics (n10s) for Neo4j 4.0^], I thought it would be interesting to create a graph of the taxonomy of the virus that caused COVID-19, using data extracted from https://markhneedham.com/blog/2020/01/29/newbie-guide-querying-wikidata/[Wikidata's SPARQL API^]. image::{{<siteurl>}}/uploads/2020/04/quick-graph-covid-taxonomy.png[title="The COVID-19 Taxonomy Graph"] Let's get started! == Setting up Neo4j We're going to use the following Docker Compose configuration in this blog post: .docker-compose.yml [source,yaml] ---- version: '3.7' services: neo4j: image: neo4j:4.0-enterprise container_name: "covid-graph" volumes: - ./plugins:/plugins - ./data-4.0:/data - ./import:/var/lib/neo4j/import ports: - "7474:7474" - "7687:7687" environment: - "NEO4J_ACCEPT_LICENSE_AGREEMENT=yes" - "NEO4J_AUTH=neo4j/neo" - NEO4J_apoc_import_file_enabled=true - NEO4J_apoc_export_file_enabled=true - NEO4J_dbms_directories_import=import - NEO4JLABS_PLUGINS=["apoc"] ---- We'll manually copy the n10s jar into the `plugins` directory, and then run the following command: [source,bash] ---- docker-compose up ---- If everything's working properly, we'll see the following: [source,text] ---- Starting covid-graph ... done Attaching to covid-graph covid-graph | Changed password for user 'neo4j'. covid-graph | Fetching versions.json for Plugin 'apoc' from https://neo4j-contrib.github.io/neo4j-apoc-procedures/versions.json covid-graph | Installing Plugin 'apoc' from https://github.com/neo4j-contrib/neo4j-apoc-procedures/releases/download/4.0.0.7/apoc-4.0.0.7-all.jar to /plugins/apoc.jar covid-graph | Applying default values for plugin apoc to neo4j.conf covid-graph | Directories in use: covid-graph | home: /var/lib/neo4j covid-graph | config: /var/lib/neo4j/conf covid-graph | logs: /logs covid-graph | plugins: /plugins covid-graph | import: /var/lib/neo4j/import covid-graph | data: /var/lib/neo4j/data covid-graph | certificates: /var/lib/neo4j/certificates covid-graph | run: /var/lib/neo4j/run covid-graph | Starting Neo4j. covid-graph | 2020-04-20 19:56:48.326+0000 INFO ======== Neo4j 4.0.3 ======== covid-graph | 2020-04-20 19:56:48.333+0000 INFO Starting... covid-graph | 2020-04-20 19:56:55.257+0000 INFO Called db.clearQueryCaches(): Query cache already empty. covid-graph | 2020-04-20 19:57:04.198+0000 INFO Sending metrics to CSV file at /var/lib/neo4j/metrics covid-graph | 2020-04-20 19:57:04.220+0000 INFO Bolt enabled on 0.0.0.0:7687. covid-graph | 2020-04-20 19:57:04.220+0000 INFO Started. covid-graph | 2020-04-20 19:57:04.370+0000 INFO Server thread metrics have been registered successfully covid-graph | 2020-04-20 19:57:05.324+0000 INFO Remote interface available at http://0.0.0.0:7474/ ---- == Configuring n10s Let's now configure n10s so that it's ready to import some data. We need to create a unique constraint on `:Resource(uri)` and then call the `n10s.graphconfig.init` procedure to configure the library: [source, cypher] ---- CREATE CONSTRAINT n10s_unique_uri ON (r:Resource) ASSERT r.uri IS UNIQUE; CALL n10s.graphconfig.init({handleVocabUris: "MAP"}); ---- == Virus Taxonomy We're now ready to start exploring Wikidata. The virus behind COVID-19 is called https://www.wikidata.org/wiki/Q82069695[SARS-CoV-2], so we'll start there and then manually follow the `parent taxon` statement as far as we can. This eventually leads us to https://www.wikidata.org/wiki/Q62002503[Riboviria^], which is described as follows: [quote, https://en.wikipedia.org/wiki/Riboviria] ____ Riboviria is a realm of viruses that encompasses all RNA viruses and viroids that replicate by means of RNA-dependent RNA polymerases. ____ Our manual traversal can also be expressed by the following SPARQL query: .https://query.wikidata.org/#CONSTRUCT%20%7B%0A%20%20%3Fcat%20rdfs%3Alabel%20%3FcatName%20.%0A%20%20%3FsubCat%20rdfs%3Alabel%20%3FsubCatName%20%3B%0A%20%20%20%20%20%20%20%20%20%20wdt%3AP171%20%3FparentCat%20.%0A%20%20%7D%20%0AWHERE%20%7B%0A%20%20%3Fcat%20rdfs%3Alabel%20%22Riboviria%22%40en%20.%0A%20%20%3Fcat%20rdfs%3Alabel%20%3FcatName%20.%0A%20%20filter%28lang%28%3FcatName%29%20%3D%20%22en%22%29%20.%0A%20%20%3FsubCat%20wdt%3AP171%2B%20%3Fcat%20%3B%0A%20%20%20%20%20%20%20%20%20%20wdt%3AP171%20%3FparentCat%3B%0A%20%20%20%20%20%20%20%20%20%20rdfs%3Alabel%20%3FsubCatName%0A%20%20%20%20%20%20%20%20%20%20filter%28lang%28%3FsubCatName%29%20%3D%20%22en%22%29%20.%0A%7D[Run query on Wikidata^] [source, sparql] ---- CONSTRUCT { ?cat rdfs:label ?catName . ?subCat rdfs:label ?subCatName ; wdt:P171 ?parentCat . } WHERE { ?cat rdfs:label "Riboviria"@en . ?cat rdfs:label ?catName . filter(lang(?catName) = "en") . ?subCat wdt:P171+ ?cat ; wdt:P171 ?parentCat; rdfs:label ?subCatName filter(lang(?subCatName) = "en") . } ---- If we execute this query, we'll see the following (truncated) output: .Results [opts="header", separator=","] |=== ,subject,predicate,object 3+, ,http://www.wikidata.org/entity/Q5331908,http://www.w3.org/2000/01/rdf-schema#label,Ebolavirus ,http://www.wikidata.org/entity/Q5331908,http://www.wikidata.org/prop/direct/P171,http://www.wikidata.org/entity/Q46305 3+, ,http://www.wikidata.org/entity/Q82069695,http://www.w3.org/2000/01/rdf-schema#label,SARS-CoV-2 ,http://www.wikidata.org/entity/Q82069695,http://www.wikidata.org/prop/direct/P171,http://www.wikidata.org/entity/Q278567 3+, ,http://www.wikidata.org/entity/Q4902157,http://www.w3.org/2000/01/rdf-schema#label,Middle East respiratory syndrome coronavirus ,http://www.wikidata.org/entity/Q4902157,http://www.wikidata.org/prop/direct/P171,http://www.wikidata.org/entity/Q57754679 |=== Now let's import this data into Neo4j so we can explore it further. == Constructing the Virus Taxonomy Graph We're going to import the data into the following Neo4j graph model: image::{{<siteurl>}}/uploads/2020/04/taxonomy-graph.png[title="Virus Taxonomy Graph"] Our SPARQL query returns triples with the predicates `http://www.wikidata.org/prop/direct/P171` and `http://www.w3.org/2000/01/rdf-schema#label`. We'll need to convert those to `CHILD_OF` and `name` respectively, which we can do by executing the following procedures: [source,cypher] ---- CALL n10s.mapping.addSchema("http://www.wikidata.org/prop/direct/", "wdt"); CALL n10s.mapping.addMappingToSchema("http://www.wikidata.org/prop/direct/","CHILD_OF","P171"); CALL n10s.mapping.addSchema("http://www.w3.org/2000/01/rdf-schema#", "rdfs"); CALL n10s.mapping.addMappingToSchema("http://www.w3.org/2000/01/rdf-schema#","name","label"); ---- We can now import the results of our SPARQL query into Neo4j using the `n10s.rdf.import.fetch` procedure: [source,cypher] ---- WITH ' CONSTRUCT { ?cat rdfs:label ?catName . ?subCat rdfs:label ?subCatName ; wdt:P171 ?parentCat . } WHERE { ?cat rdfs:label "Riboviria"@en . ?cat rdfs:label ?catName . filter(lang(?catName) = "en") . ?subCat wdt:P171+ ?cat ; wdt:P171 ?parentCat; rdfs:label ?subCatName filter(lang(?subCatName) = "en") . } ' AS query CALL n10s.rdf.import.fetch( "https://query.wikidata.org/sparql?query=" + apoc.text.urlencode(query), "JSON-LD", { headerParams: { Accept: "application/ld+json"}}) YIELD triplesLoaded RETURN triplesLoaded; ---- .Results [opts="header"] |=== |triplesLoaded |3259 |=== Let's now add the `Virus` label to each of our nodes: [source,cypher] ---- MATCH (n:Resource) SET n:Virus; ---- Before we continue, let's do a bit of cleanup. Wikidata's taxonomy has some unnecessary shortcuts that make the graph harder to understand. For example in the following visualisation we can remove a couple of extraneous `CHILD_OF` relationships: image::{{<siteurl>}}/uploads/2020/04/shortcuts.png[title="Taxonomy Shortcuts"] We can remove these shortcut relationships by running the following query: [source,cypher] ---- MATCH (v:Virus)<-[co:CHILD_OF*2..]-(child)-[shortcut:CHILD_OF]->(v) DELETE shortcut; ---- We're now ready to query the graph. == Querying the Virus Taxonomy Graph Let's start with a query to find out the shortest path from the SARS virus to the SARS-CoV-2 virus: [source,cypher] ---- MATCH (r1:Virus {name: "SARS-CoV-2"}) MATCH (r2:Virus {name: "severe acute respiratory syndrome coronavirus"}) MATCH path = shortestpath((r1)-[*]-(r2)) RETURN path; ---- If we run this query, we'll see the Neo4j Browser visualisation below: image::{{<siteurl>}}/uploads/2020/04/sars-sars-cov-2.svg[title="Path between SARS and SARS-CoV-2"] Both of these viruses have a common parent, https://www.wikidata.org/wiki/Q278567[severe acute respiratory syndrome-related coronavirus^]. Where does the parent category fit in the whole taxonomy? We can find out by writing the following query: [source,cypher] ---- MATCH (r1:Virus {name: "SARS-CoV-2"}) MATCH (r2:Virus {name: "severe acute respiratory syndrome coronavirus"}) MATCH path1 = (r1)-[:CHILD_OF*]->(r1root) WHERE not((r1root)-[:CHILD_OF]->()) MATCH path2 = (r2)-[:CHILD_OF*]->(r2root) WHERE not((r2root)-[:CHILD_OF]->()) RETURN path1, path2 ---- And if we run this query, we'll see the Neo4j Browser visualisation below: image::{{<siteurl>}}/uploads/2020/04/sars-sars-cov2-root.svg[title="SARS and SARS-CoV-2 in the virus taxonomy"] Both of these coronaviruses are part of the https://en.wikipedia.org/wiki/Betacoronavirus[Betacoronaviruses^] family, and from its Wikipedia page we learn that the virus that caused Middle East Respiratory Syndrome: [quote, https://en.wikipedia.org/wiki/Betacoronavirus] ____ The Beta-CoVs of the greatest clinical importance concerning humans are OC43 and HKU1 of the A lineage, SARS-CoV and SARS-CoV-2 (which causes the disease COVID-19) of the B lineage, and MERS-CoV of the C lineage. MERS-CoV is the first betacoronavirus belonging to lineage C that is known to infect humans. ____ [source,cypher] ---- WITH ["SARS-CoV-2", "Middle East respiratory syndrome coronavirus", "severe acute respiratory syndrome coronavirus"] AS virus UNWIND apoc.coll.combinations(virus, 2, 2) AS pair MATCH (r1:Virus {name: pair[0]}) MATCH (r2:Virus {name: pair[1]}) MATCH path = shortestpath((r1)-[*]-(r2)) RETURN path ---- If we run this query, we'll see the Neo4j Browser visualisation below: image::{{<siteurl>}}/uploads/2020/04/coronaviruses.svg[title="Paths between SARS, SARS-CoV-2, and MERS"] MERS comes under https://en.wikipedia.org/wiki/Merbecovirus[Merbecovirus^], which is described below: [quote, https://en.wikipedia.org/wiki/Merbecovirus] ____ Merbecovirus is a subgenus of viruses in the genus Betacoronavirus. The viruses in this subgenus were previously known as group 2c coronaviruses. The viruses of this subgenus, like other coronaviruses, have a lipid bilayer envelope in which the membrane (M), envelope (E) and spike (S) structural proteins are anchored. ____ Now I'm curious about the other sub children of Betacoronavirus, which we can explore by writing the following query: [source, cypher] ---- MATCH path = (virus:Virus {name: "Betacoronavirus"})<-[:CHILD_OF*]-(child) RETURN path ---- The Neo4j Browser visualisation below shows the full taxonomy: image::{{<siteurl>}}/uploads/2020/04/beta-coronavirus.svg[title="Betacoronavirus Taxonomy"] == Enriching the graph Now we're going to add some more data to our graph. It'd be good to know which hosts each virus can infect, the diseases caused by these viruses, events associated with each disease, and the locations affected. We're eventually going to have the following graph model: image::{{<siteurl>}}/uploads/2020/04/taxonomy-graph-enriched.png[title="Virus Graph"] Let's start by adding the hosts. In Wikidata, the host statement is https://www.wikidata.org/wiki/Property:P2975[P2975^], so we'll need to create an n10s mapping to translate this to the `HOST` relationship type: [source,cypher] ---- CALL n10s.mapping.addMappingToSchema("http://www.wikidata.org/prop/direct/","HOST","P2975"); ---- We can then write the following query to import the hosts for each virus: [source,cypher] ---- MATCH (r:Virus) WITH n10s.rdf.getIRILocalName(r.uri) AS virus, r WITH 'prefix schema: <http://schema.org/> CONSTRUCT { wd:' + virus + ' wdt:P2975 ?host. ?host rdfs:label ?hostName ; rdf:type schema:Host } WHERE { OPTIONAL { wd:' + virus + ' wdt:P2975 ?host. ?host rdfs:label ?hostName. filter(lang(?hostName) = "en") } }' AS query, r CALL n10s.rdf.import.fetch("https://query.wikidata.org/sparql?query=" + apoc.text.urlencode(query), "JSON-LD", { headerParams: { Accept: "application/ld+json"}}) YIELD triplesLoaded RETURN r.name, triplesLoaded; ---- Now we're going to add the diseases, events, and locations. We have a few more Wikidata to n10s mappings to do: * https://www.wikidata.org/wiki/Property:P828[has cause (P828)^] -> `HAS_CAUSE` * https://www.wikidata.org/wiki/Property:P31[instance of (P31)^] -> `INSTANCE_OF` * https://www.wikidata.org/wiki/Property:P276[location (P276)^] -> `LOCATION` * https://www.wikidata.org/wiki/Property:P793[significant event (P793)^] -> `SIGNIFICANT_EVENT` We can create these mappings by making the following procedure calls: [source,cypher] ---- CALL n10s.mapping.addMappingToSchema("http://www.wikidata.org/prop/direct/","HAS_CAUSE","P828"); CALL n10s.mapping.addMappingToSchema("http://www.wikidata.org/prop/direct/","INSTANCE_OF","P31"); CALL n10s.mapping.addMappingToSchema("http://www.wikidata.org/prop/direct/","LOCATION","P276"); CALL n10s.mapping.addMappingToSchema("http://www.wikidata.org/prop/direct/","SIGNIFICANT_EVENT","P793"); ---- Now we're ready to import the data, which we can do by running the following query: [source,cypher] ---- MATCH (r:Virus) WITH n10s.rdf.getIRILocalName(r.uri) AS virus, r WITH 'prefix schema: <http://schema.org/> CONSTRUCT { ?event wdt:P828 wd:' + virus + '; wdt:P31 ?eventType; rdfs:label ?diseaseName; wdt:P276 ?origin ; wdt:P793 ?significantEvent. ?origin rdfs:label ?originName; rdf:type schema:Place . ?eventType rdfs:label ?eventTypeName. ?significantEvent rdfs:label ?significantEventName ; rdf:type schema:Event. } WHERE { { ?event wdt:P828 wd:'+ virus + '; } UNION { ?event wdt:P1478 wd:' + virus + '; } . ?event rdfs:label ?diseaseName . filter(lang(?diseaseName) = "en") OPTIONAL { ?event wdt:P31 ?eventType. ?eventType rdfs:label ?eventTypeName filter(lang(?eventTypeName) = "en")} OPTIONAL { ?event wdt:P276 ?origin . ?origin rdfs:label ?originName . filter(lang(?originName) = "en") } OPTIONAL { ?event wdt:P793 ?significantEvent . ?significantEvent rdfs:label ?significantEventName . filter(lang(?significantEventName) = "en") } }' AS query, r CALL n10s.rdf.import.fetch("https://query.wikidata.org/sparql?query=" + apoc.text.urlencode(query), "JSON-LD", { headerParams: { Accept: "application/ld+json"}}) YIELD triplesLoaded RETURN r.name, triplesLoaded ORDER BY triplesLoaded DESC; ---- Once this has finished, we'll run the following query to add the `Disease` label to any nodes that have an `INSTANCE` of relationship to a node that represents an infectious disease: [source,cypher] ---- MATCH (r:Resource)-[:INSTANCE_OF]->(item:Resource) WHERE item.name CONTAINS "infectious disease" WITH r, collect(item.name) AS items SET r:Disease; ---- == Querying the Enriched Graph Now that we've got that data loaded, let's start by finding the viruses that affect humans: [source, cypher] ---- MATCH hostPath = (h:Host {name: "Homo sapiens"})<-[:HOST]-(virus)-[:HOST]->(otherHost) RETURN hostPath ---- image::{{<siteurl>}}/uploads/2020/04/corona-hosts.svg[title="Viruses that affect humans"] We get back the three viruses that we've explored so far: SARS, SARS-CoV-2, and MERS. SARS and SARS-CoV-2 also affect bats, and MERS affects camels. Let's extend our query to return viruses and diseases as well: [source,cypher] ---- MATCH hostPath = (h:Host {name: "Homo sapiens"})<-[:HOST]-(virus)-[:HOST]->(otherHost) OPTIONAL MATCH diseasePath = (virus)<-[:CHILD_OF*0..]-(v)<-[:HAS_CAUSE]-(thing) OPTIONAL MATCH eventPath = (thing)-[:LOCATION|:SIGNIFICANT_EVENT]->(event) RETURN hostPath, diseasePath, eventPath ---- If we run this query, we'll see the Neo4j Browser visualisation below: image::{{<siteurl>}}/uploads/2020/04/corona-graph.svg[title="Coronavirus Graph - viruses, diseases, events, locations"] We can now see nodes representing the pandemics in different countries for COVID-19. There's also one node representing the SARS outbreak in 2002, and 3 nodes for the MERS outbreaks in 2012, 2015, and 2018. == What’s interesting about this QuickGraph? This QuickGraph has gone on for much longer than I expected, so it's time to wrap up. What makes this QuickGraph interesting to me is that the dataset is perfect for writing https://neo4j.com/docs/cypher-manual/current/syntax/patterns/#cypher-pattern-varlength[variable path queries^]. It also gave me an opportunity to use n10s for the first time, which was a good experience. I have to say thanks to https://twitter.com/barrasadv?lang=en[Jesus^] for all his help with the queries in this post. And finally, if you want to build this graph yourself, the code is available in the https://github.com/mneedham/covid-graph[mneedham/covid-graph^] GitHub repository.
Learn how to build a graph of the taxonomy around COVID-19.
uploads/2020/04/quick-graph-covid-taxonomy.png
[ 0.013239976949989796, -0.02344534546136856, 0.00045269986731000245, 0.046222712844610214, 0.0794820711016655, -0.009932292625308037, 0.0368633046746254, 0.057080864906311035, 0.02105758525431156, -0.03811107948422432, 0.01646375097334385, -0.012480015866458416, -0.055960677564144135, 0.03082229010760784, 0.004263725597411394, 0.07836546748876572, 0.04787784814834595, 0.017740190029144287, 0.010094835422933102, 0.001195684657432139, 0.012671014294028282, 0.014076984487473965, 0.019513120874762535, 0.035751473158597946, 0.02098659984767437, -0.017973395064473152, 0.027926523238420486, -0.0012106661451980472, -0.05471160262823105, -0.003751244628801942, 0.05768930912017822, 0.00725305313244462, 0.0001803161867428571, 0.009480422362685204, 0.035080183297395706, 0.01458064466714859, -0.043170537799596786, 0.005528655368834734, -0.014226225204765797, 0.003668246092274785, -0.09767720103263855, 0.037914641201496124, -0.027167044579982758, 0.006513536442071199, -0.02759316749870777, -0.006032578181475401, -0.030097277835011482, 0.039243850857019424, 0.012524879537522793, 0.005359170027077198, -0.07610441744327545, 0.014400867745280266, 0.006714487448334694, 0.014893552288413048, -0.027496086433529854, 0.0406314954161644, 0.00802712980657816, -0.053044673055410385, 0.016720671206712723, -0.04510560631752014, 0.011654024943709373, -0.01886667124927044, -0.0024120784364640713, 0.01786351017653942, 0.00023524457355961204, -0.029018132016062737, -0.002513320418074727, 0.07112745195627213, -0.03174247220158577, -0.007602635771036148, -0.0001894729648483917, 0.0229249969124794, -0.029585637152194977, 0.0033310544677078724, 0.011771595105528831, -0.06627555191516876, -0.002244156552478671, 0.053768325597047806, 0.025781570002436638, 0.036416422575712204, -0.02218153327703476, 0.017879880964756012, -0.0027799252420663834, 0.028942184522747993, -0.020769918337464333, -0.06210200861096382, -0.006323223002254963, -0.012591147795319557, -0.07595844566822052, 0.06299988925457001, 0.023910390213131905, -0.0485980324447155, 0.010417030192911625, 0.012222352437675, -0.02681070752441883, 0.030917780473828316, 0.01893560029566288, 0.007093991618603468, -0.015130676329135895, -0.040969666093587875, -0.02831161580979824, -0.02482815645635128, 0.0071591273881495, -0.009712605737149715, -0.07730937004089355, -0.03636763244867325, -0.01849154196679592, -0.026376668363809586, -0.002115784678608179, -0.00363364489749074, -0.012784246355295181, 0.022154957056045532, -0.02388816513121128, 0.006893706042319536, -0.09552959352731705, 0.09012254327535629, 0.03278885781764984, -0.03520228713750839, -0.004128189757466316, -0.018228773027658463, 0.040725093334913254, 0.012317368760704994, -0.011007219552993774, 0.07943384349346161, 0.00881949532777071, 0.017210347577929497, -0.01551223173737526, 0.01928415708243847, -0.0205090194940567, -0.03850112855434418, 0.0032059336081147194, 0.07567638903856277, -0.031156878918409348, -0.007241380400955677, -0.0008009093580767512, 0.0001619092799955979, -0.018946930766105652, 0.030348975211381912, 0.04237629100680351, 0.03952166438102722, 0.02277173288166523, -0.07575471699237823, 0.008285394869744778, 0.035733599215745926, 0.029406104236841202, 0.004262526053935289, -0.006762251257896423, -0.034147825092077255, -0.03995523974299431, -0.02056092955172062, -0.0018085475312545896, -0.0016044988296926022, 0.04521886259317398, -0.02625303529202938, 0.0355745367705822, 0.09568709880113602, 0.05932178348302841, 0.014403237961232662, 0.008024836890399456, 0.01002846471965313, 0.07108372449874878, 0.0499626062810421, 0.025527726858854294, 0.01050944346934557, -0.0052795433439314365, -0.04636584222316742, -0.026581617072224617, 0.05651339888572693, 0.0006737742223776877, -0.011565493419766426, -0.057356834411621094, -0.04465814307332039, 0.06806138157844543, -0.042919330298900604, -0.002583565190434456, 0.06796455383300781, 0.08404995501041412, 0.015534992329776287, 0.008406229317188263, -0.009965803474187851, -0.08448002487421036, 0.047632768750190735, 0.016282478347420692, 0.03316112980246544, 0.013836405239999294, -0.025931475684046745, 0.06722372770309448, 0.04647153243422508, 0.022137301042675972, 0.05573788657784462, -0.07427985221147537, -0.0620381236076355, -0.015534194186329842, 0.0019208482699468732, 0.07169638574123383, -0.01823394186794758, 0.01715746521949768, 0.08486109226942062, 0.007671012543141842, 0.03103519231081009, -0.015910698100924492, 0.008419791236519814, 0.01612573303282261, -0.038319673389196396, -0.07673081010580063, 0.054732851684093475, 0.023311598226428032, -0.03713415935635567, -0.05126480385661125, 0.010441754944622517, -0.03288242965936661, 0.001212700386531651, 0.024704784154891968, -0.02844422310590744, 0.03980099782347679, 0.023231105878949165, 0.06516443938016891, -0.0271212849766016, 0.014395244419574738, -0.048005253076553345, 0.02297174744307995, -0.018664605915546417, -0.020779872313141823, -0.0006625814130529761, 0.0020976178348064423, 0.12115845829248428, 0.07124942541122437, -0.024457890540361404, -0.036629319190979004, 0.018644388765096664, 0.031119903549551964, -0.01130854245275259, 0.014945518225431442, -0.025625819340348244, -0.0069010378792881966, -0.03144341707229614, -0.030853036791086197, -0.02541949227452278, 0.0047950162552297115, -0.04745990037918091, 0.021400993689894676, 0.04849113151431084, -0.008349040523171425, 0.06061458960175514, -0.0009021934820339084, -0.008909852243959904, -0.03088453784584999, -0.04446415230631828, -0.05828196182847023, 0.007664648350328207, 0.00984480045735836, 0.007299280725419521, 0.04003457352519035, -0.02086050435900688, 0.023058228194713593, -0.03269193321466446, -0.021225756034255028, 0.0330004021525383, 0.05419076606631279, 0.05100881680846214, -0.00578634487465024, 0.048810213804244995, -0.030999980866909027, 0.03719059005379677, -0.0017576405080035329, -0.059660378843545914, -0.06944042444229126, -0.05575264245271683, -0.0014681208413094282, 0.010521059855818748, 0.03734324499964714, -0.003929109778255224, 0.007562706246972084, 0.0148837361484766, 0.028993772342801094, -0.016223138198256493, 0.0324779711663723, 0.029444998130202293, 0.0013013952411711216, -0.009668056853115559, -0.01904868334531784, 0.06493692100048065, -0.022619979456067085, -0.025039026513695717, -0.006221499759703875, -0.06937220692634583, 0.04507014900445938, -0.028629757463932037, -0.025945963338017464, 0.0012764203129336238, 0.020711326971650124, 0.048703256994485855, 0.05426737666130066, 0.008081789128482342, 0.02943882904946804, -0.011766149662435055, 0.008341769687831402, 0.00686401454731822, -0.00840289331972599, 0.05268251523375511, -0.009895503520965576, 0.024328891187906265, 0.05428948625922203, -0.008992951363325119, -0.0031218454241752625, -0.037434618920087814, 0.0361207015812397, -0.0329924039542675, -0.28913918137550354, 0.028489351272583008, 0.006575350649654865, -0.04147210344672203, 0.015450024046003819, -0.006811714265495539, 0.016590401530265808, -0.03708578273653984, -0.03029075637459755, -0.003871588734909892, 0.017527591437101364, -0.02653926983475685, 0.0002892268530558795, 0.022681808099150658, 0.021812917664647102, 0.004896446131169796, -0.012080944143235683, -0.048891257494688034, 0.011441481299698353, 0.0316263809800148, 0.002315027406439185, -0.05141564831137657, -0.022075247019529343, 0.02652928978204727, 0.021445710211992264, 0.03092549741268158, -0.07445919513702393, 0.04405645653605461, -0.04936716705560684, 0.004502518568187952, 0.01460576243698597, -0.016488712280988693, 0.0187473576515913, 0.0016940092900767922, -0.011205890215933323, -0.011604874394834042, 0.03780822455883026, 0.002187470206990838, -0.023681310936808586, -0.0026795107405632734, -0.03565335273742676, -0.023671235889196396, -0.01458918396383524, -0.01239478774368763, 0.06849467754364014, 0.027028894051909447, -0.06014353036880493, 0.014212243258953094, -0.02671920508146286, 0.09061967581510544, -0.025608964264392853, -0.042553793638944626, -0.036187607795000076, 0.032274506986141205, 0.002834234619513154, -0.01036688219755888, -0.00909675844013691, -0.018476270139217377, -0.0395331047475338, -0.055597592145204544, -0.0007787620415911078, -0.030278636142611504, -0.013848947361111641, -0.05982396379113197, 0.0039339386858046055, -0.0640251487493515, -0.06959792226552963, -0.0201819259673357, 0.08028282225131989, 0.012233447283506393, -0.03075174242258072, 0.005523635074496269, -0.021854059770703316, -0.1036125123500824, -0.011692105792462826, -0.04034122824668884, -0.02117840386927128, 0.020163871347904205, 0.01107187569141388, 0.027679702267050743, -0.03826487809419632, -0.07027939707040787, 0.0000012711643648799509, 0.005360409617424011, 0.019275760278105736, -0.02440895140171051, 0.035315632820129395, -0.008340224623680115, -0.02996133826673031, 0.0013470925623551011, 0.05085116997361183, -0.0187575314193964, -0.02993053011596203, -0.016047758981585503, -0.007941393181681633, 0.031209994107484818, -0.0099977171048522, 0.012703411281108856, 0.00027894185041077435, 0.06959903985261917, 0.024249548092484474, -0.06056597828865051, 0.008869942277669907, -0.04083346948027611, -0.023195631802082062, -0.0030145749915391207, -0.02557898871600628, 0.010576874017715454, 0.023037778213620186, -0.007905219681560993, -0.0010305206524208188, -0.03459174185991287, 0.0386434905230999, -0.06372042000293732, -0.030729850754141808, 0.001463253633119166, 0.03762426599860191, 0.038534555584192276, 0.03757847100496292, -0.029315557330846786, -0.04265458881855011, 0.027889279648661613, -0.006354361306875944, 0.0005742989014834166, -0.041096024215221405, -0.02224200963973999, -0.008298961445689201, -0.01519803237169981, 0.03179710730910301, 0.024416932836174965, -0.016444696113467216, 0.019461005926132202, 0.022530509158968925, -0.020814307034015656, 0.044562485069036484, -0.025334995239973068, -0.06345340609550476, -0.046430110931396484, 0.02197481505572796, -0.004338868893682957, -0.020824620500206947, 0.017559606581926346, -0.0165560320019722, 0.01337686087936163, 0.036662016063928604, -0.0003550343099050224, 0.020519070327281952, 0.01176852360367775, 0.039061564952135086, 0.012198108248412609, -0.00644136406481266, -0.021599454805254936, 0.007005376275628805, -0.022199124097824097, -0.030960775911808014, -0.0014331715647131205, 0.06466513127088547, -0.008687196299433708, -0.03394665941596031, -0.04003462567925453, 0.007415296509861946, -0.06362541764974594, -0.026434138417243958, -0.011964632198214531, -0.0028502491768449545, 0.04574311524629593, -0.010093075223267078, -0.0025311338249593973, 0.02026313543319702, -0.03517356887459755, 0.0055943988263607025, 0.01821102946996689, -0.03019031323492527, 0.001650093705393374, -0.008440673351287842, 0.0012339875102043152, -0.030789442360401154, 0.0057041943073272705, 0.03849678114056587, 0.049059439450502396, -0.01006549596786499, -0.03526930883526802, 0.0010858143214136362, 0.028557946905493736, 0.058662865310907364, 0.05368015542626381, -0.009350740350782871, -0.016793593764305115, -0.015567876398563385, 0.009811783209443092, -0.012012850493192673, 0.026762455701828003, -0.03195887431502342, 0.0029094202909618616, -0.013152933679521084, -0.06392761319875717, 0.04106676205992699, -0.017722237855196, 0.020160285755991936, 0.04081611707806587, -0.01639649085700512, 0.03130096569657326, -0.02148866467177868, 0.042806774377822876, 0.04064449295401573, -0.06432906538248062, -0.009003687649965286, -0.0007675758679397404, -0.011330540291965008, 0.0016551908338442445, -0.005463697481900454, -0.05747022479772568, -0.02511737309396267, -0.017498580738902092, 0.027825208380818367, -0.044286370277404785, -0.045819059014320374, -0.026419050991535187, 0.00114422885235399, 0.02422143891453743, -0.0003854873066302389, -0.003558215219527483, 0.00252730306237936, -0.01507054828107357, -0.02548619918525219, 0.05482420697808266, -0.0267840176820755, -0.013994446955621243, 0.011017689481377602, -0.01778925210237503, 0.01277258899062872, -0.030999870970845222, 0.0009387017926201224, 0.012295212596654892, -0.028306230902671814, 0.02294616959989071, -0.030496811494231224, -0.005026686005294323, -0.0035583788994699717, 0.03581139072775841, -0.013765167444944382, -0.003936525899916887, -0.05009742081165314, -0.014974212273955345, -0.02903243899345398, 0.014874711632728577, -0.0020957908127456903, 0.021070482209324837, 0.03138243407011032, 0.03918609023094177, -0.0058863176964223385, 0.02519890107214451, -0.014132046140730381, -0.01779934950172901, 0.03798960894346237, -0.04954330995678902, -0.03901117667555809, -0.023471351712942123, -0.05469812825322151, -0.013325794599950314, 0.010435099713504314, 0.007647783495485783, -0.013869374990463257, 0.05101390555500984, 0.03716783598065376, 0.011466171592473984, 0.03518962487578392, 0.008020403794944286, 0.015589134767651558, -0.038514070212841034, -0.015912696719169617, -0.08406616002321243, 0.007335363887250423, 0.02936701662838459, 0.0032732586842030287, 0.017046477645635605, 0.011654142290353775, -0.041328418999910355, 0.013509710319340229, -0.06786682456731796, -0.03360705077648163, 0.028257636353373528, -0.03206760808825493, 0.004810296930372715, -0.00486409105360508, -0.06941217184066772, 0.020879752933979034, 0.018998179584741592, -0.05562029033899307, -0.028136534616351128, -0.0061282021924853325, 0.06318789720535278, -0.005215688142925501, 0.04005786031484604, -0.0016798465512692928, -0.029487427324056625, 0.0653156265616417, 0.015604364685714245, -0.0010820726165547967, 0.027457112446427345, -0.008849136531352997, 0.051124319434165955, 0.04878769442439079, 0.0003435816033743322, 0.0054488698951900005, 0.02000984363257885, -0.002081901067867875, -0.038591381162405014, 0.036295849829912186, 0.012197484262287617, -0.008611617609858513, -0.046868693083524704, 0.07220813632011414, 0.022311650216579437, -0.04152384400367737, -0.04562592878937721, 0.018232936039566994, -0.046837035566568375, -0.014997899532318115, -0.026738634333014488, 0.0027043709997087717, -0.03170427307486534, 0.055955737829208374, -0.02840944193303585, 0.010267827659845352, 0.05918719246983528, -0.010064598172903061, 0.0051575833931565285, 0.005359130445867777, 0.0995519831776619, 0.0841837003827095, 0.05362760275602341, -0.006359513383358717, 0.08314666897058487, -0.026192374527454376, -0.035355255007743835, 0.012568348087370396, 0.0014209817163646221, -0.03203511983156204, -0.0055599813349545, 0.03170420229434967, 0.0643673688173294, -0.024823404848575592, 0.08368254452943802, -0.01694265566766262, -0.02260918729007244, -0.030197644606232643, 0.005481150932610035, 0.025012629106640816, 0.038668710738420486, 0.01956442929804325, 0.049187857657670975, -0.028647081926465034, -0.035282980650663376, 0.029151903465390205, -0.03424236178398132, -0.03105858527123928, 0.03126367926597595, -0.02928083948791027, -0.0005040979012846947, 0.0009019376593641937, 0.018680788576602936, 0.08646370470523834, -0.031133513897657394, 0.034177687019109726, -0.013065211474895477, 0.007475133519619703, 0.002398724900558591, 0.032135605812072754, -0.01445722859352827, 0.002197277033701539, -0.0215308777987957, -0.04435864835977554, -0.005746250040829182, -0.016023989766836166, -0.041989196091890335, 0.026696059852838516, -0.026899859309196472, -0.009568256326019764, 0.040015991777181625, -0.030043845996260643, -0.019746432080864906, -0.05302971228957176, -0.04245571792125702, -0.045203715562820435, -0.07862354069948196, -0.0111703397706151, 0.037422917783260345, 0.004454758018255234, -0.022713154554367065, -0.01662590727210045, -0.0110941082239151, -0.022499484941363335, 0.04574505239725113, -0.05097956582903862, -0.003895836416631937, 0.019280381500720978, 0.01980973407626152, -0.009150278754532337, -0.007166977971792221, 0.05902574211359024, 0.000584265508223325, -0.004001833964139223, -0.010778057388961315, 0.03785042092204094, 0.033134136348962784, 0.016535820439457893, 0.03820944204926491, -0.09797125309705734, 0.00294352974742651, 0.024314681068062782, -0.019415784627199173, -0.07910573482513428, 0.020535532385110855, 0.026632986962795258, -0.014142303727567196, 0.0462617501616478, -0.016945717856287956, -0.00011504961003083736, -0.06760196387767792, -0.002678622491657734, -0.015532827004790306, -0.008453615941107273, 0.031790412962436676, -0.02040899358689785, 0.07865583151578903, 0.04303731024265289, -0.000730035942979157, -0.02668950706720352, -0.023797186091542244, -0.01428303960710764, 0.015537738800048828, -0.03426271677017212, -0.03606946021318436, -0.04049709066748619, -0.10185819864273071, -0.026908433064818382, 0.021693754941225052, -0.02256159856915474, -0.026732919737696648, 0.009780624881386757, 0.008176062256097794, -0.017985664308071136, 0.01722659170627594, -0.025323536247015, 0.012907397001981735, -0.017613543197512627, -0.013472366146743298, -0.028784723952412605, 0.004142795689404011, 0.006208132021129131, 0.028446875512599945, 0.018031831830739975, -0.0654570460319519, 0.01260900218039751, -0.01598517969250679, 0.012046153657138348, 0.05133811756968498, 0.04099120944738388, -0.001771366223692894 ]
[ -0.05390287563204765, -0.014803417958319187, -0.013941752724349499, 0.024505672976374626, 0.08079476654529572, -0.024718374013900757, -0.006055974867194891, 0.0423126257956028, -0.02750471420586109, -0.019236555323004723, 0.004187023267149925, -0.061739541590213776, -0.01908065751194954, 0.031615834683179855, 0.03799977898597717, 0.005184538196772337, -0.02277645654976368, -0.12785562872886658, -0.016802238300442696, 0.07506539672613144, -0.0418555922806263, -0.004990473389625549, -0.0018157796002924442, -0.04665757715702057, 0.018595967441797256, 0.029061751440167427, 0.05682419613003731, 0.0016652477206662297, -0.014870976097881794, -0.17411021888256073, -0.009496861137449741, -0.0032994814682751894, 0.0054792314767837524, -0.02217012271285057, 0.002971467562019825, 0.025836242362856865, 0.03792235627770424, 0.004255387466400862, 0.004038183484226465, 0.05046301335096359, 0.017444754019379616, 0.029073446989059448, -0.01597333885729313, -0.0006327280425466597, 0.041222866624593735, -0.0040667555294930935, -0.024381298571825027, -0.004967241082340479, 0.02771678939461708, -0.010785316117107868, -0.058045465499162674, -0.009744171984493732, -0.0022887466475367546, 0.009186710231006145, 0.008699915371835232, -0.013388668186962605, 0.013411842286586761, 0.037062108516693115, 0.008745088241994381, 0.02311941795051098, 0.03477800637483597, 0.021573523059487343, -0.1354081630706787, 0.1148044615983963, 0.026014043018221855, 0.02401702292263508, -0.05733184143900871, -0.026462439447641373, 0.018520712852478027, 0.0574532076716423, 0.001779648824594915, -0.013186631724238396, -0.04631047323346138, 0.048323825001716614, 0.008599127642810345, 0.019438806921243668, 0.01215862575918436, 0.027681700885295868, 0.02721666730940342, -0.05723939090967178, 0.01032334379851818, 0.05912727490067482, -0.018143799155950546, -0.05025600641965866, -0.01735401153564453, -0.0002850197197403759, -0.017116980627179146, 0.017626391723752022, -0.025716889649629593, 0.039737846702337265, 0.036560457199811935, 0.006039986852556467, 0.09449299424886703, 0.016067253425717354, -0.10113199800252914, -0.0065848794765770435, 0.0032232291996479034, 0.02752120979130268, -0.02158171497285366, 0.4216337203979492, -0.020897282287478447, -0.05487090349197388, 0.05663077533245087, 0.07515736669301987, 0.011135296896100044, -0.002701767720282078, 0.010062767192721367, -0.07323084026575089, 0.04889571666717529, -0.004261378198862076, 0.02660411223769188, 0.002736966824159026, 0.10248416662216187, -0.05258435383439064, 0.01013419684022665, -0.01271503884345293, 0.046626217663288116, 0.019330788403749466, 0.006895979400724173, 0.02750321850180626, -0.015168927609920502, -0.013855447992682457, 0.044507790356874466, -0.022683195769786835, 0.05237027630209923, 0.01493131835013628, 0.028053434565663338, 0.06188257038593292, 0.046184416860342026, -0.0190147552639246, 0.07544862478971481, -0.007202107924968004, -0.03969838470220566, 0.016354812309145927, 0.005459723062813282, -0.016733651980757713, 0.009045321494340897, -0.03473355993628502, 0.0004890997661277652, 0.02581169083714485, -0.012236285954713821, -0.04064469039440155, -0.011510764248669147, -0.021359162405133247, -0.061599764972925186, 0.10403125733137131, 0.008769981563091278, -0.04523162916302681, -0.0170791856944561, -0.04231783375144005, 0.017047731205821037, 0.05427395552396774, 0.013132398016750813, -0.0317978672683239, 0.0051021575927734375, 0.030008001253008842, 0.09121714532375336, -0.02411855384707451, -0.06933486461639404, -0.025611847639083862, 0.01123857032507658, -0.05741896480321884, -0.04579675942659378, 0.0739545077085495, 0.06676097214221954, -0.08996061980724335, -0.03354039043188095, -0.0000772292260080576, 0.06446859240531921, -0.04213058575987816, 0.0266864113509655, 0.007563365623354912, -0.000886402209289372, -0.011329962871968746, 0.05007956549525261, -0.008808399550616741, -0.03517570346593857, 0.009483780711889267, 0.03545133024454117, 0.0038274701219052076, -0.02100420743227005, -0.017215650528669357, -0.05150693282485008, 0.0083828866481781, -0.09020215272903442, -0.06470871716737747, -0.07588754594326019, 0.03180380538105965, 0.009050783701241016, -0.05351400375366211, 0.013135532848536968, -0.03716563805937767, -0.06586919724941254, 0.08886760473251343, -0.039411742240190506, -0.03521963208913803, -0.014965937472879887, 0.014412807300686836, -0.00038453302113339305, -0.05098080262541771, 0.0040214937180280685, -0.009593285620212555, -0.00373454368673265, 0.01897866278886795, -0.05403488501906395, 0.031876225024461746, 0.0707349181175232, -0.04709983989596367, 0.0740346610546112, 0.0319664366543293, -0.010193834081292152, 0.000574436504393816, -0.032133396714925766, 0.01200273260474205, -0.016258379444479942, 0.007152733858674765, -0.0029044682160019875, -0.03904342278838158, 0.005949591286480427, 0.042156919836997986, 0.02109629288315773, -0.01624426804482937, -0.027200447395443916, -0.3501734733581543, -0.06039516255259514, -0.04147364944219589, -0.023003194481134415, 0.009257021360099316, -0.04371127858757973, 0.0024013216607272625, -0.02577259950339794, 0.014691232703626156, 0.033716995269060135, 0.0676693394780159, 0.023726126179099083, 0.024921579286456108, -0.08219753205776215, -0.026007723063230515, 0.035134632140398026, 0.017839988693594933, -0.027486175298690796, -0.03696121275424957, 0.0043569705449044704, 0.001175330369733274, -0.028498653322458267, -0.021552782505750656, -0.05241371691226959, -0.00023157599207479507, -0.0467219278216362, 0.13776187598705292, 0.030288122594356537, 0.022439243271946907, -0.02826155163347721, 0.011386028490960598, -0.016227779909968376, 0.020724350586533546, -0.11516376584768295, 0.0032509395387023687, -0.036995675414800644, 0.013754897750914097, -0.0031207758001983166, -0.04011497274041176, -0.03131471946835518, -0.05268767476081848, -0.006963803898543119, -0.02924223616719246, -0.016436917707324028, -0.06280989199876785, 0.025133328512310982, -0.021574120968580246, 0.004813498351722956, -0.027525892481207848, 0.080084890127182, 0.02291373908519745, 0.010417931713163853, -0.0008314151782542467, 0.02428586035966873, -0.008226056583225727, -0.014999746344983578, -0.06848857551813126, 0.011579811573028564, 0.005080443806946278, 0.02498582936823368, 0.01918167620897293, 0.050556328147649765, 0.037132780998945236, -0.07128861546516418, -0.014059371314942837, 0.013242040760815144, -0.013316861353814602, 0.006979582831263542, 0.05465906858444214, -0.01371804066002369, -0.038456909358501434, 0.13631995022296906, -0.030413508415222168, -0.004341255407780409, 0.02590116672217846, 0.03983752429485321, -0.0027046699542552233, 0.017869701609015465, 0.00025087856920436025, -0.007132245227694511, 0.05261916294693947, -0.05513415113091469, 0.01618974097073078, -0.0018378137610852718, -0.0103518171235919, 0.02476746216416359, -0.027381373569369316, -0.04291517287492752, 0.04528757929801941, 0.016172684729099274, -0.004070996306836605, -0.009904398582875729, -0.023250147700309753, -0.09678064286708832, 0.048705220222473145, -0.012479856610298157, -0.2395012378692627, 0.03964003175497055, 0.05567248538136482, 0.06848204135894775, -0.006676376331597567, -0.0021039710845798254, 0.01698494888842106, -0.031099408864974976, 0.029962118715047836, 0.016028013080358505, 0.04581545665860176, 0.028138356283307076, 0.01981227472424507, 0.016536464914679527, -0.009728309698402882, -0.013214546255767345, 0.0009488392388448119, -0.015620479360222816, 0.0264264103025198, -0.008903253823518753, 0.01993018016219139, -0.048321738839149475, 0.15501409769058228, 0.05209529399871826, -0.012821285985410213, 0.028540058061480522, -0.008971696719527245, 0.034028586000204086, 0.026899676769971848, 0.008557208813726902, -0.0018101653549820185, 0.0006843290175311267, -0.016526510939002037, 0.017096087336540222, 0.0378590002655983, -0.06803273409605026, -0.01811433583498001, 0.04468192905187607, 0.025624210014939308, -0.011659221723675728, -0.007856213487684727, 0.04829104617238045, -0.021119309589266777, 0.026513664051890373, 0.08637849241495132, -0.03206152468919754, -0.0100944172590971, -0.043043892830610275, -0.05382959544658661, -0.004905015230178833, -0.045342955738306046, -0.05301259458065033, -0.00420768465846777, 0.004770683124661446, 0.014205253683030605, 0.05845830217003822, 0.051372237503528595, -0.042202144861221313, 0.02307962253689766, -0.016707317903637886, -0.009834988974034786, -0.043849050998687744, 0.05979596823453903, 0.01182409655302763, 0.012894641607999802 ]
[ 0.03852399066090584, 0.01898973435163498, 0.0031718267127871513, -0.008792665787041187, 0.009448323398828506, -0.018888438120484352, 0.011321984231472015, 0.03052465431392193, -0.020351719111204147, 0.011901648715138435, 0.01585925742983818, 0.013107752427458763, 0.04102202504873276, 0.037174854427576065, -0.013693480752408504, -0.011904292739927769, -0.0010835702996701002, -0.012250769883394241, 0.03666796162724495, 0.022215640172362328, -0.02446109615266323, 0.035213761031627655, -0.004035834223031998, -0.014494012109935284, -0.03480791673064232, 0.011208519339561462, -0.03910740837454796, 0.023102760314941406, 0.02310330606997013, -0.1168965995311737, -0.022163325920701027, -0.02330748736858368, 0.009984009899199009, -0.014325938187539577, -0.025276923552155495, -0.008953619748353958, 0.03232036530971527, -0.005453415680676699, -0.003072064835578203, 0.035109180957078934, 0.020588310435414314, -0.0057861641980707645, 0.005405556410551071, 0.025658298283815384, 0.0021176848094910383, -0.007038821466267109, -0.06211698427796364, -0.016086291521787643, 0.02541339583694935, 0.014206578955054283, -0.051166146993637085, -0.04940563812851906, -0.011541040614247322, -0.0002709737455006689, -0.004269767552614212, 0.00141484709456563, -0.05942784994840622, -0.0332069918513298, -0.009753309190273285, 0.01529174204915762, 0.013434176333248615, 0.012454739771783352, -0.03181792423129082, -0.01978839747607708, 0.002938285004347563, -0.024149030447006226, 0.00008315899322042242, 0.0007378357113339007, -0.00015463055751752108, 0.037236012518405914, -0.014464606530964375, 0.05882821977138519, -0.07002563774585724, -0.04745393246412277, -0.03258538991212845, 0.02313082665205002, 0.02294890023767948, -0.015690762549638748, -0.03221782296895981, -0.01615303009748459, -0.004352261777967215, 0.0338340699672699, 0.041579656302928925, -0.006589276250451803, -0.032728783786296844, 0.00940780434757471, 0.00002965936619148124, -0.014449306763708591, 0.006140842102468014, -0.00035894307075068355, -0.006404034793376923, -0.011953108012676239, 0.0039633167907595634, -0.002653737086802721, -0.0705062597990036, -0.015491149388253689, 0.035262737423181534, -0.007858728989958763, -0.006186422426253557, 0.8437106609344482, -0.017021844163537025, -0.04889323562383652, 0.0215113777667284, 0.015009727329015732, 0.02091764658689499, -0.0260347668081522, 0.020056776702404022, -0.0029664812609553337, 0.009549840353429317, 0.005131714511662722, -0.0188225656747818, 0.04843170940876007, 0.027012379840016365, 0.01826169341802597, 0.010382263921201229, 0.03096351958811283, -0.01088688150048256, -0.03352015092968941, -0.010159064084291458, 0.02523346059024334, 0.015435864217579365, 0.00573581550270319, -0.006925084628164768, -0.01087635476142168, 0.009802930988371372, -0.16182941198349, 0.02874712273478508, -6.892621328641872e-33, 0.0459037646651268, -0.028654959052801132, 0.05835900083184242, 0.018564313650131226, 0.032255299389362335, 0.011550645343959332, -0.014468959532678127, -0.03291599825024605, -0.027309518307447433, -0.022923406213521957, -0.025053156539797783, 0.0060003940016031265, 0.01846279762685299, 0.024605441838502884, -0.009651483036577702, -0.013243225403130054, 0.008082142099738121, 0.03672095015645027, -0.015377100557088852, 0.021555354818701744, 0.03299053758382797, 0.0042817783541977406, -0.0066372426226735115, 0.05956186354160309, 0.0038680857978761196, 0.027645237743854523, -0.03533326834440231, -0.002792402869090438, 0.040205564349889755, -0.053320009261369705, -0.04600973799824715, 0.036645106971263885, -0.0020503129344433546, -0.02838614024221897, -0.016665754839777946, -0.061679113656282425, -0.03826725482940674, -0.0023349777329713106, -0.03162271901965141, -0.04666684940457344, 0.031364355236291885, 0.003112945705652237, -0.023140542209148407, -0.005730664823204279, -0.020808732137084007, -0.018856655806303024, -0.03038535639643669, 0.01762973703444004, -0.0058858320116996765, 0.019837727770209312, -0.006969118490815163, 0.01853795163333416, -0.03197009861469269, 0.0059246462769806385, -0.05145050585269928, 0.009891647845506668, -0.013209437020123005, 0.014109129086136818, -0.03837497904896736, 0.012006682343780994, 0.01877901889383793, 0.01012092549353838, 0.012856120243668556, 0.029261194169521332, 0.01013648509979248, -0.021844075992703438, 0.026290878653526306, -0.007451166864484549, -0.013591273687779903, 0.03694920986890793, -0.06632009148597717, 0.036946237087249756, -0.018575960770249367, -0.029366903007030487, 0.025436706840991974, -0.050111934542655945, 0.0035141431726515293, -0.028149573132395744, -0.019738947972655296, 0.029187919571995735, -0.02217068150639534, -0.010898837819695473, 0.016100002452731133, -0.014404088258743286, -0.021949414163827896, -0.027934573590755463, 0.02675830014050007, 0.025316772982478142, 0.007668045349419117, 0.010863694362342358, 0.019092924892902374, 0.027194662019610405, -0.0004140350501984358, -0.015441919676959515, -0.031420525163412094, 6.617358020561725e-33, 0.00011302601342322305, -0.01738693378865719, 0.010746808722615242, 0.01261573750525713, 0.016286561265587807, 0.02332543581724167, 0.04030537232756615, 0.0224780086427927, -0.027459895238280296, 0.003875842085108161, -0.002663960214704275, 0.016090869903564453, -0.03256383165717125, 0.03889257088303566, 0.06881994754076004, 0.003956282045692205, 0.004251723177731037, -0.018752245232462883, -0.007646574638783932, 0.01857149414718151, -0.03113734722137451, 0.01187634002417326, -0.0029979757964611053, 0.01145591214299202, 0.04321780428290367, 0.04520502686500549, 0.006859727669507265, 0.0011075311340391636, -0.026897409930825233, -0.0038891618605703115, -0.039488889276981354, -0.014741333201527596, -0.0014052047627046704, -0.0031936883460730314, -0.020566172897815704, 0.023560287430882454, -0.0077425758354365826, 0.0016427001683041453, -0.009706486016511917, -0.014913673512637615, 0.009102832525968552, 0.011935924179852009, -0.05150827765464783, 0.02561742067337036, 0.006121168378740549, 0.031096244230866432, -0.003237254684790969, 0.020211881026625633, 0.0019354355754330754, 0.04142965003848076, -0.009473754093050957, 0.00996833760291338, 0.022910982370376587, 0.024060411378741264, -0.0005867299041710794, -0.048669639974832535, -0.00817591417580843, 0.005507184192538261, -0.02796383760869503, 0.014391808770596981, -0.021834487095475197, 0.004198937211185694, -0.05319976061582565, 0.0010835012653842568, -0.03225546330213547, -0.022834384813904762, -0.012521632947027683, -0.004220095928758383, 0.011038760654628277, -0.022245319560170174, 0.015231620520353317, 0.02019927278161049, 0.014113557524979115, 0.020804667845368385, 0.04556109756231308, -0.02275572344660759, -0.013335048221051693, -0.020786259323358536, -0.03640267997980118, 0.015370489098131657, 0.008413970470428467, -0.008946429006755352, 0.03294189274311066, 0.009401507675647736, 0.018895937129855156, 0.020656945183873177, -0.01160736009478569, 0.022999446839094162, -0.0024482833687216043, 0.012462696991860867, 0.005508975591510534, -0.056492239236831665, -0.011416230350732803, 0.010939889587461948, -0.007589029613882303, -1.2627866752268346e-8, 0.006809848360717297, -0.010423725470900536, 0.004077944904565811, 0.00871348474174738, 0.0009898346615955234, 0.042644377797842026, -0.008748256601393223, 0.035831477493047714, 0.000013950768334325403, 0.05532697215676308, 0.04421151429414749, -0.007689434569329023, 0.019040999934077263, -0.0026554910000413656, 0.01638204976916313, -0.011688809841871262, -0.012954453006386757, 0.02757606841623783, 0.014617698267102242, -0.02279549650847912, -0.017174914479255676, 0.021305125206708908, -0.0014274615095928311, -0.013699119910597801, 0.008416470140218735, -0.007567926310002804, 0.03007890097796917, -0.08888331800699234, -0.028286360204219818, -0.03945920616388321, -0.030620785430073738, -0.03531888127326965, -0.03277038782835007, 0.021498946473002434, -0.04368460923433304, -0.020740078762173653, 0.03958716243505478, 0.03166733682155609, 0.026530245319008827, 0.015896832570433617, 0.01337005477398634, 0.004778129048645496, -0.03866799175739288, -0.044522080570459366, -0.04200466349720955, 0.006870504468679428, -0.01652798429131508, 0.012153965421020985, 0.05154634267091751, -0.008514477871358395, -0.0007963377865962684, 0.02074727602303028, 0.02900630794465542, 0.04804890602827072, 0.007384312804788351, 0.0018630344420671463, 0.009715955704450607, -0.023252401500940323, -0.01228802464902401, -0.00853899959474802, -0.008654127828776836, -0.013874370604753494, 0.009222373366355896, -0.012608321383595467 ]
quick-graph-covid-19-taxonomy
https://markhneedham.com/blog/2020/04/21/quick-graph-covid-19-taxonomy
false
2020-04-13 00:21:00
React Semantic-UI: Adding a custom icon to open link in a new window
[ "react", "semantic-ui" ]
[ "react" ]
I've been building a little React app that uses the https://react.semantic-ui.com/[Semantic UI^] library and found myself wanting to render a custom icon. Semantic UI describes an https://react.semantic-ui.com/elements/icon/[icon^] as "a glyph used to represent something else", and there are a big list of in built icons. For example, the following code renders a thumbs up icon: [source,javascript] ---- import {Icon} from "semantic-ui-react"; <Icon name="thumbs up outline icon green large" style={{margin: 0}}/> ---- image::{{<siteurl>}}/uploads/2020/04/thumbs-up.png[title="Thumbs Up Icon"] I wanted to add an icon to indicate that a link would open in a new window, and came across this https://github.com/Semantic-Org/Semantic-UI-React/issues/931[GitHub issue^] that explains how to add a custom icon. Instead of using the `name` property, we can use the `className` property to have a icon render based on our own CSS. Ruard van Elburg explained how to render an open in new window icon in https://stackoverflow.com/a/61104675/1093511[this StackOverflow answer^]. We'll first add the following CSS: [source,css] ---- i.icon.open-new-window:after { content: "\f35d"; } ---- And then can use the `open-new-window` class to render our icon: [source,javascript] ---- <a href="https://www.neo4j.com" target="_blank"> <Icon className="open-new-window black"/> </a> ---- image::{{<siteurl>}}/uploads/2020/04/open-window.png[title="Open Window Icon"] And we're done!
Learn how to render a custom icon when using React Semantic-UI.
null
[ -0.0004395674623083323, 0.0004098437784705311, 0.004708843305706978, 0.0317617692053318, 0.08724960684776306, 0.01140065211802721, 0.013621529564261436, 0.0373501218855381, -0.004380010534077883, -0.03790374845266342, -0.028758935630321503, -0.022760333493351936, -0.08979290723800659, 0.007387111429125071, 0.0006258076173253357, 0.041168902069330215, 0.07266245037317276, 0.02322039194405079, -0.004447734449058771, 0.03499296307563782, 0.027669211849570274, 0.08126654475927353, -0.020856553688645363, 0.015213027596473694, 0.02247791178524494, 0.01521027460694313, 0.0016598667716607451, -0.0197224672883749, -0.07824242115020752, 0.012040446512401104, 0.03420691937208176, 0.00039565173210576177, -0.02505197934806347, -0.02964765578508377, 0.007325897458940744, -0.0038371244445443153, -0.040848396718502045, 0.003435955848544836, -0.005461340770125389, 0.01961234025657177, -0.0625993087887764, 0.02793797105550766, 0.0070830173790454865, -0.01938755065202713, -0.022761641070246696, 0.008133226074278355, -0.05236917361617088, 0.02540508098900318, 0.0002793899329844862, 0.025275355204939842, -0.058774977922439575, 0.014998444356024265, -0.03444695100188255, -0.004105200059711933, 0.0005062383715994656, 0.03832387924194336, 0.012618756853044033, -0.053231291472911835, 0.01746743731200695, -0.04243643209338188, 0.007855773903429508, 0.003890752326697111, 0.02488434687256813, 0.04260490462183952, -0.00027085072360932827, -0.039416614919900894, -0.025649012997746468, 0.06024091690778732, -0.06211915612220764, -0.03965643420815468, 0.010930992662906647, -0.010546725243330002, -0.051695384085178375, -0.01652788370847702, 0.025468602776527405, -0.033497460186481476, -0.006189868785440922, 0.04747271165251732, -0.009355507791042328, 0.020864000543951988, -0.021643763408064842, 0.042256806045770645, 0.020347386598587036, 0.022293075919151306, -0.03779805451631546, -0.03530431166291237, -0.032641831785440445, -0.005454198457300663, -0.022107722237706184, 0.05889234319329262, 0.030536027625203133, -0.06155245751142502, 0.04035729542374611, 0.01284774299710989, 0.012144215404987335, 0.019631611183285713, -0.02035480923950672, 0.003997171763330698, -0.021176019683480263, 0.008505766279995441, -0.038971707224845886, -0.019237404689192772, -0.01082330010831356, 0.006605876609683037, -0.07262096554040909, 0.0030903902370482683, -0.0192047618329525, -0.03761235624551773, -0.0014592937659472227, -0.008733944967389107, -0.02399573288857937, 0.024165840819478035, -0.010259918868541718, 0.004005874041467905, -0.05520475655794144, 0.08144094794988632, 0.024500016123056412, -0.0079542500898242, -0.011389815248548985, 0.03255750238895416, 0.03567659854888916, 0.07155248522758484, -0.011416882276535034, 0.06141624227166176, 0.027289317920804024, 0.032416604459285736, -0.03274569660425186, 0.06015010550618172, -0.03686979040503502, -0.08177455514669418, 0.0010567557765170932, 0.06561560928821564, -0.025130577385425568, -0.005160098895430565, -0.004758009221404791, 0.03858952596783638, 0.022029120475053787, -0.014471469447016716, 0.07931671291589737, 0.013901732861995697, -0.027158627286553383, -0.04785602539777756, -0.006591503042727709, -0.027704237028956413, 0.027864674106240273, -0.010836496949195862, 0.014189519919455051, -0.023684559389948845, -0.021770576015114784, 0.036510780453681946, 0.04311418533325195, 0.006875454913824797, 0.06017642095685005, -0.016237681731581688, 0.008404914289712906, 0.11215440183877945, 0.044083405286073685, -0.003133188234642148, 0.013080271892249584, -0.008523158729076385, 0.06143037602305412, 0.00720186298713088, 0.01921680197119713, 0.04561365768313408, -0.024840671569108963, 0.011916490271687508, -0.012816289439797401, 0.04472963884472847, -0.005349212326109409, -0.03502245992422104, -0.0387096032500267, -0.05714059993624687, 0.060818035155534744, -0.005912566091865301, 0.030439957976341248, 0.06083578243851662, 0.10261542350053787, 0.016952810809016228, 0.022276420146226883, 0.01949106529355049, -0.08099811524152756, 0.02794797718524933, 0.015241467393934727, 0.014209548942744732, 0.026198245584964752, -0.0058770510368049145, 0.07196067273616791, 0.027572104707360268, 0.007284825202077627, 0.02427707053720951, -0.068382628262043, -0.04085279256105423, -0.05042083561420441, -0.014275121502578259, 0.08969136327505112, -0.019283128902316093, -0.045903053134679794, 0.05639071390032768, 0.02097262442111969, 0.04308648407459259, 0.004313957877457142, -0.0032024614047259092, 0.020050711929798126, -0.03887496143579483, -0.04805333912372589, -0.009580940008163452, 0.036107685416936874, -0.02159021981060505, -0.048146963119506836, 0.018689800053834915, -0.021227538585662842, -0.01866617426276207, 0.05481114238500595, -0.010953343473374844, 0.04427009075880051, -0.011668556369841099, 0.041598543524742126, -0.04448511078953743, 0.010709361173212528, -0.031459055840969086, 0.0372096411883831, -0.018371326848864555, -0.012214845977723598, -0.025250589475035667, -0.021093647927045822, 0.09749088436365128, 0.023086460307240486, -0.055913396179676056, -0.026761947199702263, 0.006266091018915176, -0.013007626868784428, -0.05672619119286537, 0.008608493953943253, -0.01578938402235508, -0.023966820910573006, -0.015462689101696014, -0.010290705598890781, -0.01099251490086317, 0.020645206794142723, -0.060762565582990646, 0.0003681556845549494, 0.073615662753582, -0.05145975574851036, 0.049534570425748825, -0.008532029576599598, -0.03917762637138367, 0.0269654281437397, -0.03748878091573715, -0.04886952415108681, 0.006027196068316698, 0.010273808613419533, 0.0019789347425103188, 0.009766328148543835, -0.05549640208482742, -0.010856720618903637, -0.0035868629347532988, -0.02824871987104416, 0.0382147841155529, -0.0021400817204266787, 0.06424088776111603, 0.005737164989113808, 0.030544966459274292, -0.030636433511972427, 0.005709050223231316, -0.028753943741321564, -0.04783590883016586, -0.029729247093200684, 0.014199660159647465, 0.011906118132174015, 0.023822342976927757, -0.0052628587000072, 0.009029211476445198, 0.015897737815976143, -0.014736863784492016, 0.01597253791987896, 0.0004180246905889362, 0.023244116455316544, -0.002170517109334469, -0.0141609450802207, -0.016818562522530556, -0.03401370719075203, 0.022047679871320724, -0.033084768801927567, -0.03977702930569649, 0.010142561979591846, -0.037770938128232956, 0.04086156189441681, -0.08918707817792892, -0.06444360315799713, -0.021706722676753998, 0.05058958753943443, 0.016213826835155487, 0.002632664516568184, 0.048245497047901154, 0.05552246421575546, 0.004828924313187599, 0.013261628337204456, 0.01686922460794449, -0.029198534786701202, 0.057701945304870605, -0.006743193604052067, 0.013365824706852436, 0.055658113211393356, -0.04104657843708992, 0.014927849173545837, -0.04821334779262543, 0.03781788423657417, -0.023737996816635132, -0.2676161527633667, 0.01930101215839386, 0.008364969864487648, -0.017706649377942085, 0.00014852930326014757, -0.011304503306746483, -0.005224887747317553, -0.023813890293240547, 0.014236870221793652, 0.02088235318660736, -0.009047149680554867, -0.047763191163539886, -0.019062703475356102, 0.023870401084423065, -0.02322407439351082, 0.0018550412496551871, 0.025565098971128464, -0.03752605989575386, -0.02285761386156082, 0.006291578523814678, -0.01637754961848259, -0.05602214112877846, -0.00252977991476655, 0.0666721910238266, 0.02461116947233677, 0.012919465079903603, -0.0776500552892685, 0.04354747757315636, -0.02198357693850994, -0.021589370444417, 0.01922766864299774, -0.012471720576286316, 0.006273800972849131, 0.014114596880972385, -0.0053290328942239285, -0.031648293137550354, 0.03763013333082199, -0.019286472350358963, -0.009241270832717419, -0.005957704968750477, 0.005411719437688589, -0.021088555455207825, -0.003700442146509886, 0.007237220648676157, 0.06915901601314545, -0.021266894415020943, -0.08220623433589935, -0.019736675545573235, -0.06301118433475494, 0.0849195197224617, -0.03254909813404083, -0.04841035231947899, -0.0071864924393594265, 0.058904219418764114, 0.0007213272037915885, -0.02542032115161419, 0.016427597030997276, 0.006186097394675016, -0.07708650827407837, -0.03269349783658981, -0.011186505667865276, -0.014370202086865902, -0.04022635892033577, -0.022405052557587624, 0.0075143552385270596, -0.07310345023870468, -0.07145412266254425, -0.03737577423453331, 0.060059987008571625, 0.024348154664039612, -0.04316607862710953, -0.008302498608827591, 0.0032639808487147093, -0.11042042076587677, 0.01933256722986698, -0.02235075645148754, -0.02146751992404461, -0.021545978263020515, -0.012652442790567875, 0.04353842884302139, -0.03744311258196831, -0.016358524560928345, 0.029887497425079346, 0.014164826832711697, -0.01634875498712063, 0.03251625597476959, 0.04532715678215027, -0.00804725382477045, -0.017797989770770073, 0.016339726746082306, 0.07937601953744888, -0.0077291931957006454, -0.05616600811481476, -0.02070554904639721, -0.00945034809410572, 0.018072543665766716, 0.023997146636247635, -0.014719629660248756, 0.02852342277765274, 0.06792682409286499, 0.05184559524059296, -0.03679056465625763, 0.004720277152955532, 0.011124101467430592, -0.020698368549346924, 0.030225060880184174, -0.04413029924035072, 0.005290007218718529, 0.040379270911216736, 0.019351089373230934, -0.01588495448231697, -0.04911351576447487, -0.0026457069907337427, -0.04468919336795807, -0.037154216319322586, 0.012077469378709793, 0.025344830006361008, 0.029535207897424698, -0.002825068077072501, -0.0024412255734205246, -0.034921299666166306, 0.030067645013332367, -0.0024005230516195297, -0.021974151954054832, -0.0769687294960022, -0.025661462917923927, -0.010278122499585152, 0.015771428123116493, 0.0037054794374853373, 0.018840624019503593, -0.004871878307312727, 0.013314287178218365, -0.017290649935603142, -0.05485733970999718, 0.03511074185371399, -0.001270597567781806, -0.012945008464157581, -0.04510677233338356, 0.02770363725721836, -0.008435510098934174, -0.007345365826040506, 0.033670779317617416, 0.05204617977142334, 0.02052736096084118, 0.05049147084355354, -0.0012225484242662787, 0.026783989742398262, -0.0019954072777181864, -0.02269197255373001, 0.004734834656119347, -0.004916201811283827, -0.056042298674583435, 0.0022515261080116034, -0.04373244568705559, -0.031585901975631714, -0.03236743062734604, 0.025327926501631737, -0.03356289491057396, -0.0014723223866894841, -0.03517727926373482, 0.016228768974542618, -0.05627892538905144, 0.0005942427087575197, -0.0036353287287056446, 0.022346628829836845, 0.05377155542373657, 0.027826625853776932, 0.031459078192710876, -0.018235618248581886, -0.00948531273752451, 0.013619296252727509, 0.03670027479529381, -0.031791284680366516, -0.021780915558338165, -0.015021239407360554, 0.0025126461405307055, -0.008630262687802315, 0.016469094902276993, 0.04770035669207573, 0.024383405223488808, -0.007984204217791557, -0.013299928046762943, 0.04031752049922943, 0.0031965647358447313, 0.035917844623327255, -0.012584423646330833, -0.02633320540189743, 0.011927463114261627, -0.039276059716939926, -0.02812768705189228, -0.013207757845520973, -0.005313098896294832, -0.02875509299337864, 0.0007168849115259945, -0.025964561849832535, -0.08596859872341156, -0.016911666840314865, -0.0004648943431675434, 0.0397656112909317, 0.0014889028389006853, -0.0052044084295630455, 0.02144869603216648, -0.07105255126953125, 0.05353184789419174, 0.04081055894494057, -0.05834713578224182, 0.019938360899686813, 0.015803208574652672, 0.012714947573840618, -0.0034424776677042246, 0.02439572662115097, -0.09206152707338333, -0.02769561856985092, 0.00628126785159111, 0.026035185903310776, -0.023285994306206703, -0.029316553846001625, -0.05556746944785118, -0.00635376526042819, -0.007585084065794945, 0.008829390630126, -0.0023294498678296804, -0.004888109862804413, -0.004038294777274132, 0.01946513168513775, -0.01624276302754879, -0.010391509160399437, -0.019034963101148605, 0.01323489099740982, -0.019041506573557854, 0.03366359695792198, 0.002132552210241556, 0.024714849889278412, 0.04029270261526108, 0.001154699712060392, -0.007635465357452631, -0.03409494459629059, -0.016431517899036407, 0.03425837680697441, 0.05897174030542374, -0.025917476043105125, -0.018008649349212646, -0.051595013588666916, -0.0030037593096494675, 0.0207764133810997, -0.01386355608701706, -0.030893975868821144, 0.007102289702743292, 0.008469300344586372, 0.040901754051446915, -0.014805522747337818, -0.0012035020627081394, -0.016721375286579132, -0.030832605436444283, 0.06216232851147652, -0.08806172013282776, -0.024734793230891228, 0.01529360469430685, -0.055425748229026794, 0.031913869082927704, 0.013331454247236252, 0.038794681429862976, -0.04269435629248619, 0.04439673200249672, 0.028101298958063126, 0.015018172562122345, 0.015411147847771645, -0.014205380342900753, 0.029626963660120964, -0.016155563294887543, 0.023187095299363136, -0.07553659379482269, 0.03551193326711655, 0.02290487103164196, -0.02603515051305294, -0.02883296087384224, -0.005858415737748146, -0.03044717386364937, 0.06897268444299698, -0.033668745309114456, -0.022087201476097107, 0.04495333135128021, -0.013590674847364426, 0.013116269372403622, 0.012544124387204647, -0.04658008739352226, 0.05485060065984726, 0.03633895143866539, -0.02024303935468197, -0.03448028117418289, -0.025022726505994797, 0.0670490637421608, -0.017432399094104767, 0.04727070778608322, -0.03201298788189888, 0.016897233203053474, 0.07528761774301529, 0.015202322043478489, 0.018229003995656967, 0.043165240436792374, -0.01632847636938095, 0.033179037272930145, -0.004751214757561684, 0.0181858129799366, -0.0034193159081041813, 0.037398431450128555, 0.008295885287225246, -0.066869355738163, 0.030255403369665146, -0.0019906330853700638, -0.01717890426516533, -0.0642581433057785, 0.06837541610002518, 0.012692277319729328, -0.009799754247069359, -0.008154874667525291, 0.035340286791324615, -0.04086511209607124, -0.004409452434629202, -0.02684323862195015, -0.020551668480038643, -0.04439767450094223, 0.052216432988643646, -0.0003450708172749728, 0.002578527433797717, 0.07716308534145355, -0.0013992672320455313, 0.018028635531663895, -0.011910385452210903, 0.07517869770526886, 0.09283046424388885, 0.05976707488298416, 0.006728496868163347, 0.07770273089408875, -0.012028801254928112, -0.06545180082321167, 0.0053917719051241875, -0.028595587238669395, -0.01723862998187542, -0.026003398001194, -0.00973733700811863, 0.0509767159819603, -0.023375092074275017, 0.06341585516929626, -0.025967374444007874, -0.025527294725179672, -0.00989028625190258, -0.0012516692513599992, 0.0062400600872933865, 0.029211165383458138, 0.02215823344886303, 0.02842358499765396, -0.01872953213751316, -0.020915640518069267, 0.03647748753428459, -0.04227388650178909, -0.017418012022972107, 0.018751677125692368, -0.013339695520699024, 0.013566565699875355, 0.00347247626632452, 0.04472096636891365, 0.08260072767734528, -0.03388729691505432, -0.04543931409716606, 0.008394925855100155, 0.004983384162187576, 0.040762219578027725, 0.025286439806222916, -0.022825149819254875, 0.005699456203728914, -0.012999484315514565, -0.008643618784844875, 0.0004960594233125448, -0.010060219094157219, -0.012055321596562862, 0.07637389004230499, -0.0314149484038353, -0.01012447290122509, 0.004930943250656128, -0.029325595125555992, -0.03304417058825493, -0.041918717324733734, -0.058869875967502594, -0.05671680346131325, -0.0414087250828743, -0.0038357835728675127, 0.024036437273025513, 0.023183494806289673, -0.03347114101052284, -0.03507108986377716, -0.001471143215894699, 0.0026655499823391438, 0.04242609813809395, -0.0322125144302845, -0.019806422293186188, 0.022553449496626854, 0.023131346330046654, 0.006608054507523775, 0.026086756959557533, 0.05484212934970856, -0.014060595072805882, -0.010996515862643719, -0.030421696603298187, 0.0019568861462175846, 0.027142148464918137, 0.016955789178609848, 0.02118600532412529, -0.08485758304595947, 0.030455224215984344, -0.010314805433154106, -0.015932437032461166, -0.0608791746199131, 0.02578474022448063, 0.02082235738635063, -0.024140721186995506, 0.08394277840852737, -0.00205559772439301, 0.030061624944210052, -0.045881759375333786, -0.002029884373769164, -0.004812412429600954, 0.02858171984553337, 0.05421031638979912, -0.022600002586841583, 0.10346995294094086, 0.018017401918768883, -0.00563593627884984, -0.012582289054989815, -0.02054852992296219, -0.04003719985485077, -0.0013029350666329265, -0.04166799038648605, 0.008307652547955513, -0.04241029545664787, -0.07796615362167358, -0.03611203655600548, 0.01870601996779442, -0.009049429558217525, -0.045028477907180786, -0.004591721575707197, 0.02375234104692936, -0.051367778331041336, 0.0347483865916729, -0.05658135935664177, 0.0180120300501585, -0.007702474016696215, 0.02413499914109707, 0.0107794851064682, 0.0289328433573246, 0.0021023587323725224, -0.018006587401032448, 0.034453924745321274, -0.0027942045126110315, 0.005354645196348429, -0.013558562844991684, -0.0005947822355665267, 0.03543372079730034, 0.01991514302790165, 0.019939351826906204 ]
[ -0.04364202916622162, -0.020326659083366394, -0.023628536611795425, 0.0009374165674671531, 0.025387678295373917, -0.010310975834727287, -0.008071387186646461, 0.037910934537649155, 0.014973390847444534, -0.02440987341105938, -0.004528400953859091, -0.05735545605421066, -0.0030018906109035015, 0.0005325212841853499, 0.07541006803512573, 0.008919375948607922, 0.007141204085201025, -0.0330238938331604, -0.0433376245200634, 0.04519478231668472, 0.043580811470746994, -0.0028816608246415854, -0.028500821441411972, -0.043907955288887024, 0.0042102704755961895, 0.03221723064780235, 0.05392885580658913, -0.015919890254735947, 0.032865699380636215, -0.18107181787490845, -0.01780160702764988, -0.031206129118800163, 0.01574818231165409, -0.010940604843199253, -0.011618824675679207, 0.016200043261051178, 0.02084466814994812, 0.03039715252816677, 0.016007199883461, 0.03088049218058586, -0.005995274521410465, 0.031111860647797585, -0.06807459890842438, -0.03653046488761902, 0.04692604020237923, -0.000801468500867486, -0.04164290428161621, -0.035497985780239105, -0.03369549289345741, 0.04622946307063103, -0.04141191393136978, -0.008021406829357147, 0.006983407307416201, 0.001184181310236454, -0.002909284085035324, 0.06899267435073853, 0.027955174446105957, 0.026848172768950462, 0.012039869092404842, 0.0433051697909832, 0.011153116822242737, -0.004034927114844322, -0.10675787180662155, 0.12657301127910614, 0.05302857980132103, 0.031202193349599838, -0.060464419424533844, -0.0068981279619038105, -0.0073169926181435585, 0.06844527274370193, 0.0012392668286338449, -0.015021671541035175, -0.017458951100707054, 0.060149870812892914, 0.029613714665174484, -0.050520800054073334, 0.003995960112661123, 0.02742147445678711, 0.010046407580375671, -0.06623382866382599, -0.07549453526735306, -0.022043148055672646, -0.04354517161846161, -0.008746699430048466, 0.0021988649386912584, 0.034375760704278946, -0.023840753361582756, 0.04523799940943718, 0.027608247473835945, 0.07099989801645279, 0.02122211642563343, -0.05613300949335098, 0.03388761729001999, -0.0009926067432388663, -0.08003005385398865, -0.003400664310902357, -0.021358292549848557, 0.00858301017433405, -0.03370746970176697, 0.3952186107635498, -0.026319803670048714, -0.035446953028440475, 0.05884165316820145, -0.004695668816566467, 0.008171330206096172, 0.0023760495241731405, 0.026187457144260406, -0.01591149903833866, 0.0011246602516621351, -0.008557364344596863, 0.01296344306319952, -0.008380214683711529, 0.025757040828466415, -0.08400437980890274, -0.002827590564265847, -0.0168045274913311, -0.01976936124265194, 0.0028518284671008587, 0.017777837812900543, -0.021068831905722618, -0.0016217641532421112, 0.015433667227625847, 0.01493377611041069, -0.029860639944672585, 0.007351044099777937, 0.033853158354759216, 0.03540966659784317, 0.030573876574635506, -0.00004738081042887643, 0.06880459189414978, 0.022692875936627388, -0.0018064638134092093, -0.016272731125354767, 0.02184474654495716, 0.00548252509906888, 0.06172287464141846, 0.0487738661468029, -0.01968957670032978, -0.009854959324002266, 0.07639256119728088, 0.0030338733922690153, -0.028781168162822723, 0.016915777698159218, -0.007322815712541342, 0.004417929798364639, 0.08763892203569412, -0.03189818933606148, -0.007769982796162367, -0.0384976752102375, 0.017543639987707138, -0.011475623585283756, 0.049756813794374466, -0.02152407541871071, -0.023290414363145828, -0.015270885080099106, -0.009127259254455566, 0.057815033942461014, -0.03150909021496773, -0.042804356664419174, 0.01740163192152977, 0.014283610507845879, -0.048103731125593185, -0.01055819820612669, -0.010462576523423195, 0.01873200200498104, -0.12925612926483154, -0.030218455940485, 0.04095100983977318, 0.009580742567777634, -0.07916666567325592, -0.05902065336704254, 0.06365451961755753, -0.016901668161153793, -0.016853151842951775, 0.09484067559242249, 0.006661910098046064, -0.027694223448634148, 0.00564816826954484, 0.024089382961392403, 0.018674956634640694, 0.017588211223483086, -0.026519635692238808, -0.04960266500711441, 0.009925647638738155, -0.057382043451070786, -0.08453308790922165, -0.04843001440167427, -0.013599667698144913, -0.009403611533343792, -0.04336780682206154, 0.008092937059700489, -0.001149720512330532, -0.06538040190935135, 0.0823960080742836, 0.027910975739359856, -0.0007654328946955502, -0.00967144314199686, -0.04053380340337753, 0.011029873974621296, -0.0005191834643483162, 0.03304535523056984, 0.022723881527781487, -0.03383082523941994, -0.00392152601853013, -0.058372706174850464, 0.04852943867444992, 0.06043069437146187, 0.021231500431895256, 0.06483719497919083, -0.028403867036104202, -0.0979577898979187, 0.021934131160378456, 0.018122201785445213, 0.046289507299661636, 0.034175340086221695, -0.04524196311831474, 0.012119375169277191, 0.014986340887844563, 0.036662887781858444, 0.02567237988114357, 0.01140219159424305, -0.028838343918323517, -0.06963295489549637, -0.3331490755081177, -0.017516965046525, -0.021733377128839493, -0.0201912559568882, -0.010930226184427738, -0.056402381509542465, 0.013003627769649029, -0.011003169231116772, 0.02307780086994171, -0.017843838781118393, 0.1101691797375679, -0.004180228803306818, 0.024482067674398422, -0.07529488950967789, -0.011588044464588165, 0.027440981939435005, -0.013672775588929653, -0.036161817610263824, 0.004706756677478552, -0.004846432711929083, -0.043975695967674255, 0.005590449552983046, -0.01666886731982231, -0.07818595319986343, 0.03176678717136383, -0.05278827250003815, 0.14729973673820496, 0.07191099226474762, 0.019310031086206436, -0.054734405130147934, 0.04778790473937988, -0.016284741461277008, -0.03158729523420334, -0.08968400955200195, 0.01083099003881216, -0.0192082729190588, -0.028168024495244026, 0.005839447490870953, 0.014090598560869694, -0.03073480725288391, -0.06173801049590111, -0.014533335343003273, -0.033003874123096466, -0.030801964923739433, 0.0006877451087348163, 0.005471006967127323, -0.005324136465787888, -0.05327774956822395, -0.00580587750300765, 0.09597508609294891, 0.04808490723371506, 0.009702042676508427, -0.0044118366204202175, 0.05494476109743118, -0.012371255084872246, -0.015625592321157455, -0.04964395985007286, -0.004011931363493204, 0.024517174810171127, -0.03467676788568497, 0.04014572128653526, 0.02025335282087326, 0.045719560235738754, -0.09957461059093475, -0.007883980870246887, 0.019400186836719513, -0.01849508285522461, -0.01945127546787262, 0.021076161414384842, -0.024556122720241547, -0.03608955815434456, 0.11515332013368607, 0.019969001412391663, 0.03090188093483448, 0.07245871424674988, 0.044756557792425156, 0.0016177223296836019, 0.051240384578704834, 0.06770624965429306, 0.019319970160722733, -0.013076524250209332, 0.00983064528554678, 0.016477221623063087, -0.03009055368602276, -0.027354063466191292, 0.04032738134264946, 0.009627502411603928, -0.08364268392324448, 0.015933407470583916, -0.03564686328172684, 0.0007238689577206969, 0.03658963367342949, -0.006836303975433111, -0.030539605766534805, 0.015568369999527931, -0.029781904071569443, -0.2718534469604492, 0.03393120318651199, 0.0896817147731781, 0.07266915589570999, -0.03454131260514259, 0.01975308172404766, 0.03427542373538017, -0.06081901118159294, -0.03674149513244629, -0.018003670498728752, -0.040862031280994415, 0.028806651011109352, -0.00011987541074631736, 0.0029116403311491013, 0.01988513022661209, 0.0004653555224649608, 0.06614956259727478, -0.017150387167930603, 0.027718685567378998, -0.028522800654172897, 0.0007959560607559979, -0.01266923826187849, 0.201528862118721, 0.019815227016806602, 0.010961134918034077, -0.0007149355951696634, -0.020907998085021973, -0.01274766307324171, 0.06754161417484283, 0.03493513911962509, 0.012211976572871208, -0.007999110035598278, 0.017329808324575424, 0.013641118071973324, 0.04097464680671692, -0.07373888045549393, -0.02703937515616417, 0.020913567394018173, 0.00444440171122551, -0.0031800037249922752, -0.02078958973288536, 0.05707760527729988, -0.037173617631196976, 0.028079714626073837, 0.03483468294143677, -0.047578826546669006, -0.00565916346386075, 0.03794190287590027, -0.06709447503089905, -0.015551360324025154, -0.0006914529367350042, -0.04643427953124046, -0.05149048566818237, -0.02612106315791607, 0.002457954687997699, 0.05958426371216774, 0.01698058843612671, -0.036878738552331924, 0.032013654708862305, 0.008489154279232025, 0.008793213404715061, 0.008227287791669369, 0.08407536149024963, 0.0041354657150805, 0.05197584629058838 ]
[ -0.022612079977989197, 0.02307354286313057, 0.0508735254406929, 0.040583111345767975, 0.04452257603406906, 0.00150546885561198, -0.0063711837865412235, 0.013997034169733524, -0.027972357347607613, -0.017911791801452637, -0.01274265255779028, 0.00880646612495184, 0.007264580577611923, 0.01506844162940979, 0.05451463162899017, 0.005505110137164593, -0.007044948171824217, -0.033466361463069916, 0.004291878081858158, -0.0016086496179923415, 0.02395787462592125, -0.019129017367959023, 0.001672615995630622, -0.0431218184530735, 0.018264297395944595, 0.03224225342273712, -0.025945639237761497, -0.03183562308549881, 0.04607066884636879, -0.13012605905532837, -0.008968762122094631, -0.04755030944943428, -0.026426129043102264, -0.004323193337768316, -0.04124894738197327, 0.030974630266427994, 0.008853637613356113, -0.0036856429651379585, 0.015601729042828083, 0.006111662834882736, -0.021959086880087852, 0.019940687343478203, -0.021506834775209427, -0.009775733575224876, 0.01772473007440567, 0.0033590435050427914, 0.0013504594098776579, -0.0667765811085701, -0.04139989614486694, 0.008577041327953339, -0.05258099362254143, -0.006581291556358337, -0.012178681790828705, -0.013487966731190681, -0.01392360683530569, 0.0020689149387180805, 0.014833648689091206, -0.014635013416409492, 0.01118678692728281, 0.007288526277989149, 0.007620261516422033, -0.044473178684711456, -0.006288314703851938, -0.03466033563017845, 0.03978381305932999, -0.009904124774038792, -0.0461275652050972, -0.01080460473895073, 0.02501959726214409, -0.011956365779042244, 0.01763533428311348, -0.0014279420720413327, 0.041438307613134384, -0.02148408442735672, -0.02507239580154419, -0.03645721450448036, 0.025281840935349464, 0.03046414628624916, 0.01601068675518036, -0.012620721012353897, 0.03075849637389183, 0.015058781020343304, 0.021880660206079483, 0.04226304590702057, 0.045142147690057755, 0.04749373346567154, -0.0232628732919693, -0.017840983346104622, 0.003044351702556014, 0.01672484166920185, -0.025530388578772545, -0.006402069702744484, 0.0041544148698449135, 0.05451241135597229, -0.03846455365419388, -0.011750038713216782, -0.005173746030777693, -0.039678819477558136, -0.051200952380895615, 0.8310621976852417, 0.009904627688229084, 0.011774579994380474, 0.028364794328808784, 0.014433654025197029, 0.021093351766467094, 0.017613805830478668, -0.03513204678893089, -0.029858246445655823, 0.00972495973110199, 0.02765672467648983, 0.045556481927633286, 0.003950557205826044, -0.0021349203307181597, 0.00101816700771451, -0.005531809758394957, -0.005401345901191235, -0.0033028102479875088, -0.03468727692961693, 0.04780574515461922, -0.008354263380169868, 0.024736234918236732, -0.01362480316311121, -0.00451602041721344, 0.0046102567575871944, -0.010820530354976654, -0.16198810935020447, -0.009316188283264637, -8.64354000065884e-33, 0.04088527336716652, 0.007209487725049257, 0.008981178514659405, -0.004595159087330103, 0.022851338610053062, -0.022820282727479935, 0.002043374814093113, -0.010166832245886326, -0.02331271581351757, -0.03437046334147453, 0.022501984611153603, 0.01850859448313713, -0.059005361050367355, 0.006241537164896727, 0.008751403540372849, -0.005831639748066664, -0.0035395349841564894, 0.04666575416922569, -0.004195060580968857, -0.03293626755475998, 0.027178006246685982, 0.02670460008084774, -0.038746148347854614, 0.01276102289557457, -0.016645094379782677, 0.03419815003871918, -0.00014021788956597447, 0.0511910505592823, -0.014651317149400711, -0.06827172636985779, -0.0007702020811848342, 0.01859051175415516, 0.0006511787651106715, -0.007188057992607355, 0.02799178473651409, -0.056199461221694946, -0.021506762132048607, 0.00971144437789917, -0.01717381365597248, -0.03454054892063141, -0.020314069464802742, -0.002555989660322666, -0.015419277362525463, 0.020353710278868675, -0.025982769206166267, 0.0030424108263105154, 0.00737233879044652, -0.022802699357271194, -0.0031797303818166256, 0.0058381701819598675, -0.012512539513409138, 0.025033285841345787, -0.031696438789367676, 0.016623446717858315, -0.038584060966968536, 0.005298557225614786, -0.02530061826109886, 0.0004142927355132997, 0.017741527408361435, -0.044884540140628815, 0.02706388384103775, -0.01772666722536087, 0.004712538328021765, 0.03386401757597923, -0.05251098796725273, 0.035916414111852646, 0.017792031168937683, 0.049763649702072144, 0.021024979650974274, 0.03179079294204712, -0.04250727966427803, 0.04453684762120247, 0.0125028807669878, -0.036701563745737076, 0.04917190596461296, -0.037175264209508896, -0.0004404665087349713, 0.0002246093499707058, -0.003895345376804471, 0.045546755194664, 0.02961065247654915, -0.02955673821270466, -0.015357136726379395, 0.013835526071488857, 0.019500194117426872, -0.020874973386526108, 0.015974508598446846, -0.0016547548584640026, -0.0020509513560682535, 0.009703107178211212, 0.03229258954524994, 0.010669325478374958, 0.0075948117300868034, -0.006152180023491383, -0.05742189288139343, 8.439471242620214e-33, 0.02283393405377865, -0.013095107860863209, -0.013923726044595242, 0.019526688382029533, -0.04140936955809593, -0.018760167062282562, 0.01693909801542759, 0.028318043798208237, -0.027987420558929443, 0.03762237727642059, -0.0012782805133610964, 0.04058966040611267, 0.004004482179880142, 0.014891987666487694, 0.02283203788101673, -0.0031587977427989244, -0.004686495289206505, 0.01138431578874588, 0.014967559836804867, -0.03398986905813217, 0.03462447598576546, 0.0070586553774774075, 0.010514135472476482, 0.027506839483976364, -0.007556608412414789, 0.06906160712242126, 0.006456794682890177, -0.01210096012800932, -0.0004243100993335247, -0.030429309234023094, 0.007431832142174244, -0.049137551337480545, 0.0068856701254844666, -0.04431082308292389, 0.005728384479880333, 0.015035032294690609, -0.022889062762260437, -0.019602643325924873, -0.007701359689235687, 0.002477028639987111, -0.002031794749200344, -0.03729596734046936, -0.00019698153482750058, 0.025043001398444176, 0.01123372744768858, -0.04250757768750191, -0.022068466991186142, -0.0017545472364872694, 0.03353149816393852, 0.031033331528306007, 0.024831315502524376, 0.006981313694268465, -0.005485599860548973, 0.011870743706822395, 0.0048043932765722275, -0.050437431782484055, -0.012994752265512943, 0.04864887148141861, -0.023804407566785812, 0.036616917699575424, 0.009509248659014702, -0.056533150374889374, -0.038598667830228806, 0.004084519110620022, -0.04393555968999863, 0.006060402374714613, -0.08004472404718399, -0.0008504944271408021, 0.04603969678282738, 0.028462711721658707, 0.028143996372818947, 0.052640464156866074, 0.015948528423905373, 0.011402891017496586, 0.04528403654694557, -0.022153755649924278, 0.04992416128516197, -0.005642545875161886, -0.003041057614609599, 0.018611865118145943, -0.010320419445633888, 0.02430828846991062, 0.036929160356521606, 0.011170512065291405, 0.0054193721152842045, -0.010013317689299583, -0.020629536360502243, 0.0328078456223011, -0.0068963514640927315, -0.008493058383464813, -0.03117002733051777, -0.007029574830085039, 0.007681861519813538, 0.032083913683891296, -0.01520910020917654, -1.3508698160080712e-8, -0.021104460582137108, 0.02407820150256157, -0.00188262271694839, -0.027227994054555893, 0.002108517335727811, 0.005829636938869953, -0.04385427385568619, -0.04360116273164749, -0.013020562008023262, -0.0040146345272660255, 0.024947404861450195, 0.037046272307634354, -0.024438777938485146, 0.019652262330055237, -0.005955936852842569, -0.024192841723561287, -0.01955081708729267, -0.016708699986338615, 0.0438598170876503, -0.0039031740743666887, -0.018340427428483963, 0.03653976693749428, 0.0073482985608279705, 0.022750742733478546, 0.0007872700807638466, 0.0065698218531906605, 0.00909892562776804, -0.07013081759214401, -0.032444193959236145, 0.015028882771730423, -0.01511309202760458, -0.03407570719718933, -0.01026337593793869, -0.02041706070303917, 0.006942889653146267, -0.026450568810105324, 0.015186614356935024, -0.017841482535004616, -0.0021323133260011673, -0.0027107233181595802, 0.024841412901878357, -0.02516206167638302, 0.02657999098300934, -0.027288265526294708, -0.01843933016061783, 0.010776695795357227, -0.03729226067662239, 0.0113443024456501, 0.03883127495646477, 0.028161821886897087, 0.006642144639045, 0.00020317130838520825, -0.04094482213258743, 0.018246730789542198, 0.002293630503118038, -0.04990095645189285, -0.0009389507467858493, 0.01735568605363369, -0.0005767409456893802, 0.008991784416139126, 0.07562357932329178, 0.018985487520694733, -0.023166334256529808, -0.0040389010682702065 ]
react-semantic-ui-custom-add-icon-open-new-window
https://markhneedham.com/blog/2020/04/13/react-semantic-ui-custom-add-icon-open-new-window
false
2020-05-05 00:21:00
QuickGraph #7: An entity graph of TWIN4j using APOC NLP
[ "quickgraph", "nlp", "apoc", "twin4j" ]
[ "Neo4j" ]
One of the most popular use cases for Neo4j is knowledge graphs, and part of that process involves using NLP to create a graph structure from raw text. If we were doing a serious NLP project we'd want to use something like https://graphaware.com/products/hume/[GraphAware Hume^], but in this blog post we're going to learn how to add basic NLP functionality to our graph applications. image::{{<siteurl>}}/uploads/2020/05/apoc-nlp.png[title="Building an entity graph of TWIN4j using APOC NLP"] == APOC NLP The big cloud providers (AWS, GCP, and Azure) all have Natural Language Processing APIs and, although their APIs aren't identical, they all let us extract entities, key phrases, and sentiment from text documents. image::{{<siteurl>}}/uploads/2020/05/1_go7sTFOGN2fJGgYrI3E-FA.png[title="AWS, GCP, Azure"] While these APIs are easy to enough to use via client drivers, we thought it'd be fun to make them even more accessible by https://neo4j.com/docs/labs/apoc/current/nlp/[adding procedures that call these APIs to the popular APOC Library^] Each procedure has two modes: * Stream - returns a map constructed from the JSON returned from the API * Graph - creates a graph or virtual graph based on the values returned by the API At the moment we've got procedures covering some of the https://neo4j.com/docs/labs/apoc/current/nlp/aws/[AWS^] and https://neo4j.com/docs/labs/apoc/current/nlp/gcp/[GCP^] endpoints, but we'll be adding more over time. In this blog post we're going to learn how to use the AWS procedures. == The Problem We're going to use the procedures to build a mini recommendation engine for https://neo4j.com/tag/twin4j[This Week in Neo4j (TWIN4j)^], Neo4j's weekly newsletter. The newsletter covers wide ranging topics, which means that if you like one version of the newsletter, it doesn't necessarily mean that you'll like the next one! The NLP procedures let us build a graph of entities in each newsletter, which we can use to recommend other newsletters that a user might like to read. == Importing TWIN4j blog posts Before we do any NLP work, we need to load the TWIN4j blog posts into Neo4j. We can get a list of all those posts from the Wordpress JSON API. We'll process the resulting documents using APOC's Load JSON procedure. We can see the available keys/properties on each document by running the following query: [source,cypher] ---- CALL apoc.load.json("https://neo4j.com/wp-json/wp/v2/posts?tags=3201") YIELD value RETURN keys(value) LIMIT 1 ---- .Results [opts="header"] |=== | keys(value) | ["date", "template", "_links", "link", "type", "title", "content", "featured_media", "modified", "id", "categories", "date_gmt", "slug", "modified_gmt", "author", "yst_prominent_words", "format", "comment_status", "yoast_head", "tags", "ping_status", "meta", "sticky", "guid", "excerpt", "status"] |=== We're interested in the `title`, `date`, and `link` properties. Let's create nodes with the `Article` label by running the following query: [source, cypher] ---- CALL apoc.load.json("https://neo4j.com/wp-json/wp/v2/posts?tags=3201") YIELD value MERGE (a:Article {id: value.id}) SET a.title = value.title.rendered, a.date = datetime(value.date), a.link = value.link; ---- By default the WordPress API returns 10 items per page, which means that this query will create nodes for 10 TWIN4j entries. We'll use APOC's Periodic Iterate procedure to loop over the pages in the API: [source,cypher] ---- CALL apoc.periodic.iterate( "UNWIND range(1,16) AS page RETURN page", "CALL apoc.load.json('https://neo4j.com/wp-json/wp/v2/posts?tags=3201&page=' + page) YIELD value MERGE (a:Article {id: value.id}) SET a.title = value.title.rendered, a.date = datetime(value.date) a.link = value.link; ", {} ); ---- We are cheating a bit here by hard coding the highest page to 16. Ideally we'd have a more flexible approach, but we'll leave that for another day/blog post. Once that query has finished, we can check how many articles have been created by running the following query: [source, cypher] ---- MATCH (:Article) RETURN count(*); ---- .Results [opts="header"] |=== | count(*) | 159 |=== All good so far. And finally we're going to use APOC's https://neo4j.com/docs/labs/apoc/current/import/html/[Load HTML^] to scrape those pages and store the content in the `body` property of each node: [source,cypher] ---- CALL apoc.periodic.iterate( "MATCH (a:Article) WHERE not(exists(a.body)) RETURN a", "CALL apoc.load.html(a.link, {body: 'div.entry-content'}) YIELD value SET a.body = value.body[0].text", {batchSize: 10 }); ---- == Enabling APOC NLP procedures By default the NLP procedures aren't enabled once we've installed APOC. We'll need to add the NLP dependencies jar that is published https://github.com/neo4j-contrib/neo4j-apoc-procedures/releases/[with each release]. At the time of writing, the latest release is 4.0.0.10 and the dependencies jar can be downloaded from https://github.com/neo4j-contrib/neo4j-apoc-procedures/releases/download/4.0.0.10/apoc-nlp-dependencies-4.0.0.10.jar[apoc-nlp-dependencies-4.0.0.10.jar^]. Add that file to your `plugins` directory, restart the database, and then check that the procedures are available by running the following query: [source,cypher] ---- CALL apoc.help("nlp.aws"); ---- If everything's working as it should, we'll see the following output: .Results [opts="header"] |=== | type | name | text | signature | roles | writes | "procedure" | "apoc.nlp.aws.entities.graph" | "Creates a (virtual) entity graph for provided text" | "apoc.nlp.aws.entities.graph(source :: ANY?, config = {} :: MAP?) :: (graph :: MAP?)" | NULL | NULL | "procedure" | "apoc.nlp.aws.entities.stream" | "Returns a stream of entities for provided text" | "apoc.nlp.aws.entities.stream(source :: ANY?, config = {} :: MAP?) :: (node :: NODE?, value :: MAP?, error :: MAP?)" | NULL | NULL | "procedure" | "apoc.nlp.aws.keyPhrases.graph" | "Creates a (virtual) key phrases graph for provided text" | "apoc.nlp.aws.keyPhrases.graph(source :: ANY?, config = {} :: MAP?) :: (graph :: MAP?)" | NULL | NULL | "procedure" | "apoc.nlp.aws.keyPhrases.stream" | "Returns a stream of key phrases for provided text" | "apoc.nlp.aws.keyPhrases.stream(source :: ANY?, config = {} :: MAP?) :: (node :: NODE?, value :: MAP?, error :: MAP?)" | NULL | NULL | "procedure" | "apoc.nlp.aws.sentiment.graph" | "Creates a (virtual) sentiment graph for provided text" | "apoc.nlp.aws.sentiment.graph(source :: ANY?, config = {} :: MAP?) :: (graph :: MAP?)" | NULL | NULL | "procedure" | "apoc.nlp.aws.sentiment.stream" | "Returns stream of sentiment for items in provided text" | "apoc.nlp.aws.sentiment.stream(source :: ANY?, config = {} :: MAP?) :: (node :: NODE?, value :: MAP?, error :: MAP?)" | NULL | NULL |=== It's NLP time! == Entity Extraction using APOC NLP procedures To run the AWS procedures we'll need to have our AWS access key ID and secret access key available. We'll set them as parameters by running the following commands:s [source,cypher] ---- :param apiKey => ("<api-key-here>"); :param apiSecret => ("<api-secret-here>"); ---- Now let's extract the entities for one of our articles. By default AWS's NLP API has a https://docs.aws.amazon.com/comprehend/latest/dg/guidelines-and-limits.html#limits-all[maximum size of 5,000 bytes^] per document, so we'll need to find an article that's shorter than that in length. We can which articles are applicable using the `size` function on the `body` property of our articles: [source,cypher] ---- MATCH (n:Article) WHERE size(n.body) <= 5000 RETURN n.link, size(n.body) AS sizeInBytes, n.date ORDER BY n.date DESC LIMIT 5; ---- .Results [opts="header"] |=== | n.link | sizeInBytes | n.date | "https://neo4j.com/blog/this-week-in-neo4j-covid-19-contact-tracing-de-duplicating-the-bbc-goodfood-graph-stored-procedures-in-neo4j-4-0-sars-cov-2-taxonomy/" | 4326 | 2020-04-25T00:00:05Z | "https://neo4j.com/blog/this-week-in-neo4j-spring-data-neo4j%e2%9a%a1rx-released-graphs4good-graphhack-covid-19-special-multi-level-marketing-with-graphs/" | 4331 | 2020-04-18T00:00:28Z | "https://neo4j.com/blog/this-week-in-neo4j-graph-data-science-library-announced-neo4j-reactive-drivers-scm-analytics-sao-paulos-subway-system/" | 4711 | 2020-04-11T00:00:20Z | "https://neo4j.com/blog/this-week-in-neo4j-covid-19-contact-tracing-supply-chain-management-whats-new-in-neo4j-desktop/" | 4746 | 2020-04-04T00:00:26Z | "https://neo4j.com/blog/this-week-in-neo4j-neo4j-bi-connector-covid-19-supply-chain-management/" | 4929 | 2020-03-28T00:00:47Z |=== The blog post from a couple of weeks ago looks like a good candidate. We can return a stream of the entities in that article by running the following query: [source,cypher] ---- MATCH (n:Article) WHERE size(n.body) <= 5000 WITH n ORDER BY n.date DESC LIMIT 1 CALL apoc.nlp.aws.entities.stream(n, { key: $apiKey, secret: $apiSecret, nodeProperty: "body" }) YIELD value UNWIND value.entities AS entity RETURN DISTINCT entity.text, entity.type LIMIT 10; ---- If we run this query, we'll see the following output: .Results [opts="header"] |=== | entity.text | entity.type | "this week" | "DATE" | "Lju" | "ORGANIZATION" | "BBC" | "ORGANIZATION" | "Rik Van Bruggen" | "PERSON" | "COVID-19" | "OTHER" | "SARS-Cov-2" | "OTHER" | "Martin Preusse" | "PERSON" | "Max De Marzi" | "PERSON" | "Neo4j" | "TITLE" | "Mark" | "PERSON" |=== This query actually returns 63 entities, but we're only showing the top 10 for brevity. The full set of entities is better visualised using the graph variant of the procedure, shown below: [source,cypher] ---- MATCH (n:Article) WHERE size(n.body) <= 5000 WITH n ORDER BY n.date DESC LIMIT 1 CALL apoc.nlp.aws.entities.graph(n, { key: $apiKey, secret: $apiSecret, nodeProperty: "body", write: false }) YIELD graph AS g RETURN g; ---- We've set `write: false`, which means a virtual graph is being returned. If we want to persist the graph we can run the query again with `write: true`. Running this query will result in the following Neo4j Browser visualisation: image::{{<siteurl>}}/uploads/2020/05/entities-graph.svg[title="TWIN4j Entities Graph"] Some of the entities that have been extracted make sense, like the nodes for the people and projects mentioned. Others are less useful - the node representing the `@` symbol and `-19` value for example. Let's now compute and store the entities for all applicable articles, by running the following query: [source,cypher] ---- MATCH (n:Article) WHERE size(n.body) <= 5000 WITH collect(n) AS articles CALL apoc.nlp.aws.entities.graph(articles, { key: $apiKey, secret: $apiSecret, nodeProperty: "body", writeRelationshipType: "ENTITY", write: true }) YIELD graph AS g RETURN g; ---- This query creates relationships of type `ENTITY` from the article nodes to each of the entity nodes created. The entity nodes have an `Entity` label, as well as a label based on their type. == Querying the Entity Graph Let's explore the entity graph that we've just created. == What are the most common entities? [source, cypher] ---- MATCH (e:Entity)<-[:ENTITY]-() RETURN e.text, labels(e) AS labels, count(*) AS occurrences ORDER BY occurrences DESC LIMIT 10; ---- .Results [opts="header"] |=== | e.text | labels | occurrences | "Neo4j" | ["Entity", "Title"] | 96 | "this week" | ["Date", "Entity"] | 95 | "This week" | ["Date", "Entity"] | 93 | "This Week" | ["Date", "Entity"] | 87 | "Mark" | ["Entity", "Person"] | 78 | "neo4j" | ["Entity", "Person"] | 43 | "Cypher" | ["Entity", "Title"] | 38 | "GraphConnect" | ["Entity", "Organization"] | 37 | "next week" | ["Date", "Entity"] | 37 | "Graph" | ["Entity", "Title"] | 37 |=== Not particularly revealing! We have several variants of the phrase 'this week', and it looks like Neo4j is sometimes a `Title`, but sometimes a `Person`. == Which people are mentioned most often? [source, cypher] ---- MATCH (e:Entity:Person)<-[:ENTITY]-(article) RETURN e.text, count(*) AS occurrences, date(max(article.date)) AS lastMention ORDER BY occurrences DESC LIMIT 10; ---- .Results [opts="header"] |=== | e.text | occurrences | lastMention | "Mark" | 78 | 2020-04-25 | "neo4j" | 43 | 2020-01-18 | "Max De Marzi" | 29 | 2020-04-25 | "@" | 28 | 2020-04-25 | "Michael Hunger" | 28 | 2019-10-12 | "Rik" | 27 | 2020-04-25 | "Will Lyon" | 27 | 2019-11-09 | "Michael" | 27 | 2020-04-11 | "Jennifer Reif" | 23 | 2020-02-15 | "David Allen" | 23 | 2020-03-28 |=== Max De Marzi is a prolific blogger, so it's not surprising to see him right up there at the top. There are three members of the Neo4j DevRel team in the top 10: Michael Hunger, Will Lyon, and Jennifer Reif. I would imagine that _Michael_ is also Michael Hunger, so he's actually in there twice. == When did Jennifer and Max both appear in TWIN4j? I quite like reading articles written by Jennifer and Max. How many versions of TWIN4j feature both of them? [source,cypher] ---- WITH ["Max De Marzi", "Jennifer Reif"] AS people MATCH (a:Article) WHERE all(person IN people WHERE exists((:Entity {text: person})<-[:ENTITY]-(a))) RETURN a.link, a.title, date(a.date) ORDER BY a.date DESC; ---- .Results [opts="header"] |=== | a.link | a.title | date(a.date) | "https://neo4j.com/blog/this-week-in-neo4j-nodes-keynote-cypher-eager-operator-releases-of-neo4j-ogm-and-jqassistant/" | "This Week in Neo4j &#8211; NODES Keynote, Cypher Eager Operator, Releases of Neo4j OGM and jQAssistant" | 2019-10-12 | "https://neo4j.com/blog/this-week-in-neo4j-nodes-2019-preview-grandstack-building-a-data-warehouse-with-neo4j-scale-up-your-d3-graph-visualisation/" | "This Week in Neo4j &#8211; NODES 2019 Preview: GRANDstack, Building a Data Warehouse with Neo4j,<br /> Scale up your D3 graph visualisation" | 2019-09-14 | "https://neo4j.com/blog/this-week-in-neo4j-explore-public-contracting-data-with-neo4j-rdbms-to-graph-page-overhaul-filtering-connected-dynamic-forms-graph-based-real-time-inventory/" | "This Week in Neo4j &#8211; Explore public contracting data with Neo4j, RDBMS to Graph Page Overhaul, Filtering Connected Dynamic Forms, Graph-Based Real Time Inventory" | 2019-05-11 | "https://neo4j.com/blog/this-week-in-neo4j-time-based-graph-versioning-pearson-coefficient-neo4j-multi-dc/" | "This Week in Neo4j &#8211; Time Based Graph Versioning, Pearson Coefficient, Neo4j Multi DC, Modeling Provenance" | 2019-02-16 |=== Just the 4, and we have to go back to https://neo4j.com/blog/this-week-in-neo4j-nodes-keynote-cypher-eager-operator-releases-of-neo4j-ogm-and-jqassistant/[October 2019^] to find the last time they both featured in TWIN4j. Jennifer was exploring Cypher's eager operator and Max was building a chat bot. == Finding the most relevant entities per article If we want to get a quick summary of the most important things in each TWIN4j article, we can use a technique called https://en.wikipedia.org/wiki/Tf%E2%80%93idf[tf-idf^]. This is a technique that I first learnt about 5 years ago when https://markhneedham.com/blog/2015/02/15/pythonscikit-learn-calculating-tfidf-on-how-i-met-your-mother-transcripts/[exploring How I met your mother transcripts^]. Let's refresh ourselves on the definition of tf-idf: [quote,https://en.wikipedia.org/wiki/Tf%E2%80%93idf] ____ tf–idf, short for term frequency–inverse document frequency, is a numerical statistic that is intended to reflect how important a word is to a document in a collection or corpus. It is often used as a weighting factor in information retrieval and text mining. The tf-idf value increases proportionally to the number of times a word appears in the document, but is offset by the frequency of the word in the corpus, which helps to adjust for the fact that some words appear more frequently in general. ____ Adam Cowley recently wrote a blog post https://adamcowley.co.uk/neo4j/calculating-tf-idf-score-cypher/[explaining how to calculate tf-idf scores using Cypher^], and we can use his query to compute scores on our entity graph. We'll have to tweak Adam's query to replace `Document` with `Article` and `Term` with `Entity`. Everything else remains the same. We can compute the tf-idf scores for the entities in one article by writing the following query: [source, cypher] ---- // Total number of articles MATCH (:Article) WITH count(*) AS totalArticles // Find article and all its entities MATCH (a:Article {id: 119258})-[entityRel:ENTITY]-(e:Entity) // Get Statistics on Article and Entity WITH a, e, totalArticles, size((a)-[:ENTITY]->(e)) AS occurrencesInArticle, size((a)-[:ENTITY]->()) AS entitiesInArticle, size(()-[:ENTITY]->(e)) AS articlesWithEntity // Calculate TF and IDF WITH a, e, totalArticles, 1.0 * occurrencesInArticle / entitiesInArticle AS tf, log10( totalArticles / articlesWithEntity ) AS idf, occurrencesInArticle, entitiesInArticle, articlesWithEntity // Combine together to return a result RETURN a.id, e.text, tf * idf as tfIdf ORDER BY tfIdf DESC LIMIT 10; ---- .Results [opts="header"] |=== | a.id | e.text | tfIdf | 119258 | "Neo4j 3.x" | 0.037311815666448325 | 119258 | "Yorghos Voutos" | 0.037311815666448325 | 119258 | "4.x" | 0.037311815666448325 | 119258 | "Neo4j Graph Data Science Library" | 0.037311815666448325 | 119258 | "April 20, 2020" | 0.037311815666448325 | 119258 | "Lambert Hogenhout" | 0.037311815666448325 | 119258 | "#graphtour 2020" | 0.037311815666448325 | 119258 | "pygds" | 0.037311815666448325 | 119258 | "7.1.0.M1" | 0.037311815666448325 | 119258 | "Groovy 3" | 0.037311815666448325 |=== This article was likely the first time that the https://neo4j.com/docs/graph-data-science/current/[Neo4j Graph Data Science Library^] was mentioned, as well as the related https://pypi.org/project/pygds/[pygds^] library. Let's apply these scores to the whole entity graph. We'll add the tf-idf score to the `score` property of each `ENTITY` relationship. The following query does this: [source, cypher] ---- CALL apoc.periodic.iterate( "MATCH (:Article) WITH count(*) AS totalArticles MATCH (a:Article) RETURN a, totalArticles", "MATCH (a)-[entityRel:ENTITY]-(e:Entity) WITH a, e, entityRel, totalArticles, size((a)-[:ENTITY]->(e)) AS occurrencesInArticle, size((a)-[:ENTITY]->()) AS entitiesInArticle, size(()-[:ENTITY]->(e)) AS articlesWithEntity WITH a, e, entityRel, totalArticles, 1.0 * occurrencesInArticle / entitiesInArticle AS tf, log10( totalArticles / articlesWithEntity ) AS idf, occurrencesInArticle, entitiesInArticle, articlesWithEntity SET entityRel.score = tf * idf", {} ); ---- Once this query has finished, we can find the highest ranking entities for each article by writing the following query: [source,cypher] ---- MATCH (a:Article)-[rel:ENTITY]->(e) WITH a, e, rel ORDER BY a.date DESC, rel.score DESC RETURN date(a.date), collect(e.text)[..10] AS entities ORDER BY date(a.date) DESC LIMIT 10; ---- .Results [opts="header"] |=== | date(a.date) | entities | 2020-04-25 | ["pygds", "April 20, 2020", "Lambert Hogenhout", "#graphtour 2020", "Yorghos Voutos", "4.x", "Neo4j Graph Data Science Library", "Neo4j 3.x", "Groovy 3", "7.1.0.M1"] | 2020-04-18 | ["(@Astayonix", "Last night", "Bloom Inzamam ul Haque", "Connected Components", "Spring Data Neo4j⚡", "Epidemic Simulator", "RX", "This Year", "Spring Data Neo4j RX 1.0 GA", ") April 16"] | 2020-04-11 | ["OGA", "Lucas Moda", "Library", "one of the organizers", "World Factbook", "Greg Woods’", "Markus Günther", "Michael Simons’", "Graph Data Science", "Neo4j Tech"] | 2020-04-04 | ["Ubuntu 18.0.4 LTE", "f4bl", "pic.twitter.com/8fMYAmS6Js", "Neo4j Dev Tools", "JiliJeanlouis", "Epimitheus", "JUnit Jupiter Causal Cluster Testcontainer", "March 29, 2020", "1.2.6", "Germany"] | 2020-03-28 | ["Logan Smith", "each one", "Nerd’s Lab", "March 24, 2020", "PAF-Karachi Institute of Economics & Technology", "Lynn Chiu", "CDC", "late last year", "WirvsVirusHackathon", "TIBCO"] | 2020-02-15 | ["Flights", "De Marzi", "#GraphTour Madrid", "Golven Leroy", "Arrows Hacks", "February 13, 2020", "grapheverywhere", "Eva Delier", "SPARQL API", "Global Graph Celebration Day 2020"] | 2020-02-08 | ["SDN", "GGCD 2020", "Australian Open Finals", "third beta", "IFCA MSC BHD", "about 30 minutes", "Malaysia", "Sinisa Drpa", "emileifrem", "8th year"] | 2020-01-25 | ["Personal Genome Project", "to Dine: Building Possibility Spaces", "Ten", "Melbourne", "Halfdan Rump", "Paul Drangeid", "ReactJS", "Kelson Smith", "January 22, 2020", "Tom Cruise"] | 2020-01-18 | ["Pablo José", "Daniel Murillo", "@mckenzma", "Flask Login", "Karim Shehadeh", "Laboratorio Internacional Web", "Oscar Arcia", "Vue.js", "Donald Knuth", "Atakan Güney"] | 2020-01-11 | ["100 Male", "NLTK", "QuickGraph: Christmas Messages Graph", "Footballers", "TriGraph", "Daniel Wilms", "2.4 miles", "Ben Albritton", "January 9, 2020", "Louise Söderström…"] |=== Or we could write a version of the query that only includes certain entities: [source,cypher] ---- MATCH (a:Article)-[rel:ENTITY]->(e) WHERE e:Title or e:Organization WITH a, e, rel ORDER BY a.date DESC, rel.score DESC RETURN date(a.date), collect(e.text)[..10] AS entities ORDER BY date(a.date) DESC LIMIT 10; ---- .Results [opts="header"] |=== | date(a.date) | entities | 2020-04-25 | ["Covid Graph Knowledge Graph", "Neo4j 3.x", "7.1.0.M1", "Grails", "Groovy 3", "pygds", "Neo4j Graph Data Science Library", "United Nations", "Goals", "-19"] | 2020-04-18 | ["Spring Data Neo4j⚡RX", "Inzamam", "Graphs4Good GraphHack", "Spring Data Neo4j RX 1.0 GA", "Connected Components", "Spring Data Neo4j⚡", "Spring Data Neo4j + Neo4j-OGM", "CypherDSL", "Exposure Tracker", "Project Domino"] | 2020-04-11 | ["Library", "Graph Data Science", "World Factbook", "SDN RX", "JDK 14", "Query Neo4j", "JShell", "OGA", "Mentum Systems Australia", "Neo4j Tech"] | 2020-04-04 | ["Sysmon Visualization", "Epimitheus", "BloodHound 3.0", "Graphlytic for Fraud", "Graphlytic", "JUnit Jupiter Causal Cluster Testcontainer", "Ubuntu 18.0.4 LTE", "Neo4j Dev Tools", "1.2.6", "f4bl"] | 2020-03-28 | ["Neo4j BI Connector", "Graph to the Rescue", "BI Connector", "Tableau", "Looker", "Spotfire Server", "PAF-Karachi Institute of Economics & Technology", "Nerd’s Lab", "WirvsVirusHackathon", "Upcode Academy"] | 2020-02-15 | ["SPARQL API", "Arrows Hacks", "Flights", "Cypher Shell", "Wikidata SPARQL API", "Django Software Foundation", "grapheverywhere", "3.5", "Arrows", "Wikidata"] | 2020-02-08 | ["Streamlit", "Lisk", "Ansible", "SDN", "IFCA MSC BHD", "Spring Data Neo4j RX", "Neo4j Graph", "QuickGraph", "Neo4j 4.0", "Lju"] | 2020-01-25 | ["to Dine: Building Possibility Spaces", "Personal Genome Project", "vCenter", "GCP", "ReactJS", "WordPress", "QuickGraph", "Javascript", "AWS", "Google"] | 2020-01-18 | ["Vue.js", "Monific", "Mitzu", "Algorithm X", "Flask Login", "Kafka Taiwo", "Graphistania 2.0", "Under Armour", "Laboratorio Internacional Web", "CMDX"] | 2020-01-11 | ["Ninja", "Heathers and Label", "TriGraph", "100 Male", "QuickGraph: Christmas Messages Graph", "F#", "Guardian", "Islamic Scientific Manuscripts Initiative", "Neo4j Ninja", "Sudoku"] |=== == What’s interesting about this QuickGraph? In this QuickGraph we've learnt how to build a graph based on content that initially didn't have any structure. There's a lot more data around that doesn't have structure than that with structure, so techniques that help make sense of unstructured data are very useful. This is not a new technique, in fact there are many videos explaining the value of this approach: * https://www.youtube.com/watch?v=k8Gu6GMbBtQ[Knowledge Graph Search with Elasticsearch — L. Misquitta and A. Negro, GraphAware^] * https://www.youtube.com/watch?v=BVMx24dtko0[Natural Language Processing with Graphs^] * https://www.youtube.com/watch?v=ySxgzBdM2jM[Content-Based Recommendations using Knowledge Graphs (Neo4j Online Meetup #59)^] The procedures described in this post aim to make the technique more easily accessible to graph practitioners.
Learn how to use the APOC Library to add NLP functionality to your graph applications.
uploads/2020/05/apoc-nlp.png
[ 0.02106071263551712, -0.02048095129430294, 0.013721040450036526, 0.05325551703572273, 0.06817145645618439, 0.005720269400626421, 0.03392021730542183, 0.04558020085096359, 0.024447573348879814, -0.016918659210205078, -0.01676219515502453, 0.004727815743535757, -0.05731964856386185, 0.007619092706590891, 0.0015674056485295296, 0.046873413026332855, 0.05261220410466194, 0.021956851705908775, 0.024958297610282898, 0.001573603367432952, 0.02317604422569275, 0.03955851122736931, 0.013972166925668716, 0.03980614244937897, 0.04029030725359917, 0.017890550196170807, -0.0064764125272631645, 0.009510642848908901, -0.04145960509777069, -0.007921315729618073, 0.053916458040475845, -0.005061684176325798, 0.009595678187906742, -0.011473431251943111, 0.028320234268903732, -0.0022950759157538414, -0.060564637184143066, 0.012480380944907665, 0.010980174876749516, 0.006298576015979052, -0.07503509521484375, 0.050913047045469284, -0.03069108910858631, 0.014701304957270622, -0.037294041365385056, -0.009273571893572807, -0.06582130491733551, 0.04695896431803703, 0.007490598596632481, -0.009323502890765667, -0.11465000361204147, 0.01328278798609972, -0.03099573217332363, -0.0017605911707505584, -0.016174782067537308, 0.0465882271528244, 0.023564426228404045, -0.05992846190929413, 0.02621465176343918, -0.014371668919920921, -0.013068732805550098, -0.016103558242321014, 0.0003033615939784795, 0.026781903579831123, 0.005543881095945835, -0.04886232689023018, -0.017799248918890953, 0.047861937433481216, -0.050576016306877136, -0.003413340076804161, -0.00760204903781414, 0.024890808388590813, -0.018210519105196, 0.00331366085447371, -0.0067267706617712975, -0.04596082866191864, -0.00436861626803875, 0.07002120465040207, 0.033184587955474854, 0.04199303314089775, -0.03310679644346237, 0.022371433675289154, 0.012867327779531479, 0.03431651368737221, -0.023285582661628723, -0.01777084358036518, -0.014749312773346901, -0.01667190156877041, -0.06387607753276825, 0.034767504781484604, -0.0023796474561095238, -0.06721330434083939, -0.0034389770589768887, 0.00896781962364912, -0.004382899031043053, 0.0438464991748333, 0.009956254623830318, 0.025860289111733437, 0.0008857711800374091, -0.020722050219774246, -0.03145945072174072, -0.04161830246448517, -0.0002709529653657228, 0.008716133423149586, -0.07508552074432373, -0.04441637545824051, -0.010349844582378864, -0.018005846068263054, -0.008255098946392536, -0.007454956881701946, -0.012668280862271786, 0.005412502679973841, -0.026678254827857018, 0.01333976536989212, -0.07161332666873932, 0.05070086941123009, 0.027317823842167854, -0.01380931492894888, -0.020212426781654358, 0.00918869860470295, 0.05970084294676781, 0.009417014196515083, 0.002416662173345685, 0.079822838306427, -0.024485202506184578, 0.022156979888677597, -0.023088715970516205, 0.04702318459749222, -0.02152782492339611, -0.0660751685500145, -0.01396509725600481, 0.04607562720775604, -0.020927317440509796, 0.01668514311313629, 0.0020593185909092426, -0.0028560017235577106, -0.0007108533754944801, 0.024303751066327095, 0.04450470954179764, 0.03180096298456192, -0.004257385618984699, -0.06305660307407379, 0.026534711942076683, -0.003564480459317565, 0.04706311598420143, 0.01502666249871254, -0.01245591789484024, -0.0394204743206501, -0.022156255319714546, -0.0165545716881752, 0.0006826953613199294, 0.018762817606329918, 0.0365893691778183, -0.031005796045064926, 0.03356312960386276, 0.11377977579832077, 0.04204254224896431, 0.01562996208667755, -0.01088053546845913, 0.025822781026363373, 0.05559757724404335, 0.032609280198812485, -0.007315877825021744, 0.045883700251579285, -0.012342041358351707, -0.03291767090559006, -0.0032959994859993458, 0.061009638011455536, -0.009623100981116295, 0.024540647864341736, -0.03113434836268425, -0.053717706352472305, 0.0529356375336647, -0.051905568689107895, -0.0008256001747213304, 0.03832073137164116, 0.07252354174852371, 0.02460741251707077, 0.02830919437110424, 0.0022260542027652264, -0.07664251327514648, 0.06544513255357742, 0.018509406596422195, -0.016458785161376, -0.004446743056178093, -0.006419727113097906, 0.08438298851251602, 0.03397111967206001, 0.005603917874395847, 0.03913046419620514, -0.07276679575443268, -0.08784973621368408, -0.013867517001926899, -0.01511724479496479, 0.07298538088798523, -0.00786371249705553, 0.023224392905831337, 0.0886947512626648, -0.002980022458359599, 0.023687118664383888, 0.027133788913488388, -0.0068919542245566845, 0.01267320942133665, -0.04984484985470772, -0.05327770859003067, 0.04784012958407402, 0.028971977531909943, -0.054772768169641495, -0.05615530535578728, -0.008165906183421612, -0.01978198252618313, -0.0013073863228783011, 0.02833258919417858, -0.02536645159125328, 0.01953519694507122, 0.013407977297902107, 0.04447294399142265, -0.011847958900034428, 0.028392700478434563, -0.03691751882433891, 0.05987067148089409, -0.00573554914444685, -0.004849924705922604, -0.01987350918352604, -0.0059125991538167, 0.11642760038375854, 0.06676653027534485, -0.014247200451791286, -0.04541933909058571, 0.03517932817339897, 0.0316704586148262, -0.0260941032320261, 0.031765323132276535, -0.0358278751373291, -0.030782310292124748, -0.025049416348338127, -0.03359396010637283, -0.018930919468402863, -0.0012593682622537017, -0.03502300754189491, -0.0023400019854307175, 0.06073375418782234, -0.02726144716143608, 0.05642935261130333, 0.024890167638659477, -0.0017580788116902113, -0.011833561584353447, -0.030463986098766327, -0.03728305175900459, 0.017705552279949188, 0.008407891727983952, -0.004771447740495205, 0.033203620463609695, 0.001077125663869083, 0.0008841634262353182, -0.0258964691311121, -0.024476753547787666, 0.021926874294877052, 0.042099885642528534, 0.05215202644467354, 0.0018559215823188424, 0.04670911654829979, -0.0558776780962944, 0.010912824422121048, 0.020491616800427437, -0.06172642484307289, -0.03234753757715225, -0.049086347222328186, 0.021959874778985977, 0.006688297260552645, 0.03469152748584747, -0.014142467640340328, 0.04149400442838669, -0.004187871236354113, 0.02227931097149849, -0.0147514333948493, 0.03689335286617279, 0.008348997682332993, -0.01687944307923317, -0.03846453130245209, -0.047244977205991745, 0.046245478093624115, -0.059694696217775345, -0.024602500721812248, -0.0266722422093153, -0.07353769987821579, 0.058752208948135376, -0.06976386159658432, -0.024014541879296303, -0.004101327620446682, 0.02374402992427349, 0.04484696313738823, 0.02479749359190464, -0.015827111899852753, 0.06632883101701736, 0.02285962551832199, 0.012480718083679676, 0.00003963832568842918, -0.009076578542590141, 0.05029310658574104, -0.024929124861955643, 0.033503755927085876, 0.03812658414244652, -0.01809161901473999, 0.0015061174053698778, -0.02677234262228012, 0.019801294431090355, -0.013070965185761452, -0.27526038885116577, 0.031158659607172012, -0.02207210101187229, -0.05338234826922417, -0.006527765188366175, -0.031155962496995926, -0.002692303154617548, -0.03905532509088516, -0.026981942355632782, -0.0007363306358456612, -0.013070322573184967, -0.02359331212937832, 0.005600812844932079, 0.032695166766643524, 0.014491032809019089, 0.01849847473204136, -0.009610026143491268, -0.058496057987213135, -0.001628695521503687, 0.044500093907117844, 0.002461423631757498, -0.04401447996497154, 0.0005850789020769298, 0.030218049883842468, 0.013770783320069313, 0.03005899116396904, -0.10401058942079544, 0.02813277579843998, -0.042247381061315536, -0.021246980875730515, 0.018186412751674652, -0.021284865215420723, 0.008709261193871498, 0.011301816441118717, -0.03512892127037048, -0.02417510747909546, 0.06911086291074753, 0.016414310783147812, -0.003340289229527116, 0.027101906016469002, -0.029471632093191147, -0.03886882960796356, -0.030247338116168976, -0.005768055561929941, 0.0807022750377655, 0.016360851004719734, -0.08120092004537582, -0.005793712567538023, -0.019781574606895447, 0.07785100489854813, -0.04799767583608627, -0.011492816731333733, -0.020282136276364326, 0.03343749791383743, 0.0016967304982244968, -0.029071975499391556, 0.0022556667681783438, -0.007668869104236364, -0.0559636726975441, -0.03251372277736664, -0.0060789333656430244, -0.039478059858083725, 0.012724450789391994, -0.06531451642513275, -0.016616173088550568, -0.05946800857782364, -0.06330297142267227, -0.038943544030189514, 0.05476420372724533, 0.020720280706882477, -0.04442640021443367, 0.028885183855891228, -0.022498926147818565, -0.1033255010843277, -0.023423848673701286, -0.06014757230877876, -0.003910664469003677, 0.007140243425965309, -0.00011982945579802617, 0.03837952762842178, -0.027791181579232216, -0.057934392243623734, -0.0033658177126199007, 0.016272053122520447, 0.01380837894976139, 0.007596104871481657, 0.02377471886575222, -0.010124975815415382, -0.02789388969540596, 0.008818830363452435, 0.05809986963868141, -0.0009895360562950373, -0.03658366575837135, -0.007471563294529915, -0.0011799221392720938, 0.01952224224805832, 0.015546872280538082, -0.0013671608176082373, -0.004025748465210199, 0.059963423758745193, 0.02547932043671608, -0.03390562906861305, 0.02361118793487549, -0.01141479704529047, -0.006535467691719532, 0.004991632886230946, -0.04643746465444565, 0.007235878612846136, 0.0295658390969038, 0.02059311605989933, -0.019684333354234695, -0.0057725184597074986, 0.03619479387998581, -0.048080991953611374, -0.038339268416166306, 0.0063234674744307995, 0.0026373183354735374, 0.026068147271871567, 0.014826207421720028, -0.0380246564745903, -0.056567128747701645, 0.030465416610240936, 0.02395467273890972, -0.021525144577026367, -0.05629187449812889, -0.04584026709198952, -0.020626753568649292, -0.023965999484062195, -0.002236574189737439, 0.019234349951148033, -0.012505239807069302, 0.03212255612015724, 0.019224535673856735, -0.04252486675977707, 0.03159605339169502, -0.010553951375186443, -0.03805294632911682, -0.04353499785065651, 0.04650691896677017, -0.009910142980515957, -0.02260374091565609, 0.006097635719925165, -0.01201555598527193, 0.03328673169016838, 0.04932278022170067, 0.009099531918764114, 0.01397380419075489, 0.017528710886836052, 0.031176302582025528, -0.011209705844521523, 0.003803402651101351, -0.04621582850813866, -0.023774338886141777, -0.022199010476469994, -0.006892983336001635, -0.03286603093147278, 0.03981368616223335, -0.008539188653230667, -0.019512377679347992, -0.027253126725554466, 0.032112106680870056, -0.046540066599845886, -0.007321308832615614, -0.023654015734791756, 0.004661270417273045, 0.047574181109666824, -0.02280668169260025, 0.029231028631329536, -0.03436928987503052, -0.029507765546441078, 0.049093097448349, 0.0015790957259014249, -0.03949796035885811, 0.017005302011966705, 0.0027505424804985523, 0.009899353608489037, 0.004115304443985224, 0.0448787547647953, 0.03580499812960625, 0.033637721091508865, -0.012449832633137703, -0.020924923941493034, 0.030375229194760323, 0.0006300235982052982, 0.04098695516586304, 0.04164588823914528, -0.020028844475746155, 0.012995590455830097, -0.021442826837301254, -0.010887861251831055, -0.027909478172659874, -0.002236186061054468, -0.015624821186065674, 0.008481315337121487, -0.031163211911916733, -0.05832362174987793, 0.055441729724407196, -0.01718355342745781, 0.02507038600742817, 0.04525412991642952, -0.020291492342948914, 0.015438779257237911, -0.0301619004458189, 0.03777507692575455, 0.04839995875954628, -0.0535539947450161, -0.008615003898739815, -0.0022333746310323477, 0.012203476391732693, 0.005991594400256872, 0.0267623458057642, -0.05387396737933159, -0.060649991035461426, -0.014161421917378902, 0.03324464336037636, -0.03248286619782448, -0.04019302874803543, -0.011052682064473629, -0.007060605101287365, 0.0098844850435853, 0.026703031733632088, 0.0037976116873323917, -0.004477186594158411, -0.03459881618618965, -0.004128260537981987, 0.051627758890390396, -0.022164124995470047, -0.010383468121290207, 0.008232560008764267, -0.03406784310936928, 0.013273052871227264, -0.029387565329670906, 0.01360124722123146, 0.016063667833805084, -0.020505601540207863, 0.023113127797842026, -0.0693618655204773, 0.021324802190065384, 0.006348653230816126, 0.054701633751392365, -0.009201396256685257, -0.012207632884383202, -0.03362419456243515, -0.0173033457249403, -0.04035215452313423, 0.005369317717850208, -0.013144902884960175, 0.0043218908831477165, -0.00009066741040442139, 0.03246002271771431, -0.0016632010228931904, 0.03348984569311142, -0.014426191337406635, -0.03401752561330795, 0.05565762519836426, -0.030289100483059883, -0.04946628585457802, -0.011837303638458252, -0.0768313854932785, 0.015475909225642681, 0.034507837146520615, -0.009991356171667576, -0.04206220433115959, 0.0783255323767662, 0.044276196509599686, 0.02116692252457142, 0.01582030951976776, -0.015811217948794365, 0.030290739610791206, -0.028417373076081276, 0.0047378577291965485, -0.07747682183980942, -0.003973481245338917, 0.04071132093667984, 0.00973565224558115, -0.028340371325612068, -0.004478095564991236, -0.02691490575671196, 0.023128554224967957, -0.059420146048069, -0.02863667719066143, 0.033675357699394226, -0.011627789586782455, 0.019559787586331367, -0.001479139318689704, -0.049265943467617035, 0.025295311585068703, 0.0272524394094944, -0.0433979332447052, -0.028555380180478096, -0.011045978404581547, 0.06490961462259293, -0.025393912568688393, 0.021996214985847473, -0.024665571749210358, -0.043570954352617264, 0.07148811221122742, 0.021747702732682228, 0.006388443987816572, 0.04941277578473091, -0.01686236634850502, 0.04706236720085144, 0.02561023272573948, -0.0037174508906900883, 0.00211908551864326, 0.02954716980457306, -0.014867637306451797, -0.0466374009847641, 0.04038085415959358, 0.015313519164919853, -0.0363963358104229, -0.01995977945625782, 0.08245661109685898, 0.042888540774583817, -0.0404660701751709, -0.054694827646017075, 0.05077594518661499, -0.03644208237528801, -0.005740002728998661, -0.02776634506881237, 0.006139726843684912, -0.04153728112578392, 0.04098924621939659, -0.025761958211660385, 0.0062597524374723434, 0.06514421105384827, -0.007813366129994392, -0.004573764279484749, 0.019699670374393463, 0.079104483127594, 0.09404885023832321, 0.05010285601019859, 0.02204318158328533, 0.06701458990573883, -0.004028544295579195, -0.035944800823926926, -0.005115124862641096, 0.003547058207914233, -0.02372216433286667, 0.0039766887202858925, 0.02706988900899887, 0.045579519122838974, -0.011547503992915154, 0.06978149712085724, -0.02637629397213459, -0.022882239893078804, -0.013245216570794582, 0.01685997284948826, 0.03017633780837059, 0.04485591500997543, 0.024486694484949112, 0.04171476513147354, -0.023674504831433296, -0.036402687430381775, 0.031246239319443703, -0.013064052909612656, -0.021855590865015984, 0.029470277950167656, -0.017533667385578156, 0.0032389790285378695, 0.000556772924028337, 0.0707491934299469, 0.10452718287706375, -0.03022070787847042, -0.007710152771323919, -0.0006932744872756302, 0.008125048130750656, 0.014778908342123032, 0.025008674710989, -0.005986121948808432, -0.028448188677430153, -0.02279910445213318, -0.04255704581737518, -0.03130817040801048, -0.0241184551268816, -0.02839880995452404, 0.02105460688471794, -0.02333799935877323, -0.007287219166755676, 0.00025130322319455445, -0.008998391218483448, -0.028905978426337242, -0.052005086094141006, -0.030802136287093163, -0.033110227435827255, -0.07607939839363098, -0.019253768026828766, 0.017454419285058975, 0.00395627785474062, -0.019144123420119286, -0.018756026402115822, -0.018654581159353256, -0.015600868500769138, 0.05854178965091705, -0.04726537689566612, 0.01889493688941002, 0.006221120245754719, 0.023460472002625465, -0.00649471627548337, 0.028110871091485023, 0.051214978098869324, 0.009903885424137115, 0.008144354447722435, -0.006153462920337915, 0.039545994251966476, 0.018235964700579643, 0.037511397153139114, 0.0162335354834795, -0.0816720575094223, -0.02854919619858265, 0.005412663333117962, -0.01791250705718994, -0.0822533592581749, -0.005358380265533924, 0.05363304913043976, 0.007944533601403236, 0.05278517305850983, 0.032147347927093506, -0.008698501624166965, -0.026976970955729485, -0.010663618333637714, -0.02028905600309372, 0.011758753098547459, 0.02654356136918068, -0.011535764671862125, 0.0888601616024971, 0.05230887606739998, -0.023327618837356567, -0.03693173825740814, -0.04427068680524826, -0.0007340721786022186, 0.009301956743001938, -0.04878056421875954, -0.03603707253932953, -0.0400199294090271, -0.0868019163608551, -0.044623035937547684, 0.010362724773585796, -0.034212205559015274, -0.01614316552877426, 0.0019337914418429136, 0.025691494345664978, -0.028738928958773613, 0.03310985863208771, -0.048465002328157425, 0.028294390067458153, -0.009763451293110847, -0.020847538486123085, -0.029920386150479317, 0.002355290809646249, -0.008606682531535625, 0.0066866641864180565, 0.02192840538918972, -0.04112136736512184, -0.009759628213942051, -0.01883155107498169, 0.036735180765390396, 0.018056832253932953, 0.028869984671473503, -0.0004022834764327854 ]
[ -0.06525842845439911, -0.05520296096801758, -0.050193820148706436, -0.034832172095775604, 0.043134208768606186, -0.022502349689602852, -0.04107194021344185, 0.019871123135089874, -0.011173506267368793, -0.025735078379511833, 0.016638560220599174, -0.019144698977470398, -0.010691803880035877, -0.00225939997471869, 0.09131605178117752, 0.011956725269556046, -0.01635514199733734, -0.0410502552986145, -0.02525201439857483, 0.04585348069667816, 0.00921907089650631, -0.012269477359950542, -0.0014781104400753975, -0.03819849342107773, -0.02532317489385605, 0.03532230481505394, 0.03638618066906929, -0.042191457003355026, -0.007565731648355722, -0.1734398752450943, -0.011334103532135487, 0.006962049286812544, 0.03842981532216072, 0.016812046989798546, -0.016955168917775154, 0.037683915346860886, 0.05094898119568825, -0.00016441116167698056, -0.004258997272700071, 0.01979629322886467, 0.003931029234081507, -0.015095796436071396, -0.04926949366927147, -0.01639595627784729, 0.09837628901004791, -0.006420542951673269, -0.015577752143144608, -0.0035844058729708195, -0.05792945250868797, 0.03425092250108719, -0.025118688121438026, -0.024402396753430367, 0.008208571001887321, -0.0059047965332865715, 0.016636233776807785, 0.02526499703526497, 0.03976183012127876, 0.06439518928527832, 0.006820326671004295, 0.021114729344844818, 0.018528778105974197, 0.008037896826863289, -0.13645583391189575, 0.10243310034275055, -0.013235373422503471, 0.03529384359717369, -0.06340151280164719, -0.004596306011080742, -0.021171927452087402, 0.08412981033325195, 0.03261735662817955, -0.011591830290853977, -0.017100125551223755, 0.05000590905547142, -0.0003633330634329468, 0.056972578167915344, 0.005422616843134165, -0.0017210571095347404, 0.0397704616189003, -0.057935670018196106, -0.028376152738928795, 0.03647329658269882, -0.041925884783267975, -0.013477079570293427, -0.019754590466618538, 0.023531023412942886, -0.03267312049865723, 0.06286025047302246, -0.0034087481908500195, 0.030458353459835052, 0.029629463329911232, 0.007657833397388458, 0.049213457852602005, 0.02122640796005726, -0.06672205030918121, -0.034342195838689804, -0.0008862222894094884, 0.008771831169724464, -0.00390169327147305, 0.3917766213417053, -0.0036468494217842817, -0.003229126101359725, 0.02925330400466919, -0.005828585010021925, -0.025306710973381996, -0.019931985065340996, 0.0028462056070566177, -0.07368694990873337, 0.05211714655160904, 0.00854322500526905, -0.005455033387988806, -0.034752361476421356, 0.020095452666282654, -0.07963009923696518, -0.01366519182920456, -0.017873188480734825, 0.04245775192975998, 0.023215075954794884, -0.017520882189273834, 0.016448812559247017, -0.016254562884569168, -0.02418014220893383, 0.02168242819607258, -0.014513323083519936, 0.03379875048995018, 0.002732630353420973, 0.030991539359092712, 0.03153916448354721, 0.0556483156979084, 0.023346608504652977, 0.046787600964307785, 0.012080887332558632, -0.05163171887397766, 0.04373013600707054, 0.023125216364860535, -0.00709352595731616, 0.02443751133978367, -0.05159471929073334, -0.016848735511302948, 0.03366079553961754, -0.004958948586136103, 0.02839795872569084, 0.012369728647172451, 0.013140219263732433, -0.04663538187742233, 0.14218425750732422, -0.006653174292296171, -0.03243689984083176, -0.02681901678442955, -0.03636262193322182, 0.018720718100667, 0.07786829024553299, -0.003073303494602442, -0.047312114387750626, 0.004892966244369745, 0.009824722073972225, 0.09018740803003311, -0.02889641933143139, -0.07618523389101028, 0.00110074772965163, -0.019853685051202774, -0.026188336312770844, -0.05904897302389145, 0.10731781274080276, 0.014422617852687836, -0.15296943485736847, -0.011231648735702038, -0.00667073018848896, -0.017417877912521362, -0.07145161926746368, 0.02769300900399685, 0.024113574996590614, 0.0014432026073336601, -0.037542104721069336, 0.03411233425140381, 0.0002184431505156681, -0.03157038241624832, -0.021979380398988724, 0.049711547791957855, 0.004938872065395117, -0.03607111796736717, -0.030006615445017815, -0.03101102076470852, -0.005074264016002417, -0.06387023627758026, -0.06501904875040054, -0.049878984689712524, 0.011569038964807987, -0.01515011116862297, -0.010628883726894855, -0.03381723165512085, 0.008403468877077103, -0.04307860508561134, 0.08722438663244247, -0.032057229429483414, -0.004066871013492346, -0.018611595034599304, -0.01241880003362894, -0.011253831908106804, -0.020840588957071304, -0.013419807888567448, 0.031703464686870575, -0.015907367691397667, 0.0023242796305567026, -0.053635936230421066, 0.0007154566119424999, 0.06649280339479446, -0.02321154810488224, 0.07353411614894867, 0.017035188153386116, -0.050202351063489914, 0.011622099205851555, -0.019751252606511116, 0.0364903099834919, -0.028711503371596336, 0.017437174916267395, 0.009560300968587399, 0.004363033454865217, 0.018946414813399315, 0.06285525858402252, -0.053114332258701324, -0.001971584977582097, -0.04380389675498009, -0.3525967299938202, -0.03624996170401573, -0.00018496718257665634, 0.005350833293050528, 0.03432709351181984, -0.05032765865325928, 0.013938618823885918, -0.02201513573527336, 0.016753068193793297, 0.045966845005750656, 0.09241682291030884, -0.01638209819793701, 0.014195280149579048, -0.0810524970293045, 0.021367410197854042, 0.04001886025071144, 0.009036528877913952, -0.007731338031589985, -0.013799037784337997, 0.008380558341741562, -0.012382841669023037, -0.02993995137512684, 0.0004373106930870563, -0.07190348207950592, -0.018298478797078133, 0.005594320595264435, 0.102792888879776, -0.012253929860889912, 0.06023214012384415, -0.047026924788951874, 0.03380965813994408, -0.022879527881741524, -0.009543955326080322, -0.10791218280792236, 0.024504313245415688, -0.022276200354099274, 0.03528590500354767, 0.014854690060019493, 0.00424510333687067, -0.02782178297638893, -0.05082951486110687, 0.004994167480617762, -0.06420678645372391, -0.06075099855661392, -0.016693703830242157, 0.010309219360351562, -0.035757094621658325, -0.00589683698490262, 0.008112260140478611, 0.07749230414628983, -0.011004881002008915, 0.03205673769116402, -0.013403826393187046, 0.03628651052713394, -0.032496318221092224, -0.012401297688484192, -0.0769403725862503, -0.010247497819364071, 0.016119247302412987, 0.030317116528749466, 0.028670508414506912, 0.04892471432685852, 0.023454036563634872, -0.07318763434886932, 0.05213122069835663, -0.0032392130233347416, 0.004867181181907654, 0.03311650827527046, 0.043647702783346176, -0.03181193396449089, -0.03463581204414368, 0.13608577847480774, -0.018911095336079597, 0.029466835781931877, 0.043561793863773346, 0.030249835923314095, -0.0030619397293776274, -0.011760653927922249, 0.024792728945612907, 0.013916796073317528, 0.0479116328060627, -0.03360230103135109, 0.06541192531585693, -0.033289238810539246, -0.004101304803043604, 0.06833921372890472, 0.02611679770052433, -0.08534517139196396, 0.041767366230487823, 0.010983893647789955, -0.017024341970682144, 0.00452235946431756, -0.021720867604017258, -0.06732644140720367, 0.06760300695896149, -0.01937175542116165, -0.26305052638053894, 0.0416993573307991, 0.048201583325862885, 0.06918376684188843, -0.00892599206417799, 0.02437884546816349, 0.010469993576407433, -0.050575386732816696, 0.00530542666092515, 0.023335110396146774, 0.01696505770087242, 0.05648016557097435, -0.009879142045974731, -0.0016642761183902621, 0.00209581246599555, 0.011373907327651978, 0.04816610738635063, 0.027012014761567116, 0.024767160415649414, -0.007890338078141212, 0.04180929437279701, -0.01784076727926731, 0.1905234307050705, 0.02032613940536976, 0.019424043595790863, 0.02521825022995472, -0.029346272349357605, 0.008130224421620369, 0.05193191021680832, -0.008405795320868492, -0.01046809647232294, 0.05860750749707222, 0.008946300484240055, -0.003356768051162362, 0.03723730519413948, -0.03266086056828499, -0.028158584609627724, 0.03412875533103943, 0.01376883964985609, -0.01866954378783703, 0.01329393032938242, 0.014929505065083504, -0.03174813091754913, -0.001348485006019473, 0.04051195830106735, -0.0036379501689225435, 0.01620957814157009, -0.03861171379685402, -0.07207087427377701, 0.0010917981853708625, -0.04110293835401535, -0.06569910049438477, -0.011090312153100967, -0.02191426046192646, -0.002731286222115159, 0.08464256674051285, 0.01596245914697647, -0.03512165695428848, -0.011859657242894173, -0.022366734221577644, -0.02935837022960186, -0.04821314662694931, 0.06718653440475464, 0.01762131042778492, 0.010647272691130638 ]
[ 0.03152325376868248, 0.04976228252053261, 0.015852075070142746, 0.017272980883717537, 0.006904585752636194, 0.013644407503306866, 0.002630951115861535, 0.01857476867735386, -0.0025001505855470896, 0.03074573166668415, 0.004840451292693615, 0.009056155569851398, 0.030300434678792953, 0.005028612911701202, 0.036014508455991745, 0.06116101145744324, -0.00663821492344141, 0.0006506276549771428, 0.0010354035766795278, -0.02570323832333088, -0.030690712854266167, 0.00549199478700757, 0.016581768169999123, -0.030139507725834846, -0.003709720680490136, 0.03173110634088516, -0.05976889654994011, 0.009629477746784687, 0.023194028064608574, -0.11092397570610046, -0.001736348494887352, -0.03388146683573723, -0.034646615386009216, 0.0363282673060894, -0.0036185455974191427, 0.01397264190018177, 0.03136654570698738, -0.006589680910110474, 0.0007016329327598214, 0.022978445515036583, 0.026078836992383003, 0.008379156701266766, -0.030978107824921608, 0.000244295661104843, 0.0048516299575567245, 0.01635420136153698, -0.034541718661785126, -0.015510504133999348, 0.015472045168280602, 0.004824587609618902, -0.03320832550525665, -0.026449695229530334, -0.01952340453863144, 0.01357872225344181, 0.002768473932519555, 0.002565532922744751, -0.04874759539961815, -0.000534437014721334, 0.010101737454533577, -0.0013099061325192451, 0.012409292161464691, -0.04001252353191376, -0.03095690719783306, -0.013821685686707497, -0.02767026610672474, 0.008260718546807766, -0.011714085005223751, -0.00523395137861371, -0.007082525175064802, 0.019610056653618813, 0.0017089828616008162, 0.0462828055024147, -0.07061794400215149, -0.04321487993001938, -0.029434995725750923, 0.02989952638745308, 0.033894047141075134, -0.004152980167418718, -0.010620986111462116, 0.0018461347790434957, -0.0273123849183321, 0.03564576432108879, -0.03074192814528942, 0.019868124276399612, -0.04432866349816322, -0.006198215298354626, -0.006940415594726801, -0.038948751986026764, 0.022734740749001503, 0.004412185400724411, -0.029756207019090652, -0.00904151238501072, 0.011806664057075977, -0.010870957747101784, -0.0969158187508583, 0.022606676444411278, 0.014446382410824299, -0.022262949496507645, -0.0025916891172528267, 0.8431336283683777, 0.011663555167615414, -0.013923733495175838, 0.01790759712457657, -0.0007414956344291568, 0.009088076651096344, 0.015426425263285637, -0.014124235138297081, 0.0051972162909805775, 0.009932358749210835, -0.01849936507642269, -0.014195853844285011, 0.034584954380989075, 0.01953129842877388, 0.03310520946979523, 0.017809094861149788, 0.022762401029467583, 0.009152849204838276, -0.02998812310397625, 0.005537494085729122, 0.04965746030211449, -0.019053224474191666, 0.020575696602463722, 0.013585520908236504, -0.008238683454692364, -0.024876002222299576, -0.15553973615169525, 0.00944314245134592, -6.18719541376991e-33, 0.06739439815282822, 0.03021734394133091, 0.04661830887198448, -0.004199682734906673, 0.014391327276825905, 0.006996860262006521, -0.010298183187842369, -0.034315720200538635, -0.03510628268122673, -0.052095334976911545, -0.022963672876358032, -0.012640540488064289, 0.023918796330690384, 0.002395855262875557, 0.004463637713342905, -0.018393250182271004, 0.005579885095357895, 0.021377582103013992, 0.015356676653027534, 0.011893120594322681, -0.012143821455538273, 0.026676062494516373, -0.012174300849437714, 0.011309514753520489, -0.03338322415947914, 0.022216489538550377, 0.0167177002876997, -0.014133164659142494, 0.00853164866566658, -0.048819590359926224, -0.03464854136109352, 0.03571479395031929, 0.002554351929575205, -0.026275603100657463, 0.0006883200840093195, -0.07017908245325089, -0.04234134778380394, 0.00870058499276638, -0.02840721793472767, -0.04760809987783432, -0.031014638021588326, 0.01491595059633255, -0.009092972613871098, -0.040372081100940704, -0.02673262543976307, -0.013927227817475796, -0.003992770332843065, -0.0008865875424817204, 0.0017867033602669835, -0.0030261531937867403, 0.002376725897192955, 0.011378510855138302, 0.0019134341273456812, 0.030134784057736397, 0.0031629526056349277, 0.0016593433683738112, 0.00027747382409870625, -0.01910185068845749, -0.008319550193846226, 0.005868545733392239, 0.032392468303442, -0.0304200891405344, -0.011585642583668232, 0.017812544479966164, 0.002746169688180089, 0.000510853948071599, 0.008732547983527184, 0.0020285015925765038, 0.032307688146829605, 0.014967834576964378, -0.019138513132929802, 0.028388770297169685, -0.02428814023733139, -0.009081492200493813, 0.046579644083976746, -0.04838928207755089, 0.015460551716387272, -0.023398740217089653, 0.009840649552643299, 0.050553902983665466, -0.02431877702474594, -0.029374882578849792, 0.016484057530760765, -0.006012763828039169, -0.04997559264302254, -0.0451979823410511, 0.0321161113679409, 0.005486752837896347, 0.017781034111976624, 0.03851944953203201, 0.02667536772787571, 0.033843036741018295, -0.03264723718166351, -0.027298741042613983, -0.006622151471674442, 6.200258094743422e-33, -0.010606841184198856, 0.00041840632911771536, -0.03598010912537575, -0.002164360135793686, 0.014110852964222431, -0.015839973464608192, 0.03601989522576332, 0.027027444913983345, -0.03984634205698967, 0.04687656834721565, 0.01200160663574934, -0.032791636884212494, -0.00856458768248558, 0.03479437530040741, 0.06755976378917694, 0.00846616830676794, 0.020753653720021248, -0.029073240235447884, 0.028636692091822624, 0.0446319580078125, 0.016709815710783005, 0.011931193061172962, -0.023951852694153786, 0.027736669406294823, 0.06436547636985779, 0.010280835442245007, -0.013398924842476845, 0.0020878533832728863, -0.028876472264528275, -0.03795424476265907, 0.0018783692503347993, -0.044967494904994965, -0.009659387171268463, 0.00018187466775998473, -0.0026504795532673597, -0.00043627331615425646, -0.007552274968475103, -0.012731059454381466, 0.00938628613948822, -0.01680956594645977, 0.0474126897752285, 0.024415787309408188, -0.026113463565707207, 0.019984034821391106, -0.0033130396623164415, 0.02604256570339203, -0.011928322724997997, -0.011308958753943443, -0.010338619351387024, 0.015970271080732346, -0.0157780721783638, 0.035669248551130295, -0.007443153765052557, 0.027773108333349228, -0.012951414100825787, -0.046116262674331665, 0.013573563657701015, 0.025607803836464882, -0.031643759459257126, 0.016456397250294685, -0.02845827117562294, -0.04305340349674225, 0.003598311450332403, -0.016097266227006912, -0.010110046714544296, -0.015979772433638573, -0.030142778530716896, -0.018833018839359283, -0.04040149599313736, -0.0021674768067896366, 0.0012744456762447953, -0.020005185157060623, 0.008572530932724476, 0.025113478302955627, 0.04572349414229393, -0.013654434122145176, -0.028349608182907104, -0.002872518729418516, -0.05075329542160034, -0.012491405941545963, 0.004540614318102598, 0.04484514892101288, 0.011904861778020859, 0.030664270743727684, 0.011930390261113644, 0.018570207059383392, -0.01089695654809475, 0.023946374654769897, -0.026846855878829956, 0.014302277006208897, -0.012043005786836147, -0.03236760199069977, -0.034337885677814484, 0.05601663887500763, -0.00479986472055316, -1.2567795693030348e-8, -0.049594465643167496, 0.015591016039252281, -0.010316724888980389, 0.00946509838104248, -0.0067215957678854465, 0.020713619887828827, -0.007938571274280548, 0.018854504451155663, -0.010635648854076862, -0.017665989696979523, 0.039091356098651886, -0.011695348657667637, -0.011711930856108665, -0.016906682401895523, 0.024893037974834442, -0.018624216318130493, 0.006903970614075661, -0.04344562068581581, 0.04525621980428696, -0.012460689060389996, 0.012869449332356453, 0.022892266511917114, -0.006370795890688896, 0.01911936327815056, -0.009668814949691296, -0.014214950613677502, 0.04806375876069069, -0.0668601542711258, -0.009157507680356503, -0.019621992483735085, -0.0038607092574238777, -0.01825810968875885, -0.008622200228273869, 0.011866468004882336, -0.006975624710321426, -0.029194779694080353, 0.023433776572346687, 0.011588072404265404, -0.003592994762584567, 0.02065875753760338, -0.0052017937414348125, 0.04607853665947914, -0.029746564105153084, -0.0413956381380558, 0.004459010437130928, 0.022901475429534912, 0.0017874346813187003, -0.006774730049073696, 0.030248451977968216, -0.004657660610973835, -0.014736264944076538, -0.005749742034822702, 0.010384158231317997, 0.04045555368065834, 0.032471444457769394, -0.02456936240196228, 0.010457878932356834, -0.06616084277629852, -0.03379859775304794, -0.002222841139882803, 0.03228677809238434, 0.028202742338180542, -0.016576649621129036, -0.014650480821728706 ]
quick-graph-building-entity-graph-twin4j-apoc-nlp
https://markhneedham.com/blog/2020/05/05/quick-graph-building-entity-graph-twin4j-apoc-nlp
false
2020-05-12 00:21:00
Google Docs: Find and replace script
[ "google-docs" ]
[ "Google Docs" ]
I keep track of the podcasts that I've listened to in a Google Doc, having pasted the episode title and podcast name from Player.FM. The format isn't exactly what I want so I've been running the `Find and Replace` command to update each entry. This is obviously a very boring task, so I wanted to see if I could automate it. An example entry in the Google Doc reads like this: [source, text] ---- * Listened to Worst of the Big 3 by The Tennis Podcast https://player.fm/1BBKmKQ #nowplaying ---- And I want it to read like this: [source, text] ---- * Listened to Worst of the Big 3 by The Tennis Podcast - https://player.fm/1BBKmKQ ---- We can do this by doing by replacing: * `\nht` with `&nbsp;- ht&nbsp;` * `#nowplaying` with nothing We can create a Google script by clicking `Tools` > `Script editor`, which will take us to an editor with the following text: [source,javascript] ---- function myFunction() { } ---- We can write the following code to update our Google Doc: [source,javascript] ---- function myFunction() { // https://docs.google.com/document/d/<document-id>/edit let documentId = "<document-id>" let document = DocumentApp.openById(documentId); let body = document.getBody().getText() document.getBody().setText(body.replace(/#nowplaying/g, "").replace(/\nht/g, " - ht")) } ---- I tried using the `replaceText` function that can be run against the body of the document, but I couldn't figure out how to get that to work with the new line character. We can then run that manually to update our document, but we can go one better and setup a trigger. We can setup a trigger via the `Edit` menu: image::{{<siteurl>}}/uploads/2020/05/triggers.png[title="Triggers"] Once the next screen loads, we can then click on `Add Trigger` to set everything up: image::{{<siteurl>}}/uploads/2020/05/add-trigger.png[title="Add Trigger"] This trigger will run our script once an hour, removing new lines and the `#nowplaying` phrase. Boredom removed!
Learn how to write a script to run find and replace on a Google Doc
null
[ -0.02553747594356537, 0.004622005857527256, 0.009522870182991028, 0.029107438400387764, 0.08017227798700333, -0.011176995001733303, 0.016147112473845482, 0.04047923907637596, 0.019287249073386192, -0.02647215500473976, -0.027862409129738808, 0.04705147072672844, -0.058837272226810455, -0.014513799920678139, -0.003287092549726367, 0.0694301500916481, 0.06441599875688553, -0.0038543730042874813, 0.01501175481826067, -0.035886287689208984, 0.01942860521376133, 0.05866887420415878, -0.015501757152378559, 0.033452440053224564, 0.03400999680161476, 0.026453671976923943, -0.007263637147843838, 0.021202588453888893, -0.07467053085565567, 0.015604810789227486, 0.032222360372543335, -0.03236536309123039, 0.003039207775145769, -0.0069909971207380295, 0.017461394891142845, -0.0061900499276816845, 0.023093532770872116, 0.014955123886466026, -0.015308643691241741, 0.027757618576288223, -0.06585708260536194, 0.011977368034422398, -0.04282888025045395, 0.029058165848255157, -0.034730855375528336, 0.018309615552425385, -0.04063362255692482, 0.013253020122647285, -0.01290548499673605, -0.020673830062150955, -0.055312298238277435, 0.05252746120095253, -0.0026880872901529074, -0.011178233660757542, 0.004029958043247461, 0.06256088614463806, 0.04104982689023018, -0.043284814804792404, -0.0022945827804505825, 0.0032480035442858934, -0.03471368923783302, -0.013062032870948315, -0.0032824769150465727, 0.03697429224848747, 0.0015492215752601624, -0.01949448511004448, -0.0025914062280207872, 0.04455111548304558, -0.013014310039579868, -0.01717975363135338, -0.03157006576657295, -0.0048368582502007484, -0.017928672954440117, -0.03269335255026817, 0.021585894748568535, -0.033143721520900726, -0.003247885499149561, 0.06660404056310654, 0.0034796649124473333, 0.046903468668460846, -0.03133372962474823, 0.007023890037089586, 0.0122799351811409, 0.01778002828359604, 0.0000064927830862870906, -0.0493236668407917, -0.044234152883291245, -0.015708405524492264, -0.05110789090394974, 0.043622974306344986, 0.012017347849905491, -0.08193603157997131, 0.0116294976323843, 0.03578583523631096, -0.003327907994389534, 0.0018490101210772991, 0.01820352114737034, 0.0036959617864340544, -0.015130577608942986, 0.0008548623882234097, -0.056142810732126236, -0.0033870451152324677, 0.039948470890522, 0.010770142078399658, -0.05852409079670906, 0.0035083910916000605, -0.014861964620649815, -0.021337183192372322, -0.007234138902276754, -0.0016885135555639863, 0.0030530637595802546, 0.004506218247115612, -0.0022954524029046297, 0.027200909331440926, -0.08028878271579742, 0.06685842573642731, 0.03625912591814995, -0.0093966880813241, 0.013398322276771069, 0.03063790872693062, 0.03775729238986969, 0.017392661422491074, 0.007675183936953545, 0.07914149761199951, 0.007901654578745365, 0.011174838989973068, 0.003494623117148876, 0.043188828974962234, -0.012498784810304642, -0.0687902569770813, -0.011570448987185955, 0.05217646062374115, -0.010129890404641628, 0.01613575965166092, 0.009993046522140503, -0.008516686968505383, -0.027729099616408348, -0.013599063269793987, 0.0689893513917923, 0.05900896340608597, 0.001700212131254375, -0.00546836806461215, -0.03935687988996506, -0.00755493575707078, 0.030354199931025505, -0.022575488314032555, -0.03301233425736427, -0.03764377906918526, -0.0357353575527668, 0.015842538326978683, 0.003050128696486354, 0.006768062245100737, 0.0877525731921196, -0.030247554183006287, -0.02013806439936161, 0.10127682238817215, 0.028122903779149055, 0.014157447963953018, -0.012744579464197159, -0.007504544220864773, 0.05648523569107056, 0.03824146091938019, -0.013830945827066898, 0.043024953454732895, 0.0008124252199195325, -0.025569472461938858, -0.012237361632287502, 0.06374994665384293, -0.004675242118537426, -0.014292038977146149, -0.05148117244243622, -0.03685431927442551, 0.0799548327922821, -0.01995781809091568, -0.01491647120565176, 0.022652629762887955, 0.077830970287323, 0.0026178916450589895, 0.02195582166314125, 0.052179232239723206, -0.07728306949138641, 0.03001353144645691, 0.02901243045926094, 0.005495484918355942, 0.04483683407306671, -0.01768862083554268, 0.0683952271938324, 0.006981777027249336, 0.028757859021425247, 0.012306757271289825, -0.09523893892765045, -0.09337564557790756, -0.0038450974971055984, 0.002284245565533638, 0.05430334806442261, -0.026099136099219322, 0.009688442572951317, 0.10536572337150574, 0.028631776571273804, 0.03880186751484871, 0.030608786270022392, -0.019059592857956886, 0.034719306975603104, -0.03887253627181053, -0.04896896332502365, 0.017381560057401657, 0.013155474327504635, -0.04761522635817528, -0.008500708267092705, 0.03130331262946129, -0.05010055750608444, 0.04569451883435249, 0.03769460320472717, -0.016966382041573524, 0.03166727349162102, 0.008965535089373589, 0.05561404675245285, -0.014522396959364414, 0.02010408043861389, -0.048622701317071915, 0.023603269830346107, 0.044978879392147064, -0.009128080680966377, 0.00694225262850523, -0.028509480878710747, 0.13437791168689728, 0.044757019728422165, -0.02823597379028797, -0.0711035504937172, 0.024791866540908813, 0.006953055039048195, -0.0008286101510748267, -0.0032871761359274387, -0.01163889467716217, 0.009625551290810108, 0.013698065653443336, -0.01328757032752037, -0.02443815767765045, -0.019640089944005013, -0.037085115909576416, 0.015825321897864342, 0.033516183495521545, 0.00740436278283596, 0.056545060127973557, 0.012470724061131477, -0.010498234070837498, -0.006809446029365063, -0.006317886058241129, -0.02870049700140953, -0.028216155245900154, 0.04777485504746437, -0.01989923045039177, 0.03234576806426048, -0.04396815970540047, -0.019035784527659416, -0.01250778790563345, -0.0718991756439209, 0.02809222601354122, 0.039249811321496964, 0.05525033921003342, -0.008971736766397953, 0.03262278810143471, -0.014179308898746967, 0.003702829359099269, -0.01556612178683281, -0.03734643757343292, -0.02949572168290615, -0.02591605857014656, -0.045169513672590256, -0.009486476890742779, 0.002563771791756153, 0.04529643803834915, -0.021109096705913544, -0.002884291112422943, -0.005745486821979284, 0.0015866573667153716, 0.01941187120974064, -0.014382329769432545, 0.005740868393331766, -0.012165110558271408, -0.010863631032407284, 0.03451807424426079, -0.041069045662879944, -0.029996639117598534, -0.020360641181468964, -0.07288049161434174, -0.002169002778828144, -0.05445612967014313, -0.02804788015782833, 0.007650647312402725, -0.03772667795419693, 0.05340723320841789, 0.011425767093896866, 0.03354150429368019, 0.06168002262711525, -0.016062557697296143, 0.02129374071955681, -0.0006711210589855909, 0.004343715030699968, 0.03318454697728157, 0.0076078311540186405, 0.00947093591094017, 0.06971926987171173, -0.0378960445523262, -0.028788460418581963, -0.06327655166387558, 0.014922338537871838, -0.06862515211105347, -0.26880401372909546, 0.05479675158858299, -0.010905701667070389, -0.04994801804423332, 0.023302556946873665, -0.015955928713083267, 0.016897715628147125, -0.059131357818841934, -0.032647714018821716, 0.0337987057864666, -0.043492767959833145, -0.028113460168242455, -0.03256404399871826, 0.04521043226122856, 0.01185247115790844, 0.007029485423117876, -0.06188566982746124, -0.020183688029646873, -0.027372248470783234, 0.036880895495414734, -0.010753444395959377, -0.05073677748441696, 0.05372488871216774, 0.02370610460639, 0.029959699138998985, 0.043246034532785416, -0.06387467682361603, 0.01129490602761507, -0.0289592407643795, -0.020157841965556145, 0.02639612928032875, -0.026578936725854874, 0.020777428522706032, 0.0087009621784091, -0.013875152915716171, -0.005667377728968859, 0.04359414801001549, -0.003995462786406279, -0.0031014883425086737, -0.007171394769102335, -0.03453271836042404, -0.012666602618992329, 0.014474835246801376, 0.0003910576633643359, 0.09191747009754181, -0.004939522128552198, -0.04650342836976051, 0.013008097186684608, -0.05209210515022278, 0.07109084725379944, -0.00538343982771039, -0.03916702792048454, -0.03991927206516266, 0.04400032386183739, 0.01933850720524788, 0.010997605510056019, 0.0034426283091306686, -0.019926484674215317, -0.030045513063669205, -0.05126280337572098, -0.0006898559513501823, -0.021759897470474243, -0.010802016593515873, -0.006191443186253309, 0.004216569941490889, -0.08549581468105316, -0.0574335940182209, -0.007322939112782478, 0.09335862100124359, 0.05266004055738449, -0.026564741507172585, 0.020821379497647285, 0.00950179249048233, -0.09783537685871124, -0.04385834187269211, -0.019865334033966064, -0.013259988278150558, 0.014456033706665039, -0.032891880720853806, 0.04426475241780281, -0.06261926144361496, -0.02848775126039982, 0.01047494262456894, 0.0020084597636014223, 0.031021423637866974, -0.03809057176113129, 0.01933036372065544, 0.022857757285237312, -0.015413484536111355, -0.02922138199210167, 0.07079055160284042, -0.07644045352935791, -0.013435925357043743, -0.005083058495074511, -0.011905951425433159, 0.03388451039791107, -0.013758117333054543, 0.0044056689366698265, -0.0011085827136412263, 0.024308228865265846, 0.03576095029711723, -0.03508780896663666, 0.017605828121304512, -0.0447009801864624, -0.0004530130827333778, 0.00903223641216755, -0.050825025886297226, 0.0143387820571661, 0.01321601215749979, 0.019770042970776558, -0.016637563705444336, 0.005859586875885725, 0.02259688451886177, -0.047381699085235596, -0.014064855873584747, -0.016874410212039948, 0.03575140982866287, 0.0157307256013155, 0.005426604766398668, -0.05130021646618843, -0.028439532965421677, -0.012543423101305962, -0.022299330681562424, -0.006437875330448151, -0.07432100176811218, 0.002348216949030757, 0.02226058952510357, -0.027529703453183174, 0.03407379239797592, -0.013469681143760681, -0.024383533746004105, -0.0012233378365635872, 0.013435064814984798, -0.014924806542694569, 0.023937666788697243, -0.03941994160413742, -0.031385887414216995, -0.020058805122971535, -0.0021986057981848717, 0.0009127217927016318, -0.0019367915811017156, -0.00843973457813263, 0.005741417407989502, 0.006376378238201141, 0.049151550978422165, -0.03842244669795036, 0.01866030879318714, 0.0010315539548173547, -0.012115243822336197, 0.0031891099642962217, 0.003084996249526739, -0.01819700002670288, 0.005505315028131008, -0.032849688082933426, -0.030852219089865685, -0.015829429030418396, 0.03861077129840851, -0.010263689793646336, 0.009530789218842983, -0.050172965973615646, 0.0021981035824865103, -0.04134158045053482, -0.0067850868217647076, 0.010458976030349731, 0.024778397753834724, 0.031908974051475525, 0.01301026251167059, 0.03594766929745674, -0.006247301585972309, 0.012529343366622925, 0.007554184179753065, -0.034392546862363815, -0.050511717796325684, -0.025959668681025505, -0.017166193574666977, -0.021099235862493515, 0.04648980125784874, 0.0463462695479393, -0.006464190781116486, 0.04418431967496872, 0.028274592012166977, -0.043217748403549194, 0.01174582727253437, 0.005761568434536457, 0.06154313683509827, 0.03261648118495941, -0.0009743864648044109, -0.001235729781910777, -0.007463748101145029, -0.0429823212325573, -0.03420588746666908, 0.0090656578540802, -0.03807887062430382, -0.006116495467722416, -0.0374968945980072, -0.07951870560646057, 0.031161004677414894, 0.017714818939566612, 0.01587045192718506, 0.0010010100668296218, -0.028829695656895638, 0.0030636906158179045, -0.05204923823475838, 0.03164594992995262, 0.057428423315286636, -0.04250013828277588, -0.018355173990130424, -0.04391783848404884, 0.011847478337585926, 0.019245607778429985, 0.021333159878849983, -0.0443786159157753, 0.0007337516290135682, -0.044197481125593185, 0.015074164606630802, -0.04327068477869034, -0.006022249348461628, -0.04783890023827553, 0.014872088097035885, -0.015658065676689148, 0.018976688385009766, -0.02966403029859066, -0.012085500173270702, 0.023972636088728905, -0.024457724764943123, 0.016658250242471695, -0.03608490899205208, -0.03454424813389778, 0.031138453632593155, -0.03397061675786972, 0.05829174071550369, -0.004411161877214909, 0.04520498961210251, 0.043947115540504456, -0.013422098010778427, -0.02273511327803135, -0.042514000087976456, 0.017623798921704292, 0.0030327343847602606, 0.0682964101433754, 0.029646413400769234, -0.011552933603525162, -0.03637807443737984, 0.014976728707551956, -0.04029044136404991, 0.0007397271692752838, -0.020906563848257065, -0.031548693776130676, 0.026029877364635468, 0.08740733563899994, 0.03187130391597748, 0.0339541956782341, -0.01300144288688898, -0.024693239480257034, 0.028462985530495644, -0.04486362263560295, -0.0037544951774179935, 0.03655092418193817, -0.06122436001896858, 0.06118716672062874, 0.03617969527840614, 0.026831455528736115, -0.06923170387744904, 0.005704989656805992, 0.0680752843618393, 0.001724936650134623, 0.0015134812565520406, -0.016357824206352234, 0.0178083423525095, -0.016405925154685974, -0.021282270550727844, -0.07514552772045135, 0.000607732159551233, 0.008187027648091316, 0.017197104170918465, -0.008353066630661488, 0.023108314722776413, -0.00232662889175117, 0.019504308700561523, -0.052319806069135666, -0.024642473086714745, 0.028267357498407364, -0.007470320910215378, -0.010331417433917522, 0.028117993846535683, -0.05374534800648689, 0.030472513288259506, 0.0331946462392807, -0.0010787657229229808, -0.022042211145162582, -0.016956346109509468, 0.04932956397533417, 0.018601184710860252, 0.022564180195331573, -0.016403475776314735, -0.026262186467647552, 0.08363109081983566, 0.02346894145011902, 0.05103388428688049, 0.05233234167098999, 0.010148731991648674, 0.04972372204065323, 0.04224022850394249, 0.00895026046782732, -0.002191155217587948, 0.0181033406406641, -0.02833898738026619, -0.05855429172515869, 0.04897572472691536, -0.01165300514549017, -0.026038426905870438, -0.026483047753572464, 0.061312656849622726, 0.01016851793974638, -0.03653164207935333, -0.04656548053026199, 0.0008278040331788361, -0.035698775202035904, -0.019429849460721016, -0.02976786158978939, -0.012593662366271019, -0.051147982478141785, 0.04643901437520981, -0.007620474323630333, 0.011283054016530514, 0.06485676020383835, -0.0019209763268008828, 0.004017356317490339, -0.009520215913653374, 0.05247344821691513, 0.08713336288928986, 0.04789837449789047, 0.00009762198897078633, 0.0678129717707634, -0.021729132160544395, -0.05079387500882149, 0.007186701521277428, -0.006476397160440683, 0.014742462895810604, -0.02630876563489437, -0.018391195684671402, 0.06225891783833504, -0.023423971608281136, 0.07199979573488235, 0.021898703649640083, -0.020611470565199852, -0.016032598912715912, -0.015309692360460758, 0.03236447647213936, 0.028701646253466606, 0.006145955063402653, 0.02532600797712803, -0.012809108011424541, -0.03752060607075691, 0.06150661036372185, -0.025986356660723686, -0.007308346219360828, 0.014880244620144367, -0.04273652285337448, 0.0443694107234478, -0.008052478544414043, 0.016019918024539948, 0.046433307230472565, 0.0021975913550704718, 0.028599515557289124, 0.007253264542669058, 0.02693949081003666, 0.009697165340185165, 0.02734333649277687, -0.0015848815673962235, -0.026359906420111656, -0.008563410490751266, -0.054974399507045746, -0.0014949621399864554, -0.003672816324979067, -0.05122789740562439, 0.011982482858002186, -0.03636965900659561, 0.03611119091510773, 0.04006071388721466, 0.0027490975335240364, -0.04858483001589775, -0.030821356922388077, -0.0489245243370533, -0.07288794964551926, -0.03963516652584076, -0.03796643018722534, -0.015812691301107407, 0.01371566578745842, -0.03778081014752388, -0.026610251516103745, -0.05020404979586601, 0.016097333282232285, 0.004943205043673515, -0.03808499127626419, -0.05075250566005707, 0.027098523452878, 0.026778968051075935, 0.02526155114173889, 0.032519202679395676, 0.0311612356454134, -0.014889718033373356, -0.03907609358429909, -0.02701077051460743, -0.0012214110465720296, 0.042890604585409164, -0.0004356123972684145, 0.016794439405202866, -0.08063614368438721, 0.02111218497157097, 0.011990522965788841, -0.0017971473280340433, -0.07029883563518524, -0.002834805753082037, 0.042510464787483215, 0.0014974060468375683, 0.049350108951330185, 0.0006588309770449996, -0.01110073085874319, -0.06642676144838333, 0.006819019094109535, 0.010067262686789036, -0.005401060916483402, 0.05757402628660202, -0.01946910470724106, 0.09561246633529663, 0.009945920668542385, -0.014123816043138504, -0.041345950216054916, -0.004497105721384287, -0.012681696563959122, 0.007350774947553873, -0.04159786179661751, -0.06110915169119835, -0.04684359207749367, -0.059169892221689224, -0.036100663244724274, 0.029143616557121277, -0.024565691128373146, -0.0096243005245924, 0.023654378950595856, 0.03152201697230339, -0.03952300176024437, 0.07043514400720596, -0.04617337882518768, 0.007198265288025141, -0.01828259788453579, -0.015231721103191376, -0.017848001793026924, 0.014803879894316196, 0.024760117754340172, -0.006237946916371584, 0.05277406796813011, -0.03154180571436882, -0.009426123462617397, -0.026911785826086998, -0.013951477594673634, 0.04214044287800789, 0.0011373792076483369, -0.002913910197094083 ]
[ -0.07207924872636795, -0.010277106426656246, 0.018764739856123924, -0.049950011074543, 0.0724932849407196, -0.03939590975642204, -0.04081927239894867, -0.00802889745682478, -0.00872261542826891, 0.015701763331890106, -0.022798091173171997, 0.010292820632457733, -0.005346187390387058, -0.025414250791072845, 0.044473882764577866, -0.008899972774088383, -0.010569728910923004, -0.06165704131126404, -0.028889579698443413, 0.0471293069422245, -0.007888440042734146, 0.0035396276507526636, -0.004597586579620838, 0.009361891075968742, 0.01779554970562458, 0.043991923332214355, 0.018492255359888077, -0.009364225901663303, -0.017861733213067055, -0.19902053475379944, -0.02266882173717022, -0.04028572887182236, 0.03233139216899872, 0.002394643845036626, -0.020709041506052017, 0.04624363034963608, 0.007687055040150881, 0.02470915950834751, -0.017194174230098724, 0.06923937797546387, 0.06260059773921967, 0.018436845391988754, -0.060152553021907806, -0.0750134065747261, 0.01937008649110794, 0.015190789476037025, 0.022062189877033234, -0.030047833919525146, 0.02879815734922886, 0.03509608283638954, -0.05994149670004845, 0.0051981913857162, -0.026609700173139572, -0.01850932464003563, -0.003914657048881054, -0.009450041688978672, 0.048345040529966354, 0.06549783796072006, 0.02069786563515663, 0.037682123482227325, 0.03777752444148064, 0.03002079576253891, -0.12259189039468765, 0.13509501516819, -0.0024133368860930204, 0.06880275905132294, -0.06761130690574646, -0.014591781422495842, -0.021848507225513458, 0.11006394028663635, -0.025279566645622253, -0.007146024145185947, -0.03384615480899811, 0.04460536316037178, 0.022296348586678505, -0.011817014776170254, 0.003526828018948436, 0.026295581832528114, 0.009960245341062546, -0.019831201061606407, -0.06751447916030884, -0.0400424562394619, -0.03772000968456268, -0.044198572635650635, -0.01324534509330988, -0.03500169515609741, -0.006955097895115614, 0.014444963075220585, -0.024687517434358597, 0.013659174554049969, 0.018853941932320595, -0.008757788687944412, 0.0885557234287262, 0.03862404450774193, -0.10263776779174805, -0.016195232048630714, -0.03849279507994652, -0.0032693487592041492, -0.036975160241127014, 0.399157851934433, -0.0316631942987442, -0.029906529933214188, 0.05020061880350113, 0.048175305128097534, 0.019497986882925034, -0.020634537562727928, 0.03675863519310951, -0.03169875964522362, 0.014501838013529778, -0.03357240930199623, -0.012835832312703133, 0.010013233870267868, 0.05705813318490982, -0.035947855561971664, 0.014518537558615208, 0.05913231521844864, 0.04220367968082428, 0.05722631886601448, 0.016518203541636467, -0.014889288693666458, 0.0039666797965765, -0.01631917804479599, -0.017430346459150314, 0.010938518680632114, 0.022584062069654465, -0.00990399532020092, 0.06696801632642746, 0.029526732861995697, 0.01477005984634161, 0.013462788425385952, 0.06408616900444031, -0.026960188522934914, -0.08517017960548401, 0.010406266897916794, 0.03789268806576729, 0.009323453530669212, 0.02496218867599964, -0.04302460700273514, -0.0313388928771019, 0.01754315011203289, 0.0022032582201063633, -0.06573336571455002, -0.0068366024643182755, 0.019546879455447197, -0.04248804971575737, 0.11955990642309189, -0.025948036462068558, -0.0530204251408577, -0.06086578592658043, -0.04498893767595291, 0.0008874425548128784, 0.01244620606303215, 0.013277423568069935, -0.018887661397457123, 0.0077810138463974, 0.013890578411519527, 0.1309146285057068, -0.028334224596619606, -0.056727733463048935, -0.04026468098163605, -0.0032515788916498423, -0.0024849758483469486, -0.004057447426021099, 0.05255421623587608, 0.052664849907159805, -0.06884709745645523, -0.04348975792527199, 0.002478022826835513, -0.0030312680173665285, -0.06298412382602692, -0.005698579829186201, 0.006746923550963402, -0.03190385550260544, 0.009030165150761604, 0.05468476191163063, -0.012577942572534084, -0.01334334909915924, 0.029200375080108643, 0.09446046501398087, -0.016040129587054253, 0.03743189945816994, -0.02131989784538746, -0.07297060638666153, 0.008425392210483551, -0.07966761291027069, -0.09376919269561768, -0.06065818667411804, 0.00025579927023500204, 0.023658616468310356, 0.02172173745930195, 0.023382438346743584, -0.012494786642491817, -0.021622000262141228, 0.07436159998178482, -0.046651050448417664, -0.032410163432359695, -0.02986084297299385, -0.020061137154698372, -0.02274233102798462, -0.04260038211941719, -0.024943681433796883, 0.009328292682766914, -0.012656180188059807, -0.03295692801475525, -0.026179101318120956, 0.010078671388328075, 0.0299315694719553, -0.04360111057758331, 0.08181240409612656, 0.0019020445179194212, -0.0574701651930809, 0.003780159167945385, -0.021951211616396904, 0.024992838501930237, 0.0051709250546991825, -0.05973890423774719, -0.02469559945166111, 0.002895814599469304, 0.012264757417142391, 0.004968820605427027, -0.0512971393764019, -0.011046178638935089, 0.011929772794246674, -0.3177524209022522, -0.011437042616307735, -0.034902509301900864, 0.009935278445482254, 0.017968345433473587, -0.062212515622377396, 0.01977081596851349, 0.006990144029259682, 0.043456949293613434, 0.059590987861156464, 0.06018843129277229, -0.051627520471811295, 0.007175812963396311, -0.07660523802042007, 0.013471524231135845, 0.020161602646112442, -0.008428351953625679, -0.03275233134627342, 0.03613956272602081, 0.06879020482301712, 0.049335137009620667, -0.03974529728293419, -0.04084428399801254, -0.07149045169353485, 0.019405560567975044, -0.0047871447168290615, 0.08410602062940598, 0.07505926489830017, 0.02994367480278015, -0.04929390177130699, 0.056862734258174896, 0.022589897736907005, 0.026507865637540817, -0.11456798017024994, -0.020485203713178635, 0.0177948996424675, 0.010699872858822346, 0.01562672108411789, -0.015678852796554565, -0.025859525427222252, -0.07891964912414551, 0.0266253761947155, -0.06897671520709991, -0.06134694069623947, -0.025626573711633682, 0.0049156323075294495, -0.049899499863386154, -0.05824419483542442, -0.011626035906374454, 0.066880002617836, 0.018040793016552925, 0.019580209627747536, -0.003684108844026923, 0.0027381170075386763, -0.03851966932415962, -0.040260881185531616, -0.0520230196416378, 0.025333259254693985, 0.012127953581511974, -0.03428959846496582, 0.015808774158358574, 0.04022245854139328, 0.04967446252703667, -0.04356244578957558, -0.005247496999800205, 0.024196315556764603, 0.021944954991340637, 0.001061263377778232, 0.052146900445222855, -0.047177061438560486, -0.017008796334266663, 0.049091145396232605, 0.007800139021128416, 0.03808959946036339, 0.006468395236879587, 0.03731332719326019, 0.014450052753090858, 0.004968649707734585, 0.0010448078392073512, -0.07361093163490295, 0.004607860464602709, 0.038378965109586716, 0.07441932708024979, -0.020075393840670586, -0.0018090424127876759, 0.06111128255724907, -0.004826417192816734, -0.03428244590759277, 0.04967224597930908, 0.008577640168368816, -0.04509873688220978, 0.02705712802708149, 0.010949541814625263, -0.05170672386884689, 0.03681940212845802, -0.007739752996712923, -0.2345760613679886, 0.024688443168997765, 0.06653168797492981, 0.06123502179980278, -0.0153945442289114, 0.02168586291372776, 0.016177481040358543, -0.02084548957645893, -0.015789669007062912, 0.028424568474292755, -0.02549917995929718, 0.02947079762816429, -0.032042600214481354, -0.018338540568947792, 0.03052094392478466, 0.010548155754804611, 0.06887710094451904, 0.06249914690852165, -0.0005300308112055063, 0.0020686425268650055, 0.02813207544386387, 0.005885244347155094, 0.16121260821819305, 0.02325293980538845, 0.029508737847208977, 0.011003900319337845, 0.012506729923188686, 0.004033728968352079, 0.09727758914232254, 0.04871786758303642, -0.022720128297805786, -0.0045627932995557785, 0.05486137419939041, 0.03242869675159454, 0.03266100957989693, -0.06763792037963867, -0.028227979317307472, 0.05315561220049858, 0.007837258279323578, -0.010324602946639061, -0.0020424937829375267, 0.016815591603517532, -0.05375237017869949, 0.03182658553123474, 0.04749505594372749, 0.0006814181688241661, -0.002281422959640622, 0.01447367388755083, -0.07268998771905899, 0.017444146797060966, -0.05982733145356178, -0.03204260766506195, -0.0005740667111240327, 0.006648197770118713, -0.015572229400277138, 0.05565797910094261, 0.010189159773290157, -0.023440392687916756, 0.05669903755187988, 0.011812101118266582, -0.03015277348458767, -0.05953134223818779, 0.08830990642309189, 0.028870536014437675, 0.0036754936445504427 ]
[ -0.00393429072573781, 0.00426379544660449, 0.021405650302767754, -0.0072066327556967735, 0.008577143773436546, 0.032197993248701096, 0.006684262305498123, 0.03007417358458042, 0.020773734897375107, 0.005102857481688261, -0.04079888388514519, -0.008150423876941204, 0.010077998973429203, -0.01808352582156658, 0.017535589635372162, -0.03952185437083244, 0.014173293486237526, -0.018187712877988815, 0.011163032613694668, 0.014814887195825577, -0.03529956191778183, 0.045085784047842026, 0.04372471198439598, -0.0013705898309126496, -0.007481332402676344, 0.011054552160203457, -0.03958489000797272, -0.04414026439189911, 0.023262150585651398, -0.12959948182106018, 0.00105936115141958, -0.031256336718797684, 0.023421913385391235, 0.006679295562207699, -0.03690563887357712, -0.016639236360788345, -0.0037524669896811247, 0.009333077818155289, -0.033670634031295776, 0.012176292017102242, 0.008653651922941208, -0.04665403068065643, -0.012600628659129143, 0.00592912919819355, 0.009585256688296795, -0.017122715711593628, -0.05967975780367851, -0.00866888277232647, 0.015591392293572426, 0.04387640208005905, -0.041215259581804276, -0.0334269143640995, -0.02168031595647335, 0.014934482984244823, 0.00830362644046545, 0.01294676773250103, -0.028348615393042564, 0.0523909293115139, 0.023286079987883568, 0.012333969585597515, 0.005662672221660614, -0.022529395297169685, -0.010992985218763351, -0.03333911672234535, 0.02694452740252018, -0.008596145547926426, 0.0011689192615449429, -0.013544179499149323, -0.011042295023798943, 0.0326797291636467, 0.007302366197109222, 0.03767981752753258, -0.00764318136498332, -0.03408392146229744, -0.0433991476893425, -0.011673488654196262, -0.0016436489531770349, 0.013085595332086086, 0.004875964485108852, -0.006462521851062775, 0.009044818580150604, -0.014967139810323715, 0.024938644841313362, 0.01570568047463894, -0.006382565479725599, -0.025662880390882492, -0.0025717318058013916, -0.022072190418839455, 0.01458577811717987, 0.003024871228262782, -0.07735705375671387, 0.019372470676898956, 0.021995684131979942, 0.012645735405385494, -0.08779708296060562, 0.04394768923521042, -0.028393816202878952, -0.008181589655578136, 0.012321640737354755, 0.8370051980018616, 0.03377927467226982, 0.025177661329507828, 0.014818808063864708, -0.022953182458877563, 0.0005284495418891311, -0.024673813953995705, -0.020954063162207603, -0.012615482322871685, 0.020708872005343437, -0.014274626970291138, 0.025195783004164696, 0.00118593021761626, 0.030246999114751816, -0.0027550787199288607, 0.00965809915214777, 0.03850908204913139, 0.049799516797065735, 0.018681500107049942, 0.01346805039793253, 0.04646426811814308, 0.03020380064845085, -0.021375548094511032, -0.0011948285391554236, 0.00835403148084879, 0.02190064638853073, -0.14762021601200104, 0.04446908086538315, -7.173442520949501e-33, 0.038100115954875946, -0.05358363315463066, 0.02479323372244835, -0.012342981062829494, -0.014767825603485107, 0.02802714705467224, -0.020328346639871597, 0.04035531356930733, -0.0281982459127903, -0.0495929941534996, 0.018451347947120667, -0.014067329466342926, -0.017232704907655716, -0.01822834089398384, 0.022076154127717018, 0.02898968942463398, -0.051323868334293365, 0.03330354019999504, -0.0027916706167161465, 0.00327290128916502, -0.0017563896253705025, 0.02858346328139305, 0.023110590875148773, 0.012624121271073818, 0.001149664050899446, 0.06017868593335152, 0.011871255934238434, -0.03016175888478756, -0.00011056039511458948, -0.05467921495437622, -0.03093174658715725, -0.033958178013563156, -0.01947479322552681, -0.03769436106085777, -0.009328283369541168, -0.047719888389110565, -0.0745079517364502, 0.012726295739412308, -0.036512572318315506, -0.015741897746920586, -0.018561648204922676, -0.02656618133187294, -0.043759338557720184, -0.05867528170347214, -0.022820085287094116, 0.018658583983778954, 0.005015810485929251, 0.0011996005196124315, -0.0228989589959383, 0.024907797574996948, 0.026185160502791405, 0.013351580128073692, -0.028063734993338585, -0.02764735370874405, 0.004250763449817896, 0.022239554673433304, 0.005316647235304117, 0.02161669172346592, -0.017275609076023102, -0.007400254253298044, 0.033739712089300156, -0.000754734908696264, 0.018520742654800415, 0.04973960667848587, -0.001840374432504177, 0.017971890047192574, 0.0023744837380945683, -0.015444126911461353, 0.0231739841401577, 0.03510060906410217, -0.04546807333827019, 0.004264990799129009, -0.005229504778981209, 0.004666108172386885, -0.004452917259186506, -0.024662844836711884, -0.02030857279896736, -0.02969944104552269, 0.0018901225412264466, 0.04994666948914528, -0.0003090646641794592, -0.03629002347588539, 0.003450297750532627, -0.011708497069776058, -0.028034809976816177, -0.020515110343694687, 0.03324313089251518, -0.027361981570720673, -0.022488994523882866, 0.0158942062407732, 0.02141454443335533, 0.060281772166490555, -0.021971063688397408, -0.015436455607414246, 0.00202392041683197, 6.62116662225839e-33, 0.010326297953724861, 0.00834691897034645, -0.015007558278739452, 0.0021298271603882313, 0.024098027497529984, -0.017518259584903717, 0.023904409259557724, 0.08218204230070114, -0.03010459430515766, 0.03970741480588913, -0.013603786006569862, -0.017002660781145096, -0.04425879567861557, -0.0044080778025090694, 0.046197131276130676, -0.023595409467816353, -0.011335834860801697, -0.015496538951992989, -0.017691271379590034, -0.015090717002749443, 0.007424104958772659, 0.012995182536542416, 0.05041511729359627, 0.04707217216491699, 0.04244266450405121, 0.026385067030787468, 0.023259125649929047, 0.021784938871860504, -0.020187195390462875, 0.01686454378068447, -0.004234673921018839, 0.0226312093436718, -0.00693161878734827, -0.019826792180538177, 0.03142600506544113, 0.028738144785165787, 0.04123721644282341, -0.011786650866270065, 0.02229202166199684, -0.050446875393390656, 0.007119333371520042, 0.0037829421926289797, 0.02556648850440979, -0.004204105120152235, -0.010579683817923069, 0.005831579212099314, -0.01945394091308117, 0.016683954745531082, 0.012569478712975979, 0.0009215124882757664, 0.013232509605586529, -0.012804880738258362, -0.01178494282066822, 0.006854400038719177, -0.005472772754728794, -0.01416758168488741, -0.03723340108990669, 0.0008540301932953298, -0.03849652037024498, -0.007340726908296347, -0.02329871989786625, -0.009595994837582111, -0.021377814933657646, -0.009585714899003506, -0.017314577475190163, 0.0031983014196157455, -0.04195499047636986, -0.0062773157842457294, 0.009541983716189861, 0.041808899492025375, -0.004633072763681412, -0.044564228504896164, 0.019824260845780373, 0.06317701190710068, -0.013441715389490128, 0.032770268619060516, 0.003167665796354413, 0.011953343637287617, -0.03254571557044983, 0.0091670211404562, 0.018929103389382362, 0.055522192269563675, 0.02847861498594284, -0.013790581375360489, 0.013270989991724491, 0.03814912959933281, -0.01947065070271492, 0.021643919870257378, 0.0132543183863163, 0.007252334151417017, -0.004766462836414576, 0.011720533482730389, -0.028979135677218437, -0.009107370860874653, -0.027151189744472504, -1.2788333059177148e-8, -0.03866884112358093, -0.003920156974345446, -0.015343672595918179, 0.03050096146762371, -0.00450233556330204, 0.008360917679965496, -0.04661822319030762, -0.03101091831922531, 0.016570931300520897, -0.011478191241621971, 0.03213829547166824, -0.02667713351547718, 0.004916774574667215, 0.03802947700023651, 0.007517792750149965, -0.04645780473947525, -0.008993313647806644, 0.0039899819530546665, 0.014248760417103767, 0.011641261167824268, -0.009775226004421711, 0.04553602263331413, 0.023780835792422295, -0.0022299925331026316, 0.02518463507294655, -0.017059888690710068, 0.02099481411278248, -0.07432927936315536, 0.007304564584046602, -0.004970173351466656, 0.029716340824961662, -0.026161756366491318, -0.022047121077775955, 0.014660216867923737, -0.02185380645096302, -0.029377058148384094, 0.028200408443808556, -0.001224067062139511, -0.01857091300189495, -0.003924792166799307, -0.0005608561332337558, 0.006791236810386181, -0.0016881661722436547, -0.036407697945833206, -0.030472518876194954, -0.0630173534154892, 0.0016185548156499863, -0.004656156990677118, 0.013739356771111488, -0.017987236380577087, -0.011651931330561638, -0.019183751195669174, 0.0015984917990863323, -0.009698091074824333, 0.03536445274949074, -0.006466377526521683, 0.012431850656867027, 0.014011566527187824, -0.04398167133331299, -0.005788884125649929, 0.010605012997984886, 0.022704582661390305, -0.014377254992723465, 0.00030133858672343194 ]
google-docs-find-and-replace-script
https://markhneedham.com/blog/2020/05/12/google-docs-find-and-replace-script
false
2020-02-03 00:21:00
Neo4j: Cross database querying with Neo4j Fabric
[ "fabric", "neo4j" ]
[ "Wikidata" ]
A couple of weeks ago I wrote https://markhneedham.com/blog/2020/01/23/quick-graph-australian-open/[a QuickGraph blog post about the Australian Open^], in which I showed how to use Neo4j 4.0's multi database feature. In that post we focused on queries that could be run on one database, but the 4.0 release also contains another feature for doing cross database querying - https://neo4j.com/docs/operations-manual/current/fabric/introduction/[Neo4j Fabric^] - and we're going to learn how to use that in this post. image::{{<siteurl>}}/uploads/2020/02/neo4j-fabric-aus-open.png[title="Querying across databases using Neo4j Fabric"] == What is Fabric? To quote from the source: [quote, Introduction to Neo4j Fabric, https://neo4j.com/docs/operations-manual/current/fabric/introduction/] ____ Fabric, introduced in Neo4j 4.0, is a way to store and retrieve data in multiple databases, whether they are on the same Neo4j DBMS or in multiple DBMSs, using a single Cypher query. ____ That sounds like what we have. It goes on to say: [quote] ____ In practical terms, Fabric provides the infrastructure and tooling for: * Data Federation: the ability to access data available in distributed sources in the form of disjointed graphs. * Data Sharding: the ability to access data available in distributed sources in the form of a common graph partitioned on multiple databases. ____ Data Federation sounds closer to what we have in our Australian Open Graph. The nodes representing the tournaments are the same, but the player, matches, and all other relationships are completely different. A fabric database can be setup on a Neo4j instance of its own, or alongside other databases. The only requirement is that it must be on a Neo4j instance where `dbms.mode=SINGLE`. == Setting up Neo4j We're going to use the following Docker Compose configuration in this blog post: .Dockerfile [source,yaml] ---- version: '3.7' services: neo4j: image: neo4j:4.0.0-enterprise container_name: "quickgraph-aus-open" volumes: - ./plugins:/plugins - ./data:/data - ./import:/var/lib/neo4j/import ports: - "7474:7474" - "7687:7687" environment: - "NEO4J_ACCEPT_LICENSE_AGREEMENT=yes" - "NEO4J_AUTH=neo4j/neo" - NEO4J_fabric_database_name=fabric - NEO4J_fabric_graph_0_name=mens - NEO4J_fabric_graph_0_uri=neo4j://localhost:7687 - NEO4J_fabric_graph_0_database=mens - NEO4J_fabric_graph_1_name=womens - NEO4J_fabric_graph_1_uri=neo4j://localhost:7687 - NEO4J_fabric_graph_1_database=womens ---- The Fabric specific config begins with the line `NEO4J_fabric_database_name`, which gives a name for our fabric database. We'll use that later on. We also provide details of the graphs that we'd like to query via Fabric: * `NEO4J_fabric_graph_<n>_name` specifies the name that we'll use when writing our Fabric queries. * `NEO4J_fabric_graph_<n>_database` specifies the name of the Neo4j database against which we'd like to execute queries. In our case, both these values are the same. == Querying across multiple databases Let's write some queries! == Who didn't drop a set in the whole tournament? If we wanted to find out which players didn't drop a set in the whole tournament, we could write the following query: [source,cypher] ---- :use mens; MATCH (winner:Player)-[:WINNER]->(:Match {round: "F"})-[:IN_TOURNAMENT]->(t) MATCH (winner)-[:WINNER]->(match)-[:IN_TOURNAMENT]->(t) WITH winner, match, t ORDER BY t.year WITH winner, t, collect([(match)<-[:IN_MATCH]-(set:Set) WHERE (winner)-[:LOSER]->(set) | set ][0]) AS setDropped where size(setDropped) = 0 RETURN winner, t; ---- .Results [opts="header"] |=== | winner | t | (:Player {name: "Roger Federer", id: "103819"}) | (:Tournament {name: "Australian Open", year: 2007}) |=== And we could do the same for the women's tournament as well by switching database: [source,cypher] ---- :use womens; MATCH (winner:Player)-[:WINNER]->(:Match {round: "F"})-[:IN_TOURNAMENT]->(t) MATCH (winner)-[:WINNER]->(match)-[:IN_TOURNAMENT]->(t) WITH winner, match, t ORDER BY t.year WITH winner, t, collect([(match)<-[:IN_MATCH]-(set:Set) WHERE (winner)-[:LOSER]->(set) | set ][0]) AS setDropped where size(setDropped) = 0 RETURN winner, t; ---- .Results [opts="header"] |=== | winner | t | (:Player {name: "Lindsay Davenport", id: "200128"}) | (:Tournament {name: "Australian Open", year: 2000}) | (:Player {name: "Maria Sharapova", id: "201345"}) | (:Tournament {name: "Australian Open", year: 2008}) | (:Player {name: "Serena Williams", id: "200033"}) | (:Tournament {name: "Australian Open", year: 2017}) |=== Fabric allows us to combine the results of these queries. Let's switch to the Fabric database: [source,cypher] ---- :use fabric; ---- Once we've done this we could write the following query to return all winners of the Australian Open who didn't drop a set: [source,cypher] ---- USE fabric.mens MATCH (winner:Player)-[:WINNER]->(:Match {round: "F"})-[:IN_TOURNAMENT]->(t) MATCH (winner)-[:WINNER]->(match)-[:IN_TOURNAMENT]->(t) WITH winner, match, t ORDER BY t.year WITH winner, t, collect([(match)<-[:IN_MATCH]-(set:Set) WHERE (winner)-[:LOSER]->(set) | set ][0]) AS setDropped where size(setDropped) = 0 RETURN winner.name AS winner, t.year AS year UNION ALL USE fabric.womens MATCH (winner:Player)-[:WINNER]->(:Match {round: "F"})-[:IN_TOURNAMENT]->(t) MATCH (winner)-[:WINNER]->(match)-[:IN_TOURNAMENT]->(t) WITH winner, match, t ORDER BY t.year WITH winner, t, collect([(match)<-[:IN_MATCH]-(set:Set) WHERE (winner)-[:LOSER]->(set) | set ][0]) AS setDropped where size(setDropped) = 0 RETURN winner.name AS winner, t.year AS year; ---- .Results [opts="header"] |=== | winner | year | "Lindsay Davenport" | 2000 | "Maria Sharapova" | 2008 | "Serena Williams" | 2017 | "Roger Federer" | 2007 |=== I'm not sure why the year hasn't ordered properly here, perhaps I've made a mistake somewhere. It's also a bit annoying having to repeat the query twice though, so an alternative is to use Fabric's https://neo4j.com/docs/operations-manual/current/fabric/queries/#fabric-built-in-functions[`<fabric database name>.graphIds`^] function in combinatin with the https://neo4j.com/docs/cypher-manual/4.0/clauses/call-subquery/[CALL sub query^] syntax. That gives us the following: [source,cypher] ---- WITH ["Men's", "Women's"] AS tournaments UNWIND fabric.graphIds() AS graphId CALL { USE fabric.graph(graphId) MATCH (winner:Player)-[:WINNER]->(:Match {round: "F"})-[:IN_TOURNAMENT]->(t) MATCH (winner)-[:WINNER]->(match)-[:IN_TOURNAMENT]->(t) WITH winner, match, t ORDER BY t.year WITH winner, t, collect([(match)<-[:IN_MATCH]-(set:Set) WHERE (winner)-[:LOSER]->(set) | set ][0]) AS setDropped where size(setDropped) = 0 RETURN winner, t } RETURN tournaments[graphId] AS event, winner.name AS winner, t.year AS year ORDER BY t.year ---- .Results [opts="header"] |=== | event | winner | year | "Women's" | "Lindsay Davenport" | 2000 | "Men's" | "Roger Federer" | 2007 | "Women's" | "Maria Sharapova" | 2008 | "Women's" | "Serena Williams" | 2017 |=== Sweet! The data's sorted correctly and we only had to specify the main part of the query once. == How long did players wait from their first final defeat until their first win? Let's use Fabric to look at one more query. In the initial blog post we wrote a query to find out how long it took from a player's first final defeat until their first win. While writing a blog post about https://markhneedham.com/blog/2020/01/29/neo4j-finding-longest-path/[longest path queries^] I realised that the query was incorrect as it didn't filter out players who had won the final before losing it, and it also returned each final a player had lost before finally winning, rather than just the first one. The following query finds the longest wait for players from their first final defeat until their first win: [source,cypher] ---- WITH ["Men's", "Women's"] AS tournaments UNWIND fabric.graphIds() AS graphId CALL { USE fabric.graph(graphId) MATCH (player)-[:LOSER]->(:Match {round: "F"})-[:IN_TOURNAMENT]->(t)-[:NEXT_TOURNAMENT*]->(t2), (player)-[:WINNER]->(:Match {round: "F"})-[:IN_TOURNAMENT]->(t2) // Exclude paths where the player has been in the final of an earlier tournament WHERE not ((player)-[:LOSER|WINNER]->(:Match {round: "F"})-[:IN_TOURNAMENT] ->()-[:NEXT_TOURNAMENT*]->(t)) RETURN player, t, t2 } RETURN player.name, t.year, t2.year, t2.year - t.year AS difference ORDER BY difference DESC ---- And if we run that query, we'll see the following results: .Results [opts="header"] |=== | player.name | t.year | t2.year | difference | "Kim Clijsters" | 2004 | 2011 | 7 | "Marat Safin" | 2002 | 2005 | 3 | "Na Li" | 2011 | 2014 | 3 | "Maria Sharapova" | 2007 | 2008 | 1 |=== So Clijsters had the longest wait, although there are many other players who are still waiting! That's all for now, but if you want to learn more about Neo4j Fabric, we've written https://neo4j.com/developer/multi-tenancy-worked-example/#querying-across-databases[a developer guide showing how to use it against a retail dataset^]. And don't forget https://neo4j.com/docs/operations-manual/current/fabric/[the docs^]!
Learn how to write cross database queries against an Australian Open Graph using Neo4j Fabric.
uploads/2020/02/neo4j-fabric-aus-open.png
[ 0.015216736122965813, -0.039163701236248016, 0.01868399977684021, 0.042330726981163025, 0.08720666915178299, 0.01835792511701584, 0.008223757147789001, 0.027935391291975975, -0.0070396531373262405, -0.03795032948255539, -0.0002532321377657354, -0.028402268886566162, -0.058139506727457047, 0.020457744598388672, 0.010725892148911953, 0.06429915130138397, 0.054639920592308044, 0.008174186572432518, 0.0095724081620574, -0.009199215099215508, 0.012966599315404892, 0.048724789172410965, 0.005988697055727243, 0.04588962718844414, 0.030172940343618393, 0.005264223087579012, 0.013173035345971584, 0.006212796550244093, -0.04330053552985191, -0.024487867951393127, 0.05169058218598366, 0.013575148768723011, 0.024472154676914215, 0.004816016647964716, 0.037142083048820496, -0.0056839557364583015, -0.047997426241636276, 0.03866307809948921, -0.014356829226016998, -0.009446529671549797, -0.08706826716661453, 0.059708721935749054, 0.010402776300907135, 0.03407265618443489, -0.03652781620621681, 0.029794152826070786, -0.051968809217214584, 0.03728252276778221, 0.017554769292473793, 0.02170691452920437, -0.08401589840650558, 0.01487705484032631, -0.013724914751946926, 0.0168196689337492, -0.008812082931399345, 0.04196413978934288, 0.01134461909532547, -0.0681147649884224, 0.029953820630908012, -0.01680094748735428, 0.0009478476131334901, -0.011742278933525085, -0.0004256059182807803, 0.03219801187515259, 0.02310374565422535, -0.03723317012190819, 0.0004499439965002239, 0.05219549685716629, -0.040764495730400085, 0.008615360595285892, 0.018262317404150963, 0.03305000066757202, -0.0067343260161578655, -0.0030630044639110565, -0.006145389284938574, -0.04331981763243675, 0.009352212771773338, 0.037796445190906525, 0.04628734290599823, 0.04184124991297722, -0.02549196407198906, 0.005459739360958338, 0.00001502988743595779, 0.04087366536259651, -0.004311547614634037, -0.061377912759780884, -0.031004613265395164, -0.015424195677042007, -0.05605817958712578, 0.05771268904209137, 0.010042284615337849, -0.05693517252802849, 0.006004936993122101, 0.007647491525858641, -0.02923319861292839, 0.02632891945540905, 0.0035460805520415306, 0.002558798296377063, 0.03293943405151367, -0.018226807937026024, -0.041254669427871704, -0.029367661103606224, -0.020929086953401566, 0.008467653766274452, -0.06851427257061005, -0.013364231213927269, -0.04323156923055649, -0.0185469351708889, 0.0014093394856899977, 0.0005031077889725566, -0.01757063716650009, 0.016500461846590042, 0.0035007460974156857, -0.005654938519001007, -0.07571186870336533, 0.07095655053853989, 0.020421389490365982, -0.04134707152843475, -0.02402697503566742, -0.002322619780898094, 0.06178164482116699, 0.02574223093688488, -0.0029158927500247955, 0.06637585908174515, -0.008258892223238945, 0.015563729219138622, -0.008324572816491127, 0.04410775750875473, -0.028600988909602165, -0.06681185215711594, -0.00903729535639286, 0.05831259489059448, -0.02910119667649269, 0.01283953059464693, -0.01251855120062828, -0.03018069639801979, -0.017169082537293434, 0.03668097406625748, 0.06711531430482864, 0.028683645650744438, -0.0009568006498739123, -0.0726534053683281, 0.011423779651522636, 0.017152493819594383, 0.03328284993767738, 0.02144583687186241, -0.012392349541187286, -0.03561188280582428, -0.049164846539497375, -0.013300041668117046, 0.024595240131020546, 0.03475917875766754, 0.03202692046761513, -0.04268723726272583, 0.011661740019917488, 0.1208171471953392, 0.04230663925409317, 0.014435888268053532, -0.017203493043780327, 0.02057989314198494, 0.03301588445901871, 0.034611210227012634, 0.0039724912494421005, 0.0283209215849638, 0.006600796245038509, -0.0288254227489233, -0.004513762891292572, 0.07608315348625183, 0.0010182122932747006, 0.008254172280430794, -0.05757340416312218, -0.06204524636268616, 0.05188405513763428, -0.056409772485494614, -0.03051997348666191, 0.05514676496386528, 0.07518571615219116, 0.020689286291599274, 0.007481309585273266, -0.012659185566008091, -0.08109753578901291, 0.03353312611579895, 0.005440889857709408, 0.008424053899943829, 0.01364488247781992, 0.009332145564258099, 0.0835711658000946, 0.03589927405118942, 0.011753516271710396, 0.04657357186079025, -0.06677522510290146, -0.07468947023153305, -0.009490774013102055, -0.0030687020625919104, 0.06054958328604698, -0.032460447400808334, 0.0027539278380572796, 0.0731046125292778, 0.0018509853398427367, 0.035684552043676376, 0.017608987167477608, 0.01587643474340439, 0.03073825314640999, -0.0547478124499321, -0.050828129053115845, 0.05886752903461456, 0.030154433101415634, -0.0504642091691494, -0.07397513836622238, 0.0014860815135762095, -0.011675857938826084, -0.02464543841779232, 0.016119785606861115, -0.036223530769348145, 0.05219888687133789, 0.025115054100751877, 0.03602932021021843, -0.01731070876121521, 0.045733992010354996, -0.04566453397274017, 0.03949848562479019, 0.014877097681164742, -0.027298493310809135, 0.007931101135909557, 0.022662239149212837, 0.11911172419786453, 0.050513189285993576, -0.03968692198395729, -0.057808324694633484, 0.03168702870607376, 0.013867419213056564, -0.02955292910337448, 0.00047661742428317666, -0.0262371264398098, 0.0023073500487953424, -0.014234200119972229, -0.030141083523631096, -0.028736280277371407, 0.002663406077772379, -0.022331375628709793, -0.020807066932320595, 0.052035942673683167, -0.033580753952264786, 0.05567985400557518, 0.0075022196397185326, -0.02265232987701893, -0.02315840683877468, -0.038592252880334854, -0.03550705313682556, 0.015587225556373596, 0.017349882051348686, -0.005337947513908148, 0.04399370402097702, -0.026645340025424957, 0.0039008690509945154, -0.046548642218112946, -0.017011260613799095, 0.03772032633423805, 0.0337057001888752, 0.06346426159143448, -0.019883893430233, 0.04047225043177605, -0.02769879810512066, 0.029305970296263695, -0.017375564202666283, -0.05637967213988304, -0.06076560169458389, -0.02865532599389553, 0.03536263108253479, 0.01859825849533081, 0.0403057299554348, -0.015026227571070194, 0.020812751725316048, -0.00022228644229471684, 0.02045561373233795, 0.004108148161321878, 0.02662043459713459, 0.0034169331192970276, -0.007246486842632294, -0.04101991653442383, -0.02648044005036354, 0.062168266624212265, -0.04065756872296333, -0.020921608433127403, -0.010191604495048523, -0.05508662760257721, 0.05459276959300041, -0.05815351754426956, -0.026873711496591568, -0.014564748853445053, 0.04079660773277283, 0.06705895066261292, 0.017116127535700798, -0.002110050991177559, 0.07615306973457336, 0.030684463679790497, -0.0022717530373483896, 0.009355788119137287, -0.021619079634547234, 0.04446237534284592, -0.021221991628408432, 0.028462596237659454, 0.05022583156824112, -0.0193497147411108, 0.0033224057406187057, -0.03970155119895935, 0.022987104952335358, -0.03012184239923954, -0.28039881587028503, 0.028507020324468613, -0.011336632072925568, -0.034516677260398865, 0.01838512159883976, -0.021527256816625595, -0.0020105652511119843, -0.024758152663707733, -0.017542125657200813, -0.008232980966567993, -0.027972232550382614, -0.03933150693774223, -0.021300891414284706, 0.03825561702251434, 0.009554005227982998, 0.04273112118244171, -0.006797112990170717, -0.03879821300506592, -0.0070165651850402355, 0.028079528361558914, -0.029166555032134056, -0.04851016029715538, -0.021545637398958206, 0.0010344259208068252, 0.022765228524804115, 0.017591796815395355, -0.09652668237686157, 0.02034805528819561, -0.041568368673324585, -0.01177888922393322, -0.002926300745457411, -0.004550757352262735, 0.006204039789736271, 0.008432097733020782, -0.005686677526682615, -0.03217057138681412, 0.008483543992042542, -0.0027307397685945034, -0.0022358011920005083, -0.0005209324881434441, -0.04198897257447243, -0.04465638846158981, -0.02900226041674614, 0.016369391232728958, 0.08070790022611618, 0.008311852812767029, -0.07937957346439362, 0.0133816571906209, -0.03022846020758152, 0.0696638822555542, -0.02725357934832573, -0.05767977237701416, -0.020239485427737236, 0.015309655107557774, -0.0175204835832119, -0.032953377813100815, -0.01791885681450367, -0.027843251824378967, -0.0540301650762558, -0.02600313164293766, -0.02912871353328228, -0.05079195275902748, 0.012164819985628128, -0.04951042681932449, -0.004271934740245342, -0.050461698323488235, -0.08898022025823593, -0.026231398805975914, 0.0666918084025383, 0.028771469369530678, -0.015707245096564293, 0.03515493869781494, -0.014070875942707062, -0.10956811904907227, -0.018077028915286064, -0.019774409011006355, -0.024925386533141136, -0.010339495725929737, 0.010049647651612759, 0.05342628061771393, -0.030857624486088753, -0.05463689565658569, -0.006535304710268974, 0.01259830966591835, 0.016053833067417145, -0.006301758345216513, 0.032492801547050476, -0.013027911074459553, -0.02523336373269558, 0.02761641889810562, 0.053653836250305176, -0.014783120714128017, -0.010526150465011597, -0.011406456120312214, 0.004485219717025757, 0.021588636562228203, 0.001958404667675495, 0.0009416971588507295, 0.0077270204201340675, 0.05818669870495796, 0.04418009892106056, -0.038516320288181305, -0.00499855587258935, -0.015860935673117638, -0.01284751109778881, 0.00362845859490335, -0.020460480824112892, 0.004200303461402655, 0.03709917142987251, 0.030995044857263565, 0.0008183920872397721, -0.018022950738668442, 0.029370909556746483, -0.06928173452615738, -0.03084571659564972, -0.017435796558856964, 0.01316081266850233, 0.009871424175798893, 0.013536662794649601, -0.03313116356730461, -0.03331192210316658, 0.02856331877410412, 0.03759828582406044, -0.004533781670033932, -0.04593823850154877, -0.020402608439326286, -0.02073492668569088, -0.040594395250082016, 0.021264715120196342, 0.029147285968065262, -0.018605908378958702, 0.02918211743235588, 0.02188863418996334, -0.038477860391139984, 0.04229319468140602, -0.015178299508988857, -0.04388589411973953, -0.026858143508434296, 0.020603900775313377, 0.0009658718481659889, -0.009863533079624176, 0.004633820150047541, -0.00020250728994142264, 0.03605060279369354, 0.037536926567554474, 0.011447402648627758, 0.013121291063725948, 0.012437586672604084, 0.036871351301670074, -0.010246691294014454, -0.004963983315974474, -0.047685932368040085, 0.008529088459908962, -0.04390870779752731, -0.027875062078237534, -0.01532779447734356, 0.07239481806755066, -0.02303384244441986, -0.028694244101643562, -0.05052356421947479, 0.024817325174808502, -0.047348346561193466, -0.010004634037613869, 0.0031325595919042826, -0.006719414610415697, 0.05707341432571411, -0.02661900967359543, 0.03995783254504204, -0.009652292355895042, -0.012918573804199696, 0.010717391967773438, 0.007486993912607431, -0.03936532512307167, 0.005608210805803537, 0.01214882917702198, 0.014024346135556698, -0.011043678037822247, 0.034132760018110275, 0.05132018402218819, 0.0347442552447319, -0.0034037732984870672, -0.008216621354222298, -0.007213145960122347, 0.01128371711820364, 0.05408727750182152, 0.049684975296258926, -0.018215298652648926, 0.014216790907084942, -0.005628739483654499, 0.007026581559330225, -0.016341058537364006, 0.034368425607681274, -0.019434528425335884, 0.02194424718618393, -0.00975237786769867, -0.0499294176697731, 0.061600036919116974, 0.004969805479049683, 0.0038570892065763474, 0.04782745614647865, -0.014879126101732254, 0.012823596596717834, -0.013685432262718678, 0.041148170828819275, 0.06663194298744202, -0.0551086850464344, -0.018261486664414406, 0.0065214200876653194, -0.018052292987704277, -0.015036440454423428, 0.013884345069527626, -0.052671417593955994, -0.018564853817224503, -0.00173963513225317, 0.016991036012768745, -0.04183973744511604, -0.03498004004359245, 0.009359755553305149, 0.02192990668118, 0.007392990868538618, 0.015114843845367432, 0.004741234239190817, 0.015040498226881027, 0.0011948469327762723, -0.03795282170176506, 0.06277052313089371, -0.014598376117646694, -0.004844242706894875, -0.01282530091702938, -0.02045181207358837, 0.007219452410936356, -0.03310755267739296, 0.01307979691773653, 0.024233931675553322, -0.017487792298197746, 0.03503875061869621, -0.05409412458539009, 0.018616298213601112, -0.012297917157411575, 0.028822509571909904, -0.020655324682593346, -0.023574071004986763, -0.03647065907716751, -0.001612850115634501, -0.05137746408581734, -0.010525697842240334, -0.019989220425486565, 0.008656182326376438, 0.009028302505612373, 0.022450638934969902, 0.001959369517862797, 0.023807184770703316, -0.019279256463050842, -0.034673213958740234, 0.044860463589429855, -0.05887215957045555, -0.03907050937414169, -0.03125639259815216, -0.08042831718921661, -0.00514935003593564, -0.005243306513875723, -0.003776682773604989, -0.022187478840351105, 0.056992433965206146, 0.03291589766740799, 0.004789357539266348, 0.026340920478105545, -0.005362457595765591, 0.022578300908207893, -0.030908625572919846, -0.017141513526439667, -0.08423297852277756, 0.005237956065684557, 0.03444294258952141, 0.013555667363107204, 0.012239892035722733, 0.013984251767396927, -0.04167543351650238, 0.017432130873203278, -0.06492400169372559, -0.031074734404683113, 0.03535004332661629, -0.012185649946331978, 0.015252146869897842, 0.0002236647706013173, -0.06685245782136917, 0.011315939016640186, 0.018624575808644295, -0.028839929029345512, -0.051376815885305405, -0.008658929727971554, 0.04816735163331032, -0.0027817105874419212, 0.04477725550532341, -0.015546262264251709, -0.010339941829442978, 0.07466670125722885, 0.010039095766842365, 0.018250592052936554, 0.058657560497522354, -0.011197680607438087, 0.05115888640284538, 0.036140572279691696, 0.0058889491483569145, 0.019067781046032906, 0.001559072290547192, -0.013316534459590912, -0.04404411464929581, 0.049437515437603, 0.02759535238146782, -0.008146429434418678, -0.03866157308220863, 0.0674634501338005, 0.006106422748416662, -0.053037386387586594, -0.05422507971525192, 0.03843552619218826, -0.06069200485944748, -0.007332502398639917, -0.031122425571084023, 0.010217087343335152, -0.05159740895032883, 0.043273214250802994, -0.016217777505517006, 0.012616649270057678, 0.06149044632911682, 0.012540565803647041, -0.011388806626200676, 0.01971311680972576, 0.10398109257221222, 0.08665063977241516, 0.03916623443365097, 0.022193647921085358, 0.06379811465740204, -0.016223695129156113, -0.03598807007074356, -0.005739947780966759, -0.004228824283927679, -0.03366542235016823, -0.00007923544035293162, 0.0051721809431910515, 0.06219472736120224, -0.021061621606349945, 0.07728450745344162, -0.020018093287944794, -0.001863359473645687, -0.0179109089076519, 0.008360687643289566, 0.01522380392998457, 0.04406246170401573, 0.010164599865674973, 0.04525642842054367, -0.04218335822224617, -0.026940811425447464, 0.014789153821766376, -0.010353303514420986, -0.008327010087668896, 0.031611815094947815, -0.012409050017595291, 0.016294099390506744, 0.01684252731502056, 0.045687485486269, 0.09089969098567963, -0.033509816974401474, -0.002108654472976923, -0.012268010526895523, 0.0027399512473493814, 0.0006778643000870943, -0.002198951318860054, -0.01405517477542162, -0.012453342787921429, -0.0007835290161892772, -0.032825276255607605, -0.020526794716715813, -0.03196336701512337, -0.027206528931856155, 0.005498265847563744, -0.019623978063464165, -0.006304303649812937, 0.006302515976130962, -0.014848954044282436, -0.022208375856280327, -0.048865899443626404, -0.05465010926127434, -0.04845430701971054, -0.0853772759437561, -0.005094307474792004, 0.018664231523871422, 0.02570652961730957, -0.009601674973964691, -0.021092908456921577, -0.01254029106348753, -0.020251289010047913, 0.06270674616098404, -0.06715995818376541, -0.023379269987344742, -0.0017908330773934722, 0.03477926924824715, 0.018962299451231956, 0.01958361454308033, 0.07439909130334854, 0.004095262847840786, 0.02057056501507759, -0.02361431159079075, 0.035877205431461334, 0.029719820246100426, 0.02551954984664917, 0.011813554912805557, -0.08004625886678696, 0.030728589743375778, 0.008726009167730808, -0.022397037595510483, -0.07734448462724686, 0.0037579284980893135, 0.042426515370607376, 0.009630076587200165, 0.03280298784375191, -0.01643507368862629, 0.0013095940230414271, -0.0345807820558548, 0.005667241755872965, -0.014252007007598877, -0.03101511113345623, 0.023197967559099197, -0.007250129245221615, 0.06833705306053162, 0.03233388438820839, -0.013468974269926548, -0.019273167476058006, -0.008338076993823051, 0.010508029721677303, 0.006461068522185087, -0.03776051104068756, -0.04323556274175644, -0.02585454285144806, -0.0904226079583168, -0.05257776379585266, -0.00035435703466646373, -0.021461457014083862, -0.03153137490153313, 0.008063247427344322, 0.02660403959453106, -0.03508196771144867, -0.007204076740890741, -0.033173926174640656, 0.025853870436549187, -0.014911461621522903, -0.022627446800470352, -0.017416974529623985, 0.016865810379385948, 0.0015752225881442428, 0.0013996139168739319, 0.03243790566921234, -0.0650741308927536, -0.016836117953062057, -0.02826804481446743, 0.00735969515517354, 0.03603969141840935, 0.03734811022877693, 0.0011410261504352093 ]
[ -0.04936836659908295, -0.03240455314517021, -0.05766741558909416, -0.02091248519718647, 0.0718088448047638, -0.021561548113822937, -0.05030595883727074, 0.01381249912083149, 0.0007245679735206068, -0.0013206542935222387, 0.02445637620985508, -0.04874161258339882, 0.000004837871983909281, 0.013289334252476692, 0.08186732232570648, 0.002899509621784091, -0.021896585822105408, -0.08569815754890442, -0.021199200302362442, 0.05944973602890968, -0.022813118994235992, -0.043728943914175034, -0.036231957376003265, -0.06140388175845146, -0.005722143687307835, 0.04498370364308357, 0.026952901855111122, -0.06372834742069244, -0.02377421036362648, -0.21049106121063232, 0.011555184610188007, 0.0177755169570446, 0.012338118627667427, -0.023226255550980568, 0.022860700264573097, 0.006254516541957855, 0.06144275888800621, -0.010662158019840717, -0.0025961101055145264, 0.039051804691553116, 0.02098773419857025, 0.019545093178749084, -0.05538087338209152, 0.02241867408156395, 0.04231668636202812, -0.0036905459128320217, -0.016428057104349136, -0.007261558901518583, -0.02848256193101406, 0.00258641317486763, -0.008597304113209248, 0.006984889507293701, -0.023091444745659828, -0.02220950461924076, 0.008599222637712955, 0.04235118627548218, 0.032098010182380676, 0.06399498134851456, -0.015494273975491524, 0.027052391320466995, 0.03566533699631691, 0.0031883586198091507, -0.10736040771007538, 0.08905652910470963, 0.014676551334559917, 0.017233124002814293, -0.060653336346149445, -0.024732748046517372, -0.0018481857841834426, 0.07907553017139435, 0.01385811809450388, -0.009968902915716171, -0.03886022791266441, 0.04668461158871651, 0.006797274108976126, 0.021998373791575432, 0.013302895240485668, 0.021266862750053406, 0.024590127170085907, -0.044495198875665665, -0.02775009162724018, 0.010507217608392239, -0.04491168633103371, -0.03654356300830841, -0.04115156829357147, 0.04296453297138214, -0.04190246760845184, 0.0339815653860569, -0.016700930893421173, 0.025077691301703453, 0.018375160172581673, 0.01957979053258896, 0.0780567079782486, 0.02081158384680748, -0.08661215752363205, -0.0004542159731499851, 0.011373022571206093, 0.0352657213807106, 0.0342770554125309, 0.3849274814128876, 0.01204970758408308, -0.016438091173768044, 0.04149032011628151, 0.04879287630319595, -0.020777232944965363, -0.0340777225792408, -0.002664499217644334, -0.06280107796192169, 0.059978365898132324, 0.012694794684648514, 0.015834420919418335, -0.056087832897901535, 0.0708872452378273, -0.06871490180492401, -0.014050297439098358, -0.0029387546237558126, 0.006605121772736311, 0.02049175649881363, -0.0027162202168256044, 0.019485287368297577, -0.030812768265604973, -0.003457155078649521, 0.034932807087898254, 0.016191313043236732, 0.02837177738547325, 0.020611055195331573, 0.010449484921991825, 0.028353333473205566, 0.014124752953648567, -0.009366393089294434, 0.05510152131319046, 0.009963639080524445, -0.06169663742184639, 0.006130469962954521, 0.0034594351891428232, -0.00922471471130848, 0.052683841437101364, -0.03629308193922043, 0.005508310627192259, 0.026403695344924927, -0.01206769049167633, -0.016553331166505814, 0.055292535573244095, 0.014768755994737148, -0.04471168294548988, 0.12116163969039917, 0.022048870101571083, -0.04148101434111595, -0.04073123633861542, -0.04737437888979912, -0.00028485897928476334, 0.06033681705594063, 0.00812132004648447, -0.06445799767971039, -0.014707877300679684, 0.03045683354139328, 0.06191917136311531, -0.008863906376063824, -0.0776328444480896, -0.006509767845273018, -0.008880270645022392, -0.007124044932425022, -0.02527955360710621, 0.10601980239152908, 0.03963112831115723, -0.148480623960495, -0.01835756003856659, 0.037043094635009766, 0.020067477598786354, -0.07605947554111481, 0.003558598691597581, 0.009176665917038918, -0.02666184864938259, -0.017504533752799034, 0.061838530004024506, -0.0378393679857254, -0.037912461906671524, -0.014905066229403019, 0.050788577646017075, 0.006964091677218676, 0.00397765776142478, -0.004227644298225641, -0.03608390688896179, 0.002901485189795494, -0.07484236359596252, -0.07242494821548462, -0.0907384604215622, 0.03443267568945885, -0.025285353884100914, -0.06503799557685852, -0.053160857409238815, 0.002887142589315772, -0.057325731962919235, 0.11778353154659271, -0.022706428542733192, -0.04591767117381096, -0.008870339021086693, -0.0009148058015853167, -0.02662781998515129, -0.03671471029520035, 0.04003451392054558, 0.04197285696864128, -0.011620769277215004, 0.04455931857228279, -0.056820258498191833, 0.03715544566512108, 0.04948032274842262, -0.024073125794529915, 0.05332036316394806, 0.015616231597959995, -0.028346003964543343, -0.006044610403478146, -0.03690556809306145, 0.015478388406336308, -0.031544461846351624, -0.007225072011351585, 0.012901585549116135, -0.004696461837738752, 0.017699427902698517, 0.030584681779146194, -0.020113663747906685, -0.010563109070062637, -0.029972517862915993, -0.36319902539253235, -0.04352504387497902, -0.02954510599374771, 0.030061451718211174, 0.017847634851932526, -0.007780057843774557, 0.02879421040415764, -0.00945587083697319, -0.011533275246620178, 0.02389378845691681, 0.0979536920785904, 0.01989198662340641, 0.017040790989995003, -0.06681550294160843, -0.006829389370977879, 0.0261919554322958, 0.0019073387375101447, 0.004908161237835884, -0.04393201321363449, -0.01668238826096058, 0.025894079357385635, -0.02882581762969494, -0.01697087101638317, -0.019645318388938904, 0.0012279130751267076, -0.012247304432094097, 0.1307957023382187, -0.04791747406125069, 0.042059943079948425, -0.04678720235824585, 0.03996194526553154, -0.0026535880751907825, -0.019284795969724655, -0.09477240592241287, 0.01643330790102482, -0.021931422874331474, 0.013780600391328335, 0.006636916659772396, -0.015488135628402233, -0.026029635220766068, -0.04931987076997757, -0.02642839029431343, -0.019571861252188683, -0.06789881736040115, -0.018213283270597458, 0.02932238020002842, -0.031574126332998276, -0.030807379633188248, -0.005712874233722687, 0.0739268809556961, -0.018264977261424065, 0.021680708974599838, 0.01818031258881092, 0.047802697867155075, -0.006303634960204363, -0.028306029736995697, -0.07065197080373764, 0.002302867826074362, 0.034104589372873306, 0.031231464818120003, 0.040544312447309494, 0.017956605181097984, 0.01741202548146248, -0.06341098994016647, 0.03733820095658302, 0.0006654305616393685, 0.005592380650341511, -0.010198034346103668, 0.054715845733881, -0.06921052932739258, -0.0173776987940073, 0.0844644159078598, 0.014537675306200981, 0.012554138898849487, 0.029020220041275024, 0.027719147503376007, -0.004995917435735464, 0.04552779346704483, 0.04124126210808754, 0.007480221800506115, 0.08375784754753113, -0.05097328871488571, 0.06376849114894867, -0.022183727473020554, 0.00284758978523314, 0.07756945490837097, 0.03081553429365158, -0.02679983526468277, 0.051548734307289124, 0.00989324040710926, -0.025092007592320442, -0.0058594960719347, -0.027454612776637077, -0.04525303468108177, 0.03974173218011856, -0.023680701851844788, -0.259235680103302, 0.05325038731098175, 0.01922072470188141, 0.04416365176439285, -0.004914500284940004, -0.004576507490128279, 0.03819317743182182, -0.024300413206219673, 0.02783786877989769, -0.0008199408184736967, 0.03917694464325905, 0.05749450623989105, -0.01303642988204956, -0.0215426255017519, 0.0075629111379384995, 0.016974741593003273, 0.047333233058452606, 0.036676544696092606, 0.013879803009331226, -0.015897277742624283, 0.029631247743964195, -0.018611367791891098, 0.16357429325580597, 0.04562569037079811, 0.022797927260398865, 0.04361730441451073, -0.034777384251356125, 0.006004421040415764, 0.026918623596429825, 0.016710784286260605, -0.013795604929327965, 0.031210608780384064, 0.016562553122639656, -0.01080295443534851, 0.01189575158059597, -0.054100342094898224, -0.01483182329684496, 0.0516100712120533, 0.04483354836702347, -0.02983197569847107, 0.0027582012116909027, -0.008507899940013885, -0.06847483664751053, 0.02651970088481903, 0.07056045532226562, 0.012883706949651241, -0.012851451523602009, -0.015034478157758713, -0.07641634345054626, -0.02534458041191101, -0.039156392216682434, -0.057229183614254, -0.006555845495313406, -0.024024782702326775, -0.010128811001777649, 0.062434352934360504, 0.030326223000884056, -0.021059684455394745, 0.0027299586217850447, 0.009043252095580101, 0.01786745712161064, -0.04722638428211212, 0.05330657586455345, 0.00594239542260766, -0.00004812165207113139 ]
[ 0.060892339795827866, 0.03248978406190872, -0.0018883822485804558, 0.04466807097196579, 0.0028318041004240513, 0.027912156656384468, 0.0201233122497797, -0.014765598811209202, -0.05874687433242798, 0.03323206305503845, -0.02052251435816288, 0.007779828272759914, 0.057860005646944046, 0.036939214915037155, 0.033752087503671646, 0.02943742275238037, 0.03619310259819031, 0.010244013741612434, 0.01773732528090477, 0.03319820389151573, -0.052204329520463943, -0.06225535273551941, 0.03669707849621773, -0.027872923761606216, 0.0071558523923158646, -0.011755391955375671, -0.04815293475985527, 0.002965283812955022, 0.01919570565223694, -0.09179841727018356, -0.013312097638845444, 0.02050573006272316, -0.000051657872973009944, 0.030958406627178192, -0.007561076432466507, 0.005901221185922623, 0.057748954743146896, -0.00513625331223011, -0.035716086626052856, 0.045787811279296875, 0.02024458348751068, -0.015263940207660198, -0.04100525379180908, 0.04525359347462654, -0.018266862258315086, -0.02289397269487381, -0.040819279849529266, 0.009365592151880264, 0.036649201065301895, -0.0065652914345264435, -0.03880516067147255, -0.022271031513810158, -0.009257163852453232, -0.006002412643283606, 0.03781944140791893, 0.01609901152551174, -0.0007899202173575759, 0.012605095282196999, -0.016774052754044533, 0.025127919390797615, 0.04791099578142166, -0.035281673073768616, -0.044612523168325424, -0.0174016822129488, 0.009239076636731625, -0.026964470744132996, 0.00235504237934947, 0.031231125816702843, -0.007329427171498537, 0.012359105981886387, -0.02803943306207657, 0.04533416032791138, -0.07637939602136612, -0.022403322160243988, -0.0028479776810854673, 0.03147919103503227, 0.05170287564396858, 0.011712407693266869, -0.01909591257572174, 0.0030963325407356024, -0.045239485800266266, 0.03564698249101639, 0.003817661665380001, -0.016776857897639275, -0.037717800587415695, -0.0012482819147408009, 0.01121348887681961, -0.0264283437281847, 0.04114645719528198, 0.017148252576589584, -0.023597674444317818, 0.022299330681562424, -0.0029403141234070063, -0.03132648020982742, -0.09046978503465652, -0.005450144410133362, -0.004649363458156586, 0.010817687027156353, 0.054703228175640106, 0.7860018014907837, 0.025680243968963623, -0.021023739129304886, -0.010827182792127132, 0.053799115121364594, -0.0029867305420339108, 0.01601705513894558, 0.0019117241026833653, 0.008780212141573429, -0.010194407775998116, 0.01918051764369011, 0.0006272522150538862, 0.04059409350156784, 0.020006533712148666, 0.012833217158913612, -0.03078494220972061, 0.02691095508635044, 0.013524629175662994, -0.018148567527532578, -0.01087738387286663, 0.05775891989469528, -0.013507491908967495, 0.03538146987557411, 0.023208850994706154, -0.007709861733019352, -0.011500202119350433, -0.16576336324214935, -0.04303932562470436, -7.278112946050533e-33, 0.0364646390080452, -0.02026994712650776, 0.10204310715198517, -0.015646209940314293, 0.028572697192430496, 0.007007036358118057, -0.01410959754139185, -0.042406369000673294, -0.027503717690706253, -0.023362521082162857, -0.04672124236822128, -0.0006737917428836226, 0.006682001985609531, -0.014929279685020447, 0.027095256373286247, -0.01052720658481121, -0.003391796723008156, -0.0007474442245438695, -0.006706823129206896, 0.023993320763111115, -0.0008161994046531618, 0.0183712188154459, -0.024277741089463234, 0.02431408502161503, 0.025546247139573097, 0.04809282720088959, 0.026636475697159767, -0.007776982616633177, 0.0071358284913003445, -0.033910416066646576, -0.04091428220272064, -0.048275645822286606, -0.00005023232370149344, -0.001245601219125092, -0.028120221570134163, -0.0627838671207428, -0.038230087608098984, 0.03347008675336838, -0.05808592960238457, -0.06387130916118622, -0.03129143267869949, -0.02211146056652069, -0.008173969574272633, -0.011017969809472561, -0.050009585916996, -0.018904907628893852, -0.004245584364980459, 0.01649465784430504, -0.0020119904074817896, -0.005348133388906717, 0.025174805894494057, 0.03569798171520233, -0.011297717690467834, 0.013908709399402142, -0.046613167971372604, 0.004784516058862209, 0.013115672394633293, -0.034287452697753906, -0.021302446722984314, -0.028406387194991112, 0.016152797266840935, -0.019475024193525314, -0.010236256755888462, 0.038390666246414185, 0.019813068211078644, 0.023318985477089882, 0.013271817937493324, -0.007880738005042076, 0.006146157626062632, 0.038328465074300766, -0.06942024827003479, 0.05660608783364296, 0.004509542603045702, -0.03418106585741043, 0.023456748574972153, -0.04753219336271286, -0.03843904286623001, -0.04309755936264992, -0.005512794945389032, 0.05174616724252701, -0.019399112090468407, -0.00043610247666947544, -0.014818097464740276, -0.012032105587422848, -0.04605545103549957, -0.04867706075310707, 0.029624922201037407, 0.04081258550286293, 0.013697355054318905, -0.01394581701606512, 0.05944022163748741, 0.007587783504277468, 0.012103701941668987, -0.048113491386175156, -0.028695495799183846, 6.953436263565633e-33, 0.0025845523923635483, 0.01729900948703289, -0.01123795472085476, -0.003169173840433359, 0.023220567032694817, 0.008043084293603897, 0.02385050058364868, 0.02348126657307148, -0.06534933298826218, 0.04872903227806091, 0.043041810393333435, 0.003668507095426321, -0.007662130519747734, 0.054355330765247345, 0.02680378034710884, 0.027104295790195465, 0.034850385040044785, -0.033486466854810715, 0.007174038328230381, 0.003918710630387068, 0.012545596808195114, -0.00030339855584315956, 0.006363571621477604, 0.00941382721066475, 0.014820726588368416, -0.009957731701433659, 0.013512726873159409, -0.025324277579784393, -0.01929493248462677, 0.022837677970528603, -0.00025575258769094944, -0.0698295310139656, 0.0028085275553166866, 0.003244671504944563, 0.01425701379776001, -0.015810005366802216, -0.03337543457746506, 0.0114203579723835, -0.008157609030604362, -0.04087803512811661, 0.0025609247386455536, 0.019359247758984566, -0.040422432124614716, 0.055496715009212494, -0.009258688427507877, 0.0035195460077375174, -0.047813426703214645, 0.01425208617001772, -0.007797685917466879, -0.0018896569963544607, -0.010012302547693253, 0.04544729366898537, 0.026029661297798157, -0.022713957354426384, 0.018192993476986885, -0.026983968913555145, -0.024554699659347534, 0.04427555948495865, -0.029754724353551865, 0.06178579479455948, -0.009170028381049633, 0.021336669102311134, -0.01376340538263321, 0.02623574808239937, 0.014640831388533115, 0.0008363233646377921, -0.057681530714035034, 0.00023621358559466898, -0.05418140068650246, -0.033506445586681366, -0.0032526645809412003, 0.04492459446191788, -0.019131064414978027, 0.05707940831780434, 0.05586680397391319, 0.0011317688040435314, -0.05610024183988571, 0.025369947776198387, -0.04185684025287628, 0.07270307838916779, 0.006212618667632341, -0.009298884309828281, 0.015169888734817505, 0.004887776914983988, -0.0009186943643726408, -0.030422063544392586, -0.017622776329517365, 0.04055306315422058, -0.005973143503069878, 0.011978539638221264, 0.010035697370767593, -0.016663620248436928, -0.04069521650671959, 0.042782992124557495, -0.033828433603048325, -1.245393477233847e-8, -0.06442797929048538, -0.012050408869981766, -0.017000142484903336, -0.02748318761587143, 0.0024778747465461493, 0.039099760353565216, -0.0034514095168560743, 0.0012179958866909146, -0.020388176664710045, 0.027569862082600594, 0.022636225447058678, -0.016056498512625694, -0.0025115679018199444, 0.007342771627008915, 0.025547120720148087, -0.05501020327210426, 0.005326689220964909, -0.02861545979976654, 0.0267490204423666, -0.004765999037772417, 0.01621907763183117, 0.04262666776776314, -0.03162985295057297, 0.03831038624048233, -0.0220914576202631, -0.020639145746827126, -0.0014925042632967234, -0.05336033180356026, 0.012880641967058182, -0.004426952451467514, -0.011082157492637634, -0.00787354726344347, -0.04530717059969902, 0.012788940221071243, -0.08200939744710922, -0.023327289149165154, 0.03411898389458656, 0.053587835282087326, 0.037617240101099014, 0.042931485921144485, -0.025373980402946472, -0.004705417435616255, -0.032642465084791183, -0.0424996092915535, 0.005682623479515314, 0.002272229176014662, -0.01775854453444481, -0.008568684570491314, 0.020899059250950813, -0.022864332422614098, 0.04228236898779869, -0.004491292405873537, 0.014150087721645832, 0.01909012533724308, 0.033106088638305664, 0.010799780488014221, -0.023927057161927223, -0.021366417407989502, 0.00939619354903698, -0.011502925306558609, 0.008674884214997292, -0.0361422561109066, -0.0018989848904311657, 0.0017797249602153897 ]
neo4j-cross-database-querying-fabric
https://markhneedham.com/blog/2020/02/03/neo4j-cross-database-querying-fabric
false
2020-02-04 00:21:00
Neo4j: Enriching an existing graph by querying the Wikidata SPARQL API
[ "wikidata", "neo4j" ]
[ "Wikidata" ]
This is the third post in a series about querying Wikidata's SPARQL API. In the first post we wrote some https://markhneedham.com/blog/2020/01/29/newbie-guide-querying-wikidata/[basic queries^], in the second we learnt about the https://markhneedham.com/blog/2020/02/02/querying-wikidata-construct-select/[SELECT and CONSTRUCT clauses^], and in this post we're going to import query results into an existing Neo4j graph. image::{{<siteurl>}}/uploads/2020/02/wiki-enrich-banner.png[title="Enriching a Neo4j Graph with Wikidata"] == Setting up Neo4j We're going to use the following Docker Compose configuration in this blog post: .Dockerfile [source,yaml] ---- version: '3.7' services: neo4j: image: neo4j:4.0.0-enterprise container_name: "quickgraph-aus-open" volumes: - ./plugins:/plugins - ./data:/data - ./import:/var/lib/neo4j/import ports: - "7474:7474" - "7687:7687" environment: - "NEO4J_ACCEPT_LICENSE_AGREEMENT=yes" - "NEO4J_AUTH=neo4j/neo" - NEO4JLABS_PLUGINS=["apoc"] ---- Once we've created that file we need to open a terminal session where that file lives and then run `docker-compose up` to launch Neo4j. Let's connect to our Neo4j instance using the https://neo4j.com/docs/operations-manual/current/tools/cypher-shell/[Cypher Shell^] tool: [source,bash] ---- $ docker exec -it quickgraph-aus-open cypher-shell -u neo4j -p neo -d system Connected to Neo4j 4.0.0 at neo4j://localhost:7687 as user neo4j. Type :help for a list of available commands or :exit to exit the shell. Note that Cypher queries must end with a semicolon. neo4j@system> ---- And now let's create a database to use for this blog post: [source,cypher] ---- CREATE DATABASE enrichwikidata; :use enrichwikidata; ---- We're going to create nodes representing some popular tennis players: [source,cypher] ---- UNWIND ["Nick Kyrgios", "Lleyton Hewitt", "Stan Wawrinka", "Roger Federer"] AS name MERGE (:Player {name: name}); ---- .Results |=== | 0 rows available after 31 ms, consumed after another 0 ms Added 4 nodes, Set 4 properties, Added 4 labels |=== == Querying Wikidata Now we're reading to query Wikidata. We're going to execute the following query, which returns the data of birth and nationality of Nick Kyrgios, against Wikidata's SPARQL API: [source,sparql] ---- SELECT * WHERE { ?person wdt:P106 wd:Q10833314 ; rdfs:label 'Nick Kyrgios'@en ; wdt:P569 ?dateOfBirth ; wdt:P27 [ rdfs:label ?countryName ] . filter(lang(?countryName) = "en") } ---- where we'll substitute the third line of the query with the names of different tennis players. As a refresher, if we https://query.wikidata.org/#SELECT%20%2a%0AWHERE%20%7B%20%3Fperson%20wdt%3AP106%20wd%3AQ10833314%20%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20rdfs%3Alabel%20%27Nick%20Kyrgios%27%40en%20%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20wdt%3AP569%20%3FdateOfBirth%20%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20wdt%3AP27%20%5B%20rdfs%3Alabel%20%3FcountryName%20%5D%20.%0A%20%20%20%20%20%20%20filter%28lang%28%3FcountryName%29%20%3D%20%22en%22%29%0A%7D[run this query^], we'll get the following output: .Results [opts="header"] |=== | person | dateOfBirth | countryName | http://www.wikidata.org/entity/Q3720084 |1995-04-27T00:00:00Z | Australia |=== At the moment these results are in a tabular/CSV structure, but we can have the API return a JSON structure by providing the header `Accept: 'application/sparql-results+json'`. The following Cypher query uses the `apoc.load.jsonParams` procedure to execute a SPARQL query against Wikidata's SPARQL API: [source,cypher] ---- MATCH (player:Player) WHERE player.name = "Nick Kyrgios" WITH "SELECT * WHERE { ?person wdt:P106 wd:Q10833314 ; rdfs:label \"" + player.name + "\"@en ; wdt:P569 ?dateOfBirth ; wdt:P27 [ rdfs:label ?countryName ] . filter(lang(?countryName) = \"en\") }" AS sparql CALL apoc.load.jsonParams( "https://query.wikidata.org/sparql?query=" + apoc.text.urlencode(sparql), { Accept: "application/sparql-results+json"}, null ) YIELD value RETURN value ---- If we run that query, we'll see the following output: .Results [opts="header"] |=== | value a| [source,cypher] ---- { head: { vars: ["person", "dateOfBirth", "countryName"] }, results: { bindings: [{ dateOfBirth: { type: "literal", datatype: "http://www.w3.org/2001/XMLSchema#dateTime", value: "1995-04-27T00:00:00Z" }, countryName: { `xml:lang`: "en", type: "literal", value: "Australia" }, person: { type: "uri", value: "http://www.wikidata.org/entity/Q3720084" } }] } } ---- |=== This looks like it should be reasonably easy to parse, so let's now do something with this data instead of just returning it! == Importing Wikidata into an existing graph We're going to add the date of birth to the `dateOfBirth` property of each `Player` node, create a `Country` node based on the nationality value, and then create a `NATIONALITY` relationship from the `Player` to the `Country`. We'll also add the `wikidataImportDone` property to each `Player` node so that we know when a node has already been processed. The following query does what we want: [source,cypher] ---- MATCH (player:Player) WHERE player.name = "Nick Kyrgios" WITH "SELECT * WHERE { ?person wdt:P106 wd:Q10833314 ; rdfs:label \"" + player.name + "\"@en ; wdt:P569 ?dateOfBirth ; wdt:P27 [ rdfs:label ?countryName ] . filter(lang(?countryName) = \"en\") }" AS sparql, player CALL apoc.load.jsonParams( "https://query.wikidata.org/sparql?query=" + apoc.text.urlencode(sparql), { Accept: "application/sparql-results+json"}, null ) YIELD value // We use apoc.do.when here because the API might return no results for // our player and we need to handle that case CALL apoc.do.when( size(value.results.bindings) > 0, 'WITH value.results.bindings[0] AS result, player // Add date of birth and wikiDataImportDone properties SET player.dateOfBirth = date(datetime(result.dateOfBirth.value)), player.wikidataImportDone = true // Create country node MERGE (c:Country {name: result.countryName.value }) // Create relationship between player and country MERGE (player)-[:NATIONALITY]->(c) RETURN player', 'SET player.wikidataImportDone = true RETURN player', {value: value, player: player}) YIELD value AS result return player; ---- .Results [opts="header"] |=== | player | (:Player {name: "Nick Kyrgios", wikidataImportDone: TRUE, dateOfBirth: 1995-04-27, id: "106401"}) |=== The Neo4j visualisation below shows what our graph looks like after this query has run: image::{{<siteurl>}}/uploads/2020/02/kyrgios-imported.png[title="Nick Kyrgios enriched graph"] Let's enrich the rest of our graph from Wikidata, which we can do by running the following query: [source,cypher] ---- // Find all unprocessed players MATCH (player:Player) WHERE not(exists(player.wikidataImportDone)) WITH "SELECT * WHERE { ?person wdt:P106 wd:Q10833314 ; rdfs:label \"" + player.name + "\"@en ; wdt:P569 ?dateOfBirth ; wdt:P27 [ rdfs:label ?countryName ] . filter(lang(?countryName) = \"en\") }" AS sparql, player CALL apoc.load.jsonParams( "https://query.wikidata.org/sparql?query=" + apoc.text.urlencode(sparql), { Accept: "application/sparql-results+json"}, null ) YIELD value CALL apoc.do.when( size(value.results.bindings) > 0, 'WITH value.results.bindings[0] AS result, player SET player.dateOfBirth = date(datetime(result.dateOfBirth.value)), player.wikidataImportDone = true MERGE (c:Country {name: result.countryName.value }) MERGE (player)-[:NATIONALITY]->(c) RETURN player', 'SET player.wikidataImportDone = true RETURN player', {value: value, player: player}) YIELD value AS result return player; ---- .Results [opts="header"] |=== | player | (:Player {name: "Lleyton Hewitt", wikidataImportDone: TRUE, dateOfBirth: 1981-02-24}) | (:Player {name: "Stan Wawrinka", wikidataImportDone: TRUE, dateOfBirth: 1985-03-28}) | (:Player {name: "Roger Federer", wikidataImportDone: TRUE, dateOfBirth: 1981-08-08}) |=== And the Neo4j visualisation below shows what our graph looks like after this query has run: image::{{<siteurl>}}/uploads/2020/02/wikidata-enriched-graph.png[title="Wikidata enriched graph"] == Enriching the Australian Open Graph Now we're going to apply this same approach to enrich the Australian Open Graph. Let's switch to the database for the men's tournaments: [source,cypher] ---- :use mens ---- And now we'll tweak the query that iterates over all players, calls the Wikipedia API, and uses the results to update the graph. We're going to use the `apoc.periodic.iterate` procedure so that we can process the players in batches of 20 rather than committing all the meta data in one transaction: [source,cypher] ---- CALL apoc.periodic.iterate( "MATCH (player:Player) WHERE not(exists(player.wikidataImportDone)) RETURN player", " WITH 'SELECT * WHERE { ?person wdt:P106 wd:Q10833314 ; rdfs:label \"' + player.name + '\"@en ; wdt:P569 ?dateOfBirth ; wdt:P27 [ rdfs:label ?countryName ] . filter(lang(?countryName) = \"en\") }' AS sparql, player CALL apoc.load.jsonParams( \"https://query.wikidata.org/sparql?query=\" + apoc.text.urlencode(sparql), { Accept: \"application/sparql-results+json\"}, null ) YIELD value CALL apoc.do.when( size(value.results.bindings) > 0, 'WITH value.results.bindings[0] AS result, player SET player.dateOfBirth = date(datetime(result.dateOfBirth.value)), player.wikidataImportDone = true MERGE (c:Country {name: result.countryName.value }) MERGE (player)-[:NATIONALITY]->(c) RETURN player', 'SET player.wikidataImportDone = true RETURN player', {value: value, player: player}) YIELD value AS result RETURN count(*)", {batchSize: 20}); ---- After running a few exploratory queries, I realised that about 1/5 of the players weren't found in Wikidata. Some of those players aren't famous enough to have an entry in Wikidata, but some of them have a different spelling of their name in the two datasets. I updated the names of the finalists by running the following query: [source,cypher] ---- UNWIND [ {wrong: "Arnaud Clement", right: "Arnaud Clément"}, {wrong: "Rainer Schuettler", right: "Rainer Schüttler"}, {wrong: "Fernando Gonzalez", right: "Fernando González"}, {wrong: "Marin Cilic", right: "Marin Čilić"} ] AS name MATCH (p:Player {name: name.wrong}) SET p.name = name.right REMOVE p.wikidataImportDone ---- And then I re-ran the previous query to import Wikidata. == Querying the enriched graph And now that the graph's been updated, let's write some queries that uses this new data. == How many participants did each country have in the Australian Open? Let's start simple by running the following query which returns the number of players grouped by country: [source,cypher] ---- MATCH (country:Country)<-[:NATIONALITY]-(player) RETURN country.name, count(*) AS players ORDER BY players DESC LIMIT 10; ---- .Results [opts="header"] |=== | country.name | players | "Australia" | 49 | "United States of America" | 46 | "France" | 36 | "Germany" | 31 | "Italy" | 26 | "Argentina" | 22 | "Russia" | 20 | "Spain" | 17 | "United States" | 16 | "United Kingdom" | 12 |=== Unsurprisingly Australia have the most participants, although the United States aren't far behind. == How many finalists did each country have? Next, we're going to find out how many times a country had a player in the final: [source,cypher] ---- MATCH (country:Country)<-[:NATIONALITY]-(player)-->(match:Match {round: "F"}) WITH country, count(*) AS finals, collect(distinct player.name) AS players WHERE finals > 1 RETURN country.name, finals, players ORDER BY finals DESC; ---- .Results [opts="header"] |=== | country.name | finals | players | "Switzerland" | 8 | ["Stan Wawrinka", "Roger Federer"] | "Serbia" | 8 | ["Novak Djokovic"] | "Spain" | 5 | ["Rafael Nadal"] | "United Kingdom" | 5 | ["Andy Murray"] | "Russia" | 4 | ["Marat Safin", "Yevgeny Kafelnikov"] | "United States of America" | 3 | ["Andre Agassi"] | "France" | 2 | ["Arnaud Clément", "Jo-Wilfried Tsonga"] |=== Australia now don't even appear on the list. Their only finalist since 2000 was Lleyton Hewitt in the 2005 final, which he lost to Marat Safin. And it's painful to see Andy Murray in there with 5 finals for the United Kingdom, but unfortunately losing all of them. == What was the lowest average age of the finalists? Let's finish with a query that uses the date of birth property. The following query returns the top 10 finalists ordered by lowest average age: [source,cypher] ---- MATCH (match:Match {round: "F"})-[:IN_TOURNAMENT]-(tournament:Tournament), (winner)-[:WINNER]->(match), (loser)-[:LOSER]->(match), (winner)-[:NATIONALITY]-(winnerCountry), (loser)-[:NATIONALITY]-(loserCountry) WITH tournament, winner, loser, match, winnerCountry, loserCountry, duration.between(winner.dateOfBirth, date({year: tournament.year})) AS winnerAge, duration.between(loser.dateOfBirth, date({year: tournament.year})) AS loserAge RETURN tournament.year, winner.name, loser.name, match.score, winnerCountry.name, loserCountry.name, winnerAge.years + "y" + winnerAge.monthsOfYear + "m" AS winnerAgeFormatted, loserAge.years + "y" + loserAge.monthsOfYear + "m" AS loserAgeFormatted ORDER BY winnerAge + loserAge / 2 LIMIT 5; ---- .Results [opts="header"] |=== | tournament.year | winner.name | loser.name | match.score | winnerCountry.name | loserCountry.name | winnerAgeFormatted | loserAgeFormatted | 2008 | "Novak Djokovic" | "Jo-Wilfried Tsonga" | "4-6 6-4 6-3 7-6(2)" | "Serbia" | "France" | "20y7m" | "22y8m" | 2004 | "Roger Federer" | "Marat Safin" | "7-6(3) 6-4 6-2" | "Switzerland" | "Russia" | "22y4m" | "23y11m" | 2006 | "Roger Federer" | "Marcos Baghdatis" | "5-7 7-5 6-0 6-2" | "Switzerland" | "Republic of Cyprus" | "24y4m" | "20y6m" | 2011 | "Novak Djokovic" | "Andy Murray" | "6-4 6-2 6-3" | "Serbia" | "United Kingdom" | "23y7m" | "23y7m" | 2009 | "Rafael Nadal" | "Roger Federer" | "7-5 3-6 7-6(3) 3-6 6-2" | "Spain" | "Switzerland" | "22y6m" | "27y4m" |=== 4 of the top 5 youngest finals of the 21st century happened in the first decade. Since then the ages have been increasing as the tournament has been dominated by Djokovic and to a lesser extent Federer, both of whom are more than 30 years old now.
Learn how to enrich an existing Neo4j database with data from the Wikidata API
uploads/2020/02/wiki-enrich-banner.png
[ 0.008226590231060982, -0.029219064861536026, 0.002058865502476692, 0.04608607664704323, 0.08488055318593979, 0.006307975389063358, 0.01821703091263771, 0.018396804109215736, -0.0019657600205391645, -0.032974790781736374, -0.01874067261815071, -0.0022522599902004004, -0.06148655712604523, 0.007176772691309452, 0.016849908977746964, 0.05222098529338837, 0.04845057800412178, 0.013801436871290207, 0.009646783582866192, 0.0012255031615495682, 0.027333691716194153, 0.05268939957022667, 0.012721114791929722, 0.028068672865629196, 0.03256358951330185, 0.009113349951803684, 0.0034512619022279978, -0.0006815246306359768, -0.054644957184791565, -0.018109211698174477, 0.0342886857688427, -0.010040652006864548, -0.00006953832053113729, -0.018005432561039925, 0.014107240363955498, 0.003480561776086688, -0.02662203088402748, 0.018019624054431915, -0.008414601907134056, 0.01028111670166254, -0.08755619078874588, 0.043021686375141144, 0.010710418224334717, 0.025317998602986336, -0.02754206582903862, 0.008578590117394924, -0.04161172732710838, 0.034369923174381256, 0.016022173687815666, 0.0003635880711954087, -0.0981362909078598, 0.007619907148182392, -0.016899870708584785, 0.014148117043077946, 0.0022602479439228773, 0.03998542204499245, -0.004410357214510441, -0.06760356575250626, 0.03743034228682518, -0.0216049924492836, 0.005804970860481262, -0.0029760044999420643, 0.019536199048161507, 0.008497150614857674, 0.016365891322493553, -0.05269907787442207, -0.021997123956680298, 0.060818761587142944, -0.05868878215551376, 0.004841982387006283, 0.02844231016933918, 0.03176404535770416, -0.029082423076033592, -0.0023205613251775503, 0.012924537993967533, -0.04253242537379265, 0.006490795407444239, 0.05424989387392998, 0.03293336555361748, 0.05272667109966278, -0.01591886207461357, -0.0007049058913253248, 0.009897288866341114, 0.036332592368125916, -0.012726045213639736, -0.07159537822008133, -0.02548891305923462, -0.01589340902864933, -0.05756814405322075, 0.05929185822606087, 0.030630262568593025, -0.06381801515817642, 0.007014397997409105, -0.0018982948968186975, -0.008304286748170853, 0.04035727679729462, 0.003994284197688103, 0.01083929929882288, 0.03008662723004818, -0.007825375534594059, -0.03988293930888176, -0.01676695980131626, 0.004261462949216366, 0.017566895112395287, -0.07638052850961685, -0.03269801661372185, -0.0210222527384758, -0.02949378825724125, 0.007153380196541548, 0.004997008014470339, 0.002622164087370038, 0.01860625110566616, -0.02264631912112236, 0.017127806320786476, -0.09550846368074417, 0.06146419793367386, 0.02207719348371029, -0.02650531381368637, -0.020880641415715218, -0.00031335142557509243, 0.03366638347506523, 0.0345429889857769, 0.008431680500507355, 0.06365659087896347, -0.009237321093678474, 0.031552430242300034, 0.011454627849161625, 0.05081409960985184, -0.023645533248782158, -0.06332780420780182, 0.004590969067066908, 0.0637979656457901, -0.008437573909759521, 0.012385846115648746, -0.0199772659689188, -0.020565340295433998, -0.02100181393325329, 0.051025327295064926, 0.06356076896190643, 0.033498719334602356, 0.0032495222985744476, -0.07063908874988556, 0.011542960070073605, 0.004353889264166355, 0.012787846848368645, 0.00930336769670248, -0.0077206711284816265, -0.037515606731176376, -0.026454510167241096, 0.010469477623701096, 0.01120850071310997, 0.007835816591978073, 0.04659318923950195, -0.04284542053937912, 0.0376005657017231, 0.09968507289886475, 0.05000792443752289, 0.008150212466716766, -0.013686655089259148, 0.017810774967074394, 0.03714311867952347, 0.028429947793483734, 0.01035142969340086, 0.038653451949357986, 0.004905550740659237, -0.041363734751939774, -0.013935266993939877, 0.05373934283852577, 0.018269876018166542, -0.002707604318857193, -0.033809468150138855, -0.05980372801423073, 0.06962350755929947, -0.028451908379793167, -0.014768458902835846, 0.046935394406318665, 0.0796937569975853, 0.01714101992547512, 0.024121539667248726, -0.008700260892510414, -0.08821199089288712, 0.044537223875522614, -0.008039944805204868, 0.018655959516763687, 0.009249447844922543, -0.014837516471743584, 0.07101359218358994, 0.04366810619831085, 0.019264478236436844, 0.025790533050894737, -0.08069084584712982, -0.08060750365257263, -0.016427773982286453, -0.008442732505500317, 0.07513678818941116, -0.012379640713334084, -0.008292187936604023, 0.05621117353439331, -0.009488042443990707, 0.029712211340665817, 0.013992942869663239, 0.003062677336856723, 0.034821219742298126, -0.06190431863069534, -0.07139894366264343, 0.06068740040063858, 0.016796180978417397, -0.046874988824129105, -0.07150093466043472, 0.013589998707175255, -0.04776032269001007, -0.012613562867045403, 0.013182462193071842, -0.03757859021425247, 0.031167425215244293, 0.009833592921495438, 0.029811209067702293, -0.008693723939359188, 0.030791888013482094, -0.029954155907034874, 0.05952661857008934, 0.01716681942343712, -0.020572049543261528, 0.006436511874198914, -0.0067405677400529385, 0.10078243911266327, 0.06441601365804672, -0.02365610934793949, -0.03299988433718681, 0.03784533962607384, 0.03085162676870823, -0.024486178532242775, 0.004502060357481241, -0.026495492085814476, -0.0009362378041259944, -0.0234402883797884, -0.02509555034339428, -0.02266058325767517, 0.011648252606391907, -0.028055787086486816, 0.00828563142567873, 0.06658356636762619, -0.0404103621840477, 0.06326749920845032, 0.029197918251156807, -0.007266740780323744, -0.017459753900766373, -0.05302576348185539, -0.06974785774946213, 0.018680065870285034, 0.024156617000699043, -0.00019270798657089472, 0.03868171200156212, -0.030980708077549934, 0.006651105359196663, -0.041597187519073486, -0.0413605272769928, 0.033454712480306625, 0.04087306186556816, 0.05269605293869972, -0.015964562073349953, 0.04920829460024834, -0.035315703600645065, 0.029667038470506668, 0.0015627492684870958, -0.04189825430512428, -0.05348508432507515, -0.03748862445354462, 0.02194800041615963, 0.012668957933783531, 0.03188521787524223, 0.0007645981968380511, 0.03491821140050888, -0.00792828481644392, 0.024502813816070557, 0.010159188881516457, 0.01466591376811266, 0.005342853255569935, 0.010334992781281471, -0.037852074950933456, -0.040536653250455856, 0.05512295290827751, -0.0670974850654602, -0.009940970689058304, -0.009785501286387444, -0.07046014815568924, 0.05609161779284477, -0.04838210344314575, -0.028875984251499176, -0.004965659696608782, 0.05167489871382713, 0.03761095926165581, 0.01537651102989912, 0.0060934629291296005, 0.0779317244887352, 0.011968075297772884, -0.0041546025313436985, 0.00546287139877677, -0.021576017141342163, 0.04515540227293968, -0.03140659257769585, 0.04317369684576988, 0.04009929299354553, -0.01676473207771778, 0.0008414179319515824, -0.03175124526023865, 0.010657968930900097, -0.015899602323770523, -0.2840481102466583, 0.04961246997117996, -0.031526293605566025, -0.031083306297659874, 0.006417934317141771, -0.00531960790976882, 0.008533267304301262, -0.025722358375787735, -0.017728310078382492, -0.006019293330609798, -0.015591749921441078, -0.016826150938868523, -0.013716292567551136, 0.04342395067214966, 0.012776504270732403, 0.04148673266172409, 0.008179844357073307, -0.04491863399744034, -0.0024966648779809475, 0.014506606385111809, -0.011471400037407875, -0.03304893150925636, -0.0042565050534904, 0.02012721635401249, 0.022104419767856598, 0.02251783199608326, -0.08917289972305298, 0.044553011655807495, -0.05176105722784996, -0.015527837909758091, -0.000823236012365669, -0.015555649995803833, 0.007617429364472628, 0.014065761119127274, -0.022722050547599792, -0.013889857567846775, 0.03785257786512375, 0.0038537976797670126, 0.01803317666053772, 0.004377934616059065, -0.0425666980445385, -0.03821033239364624, -0.021592652425169945, -0.019543852657079697, 0.08366230875253677, -0.011069485917687416, -0.07239167392253876, -0.009363827295601368, -0.011159319430589676, 0.07742615044116974, -0.03321639075875282, -0.051168955862522125, -0.02430383488535881, 0.04078816622495651, 0.003888033563271165, -0.02959906868636608, -0.022093530744314194, -0.021689793094992638, -0.062493741512298584, -0.04563060775399208, 0.007351988926529884, -0.037207163870334625, -0.007516547106206417, -0.05548179894685745, -0.03614043816924095, -0.054214783012866974, -0.07144581526517868, -0.0495595708489418, 0.058430228382349014, 0.032418087124824524, -0.03470529615879059, 0.03423595428466797, -0.012784592807292938, -0.0987798348069191, -0.014322669245302677, -0.045968908816576004, -0.034482523798942566, 0.009847374632954597, -0.006543667055666447, 0.038521964102983475, -0.0315886028110981, -0.06015000864863396, 0.010686755180358887, 0.02406357415020466, 0.011070121079683304, -0.010150552727282047, 0.02664337307214737, -0.03183450922369957, -0.01774788275361061, 0.015759741887450218, 0.05837704613804817, -0.016518181189894676, -0.03423060104250908, -0.024778779596090317, -0.012866480275988579, 0.016803359612822533, -0.0012101202737540007, 0.013269944116473198, 0.01823991909623146, 0.06925574690103531, 0.0532793290913105, -0.024793287739157677, 0.004769464023411274, -0.019369587302207947, -0.026560042053461075, -0.00404929555952549, -0.04004176706075668, 0.018288124352693558, 0.022040661424398422, 0.013877073302865028, -0.01157102920114994, -0.03285172954201698, 0.024764282628893852, -0.051015280187129974, -0.011943712830543518, -0.00997997261583805, 0.022262878715991974, 0.024582332000136375, 0.054935939610004425, -0.025581905618309975, -0.043379057198762894, 0.021866319701075554, 0.02631676383316517, -0.013997155241668224, -0.06011754646897316, -0.028669429942965508, -0.015452028252184391, -0.027164261788129807, 0.01177731528878212, 0.03806459531188011, -0.022171946242451668, 0.026344532147049904, 0.023508993908762932, -0.03770048916339874, 0.0413452684879303, -0.03158459812402725, -0.03317220136523247, -0.03671249374747276, 0.0335749089717865, 0.012852933257818222, -0.022567346692085266, 0.003464608918875456, -0.00372201856225729, 0.047194935381412506, 0.05144773796200752, 0.018077202141284943, -0.00005222727486398071, 0.000014535972695739474, 0.03619339317083359, -0.016386788338422775, -0.018388500437140465, -0.022908711805939674, 0.0036234878934919834, -0.03779581934213638, -0.017304111272096634, -0.01836269721388817, 0.06352255493402481, -0.02129913680255413, -0.021428747102618217, -0.024841250851750374, 0.019366838037967682, -0.07712645828723907, -0.0027499108109623194, -0.014742225408554077, -0.0024684795644134283, 0.05596921965479851, -0.028109489008784294, 0.027154481038451195, -0.001265759696252644, -0.025790156796574593, 0.010824655182659626, 0.02301594614982605, -0.015056847594678402, -0.012560416013002396, 0.007622899021953344, -0.009658852592110634, -0.016062092036008835, 0.051638394594192505, 0.04028131440281868, 0.02291741408407688, -0.017347944900393486, -0.025772573426365852, 0.00889460276812315, 0.02203156054019928, 0.05275224521756172, 0.049066271632909775, -0.02269068732857704, 0.004836888052523136, -0.010449529625475407, -0.0007369154482148588, -0.021658306941390038, 0.023330464959144592, -0.001998673193156719, 0.01722579449415207, -0.0271031204611063, -0.06597200781106949, 0.06256382912397385, 0.0049524204805493355, 0.007007846608757973, 0.04641066491603851, 0.001974382670596242, 0.001828718464821577, -0.025257444009184837, 0.048597078770399094, 0.05276443064212799, -0.06675615161657333, -0.029477251693606377, 0.00012318235530983657, 0.005675886292010546, -0.02172870934009552, 0.007643694989383221, -0.06696607917547226, -0.018805015832185745, -0.015125760808587074, 0.012919661588966846, -0.033602140843868256, -0.05026845261454582, 0.015416539274156094, 0.021544411778450012, 0.009953605011105537, 0.032717589288949966, 0.014102458953857422, 0.012087426148355007, -0.01626560464501381, -0.013877286575734615, 0.05699877440929413, -0.023628072813153267, -0.010565019212663174, -0.02343832328915596, -0.015837421640753746, 0.02711988240480423, -0.024112625047564507, 0.01610724814236164, -0.003024572739377618, -0.011784883216023445, 0.013361689634621143, -0.05386042967438698, 0.016598105430603027, -0.006889599375426769, 0.04563528671860695, -0.010132947936654091, -0.016126178205013275, -0.039954062551259995, -0.008604506962001324, -0.04470551013946533, -0.006690074224025011, -0.010736937634646893, 0.020090175792574883, 0.014467681758105755, 0.007594441995024681, -0.011722370982170105, 0.02836814895272255, -0.02726650796830654, -0.049813106656074524, 0.04863124340772629, -0.039298202842473984, -0.04033130034804344, -0.008455527015030384, -0.0678931176662445, 0.01162245124578476, 0.032204415649175644, 0.03137451782822609, -0.03447088226675987, 0.06996035575866699, 0.04558344557881355, 0.016059286892414093, 0.017502257600426674, -0.010239755734801292, 0.02096489630639553, -0.01727519929409027, -0.029736202210187912, -0.06915012747049332, 0.00740791205316782, 0.044507384300231934, -0.022758981212973595, -0.009683249518275261, 0.005243707448244095, -0.03111775405704975, 0.022617217153310776, -0.06043032556772232, -0.035581354051828384, 0.030184397473931313, -0.037841640412807465, 0.00242627109400928, -0.0049059223383665085, -0.06195522099733353, 0.010838134214282036, 0.035909734666347504, -0.0357101634144783, -0.03490184620022774, -0.01814783737063408, 0.057401664555072784, -0.02836347371339798, 0.0455864816904068, -0.0213011521846056, -0.030763685703277588, 0.07302471995353699, 0.02100803330540657, 0.014839892275631428, 0.038487255573272705, -0.006396625656634569, 0.027333557605743408, 0.033134620636701584, -0.00481546763330698, 0.011247110553085804, 0.025538258254528046, -0.02311520278453827, -0.04797228425741196, 0.03039923682808876, 0.015456234104931355, -0.012147107161581516, -0.030119940638542175, 0.0632794126868248, 0.02543419413268566, -0.054839156568050385, -0.0474933423101902, 0.0628848671913147, -0.05017823353409767, -0.014882535673677921, -0.0345517136156559, 0.01646704226732254, -0.049085650593042374, 0.030691375955939293, -0.0010378374718129635, 0.005549225024878979, 0.04957754164934158, 0.008415685966610909, -0.026584140956401825, 0.03323114663362503, 0.09113465994596481, 0.09034471213817596, 0.03399789333343506, 0.01189813669770956, 0.07046059519052505, -0.012976439669728279, -0.035401780158281326, -0.005191851872950792, -0.005864757113158703, -0.015569284558296204, 0.005390883423388004, 0.007458782289177179, 0.07421102374792099, -0.019450560212135315, 0.07242528349161148, -0.006287055090069771, -0.015085525810718536, -0.03442518040537834, -0.008252833038568497, 0.03237900882959366, 0.046316877007484436, 0.013075859285891056, 0.052133411169052124, -0.04051275551319122, -0.047009892761707306, 0.025541942566633224, -0.0034754464868456125, -0.02018691413104534, 0.031325485557317734, -0.031093306839466095, -0.005310444626957178, 0.005638104397803545, 0.041827473789453506, 0.08880428969860077, -0.03711042180657387, 0.0064072031527757645, 0.01467336155474186, 0.016556885093450546, 0.01238006167113781, 0.03734348341822624, -0.02448885515332222, -0.01659601554274559, -0.008517778478562832, -0.03771495819091797, -0.00845841970294714, -0.019430365413427353, -0.03652283176779747, 0.007276174146682024, -0.03689517453312874, -0.012929140590131283, 0.007101060356944799, -0.023093121126294136, -0.006757366005331278, -0.04404403269290924, -0.0281732939183712, -0.05695105344057083, -0.07390133291482925, 0.0037119295448064804, 0.00222126510925591, 0.014019585214555264, -0.015521065331995487, -0.024462902918457985, -0.029442567378282547, -0.010590318590402603, 0.051701322197914124, -0.05240747705101967, 0.008625153452157974, 0.002150201005861163, 0.025008762255311012, -0.0013686652528122067, -0.0006846661563031375, 0.06946341693401337, 0.0033463246654719114, 0.029563939198851585, -0.01836615428328514, 0.036768440157175064, 0.04139047488570213, 0.008877263404428959, -0.011382046155631542, -0.07770054787397385, 0.007210615091025829, 0.011913804337382317, 0.010066533461213112, -0.07836039364337921, 0.00912940502166748, 0.042398564517498016, 0.007187017239630222, 0.04129062220454216, -0.006571535021066666, 0.005136582534760237, -0.027127742767333984, 0.005287431180477142, -0.010439915582537651, -0.01645263284444809, 0.024697473272681236, -0.02712121419608593, 0.06868879497051239, 0.039950862526893616, -0.0077239167876541615, -0.032860297709703445, -0.03710607439279556, 0.007930224761366844, 0.018544722348451614, -0.03923790901899338, -0.03190292790532112, -0.031070934608578682, -0.09359494596719742, -0.06516602635383606, -0.0036609263624995947, -0.013556346297264099, -0.03655323013663292, 0.003992774523794651, 0.022042222321033478, -0.027149729430675507, 0.015163520351052284, -0.038567278534173965, 0.011813388206064701, -0.018138855695724487, -0.009329130873084068, -0.020829660817980766, 0.019125565886497498, 0.01044036541134119, 0.002354347612708807, 0.015695720911026, -0.05676999315619469, -0.000056458389735780656, -0.011507757008075714, 0.03984246775507927, 0.04642075300216675, 0.031045859679579735, 0.0009731546160764992 ]
[ -0.05170856788754463, -0.047618318349123, -0.04198495298624039, -0.039753131568431854, 0.05720696225762367, -0.04372056573629379, -0.04480087012052536, 0.016264533624053, 0.002053328324109316, -0.016960619017481804, 0.0004528795834630728, -0.03741779550909996, 0.0086295111104846, 0.004770968575030565, 0.08050263673067093, 0.019050762057304382, -0.025306839495897293, -0.0645730197429657, -0.02803093194961548, 0.04079492390155792, -0.04063611105084419, -0.034347664564847946, -0.014989599585533142, -0.05517398193478584, -0.023173436522483826, 0.05405706539750099, 0.02931889519095421, -0.029089519754052162, -0.007001236546784639, -0.19580627977848053, 0.00001169113784271758, 0.00240819389000535, -0.004951311741024256, -0.006898919586092234, 0.023065879940986633, 0.025792092084884644, 0.04524272307753563, -0.021603573113679886, 0.025016620755195618, 0.03333395719528198, 0.033304523676633835, -0.006656455807387829, -0.06185569241642952, 0.01603548601269722, 0.06098893657326698, 0.00303296884521842, -0.007559083867818117, -0.008630260825157166, -0.017211299389600754, -0.0007923373486846685, -0.04802418127655983, 0.0037614244502037764, 0.012789467349648476, -0.027001459151506424, 0.017878979444503784, 0.030460603535175323, 0.044076986610889435, 0.07536453008651733, 0.026348842307925224, 0.03706929832696915, 0.027603836730122566, 0.008608482778072357, -0.11883164942264557, 0.10610359162092209, -0.0015834063524380326, 0.024609778076410294, -0.049826480448246, 0.0011286053340882063, -0.012133345007896423, 0.04991510882973671, 0.030805768445134163, -0.00772737804800272, -0.059596095234155655, 0.06290216743946075, 0.0043426561169326305, 0.006156517192721367, -0.0007439180626533926, 0.039329756051301956, 0.03752545267343521, -0.04130297154188156, -0.03277386352419853, 0.007979399524629116, -0.037092603743076324, -0.01631234958767891, -0.029735257849097252, 0.016321338713169098, -0.02940461039543152, 0.0494086854159832, -0.020420413464307785, 0.01927916146814823, 0.017352191731333733, -0.013067977502942085, 0.0623425729572773, 0.03903268650174141, -0.08952242881059647, -0.002823055721819401, 0.007653994020074606, 0.022517632693052292, -0.00775357149541378, 0.39872828125953674, 0.018739299848675728, -0.017839595675468445, 0.023681696504354477, 0.03815000504255295, -0.0028600217774510384, -0.031050747260451317, -0.012113718315958977, -0.07652337849140167, 0.041363101452589035, -0.0039740027859807014, 0.0067810905165970325, -0.032070647925138474, 0.062027715146541595, -0.07256641238927841, -0.00910621602088213, -0.002190361265093088, 0.03555116057395935, 0.015678197145462036, -0.03415710851550102, 0.005992578808218241, -0.030681997537612915, -0.0026761323679238558, 0.03630402684211731, 0.03678973764181137, 0.04644688591361046, 0.001383405178785324, 0.01916874200105667, 0.011931643821299076, 0.017247552052140236, 0.02422860451042652, 0.04343307018280029, 0.005065751262009144, -0.07035897672176361, 0.028011025860905647, -0.014271670021116734, -0.008668615482747555, 0.046545110642910004, -0.071060910820961, -0.0029225421603769064, 0.02766367606818676, -0.03244144469499588, -0.04686541482806206, 0.029342329129576683, -0.0027745335828512907, -0.048492446541786194, 0.12772008776664734, -0.0026859792415052652, -0.047898028045892715, -0.0323772132396698, -0.06797250360250473, -0.0026354764122515917, 0.07047919929027557, 0.02089664712548256, -0.05788276717066765, -0.004838158376514912, 0.011920562013983727, 0.08865027129650116, 0.0014503182610496879, -0.08772052824497223, 0.00306204822845757, -0.022221067920327187, -0.06067875772714615, -0.03396797180175781, 0.08107340335845947, 0.0374070405960083, -0.14052146673202515, -0.01536762248724699, 0.0263371579349041, 0.012348082847893238, -0.04038023576140404, 0.00471684243530035, 0.019783800467848778, -0.03633139282464981, -0.012535550631582737, 0.06219606101512909, -0.021285487338900566, -0.01091612409800291, 0.015130714513361454, 0.028844941407442093, 0.00013486010720953345, -0.03339606523513794, -0.021860327571630478, -0.04269440844655037, -0.006711224559694529, -0.06909282505512238, -0.05328274890780449, -0.07574732601642609, 0.028169874101877213, -0.021800637245178223, -0.04265656694769859, -0.03208159655332565, 0.005158606916666031, -0.051842398941516876, 0.09800044447183609, -0.015538336709141731, -0.0361405648291111, -0.004347605165094137, 0.02050737850368023, 0.005697980988770723, -0.0455593504011631, 0.03762554004788399, 0.02577882818877697, 0.008508442901074886, 0.041179463267326355, -0.05601271986961365, 0.030308818444609642, 0.06295868754386902, -0.011626068502664566, 0.0640515461564064, 0.027824832126498222, -0.05985521152615547, 0.009182346053421497, -0.01989714801311493, 0.026126494631171227, -0.003018649062141776, -0.02180999517440796, 0.008160179480910301, -0.01792132295668125, 0.0182382520288229, 0.04041101783514023, -0.03671363368630409, -0.007927119731903076, -0.019141292199492455, -0.35267186164855957, -0.04452386870980263, -0.024723369628190994, 0.010144024156033993, -0.012812451459467411, -0.05801304057240486, 0.02995673194527626, 0.0016356004634872079, 0.004385742824524641, 0.030236277729272842, 0.089816614985466, -0.023302271962165833, 0.024241721257567406, -0.0794459730386734, -0.0047266120091080666, 0.04367657005786896, 0.008756330236792564, 0.009283634833991528, -0.01581556536257267, 0.0070814453065395355, 0.0004595265199895948, -0.05373318865895271, -0.029311420395970345, -0.03283724561333656, 0.008209280669689178, -0.01621708646416664, 0.11372479051351547, 0.024259349331259727, 0.03092767484486103, -0.0542878583073616, 0.05487110838294029, 0.007553814444690943, -0.009216459468007088, -0.09913145005702972, -0.0016019612085074186, -0.02135065570473671, 0.0339755155146122, 0.023341104388237, -0.0163565780967474, 0.0012089901138097048, -0.04053919017314911, 0.0008445997373200953, -0.04466500133275986, -0.06714633852243423, -0.005913865752518177, -0.0007439968758262694, -0.04229903593659401, -0.011903071776032448, -0.024464130401611328, 0.07295218855142593, 0.0010752996895462275, 0.02715514972805977, 0.0074323625303804874, 0.025632278993725777, -0.004400298930704594, -0.00858955830335617, -0.043939147144556046, -0.030903944745659828, 0.032851897180080414, 0.028169089928269386, 0.007896099239587784, 0.04943212866783142, 0.016516081988811493, -0.06866824626922607, 0.02349180355668068, -0.004315476398915052, -0.016908101737499237, 0.023020515218377113, 0.051139846444129944, -0.057458698749542236, -0.03850754350423813, 0.09222365915775299, 0.00845086295157671, 0.0468687005341053, 0.02537683956325054, 0.07764999568462372, -0.022404618561267853, 0.01742059551179409, 0.05611909180879593, 0.006725665647536516, 0.031061489135026932, -0.019221274182200432, 0.0710252895951271, -0.03490601107478142, -0.0032316395081579685, 0.06701371818780899, 0.025766532868146896, -0.043779950588941574, 0.06614051014184952, 0.014575470238924026, -0.03998824581503868, 0.0011069366009905934, -0.014158793725073338, -0.05840054899454117, 0.0563235729932785, -0.01941845193505287, -0.2720421254634857, 0.0305680762976408, 0.04330241307616234, 0.05647985637187958, 0.002069734502583742, 0.002292315475642681, 0.04154107719659805, -0.04388730227947235, 0.016362544149160385, 0.020209142938256264, 0.03762762248516083, 0.05004004389047623, -0.01929401233792305, -0.012331614270806313, 0.00675992714241147, 0.005066425073891878, 0.03700506314635277, 0.026022063568234444, 0.027609460055828094, 0.0028302425052970648, 0.022232454270124435, -0.005382230971008539, 0.17323145270347595, 0.03821786865592003, 0.00953865796327591, 0.04555045813322067, -0.018102144822478294, 0.0022425283677875996, 0.0297989621758461, 0.011822778731584549, -0.02161628007888794, 0.030323725193738937, 0.004393210634589195, 0.02367774024605751, 0.027234593406319618, -0.041610658168792725, -0.030431944876909256, 0.03284717723727226, 0.01593988947570324, -0.028939001262187958, -0.007394110783934593, 0.03211398422718048, -0.038949355483055115, 0.04454341530799866, 0.0562317855656147, -0.030501589179039, -0.004420233424752951, -0.039191801100969315, -0.06145109981298447, -0.002972015179693699, -0.027373263612389565, -0.06664759665727615, -0.02347075194120407, -0.019916456192731857, 0.001568014733493328, 0.07281426340341568, 0.02331085503101349, -0.03573010489344597, 0.030038541182875633, 0.011719899252057076, -0.020550040528178215, -0.050123363733291626, 0.10193701833486557, -0.00240400736220181, 0.025921335443854332 ]
[ 0.03197269141674042, 0.05027099326252937, -0.000356951350113377, 0.030644426122307777, -0.013232075609266758, -0.03761310130357742, 0.003649473888799548, -0.00483326893299818, -0.01457640528678894, 0.012135098688304424, -0.0091734379529953, 0.006919352803379297, 0.06227421015501022, 0.03162704035639763, 0.014091555960476398, 0.02191377431154251, 0.0032624045852571726, 0.011196733452379704, 0.02706102840602398, 0.005846662912517786, -0.043399155139923096, 0.004555234219878912, 0.014949621632695198, -0.014725560322403908, 0.00044876610627397895, 0.0071066091768443584, -0.05568120256066322, 0.00526659470051527, 0.01464418601244688, -0.10732825100421906, -0.016520878300070763, -0.02702612616121769, -0.002514314604923129, -0.0005051440675742924, -0.006327388808131218, 0.01486312597990036, 0.06144775077700615, -0.003011177759617567, 0.005432420875877142, 0.03365042433142662, 0.02497546188533306, -0.01775866001844406, -0.0311056487262249, 0.010705608874559402, -0.013857482001185417, -0.027604419738054276, -0.050642356276512146, -0.04505449905991554, 0.015172298066318035, 0.010986920446157455, -0.06281405687332153, -0.018210576847195625, -0.022819017991423607, -0.015684179961681366, 0.007196737453341484, 0.00256287376396358, -0.058146554976701736, 0.004471589811146259, 0.0363897830247879, -0.01261142734438181, 0.03402688354253769, -0.011657088063657284, -0.05404040962457657, -0.025624332949519157, -0.005774197168648243, -0.028036925941705704, -0.00530107831582427, 0.00807642936706543, 0.0025848017539829016, 0.010758500546216965, 0.007214393466711044, 0.043752312660217285, -0.0773216038942337, -0.03626454249024391, -0.03628629446029663, 0.033692654222249985, 0.05268307775259018, -0.026600182056427002, -0.06874457746744156, -0.00840968918055296, 0.0026329196989536285, 0.019340669736266136, -0.035426363348960876, 0.01040996890515089, -0.023417165502905846, 0.01959894225001335, -0.015139888972043991, -0.025566067546606064, 0.015552419237792492, 0.00325868115760386, -0.006605933420360088, -0.01225808635354042, -0.03194727003574371, -0.02118021994829178, -0.05883700028061867, -0.01158146746456623, 0.011796356178820133, 0.00442976038902998, 0.0026839706115424633, 0.8241961002349854, 0.013543904758989811, -0.0106046162545681, -0.0007791936513967812, -0.00015462239389307797, 0.013764536939561367, -0.009928114712238312, 0.019005034118890762, -0.017276130616664886, -0.005353337619453669, 0.014440368860960007, -0.014894231222569942, 0.00997390877455473, 0.01685391739010811, 0.024154609069228172, -0.0013960564974695444, 0.04001200199127197, 0.005949272774159908, -0.024003436788916588, 0.0030299799982458353, 0.026212554425001144, 0.023125335574150085, 0.02249922789633274, -0.004837490618228912, 0.010516430251300335, 0.0020128008909523487, -0.17309355735778809, -0.001343953306786716, -6.728581826668591e-33, 0.04961829632520676, -0.0261263158172369, 0.06787917017936707, 0.02417011186480522, 0.01685665175318718, 0.016374079510569572, 0.001795229036360979, -0.036942802369594574, -0.04038572683930397, -0.022831380367279053, -0.04205101728439331, 0.014431309886276722, 0.0066608949564397335, -0.0021661666687577963, -0.006112060509622097, 0.011373348534107208, 0.0008320435881614685, 0.015079357661306858, -0.013831058517098427, 0.016771290451288223, 0.012322429567575455, 0.03912774473428726, -0.051244378089904785, 0.03928046301007271, 0.018910221755504608, 0.027621569111943245, 0.008560295216739178, 0.0072914063930511475, 0.009282862767577171, -0.051562029868364334, -0.055638402700424194, 0.009424224495887756, -0.011414282955229282, 0.003771671559661627, 0.010159239172935486, -0.069703109562397, -0.019831212237477303, 0.02955595776438713, -0.037957705557346344, -0.07457152009010315, -0.02429123781621456, 0.00021380239923018962, -0.016620056703686714, -0.014978563413023949, -0.04025575891137123, -0.008058691397309303, -0.02907877042889595, 0.0011812791926786304, -0.0004086780536454171, 0.00796451885253191, 0.02071712352335453, 0.026159372180700302, -0.03473411872982979, 0.032112330198287964, -0.04947273060679436, -0.021049171686172485, -0.002609527437016368, -0.005262184888124466, -0.019072068855166435, -0.00011324694060022011, 0.006213119253516197, -0.020041536539793015, -0.015246452763676643, 0.04019731283187866, 0.04154513031244278, 0.02977803349494934, -0.017078150063753128, 0.029148796573281288, -0.0034164285752922297, 0.05512108653783798, -0.027275357395410538, 0.03926587477326393, -0.016168303787708282, -0.03072902001440525, 0.030436066910624504, -0.06886827200651169, 0.0001682652800809592, -0.024491578340530396, -0.0041727907955646515, 0.05924864858388901, -0.02546852082014084, -0.04399672523140907, -0.017828702926635742, -0.008131595328450203, -0.021359149366617203, -0.017321161925792694, 0.04759256914258003, 0.036546796560287476, 0.04030880704522133, 0.0283017847687006, 0.04378492757678032, 0.03160404413938522, -0.014430813491344452, -0.0265372134745121, -0.02819480188190937, 6.175020965715237e-33, 0.006033060606569052, -0.003393543651327491, -0.008393489755690098, -0.011497871950268745, 0.0204243715852499, 0.02638336457312107, 0.0281313955783844, -0.00046740626567043364, -0.02231025882065296, 0.023052502423524857, 0.0017071703914552927, 0.012378842569887638, -0.00925975851714611, 0.0600212886929512, 0.0300435870885849, 0.019253335893154144, 0.00823312345892191, -0.04959110915660858, -0.0038044480606913567, 0.027612265199422836, -0.02127104252576828, 0.01942078024148941, 0.00925037357956171, 0.04357793554663658, 0.03363211452960968, 0.00650389539077878, 0.0037991106510162354, 0.001940373913384974, -0.03565961867570877, 0.002404344966635108, -0.015823405236005783, -0.05530374124646187, -0.0015917416894808412, -0.0035098905209451914, -0.00918669905513525, 0.020830925554037094, -0.03263614699244499, 0.006016934756189585, -0.003264182945713401, 0.009849419817328453, 0.02895694226026535, -0.0025788273196667433, -0.02943674474954605, 0.06132974848151207, 0.005002196878194809, 0.000671977351885289, 0.002869164803996682, 0.012905539944767952, -0.012889138422906399, 0.0277011226862669, -0.004278920125216246, 0.030343499034643173, 0.023051951080560684, 0.026508226990699768, 0.02218782901763916, -0.05594421178102493, 0.002262815600261092, 0.04525460675358772, -0.012455361895263195, 0.004919206723570824, -0.016470491886138916, -0.015691135078668594, -0.0318499319255352, 0.008213160559535027, -0.015325862914323807, -0.014280281029641628, -0.01966739632189274, 0.0015958445146679878, -0.022364305332303047, 0.001335314940661192, 0.04177866131067276, 0.009138680063188076, 0.009335368871688843, 0.030031945556402206, 0.04902644082903862, -0.02604752779006958, -0.023772111162543297, 0.008889402262866497, -0.03831810876727104, 0.020704196766018867, -0.005912847816944122, 0.02441280707716942, 0.03059425577521324, -0.01068731676787138, -0.009036325849592686, 0.0024539658334106207, -0.01533445529639721, 0.030992308631539345, -0.02753843180835247, -0.010522541590034962, 0.042335014790296555, -0.04765184596180916, -0.022425955161452293, 0.06245230883359909, -0.025581199675798416, -1.2353200240511342e-8, -0.038654930889606476, -0.007873988710343838, -0.017791077494621277, 0.012591784819960594, -0.02015078067779541, 0.019824182614684105, 0.015461497008800507, 0.02408231981098652, -0.011279135942459106, 0.029609879478812218, 0.01719563454389572, 0.008631790056824684, 0.017314819619059563, 0.0007115868502296507, 0.018094172701239586, -0.02693069539964199, 0.02212313376367092, -0.01592508889734745, 0.03808970004320145, -0.023055411875247955, -0.0016832832479849458, 0.021853066980838776, -0.0066749961115419865, 0.016490092501044273, -0.029177838936448097, -0.002237923676148057, 0.043724674731492996, -0.06022777408361435, -0.022140834480524063, -0.033449411392211914, -0.004171095788478851, -0.026018714532256126, -0.035774677991867065, 0.011001845821738243, -0.03730246424674988, -0.012337268330156803, 0.014412530697882175, 0.04313312843441963, 0.0018160019535571337, 0.013071153312921524, -0.023906873539090157, 0.005922454409301281, -0.06479702889919281, -0.04529713839292526, -0.048504527658224106, 0.017202667891979218, -0.02423594519495964, 0.008293685503304005, 0.05366574227809906, -0.013151189312338829, 0.008858384564518929, -0.004411083646118641, 0.05174621194601059, 0.016020318493247032, 0.03764525055885315, 0.009926221333444118, 0.016393350437283516, 0.0007671078201383352, -0.027177944779396057, -0.017881067469716072, 0.03517020493745804, 0.0192100889980793, -0.014892102219164371, 0.002141245873644948 ]
neo4j-enriching-existing-graph-wikidata-sparql-api
https://markhneedham.com/blog/2020/02/04/neo4j-enriching-existing-graph-wikidata-sparql-api
false
2020-02-02 00:21:00
Querying Wikidata: SELECT vs CONSTRUCT
[ "wikidata", "sparql" ]
[ "Wikidata" ]
In this blog post we're going to build upon the https://markhneedham.com/blog/2020/01/29/newbie-guide-querying-wikidata/[newbie's guide to querying Wikidata^], and learn all about the CONSTRUCT clause. image::{{<siteurl>}}/uploads/2020/02/wikidata-construct-select.png[title="SPARQL's CONSTRUCT and SELECT clauses"] In the newbie's guide, we wrote the following query to find a tennis player with the name "Nick Kyrgios" and return their date of birth: [source,sparql] ---- SELECT * WHERE { ?person wdt:P106 wd:Q10833314 ; rdfs:label 'Nick Kyrgios'@en ; wdt:P569 ?dateOfBirth } ---- where: * `wdt:P106` is occupation * `wd:Q10833314` is tennis player * `wdt:P569` is date of birth If we https://query.wikidata.org/#SELECT%20%2a%0AWHERE%20%7B%0A%20%20%3Fperson%20wdt%3AP106%20wd%3AQ10833314%20%3B%0A%20%20%20%20%20%20%20%20%20%20rdfs%3Alabel%20%27Nick%20Kyrgios%27%40en%20%3B%0A%20%20%20%20%20%20%20%20%20%20wdt%3AP569%20%3FdateOfBirth%0A%7D[run that query^], we'll see the following output: .Results [opts="header"] |=== | person | dateOfBirth | http://www.wikidata.org/entity/Q3720084 | 1995-04-27T00:00:00Z |=== But what if we want to return the results as a list of triples instead? == CONSTRUCT WHERE We can use the https://www.w3.org/TR/sparql11-query/#constructWhere[`CONSTRUCT WHERE`^] clause instead of `SELECT`. [quote] ____ A short form for the CONSTRUCT query form is provided for the case where the template and the pattern are the same and the pattern is just a basic graph pattern (no FILTERs and no complex graph patterns are allowed in the short form). The keyword WHERE is required in the short form. ____ I found https://www.futurelearn.com/courses/linked-data/0/steps/16104[a good article explaining the CONSTRUCT clause^] as part of FutureLearn's Introduction to Linked Data and the Semantic Web course. Our updated query looks like this: [source,sparql] ---- CONSTRUCT WHERE { ?person wdt:P106 wd:Q10833314 ; rdfs:label 'Nick Kyrgios'@en ; wdt:P569 ?dateOfBirth } ---- And if we run that we'll get the following output: .Results [opts="header"] |=== | subject | predicate | object | http://www.wikidata.org/entity/Q3720084 | http://www.wikidata.org/prop/direct/P106 | http://www.wikidata.org/entity/Q10833314 | http://www.wikidata.org/entity/Q3720084 | http://www.w3.org/2000/01/rdf-schema#label | Nick Kyrgios | http://www.wikidata.org/entity/Q3720084 | http://www.wikidata.org/prop/direct/P569 | 1995-04-27T00:00:00Z |=== where: * _Q3720084_ is Nick Kyrgios * _P106_ is occupation * _Q10833314_ is tennis player * _P569_ is date of birth So if we translate the three triples returned, what we have is: .Translated results |=== | Nick Kyrgios | occupation | tennis player | Nick Kyrgios | label | Nick Kyrgios | Nick Kyrgios | date of birth | 1995-04-27T00:00:00Z |=== So far, so good. Let's extend our `SELECT` query to also return the person's nationality: [source, spaqrl] ---- SELECT * WHERE { ?person wdt:P106 wd:Q10833314 ; rdfs:label 'Nick Kyrgios'@en ; wdt:P569 ?dateOfBirth ; wdt:P27 [ rdfs:label ?countryName ] . filter(lang(?countryName) = "en") } ---- .Results [opts="header"] |=== | person | dateOfBirth | countryName | http://www.wikidata.org/entity/Q3720084 |1995-04-27T00:00:00Z | Australia |=== Now we want to do the same thing with our `CONSTRUCT` query: [source, spaqrl] ---- CONSTRUCT WHERE { ?person wdt:P106 wd:Q10833314 ; rdfs:label 'Nick Kyrgios'@en ; wdt:P569 ?dateOfBirth ; wdt:P27 [ rdfs:label ?countryName ] . filter(lang(?countryName) = "en") } ---- If we run that query, we'll get the following error: [source,text] ---- SPARQL-QUERY: queryStr=CONSTRUCT WHERE { ?person wdt:P106 wd:Q10833314 ; rdfs:label 'Nick Kyrgios'@en ; wdt:P569 ?dateOfBirth ; wdt:P27 [ rdfs:label ?countryName ] . filter(lang(?countryName) = "en") } java.util.concurrent.ExecutionException: org.openrdf.query.MalformedQueryException: CONSTRUCT WHERE only permits statement patterns in the WHERE clause. ---- As the error message indicates, we can only use statement patterns in the WHERE clause. The `filter` part of the WHERE clause is problematic, so let's remove that: [source, spaqrl] ---- CONSTRUCT WHERE { ?person wdt:P106 wd:Q10833314 ; rdfs:label 'Nick Kyrgios'@en ; wdt:P569 ?dateOfBirth ; wdt:P27 [ rdfs:label ?countryName ] } ---- If we https://query.wikidata.org/#CONSTRUCT%0AWHERE%20%7B%20%3Fperson%20wdt%3AP106%20wd%3AQ10833314%20%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20rdfs%3Alabel%20%27Nick%20Kyrgios%27%40en%20%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20wdt%3AP569%20%3FdateOfBirth%20%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20wdt%3AP27%20%5B%20rdfs%3Alabel%20%3FcountryName%20%5D%0A%7D[run that query^], we'll get the following output: .Results [opts="header"] |=== | subject | predicate | object | http://www.wikidata.org/entity/Q3720084 | http://www.wikidata.org/prop/direct/P106 | http://www.wikidata.org/entity/Q10833314 | http://www.wikidata.org/entity/Q3720084 |http://www.w3.org/2000/01/rdf-schema#label | Nick Kyrgios | http://www.wikidata.org/entity/Q3720084 | http://www.wikidata.org/prop/direct/P569 | 1995-04-27T00:00:00Z | b0 | http://www.w3.org/2000/01/rdf-schema#label | Australia |http://www.wikidata.org/entity/Q3720084 | http://www.wikidata.org/prop/direct/P27 | b0 |b1 | http://www.w3.org/2000/01/rdf-schema#label | Awıstralya |http://www.wikidata.org/entity/Q3720084 | http://www.wikidata.org/prop/direct/P27 | b1 3+| ... | b5 |http://www.w3.org/2000/01/rdf-schema#label | ཨས་ཊེཡེ་ལི་ཡ | http://www.wikidata.org/entity/Q3720084 | http://www.wikidata.org/prop/direct/P27 | b5 |=== Hmm, the output isn't exactly what we wanted. We have two issues to try and figure out: * what are those values that prefixed with `b` all about? * we've got every single version of "Australia" instead of just the English version We can fix the first problem by pulling out the country and country name separately instead of doing it all in one statement. This means that: [source,sparql] ---- ?player wdt:P27 [ rdfs:label ?countryName ] ---- becomes: [source,sparql] ---- ?player wdt:P27 ?country . ?country rdfs:label ?countryName ---- If we do that, we'll have the following query: [source,sparql] ---- CONSTRUCT WHERE { ?person wdt:P106 wd:Q10833314 ; rdfs:label 'Nick Kyrgios'@en ; wdt:P569 ?dateOfBirth ; wdt:P27 ?country . ?country rdfs:label ?countryName } ---- And now let's https://query.wikidata.org/#CONSTRUCT%0AWHERE%20%7B%20%3Fperson%20wdt%3AP106%20wd%3AQ10833314%20%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20rdfs%3Alabel%20%27Nick%20Kyrgios%27%40en%20%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20wdt%3AP569%20%3FdateOfBirth%20%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20wdt%3AP27%20%3Fcountry%20%20.%0A%20%20%20%20%20%20%20%3Fcountry%20rdfs%3Alabel%20%3FcountryName%0A%7D[run that query^]: .Results [opts="header"] |=== | subject | predicate | object |http://www.wikidata.org/entity/Q3720084|http://www.wikidata.org/prop/direct/P106|http://www.wikidata.org/entity/Q10833314 |http://www.wikidata.org/entity/Q3720084|http://www.w3.org/2000/01/rdf-schema#label|Nick Kyrgios |http://www.wikidata.org/entity/Q3720084|http://www.wikidata.org/prop/direct/P569|1995-04-27T00:00:00Z |http://www.wikidata.org/entity/Q3720084|http://www.wikidata.org/prop/direct/P27|http://www.wikidata.org/entity/Q408 |http://www.wikidata.org/entity/Q408|http://www.w3.org/2000/01/rdf-schema#label|Australia |http://www.wikidata.org/entity/Q408|http://www.w3.org/2000/01/rdf-schema#label|Australië 3+| ... | http://www.wikidata.org/entity/Q408|http://www.w3.org/2000/01/rdf-schema#label,Австралия, | http://www.wikidata.org/entity/Q408|http://www.w3.org/2000/01/rdf-schema#label,Austràlia, |=== That's better, but we still have all versions of Australia instead of just the English version. == Plain old CONSTRUCT As far as I understand, to fix that we'll need to use the normal CONSTRUCT syntax, which requires us to specify all the triples that we'd like to return. Let's update our query to do that: [source,sparql] ---- CONSTRUCT { ?person wdt:P569 ?dateOfBirth; rdfs:label ?playerName; wdt:P27 ?country . ?country rdfs:label ?countryName } WHERE { ?person wdt:P106 wd:Q10833314 ; rdfs:label 'Nick Kyrgios'@en ; wdt:P569 ?dateOfBirth ; wdt:P27 ?country . ?country rdfs:label ?countryName . filter(lang(?countryName) = "en") } ---- And if we https://query.wikidata.org/#CONSTRUCT%20%7B%20%0A%20%20%3Fperson%20wdt%3AP569%20%3FdateOfBirth%3B%0A%20%20%20%20%20%20%20%20%20%20rdfs%3Alabel%20%3FplayerName%3B%0A%20%20%20%20%20%20%20%20%20%20wdt%3AP27%20%3Fcountry%20.%0A%20%20%3Fcountry%20rdfs%3Alabel%20%3FcountryName%0A%7D%0AWHERE%20%7B%20%3Fperson%20wdt%3AP106%20wd%3AQ10833314%20%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20rdfs%3Alabel%20%27Nick%20Kyrgios%27%40en%20%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20wdt%3AP569%20%3FdateOfBirth%20%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20wdt%3AP27%20%3Fcountry%20%20.%0A%20%20%20%20%20%20%20%3Fcountry%20rdfs%3Alabel%20%3FcountryName%20.%0A%20%20%20%20%20%20%20filter%28lang%28%3FcountryName%29%20%3D%20%22en%22%29%0A%7D%0A[run that query^], we'll see the following output: .Results [opts="header"] |=== | subject | predicate | object | http://www.wikidata.org/entity/Q3720084|http://www.wikidata.org/prop/direct/P569 |1995-04-27T00:00:00Z | http://www.wikidata.org/entity/Q3720084|http://www.wikidata.org/prop/direct/P27 |http://www.wikidata.org/entity/Q408 | http://www.wikidata.org/entity/Q408|http://www.w3.org/2000/01/rdf-schema#label | Australia |=== That's better, but we're missing the statement that returns the player's name. We do have that statement in the CONSTRUCT clause, but we also need to have it in the WHERE clause. If we do that we'll also need to add a language filter so that we only return the English version of the name. Our query now looks like this: [source,sparql] ---- CONSTRUCT { ?person wdt:P569 ?dateOfBirth; rdfs:label ?playerName; wdt:P27 ?country . ?country rdfs:label ?countryName } WHERE { ?person wdt:P106 wd:Q10833314 ; rdfs:label 'Nick Kyrgios'@en ; rdfs:label ?playerName; wdt:P569 ?dateOfBirth ; wdt:P27 ?country . ?country rdfs:label ?countryName . filter(lang(?countryName) = "en") filter(lang(?playerName) = "en") } ---- Now let's https://query.wikidata.org/#CONSTRUCT%20%7B%20%0A%20%20%3Fperson%20wdt%3AP569%20%3FdateOfBirth%3B%0A%20%20%20%20%20%20%20%20%20%20rdfs%3Alabel%20%3FplayerName%3B%0A%20%20%20%20%20%20%20%20%20%20wdt%3AP27%20%3Fcountry%20.%0A%20%20%3Fcountry%20rdfs%3Alabel%20%3FcountryName%0A%7D%0AWHERE%20%7B%20%3Fperson%20wdt%3AP106%20wd%3AQ10833314%20%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20rdfs%3Alabel%20%27Nick%20Kyrgios%27%40en%20%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20rdfs%3Alabel%20%3FplayerName%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20wdt%3AP569%20%3FdateOfBirth%20%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20wdt%3AP27%20%3Fcountry%20%20.%0A%20%20%20%20%20%20%20%3Fcountry%20rdfs%3Alabel%20%3FcountryName%20.%0A%20%20%20%20%20%20%20filter%28lang%28%3FcountryName%29%20%3D%20%22en%22%29%0A%20%20%20%20%20%20%20filter%28lang%28%3FplayerName%29%20%3D%20%22en%22%29%0A%7D%0A[run that query^]: .Results [opts="header"] |=== | subject | predicate | object | http://www.wikidata.org/entity/Q3720084|http://www.wikidata.org/prop/direct/P569 | 1995-04-27T00:00:00Z | http://www.wikidata.org/entity/Q3720084|http://www.w3.org/2000/01/rdf-schema#label |Nick Kyrgios | http://www.wikidata.org/entity/Q3720084|http://www.wikidata.org/prop/direct/P27 |http://www.wikidata.org/entity/Q408 | http://www.wikidata.org/entity/Q408|http://www.w3.org/2000/01/rdf-schema#label |Australia |=== Much better. == Returning a custom RDF graph One https://jbarrasa.com/2019/12/05/quickgraph10-enrich-your-neo4j-knowledge-graph-by-querying-wikidata/[other neat thing^] about the `CONSTRUCT` clause is that we can change the RDF graph that our query returns. The following query uses vocabulary from schema.org in place of Wikidata predicates: [source,sparql] ---- PREFIX sch: <http://schema.org/> CONSTRUCT { ?person sch:birthDate ?dateOfBirth; sch:name ?playerName; sch:nationality ?country . ?country sch:name ?countryName } WHERE { ?person wdt:P106 wd:Q10833314 ; rdfs:label 'Nick Kyrgios'@en ; rdfs:label ?playerName; wdt:P569 ?dateOfBirth ; wdt:P27 ?country . ?country rdfs:label ?countryName . filter(lang(?countryName) = "en") filter(lang(?playerName) = "en") } ---- If we https://query.wikidata.org/#PREFIX%20sch%3A%20%3Chttp%3A%2F%2Fschema.org%2F%3E%20%0A%0ACONSTRUCT%20%7B%0A%20%20%3Fperson%20sch%3AbirthDate%20%3FdateOfBirth%3B%0A%20%20%20%20%20%20%20%20%20%20sch%3Aname%20%3FplayerName%3B%0A%20%20%20%20%20%20%20%20%20%20sch%3Anationality%20%3Fcountry%20.%0A%20%20%3Fcountry%20sch%3Aname%20%3FcountryName%0A%7D%0AWHERE%20%7B%0A%20%20%3Fperson%20wdt%3AP106%20wd%3AQ10833314%20%3B%0A%20%20%20%20%20%20%20%20%20%20rdfs%3Alabel%20%27Nick%20Kyrgios%27%40en%20%3B%0A%20%20%20%20%20%20%20%20%20%20rdfs%3Alabel%20%3FplayerName%3B%0A%20%20%20%20%20%20%20%20%20%20wdt%3AP569%20%3FdateOfBirth%20%3B%0A%20%20%20%20%20%20%20%20%20%20wdt%3AP27%20%3Fcountry%20%20.%0A%20%20%3Fcountry%20rdfs%3Alabel%20%3FcountryName%20.%0A%20%20filter%28lang%28%3FcountryName%29%20%3D%20%22en%22%29%0A%20%20filter%28lang%28%3FplayerName%29%20%3D%20%22en%22%29%0A%7D[run this query^], we get the following, much friendlier looking, output: .Results [opts="header"] |=== | subject | predicate | object |http://www.wikidata.org/entity/Q3720084|http://schema.org/birthDate | 1995-04-27T00:00:00Z |http://www.wikidata.org/entity/Q3720084|http://schema.org/name | Nick Kyrgios |http://www.wikidata.org/entity/Q3720084|http://schema.org/nationality | http://www.wikidata.org/entity/Q408 |http://www.wikidata.org/entity/Q408| http://schema.org/name | Australia |=== And that's all for now. If there's a better way to do anything that I described, do let me know in the comments, I'm still a SPARQL newbie.
Learn about the difference between SPARQL's SELECT and CONSTRUCT clauses when querying Wikidata.
uploads/2020/02/wikidata-construct-select.png
[ 0.001790702692233026, -0.016049446538090706, -0.006021472625434399, 0.04219134896993637, 0.07015436887741089, -0.010112619027495384, 0.04845013469457626, 0.009228039532899857, 0.013082818128168583, -0.005754588171839714, -0.030897295102477074, -0.0009021800942718983, -0.06747136265039444, -0.005245602689683437, 0.0018630155827850103, 0.08581922203302383, 0.03673313558101654, 0.014742523431777954, 0.04007371515035629, -0.03185081481933594, 0.018677612766623497, 0.04007112234830856, 0.008120393380522728, 0.029120290651917458, 0.06448626518249512, 0.04304848983883858, -0.01650470308959484, 0.02082609012722969, -0.057536475360393524, 0.0003834172966890037, 0.045462992042303085, -0.0029177230317145586, -0.00908544659614563, -0.01799931935966015, -0.01956808567047119, 0.004803457763046026, 0.000842138659209013, 0.013168469071388245, 0.006317315623164177, 0.030277850106358528, -0.09668543934822083, 0.024650834500789642, 0.0077804760076105595, 0.02367258258163929, -0.04682769626379013, -0.01694582775235176, -0.026804277673363686, 0.015294888988137245, -0.006450766231864691, -0.003534001298248768, -0.04985803738236427, 0.026767468079924583, -0.023916173726320267, 0.037194058299064636, -0.007268544752150774, 0.044913969933986664, 0.03834321349859238, -0.05797629803419113, 0.018734412267804146, -0.03974240645766258, 0.00786514487117529, 0.012589942663908005, 0.02471001446247101, 0.003609167877584696, 0.02458219788968563, -0.016236810013651848, -0.008184253238141537, 0.0530388168990612, -0.04478905722498894, 0.011601751670241356, -0.005062334705144167, 0.003084225347265601, -0.01274915225803852, -0.016901249065995216, 0.007700759917497635, -0.022054454311728477, 0.01659560203552246, 0.06752005964517593, 0.0193618331104517, 0.04236457124352455, 0.004497882444411516, -0.0001580816024215892, -0.0027077929116785526, 0.040429193526506424, -0.011598629876971245, -0.05005236715078354, -0.01751851849257946, -0.037544507533311844, -0.042343027889728546, 0.06121627241373062, 0.02012030780315399, -0.051538094878196716, 0.026726383715867996, 0.013223580084741116, -0.014902300201356411, 0.016404027119278908, 0.03855269029736519, -0.0366351343691349, 0.006880129221826792, -0.0419122539460659, -0.020075634121894836, -0.03018955886363983, 0.03092131018638611, 0.008594895713031292, -0.07338856160640717, -0.006414657458662987, -0.028585603460669518, 0.0004494852328207344, 0.00636885454878211, 0.0320688933134079, -0.004642145242542028, 0.035524867475032806, -0.0172425489872694, 0.009307713247835636, -0.0801510214805603, 0.055693432688713074, 0.02443586103618145, -0.023891931399703026, 0.002238012384623289, 0.04532944783568382, 0.013866519555449486, 0.008973449468612671, -0.01589950919151306, 0.06528138369321823, 0.020606670528650284, 0.04316335543990135, 0.026941146701574326, 0.0425870344042778, -0.018180808052420616, -0.04931610822677612, 0.021328246220946312, 0.054547760635614395, -0.0004835415165871382, -0.007607038598507643, -0.023073360323905945, -0.039339493960142136, -0.024465953931212425, 0.015203211456537247, 0.05423646792769432, 0.03331354260444641, 0.013145720586180687, -0.06425643712282181, -0.0027363363187760115, -0.00020508118905127048, 0.0456775426864624, -0.0003421539149712771, 0.022239286452531815, -0.03235254064202309, -0.006938660051673651, 0.02071535773575306, 0.02434852160513401, 0.01118000503629446, 0.05819680914282799, -0.03963242098689079, 0.02043805457651615, 0.08281548321247101, 0.05946521833539009, -0.024139631539583206, -0.009565814398229122, 0.010390308685600758, 0.0529569536447525, 0.010928201489150524, -0.0021248089615255594, 0.048817869275808334, 0.02184368297457695, -0.023762114346027374, 0.008236880414187908, 0.03943289816379547, -0.01784135028719902, -0.023423129692673683, -0.051224760711193085, -0.045591287314891815, 0.08627111464738846, -0.019777247682213783, -0.04306597635149956, 0.04769139364361763, 0.0665590763092041, 0.0004471598076634109, 0.05534328147768974, 0.007078333292156458, -0.07444475591182709, 0.032206304371356964, -0.006544183939695358, 0.025460366159677505, 0.01927671767771244, -0.006315352860838175, 0.07004174590110779, 0.02914113737642765, 0.006091790273785591, 0.03340674191713333, -0.08098553866147995, -0.07518278062343597, -0.052340973168611526, -0.02495705336332321, 0.05337105318903923, -0.016787780448794365, 0.028228992596268654, 0.07304158061742783, -0.0008883074042387307, 0.049356281757354736, -0.0007992215687409043, 0.011500643566250801, 0.018803609535098076, -0.036060579121112823, -0.054983001202344894, 0.06170001998543739, 0.02340165711939335, -0.026378899812698364, -0.03214842453598976, 0.050947997719049454, -0.03552820906043053, -0.0010087881237268448, -0.009314671158790588, -0.02960287220776081, -0.0025510494597256184, 0.023021001368761063, 0.05243987217545509, 0.005405781790614128, 0.0320306234061718, -0.031009037047624588, 0.07378014177083969, 0.044944290071725845, -0.03821666166186333, 0.0013661166885867715, -0.012000025250017643, 0.12252334505319595, 0.035119857639074326, -0.026976395398378372, -0.03869624808430672, 0.022584840655326843, 0.012442395091056824, -0.018521808087825775, 0.031630564481019974, -0.0017989950720220804, 0.011009019799530506, -0.04224367439746857, -0.014635545201599598, -0.03573358431458473, 0.015533443540334702, -0.048726584762334824, 0.02390129491686821, 0.07932518422603607, 0.005566416773945093, 0.05566919595003128, -0.021222390234470367, -0.01833680085837841, -0.02194167673587799, -0.02504921704530716, -0.07080194354057312, 0.016331860795617104, 0.014659461565315723, -0.01830305904150009, 0.023179037496447563, -0.015651581808924675, -0.012638600543141365, -0.034085504710674286, -0.07146941870450974, 0.05495283752679825, 0.04944033920764923, 0.04117104411125183, -0.03336502984166145, 0.04012076556682587, 0.010240288451313972, 0.020783890038728714, -0.025907112285494804, -0.03983054682612419, -0.04060329496860504, -0.03516898676753044, 0.005772723350673914, 0.018812289461493492, 0.020451953634619713, -0.008695617318153381, -0.0007575935451313853, 0.004723692312836647, -0.0028930797707289457, 0.020526163280010223, 0.0081191286444664, -0.02581222541630268, 0.018627747893333435, -0.02241186425089836, -0.03892623260617256, 0.06202628090977669, -0.04842551052570343, -0.02087283506989479, -0.020432375371456146, -0.0653524398803711, 0.03925305977463722, -0.06832705438137054, -0.0443277582526207, 0.01901276782155037, 0.007893320173025131, 0.028719758614897728, 0.013867883011698723, 0.027606509625911713, 0.10433544218540192, -0.008330313488841057, -0.0008377284975722432, 0.0165301114320755, -0.005310023203492165, 0.04131188616156578, -0.019961969926953316, 0.05863039940595627, 0.051503345370292664, -0.02525796741247177, 0.04358840361237526, -0.034637778997421265, 0.007591883651912212, 0.010224583558738232, -0.2648122012615204, 0.05171684920787811, -0.00852981023490429, -0.0374334491789341, 0.029467886313796043, -0.0015529384836554527, 0.01427653431892395, -0.03403134271502495, -0.037696149200201035, 0.020491158589720726, 0.004777166992425919, -0.030801769345998764, -0.010633776895701885, 0.04329783469438553, 0.011811099015176296, 0.018490688875317574, 0.005377916153520346, -0.03505859151482582, -0.019244179129600525, 0.041620057076215744, 0.017716797068715096, -0.049148157238960266, -0.019590428099036217, 0.011353343725204468, 0.05970717966556549, 0.05338054895401001, -0.061377815902233124, 0.009114577434957027, -0.05602021515369415, -0.009576083160936832, 0.008524850942194462, -0.010731414891779423, 0.014676003716886044, 0.003315044566988945, -0.02234647236764431, -0.014957579784095287, 0.040112223476171494, -0.005397578701376915, 0.01706460863351822, 0.010985313914716244, -0.06928267329931259, -0.03519077226519585, -0.017638137564063072, -0.006564751733094454, 0.0857117548584938, 0.002424529753625393, -0.06799553334712982, 0.00003184215893270448, -0.021473290398716927, 0.03438238799571991, -0.01752687245607376, -0.057992033660411835, -0.038146089762449265, 0.034727662801742554, 0.005828134249895811, -0.012508738785982132, 0.004461411386728287, -0.023334946483373642, -0.05192580819129944, -0.037435486912727356, 0.014101210981607437, -0.03084382601082325, 0.0020321414340287447, -0.030727095901966095, 0.0017155527602881193, -0.0796428769826889, -0.037386875599622726, -0.034034084528684616, 0.08000139892101288, 0.0426848903298378, -0.02556566521525383, 0.006335568614304066, -0.03272459656000137, -0.10535795986652374, -0.0028976311441510916, -0.01657785288989544, -0.019266402348876, 0.008769568055868149, -0.01156360562890768, 0.018933797255158424, -0.04128912463784218, -0.05389842018485069, 0.017719758674502373, 0.026525555178523064, 0.015285404399037361, -0.017836499959230423, 0.03913822025060654, 0.003906812984496355, -0.04685499891638756, 0.02083282172679901, 0.0695018544793129, -0.008590092882514, -0.04147539660334587, -0.016799241304397583, -0.02873973920941353, 0.041791848838329315, -0.017700599506497383, 0.013690521009266376, 0.007486504036933184, 0.060354046523571014, 0.02512216567993164, -0.03775568678975105, 0.03149060532450676, -0.0478149950504303, -0.015513353049755096, 0.017646294087171555, -0.0284859798848629, 0.02429841086268425, 0.02347121573984623, 0.009331057779490948, 0.008833380416035652, -0.0452629029750824, -0.015776848420500755, -0.03065785951912403, -0.034172654151916504, -0.03805151209235191, 0.012214301154017448, 0.011014027521014214, 0.013315945863723755, -0.0229494571685791, -0.037515077739953995, 0.018138017505407333, 0.005138883367180824, -0.017703253775835037, -0.06807977706193924, -0.02986900880932808, -0.007029959466308355, -0.018596002832055092, 0.030564865097403526, 0.000736994028557092, -0.032332390546798706, 0.014871826395392418, 0.00765030225738883, -0.01478787325322628, 0.032950352877378464, -0.01412853691726923, -0.011747214943170547, -0.034230634570121765, 0.0114750936627388, 0.005171642173081636, 0.018234247341752052, 0.012982220388948917, 0.006966848392039537, 0.04423198103904724, 0.05046461150050163, 0.007207095623016357, -0.006084763910621405, -0.0025076321326196194, -0.00004575621642288752, 0.010057683102786541, -0.010321490466594696, -0.021932080388069153, 0.04785595461726189, -0.051449183374643326, -0.020808720961213112, -0.03151170536875725, 0.05103287473320961, -0.016038281843066216, -0.035124387592077255, -0.017473628744482994, -0.014897472225129604, -0.06746967881917953, 0.00362147344276309, -0.02815922535955906, 0.021045740693807602, 0.062204137444496155, -0.022453010082244873, 0.035117022693157196, -0.02099289372563362, 0.010436545126140118, 0.007566383108496666, -0.00880843959748745, -0.030873222276568413, -0.0142296077683568, -0.015584866516292095, -0.023170972242951393, -0.01784168928861618, 0.03886914625763893, 0.008940892294049263, 0.025718795135617256, -0.014687254093587399, -0.009639515541493893, 0.009366142563521862, 0.022324051707983017, 0.048095688223838806, 0.04428422078490257, -0.005454077385365963, -0.0014656423591077328, -0.02978885918855667, -0.0057423776015639305, -0.012292605824768543, 0.0021257316693663597, -0.01154274120926857, 0.008410204201936722, -0.03890968859195709, -0.057176269590854645, 0.06039733439683914, 0.02454451285302639, -0.015123163349926472, 0.05526629090309143, -0.007184802088886499, -0.04564674571156502, -0.02098758891224861, 0.07221468538045883, 0.062151212245225906, -0.06785641610622406, -0.004935126286000013, -0.01325660478323698, -0.007633690722286701, 0.0005435370258055627, -0.01296125166118145, -0.04492906108498573, 0.0027076692786067724, -0.0219193734228611, 0.02132144384086132, -0.05300247296690941, -0.007918309420347214, 0.011967912316322327, 0.008528291247785091, 0.00310427020303905, 0.052027203142642975, -0.011154702864587307, 0.008450508117675781, -0.007995926775038242, -0.016610072925686836, 0.05545729026198387, -0.026205234229564667, -0.03371415287256241, 0.011738847941160202, -0.025545040145516396, 0.01605210080742836, -0.02727670967578888, 0.003259242745116353, 0.022657956928014755, -0.032846055924892426, -0.021317968145012856, -0.054261982440948486, 0.0061265286058187485, -0.010440628044307232, 0.04924497753381729, 0.008206246420741081, -0.04402023181319237, -0.017954465001821518, 0.009676077403128147, -0.0315292663872242, 0.010723748244345188, 0.0029585256706923246, -0.0027954159304499626, 0.029413213953375816, 0.017108796164393425, -0.001348674762994051, 0.02595009282231331, -0.0263398215174675, -0.02824915200471878, 0.05462208017706871, -0.030295683071017265, -0.013375687412917614, -0.02428644523024559, -0.06864402443170547, 0.028312237933278084, 0.02662130817770958, 0.026034144684672356, -0.05526683107018471, 0.050622157752513885, 0.03075241856276989, 0.008065333589911461, 0.03213845193386078, 0.003562591038644314, 0.03968670219182968, -0.022595791146159172, -0.05264014005661011, -0.08015105128288269, 0.003269348992034793, 0.045850370079278946, 0.009629104286432266, -0.030406663194298744, -0.011305698193609715, -0.016569582745432854, 0.009035797789692879, -0.07630466669797897, -0.05849040299654007, 0.0022201358806341887, -0.03604172170162201, -0.021667012944817543, -0.00023702267208136618, -0.04625982418656349, -0.020484132692217827, 0.043075162917375565, -0.02312689833343029, -0.026547785848379135, -0.03456619009375572, 0.07566206902265549, -0.02920674718916416, 0.01771416701376438, -0.021154141053557396, -0.03832841292023659, 0.056656599044799805, 0.022121142596006393, 0.03286667913198471, 0.04102399945259094, -0.015374558046460152, 0.02460958994925022, 0.02549135312438011, 0.016047945246100426, 0.022010110318660736, 0.010763488709926605, -0.03583593666553497, -0.07687243819236755, 0.0045118918642401695, 0.02032763883471489, -0.019336625933647156, -0.046034663915634155, 0.07036582380533218, 0.0015491542872041464, -0.04913942515850067, -0.056874919682741165, 0.0235791876912117, -0.0307411290705204, -0.029303550720214844, -0.01773753948509693, -0.002640176797285676, -0.05783732980489731, 0.06896253675222397, 0.022929690778255463, 0.009733885526657104, 0.053858570754528046, 0.020821616053581238, -0.03756428509950638, 0.004359432030469179, 0.07788501679897308, 0.08310170471668243, 0.027798686176538467, 0.0026830947026610374, 0.07476410269737244, -0.003614365356042981, -0.06613173335790634, 0.011136725544929504, -0.01959766075015068, -0.008094700053334236, 0.01027795858681202, -0.0009851983049884439, 0.06974209100008011, -0.011819656938314438, 0.05842018872499466, -0.020652515813708305, -0.02688751369714737, 0.013459747657179832, 0.012600167654454708, 0.032191481441259384, 0.04120148345828056, -0.00856623612344265, 0.03981742635369301, -0.01056421734392643, -0.05847547575831413, 0.021933570504188538, 0.00919953640550375, -0.024009181186556816, -0.002353895455598831, -0.0382218211889267, 0.0021924099419265985, -0.03560172766447067, 0.013085577636957169, 0.09771516919136047, -0.04334963858127594, 0.0024604203645139933, -0.007713634055107832, 0.0074350880458951, 0.02623581886291504, 0.04073980078101158, -0.03005126677453518, -0.0084166768938303, -0.027940670028328896, -0.05049479380249977, -0.010936466977000237, -0.02317769266664982, -0.04053160920739174, 0.01192182581871748, -0.06163238734006882, -0.005951504223048687, 0.003874175949022174, -0.011655490845441818, -0.034957658499479294, -0.05070525035262108, -0.027843451127409935, -0.03832034766674042, -0.06595881283283234, -0.0031816086266189814, 0.0339534729719162, -0.0051438771188259125, -0.016512973234057426, -0.014805972576141357, -0.02302640490233898, -0.0085060466080904, 0.05072959139943123, -0.04511161893606186, -0.002597316401079297, 0.02590135671198368, 0.030926212668418884, 0.023112811148166656, 0.012718475423753262, 0.055420104414224625, -0.006378571502864361, 0.007624736987054348, -0.03447209671139717, -0.004989566747099161, 0.03791225701570511, 0.01036728173494339, 0.003648504614830017, -0.09292397648096085, 0.0066335913725197315, -0.017216216772794724, -0.020105957984924316, -0.07127625495195389, 0.014027166180312634, 0.03861023858189583, -0.0043689534068107605, 0.049474820494651794, -0.025018902495503426, 0.008267456665635109, -0.039301276206970215, -0.017387622967362404, 0.017112629488110542, -0.006952720228582621, 0.04155236482620239, -0.02908037044107914, 0.0842767134308815, 0.039909880608320236, -0.009141388349235058, -0.042424123734235764, -0.04167911410331726, -0.00917517114430666, 0.013648741878569126, -0.051477085798978806, -0.021876772865653038, -0.04021958261728287, -0.11262747645378113, -0.033159852027893066, 0.02478211559355259, -0.02177589014172554, -0.04229892045259476, -0.001266556209884584, 0.03823846951127052, -0.032353706657886505, 0.02037782594561577, -0.028986863791942596, 0.028546560555696487, -0.036374591290950775, -0.013055157847702503, -0.014414697885513306, 0.02111244387924671, 0.006693884264677763, 0.012454180978238583, 0.02550329454243183, -0.052321579307317734, -0.008282494731247425, -0.02942241169512272, 0.014989130198955536, 0.06453597545623779, 0.03091800957918167, 0.00934559665620327 ]
[ -0.08272748440504074, -0.020487794652581215, -0.05204208940267563, -0.02445884421467781, 0.016140596941113472, -0.039130400866270065, 0.01359652541577816, 0.01639270782470703, 0.03682136908173561, -0.00742590706795454, -0.00028104084776714444, -0.03714441880583763, -0.017066065222024918, 0.01819133572280407, 0.038871023803949356, 0.017362402752041817, -0.008946203626692295, -0.061136309057474136, -0.026280349120497704, 0.040270883589982986, -0.004144387785345316, -0.02484889142215252, -0.03822341933846474, -0.038072798401117325, 0.0038300706073641777, 0.0364646315574646, 0.03148799017071724, -0.01983896642923355, -0.014425206929445267, -0.18075937032699585, 0.008799117989838123, -0.004202579613775015, 0.01466707419604063, 0.0022303226869553328, 0.018669215962290764, -0.011606489308178425, 0.010375984013080597, 0.02705918811261654, 0.013726014643907547, 0.04631653055548668, 0.014500366523861885, 0.011865291744470596, -0.045179400593042374, 0.009369239211082458, 0.057460613548755646, 0.029498666524887085, -0.01570845954120159, 0.02391394041478634, -0.010843507945537567, 0.024421364068984985, -0.08391287922859192, 0.007008193992078304, -0.003106149844825268, -0.007346331141889095, 0.015047790482640266, 0.038458552211523056, 0.06114543601870537, 0.05761373043060303, 0.025815708562731743, 0.03621566295623779, 0.04046258702874184, -0.0010362520115450025, -0.13027149438858032, 0.0863213762640953, -0.029382020235061646, 0.03633153438568115, -0.021616239100694656, -0.03065594844520092, 0.008615827187895775, 0.052642177790403366, 0.054699886590242386, -0.021809294819831848, -0.02264835312962532, 0.05640235170722008, 0.019450221210718155, -0.04760035499930382, 0.0036602183245122433, 0.02680567093193531, 0.0289355106651783, 0.011396433226764202, -0.037013765424489975, -0.02598835900425911, -0.03786441311240196, -0.032929785549640656, -0.05175977572798729, 0.03371449559926987, -0.01571204513311386, 0.016278263181447983, -0.029755065217614174, 0.025260165333747864, 0.03413863480091095, -0.029937218874692917, 0.016422037035226822, 0.027778014540672302, -0.10215327888727188, -0.015037676319479942, -0.017084689810872078, 0.015070836059749126, -0.03292760252952576, 0.420207679271698, 0.0044151367619633675, 0.01474064402282238, 0.039878372102975845, 0.04707473888993263, -0.020715227350592613, 0.008549169637262821, 0.010681395418941975, -0.07963526248931885, 0.003654524916782975, -0.06151935085654259, -0.018496638163924217, -0.016186298802495003, 0.06406426429748535, -0.04604758694767952, 0.0004866694798693061, 0.045211873948574066, 0.054989807307720184, 0.011384990997612476, -0.012634911574423313, 0.011467212811112404, -0.02811416983604431, -0.007242847234010696, -0.014337361790239811, 0.035489272326231, -0.004148934036493301, -0.009952071122825146, 0.035742778331041336, 0.04917046055197716, 0.031003404408693314, 0.017031613737344742, 0.048130493611097336, -0.026422763243317604, -0.08146598935127258, 0.00488444697111845, 0.0014443004038184881, -0.006643295753747225, 0.0027345537673681974, -0.03351275250315666, 0.026203125715255737, 0.013551532290875912, -0.036332868039608, -0.07958318293094635, 0.028449933975934982, 0.013392002321779728, -0.07470587641000748, 0.136619433760643, 0.012158630415797234, -0.020337387919425964, -0.009108924306929111, -0.02462098002433777, -0.04053106904029846, 0.044216178357601166, 0.04664894938468933, -0.06492117047309875, -0.010960330255329609, 0.03869270160794258, 0.08892716467380524, -0.008032555691897869, -0.10258264094591141, -0.03216303512454033, 0.0032700602896511555, -0.04750898480415344, -0.04396314173936844, 0.07148239761590958, 0.04352765902876854, -0.13119380176067352, -0.00972707848995924, 0.0376972071826458, 0.026247743517160416, -0.05388600751757622, 0.028356874361634254, 0.001546484767459333, -0.06658529490232468, 0.004822608083486557, 0.044955018907785416, 0.007695184554904699, 0.0011619606520980597, 0.011233002878725529, 0.038374483585357666, 0.008963032625615597, -0.023594271391630173, -0.022288009524345398, -0.06331039220094681, -0.005522138439118862, -0.05801892280578613, -0.05980316177010536, -0.04887248948216438, 0.007944281212985516, 0.026161331683397293, -0.03313063457608223, -0.015549425035715103, -0.005872458219528198, -0.10335954278707504, 0.0748206079006195, -0.04879719763994217, -0.03598827123641968, 0.014938746578991413, 0.013851866126060486, 0.008920920081436634, -0.03555014729499817, -0.014723947271704674, 0.002460145391523838, -0.0067933532409369946, 0.03978169709444046, -0.0360410138964653, 0.05962282791733742, 0.04743485897779465, -0.026085233315825462, 0.08689220249652863, 0.0155585752800107, -0.004791923798620701, -0.019747305661439896, -0.04801169037818909, 0.009648552164435387, 0.015457885339856148, -0.020372876897454262, -0.008286852389574051, -0.011796779930591583, 0.023504793643951416, 0.014515019953250885, -0.04621841758489609, -0.0028829951770603657, 0.02299712412059307, -0.33311671018600464, -0.04539516940712929, -0.056712858378887177, 0.019505882635712624, -0.028659408912062645, -0.04952298849821091, -0.005837708245962858, -0.011596161872148514, 0.015572399832308292, 0.03772431239485741, 0.04178749397397041, -0.0017604173626750708, 0.015298720449209213, -0.03946824371814728, -0.029484523460268974, 0.004395174793899059, -0.020083820447325706, -0.007283298298716545, -0.0010981583036482334, 0.0029493586625903845, 0.023290487006306648, -0.004210344515740871, -0.037430137395858765, -0.06994473189115524, -0.013522717170417309, -0.04202873632311821, 0.11942543834447861, 0.10604830086231232, 0.013023792766034603, -0.09851130098104477, 0.09225068241357803, -0.03052404336631298, -0.006096318829804659, -0.08078654855489731, 0.018775979056954384, -0.03377412632107735, -0.010449618101119995, -0.009902708232402802, -0.0053325011394917965, -0.03607260063290596, -0.02417990006506443, 0.013280059210956097, -0.027022164314985275, -0.011978080496191978, -0.048614252358675, 0.021595310419797897, -0.0035917405039072037, -0.0060821762308478355, -0.030687564983963966, 0.11511620879173279, 0.03649434447288513, 0.014060601592063904, 0.046397898346185684, 0.00907277874648571, 0.01981239765882492, -0.04350429028272629, -0.0788838341832161, -0.006924635265022516, -0.008125302381813526, -0.0022897934541106224, 0.03568577766418457, 0.03845095634460449, 0.03801539167761803, -0.03535855561494827, -0.010125797241926193, -0.0036333566531538963, -0.018581612035632133, 0.007547084242105484, 0.020879026502370834, -0.06444582343101501, -0.04332667216658592, 0.06609035283327103, -0.02233150601387024, 0.024174096062779427, 0.010836594738066196, 0.0423840694129467, -0.0042373379692435265, -0.017306502908468246, 0.06293608248233795, 0.02551465667784214, 0.036110520362854004, -0.02589905820786953, 0.0498325489461422, -0.03257724642753601, 0.024855509400367737, 0.04010507091879845, 0.032434262335300446, -0.0009985263459384441, 0.05602380260825157, -0.00588464317843318, -0.042657554149627686, 0.015447561629116535, -0.039971645921468735, -0.0567144937813282, 0.03782859072089195, -0.045106127858161926, -0.28663957118988037, 0.02263016626238823, 0.033643729984760284, 0.05130746215581894, 0.04668378829956055, -0.014815705828368664, 0.010229386389255524, -0.03080873191356659, 0.01407067384570837, 0.030708979815244675, 0.05882097780704498, 0.013601182959973812, -0.009087893180549145, 0.0011294085998088121, -0.01463427022099495, -0.005742141976952553, 0.00011971798085141927, 0.005222502630203962, 0.009332144632935524, 0.03007552959024906, 0.03251553699374199, 0.01691686175763607, 0.16703468561172485, 0.019603556022047997, 0.04331579431891441, 0.022926809266209602, -0.009566345252096653, -0.0012456966796889901, 0.044200778007507324, 0.01492552924901247, -0.010064492002129555, 0.0029807037208229303, 0.05241798982024193, 0.04717978835105896, 0.024936208501458168, -0.025239434093236923, -0.018192322924733162, 0.05040527135133743, -0.0009555310243740678, -0.03210347890853882, -0.008158614858984947, 0.021644383668899536, -0.03236011788249016, 0.06522016227245331, 0.0841081440448761, 0.023369072005152702, 0.006150530651211739, -0.012456271797418594, -0.03543367236852646, 0.0020756067242473364, -0.023230034857988358, -0.029699625447392464, -0.016787702217698097, -0.0011262358166277409, -0.007296965457499027, 0.03566249459981918, 0.04341975599527359, -0.03831714019179344, 0.05761555954813957, 0.021825803443789482, -0.03376154229044914, -0.0107716154307127, 0.08817160129547119, 0.022830627858638763, 0.015251675620675087 ]
[ -0.010492777451872826, 0.021866874769330025, 0.006111942231655121, 0.014700222760438919, -0.012694910168647766, 0.005338815972208977, -0.010205497033894062, -0.0059640174731612206, 0.011956089176237583, 0.020068081095814705, 0.007258356548845768, -0.0031576878391206264, 0.014835609123110771, -0.009396455250680447, 0.05155155062675476, -0.01528855599462986, -0.0033427446614950895, 0.010495737195014954, 0.02276935987174511, -0.026545604690909386, 0.004107732325792313, 0.0050441063940525055, 0.035699136555194855, -0.007635473273694515, 0.017825579270720482, 0.014076070860028267, -0.02308419905602932, 0.006890727207064629, 0.01972365193068981, -0.12390576303005219, -0.045266930013895035, -0.04124358668923378, -0.033781252801418304, 0.0037221217062324286, -0.0299391970038414, -0.011589490808546543, -0.0014054881175979972, 0.022784780710935593, 0.01793386973440647, 0.01931433193385601, -0.0012855073437094688, -0.023864876478910446, -0.03480169177055359, 0.021230144426226616, -0.01212246809154749, 0.007465746253728867, -0.03891213238239288, -0.022188184782862663, -0.012862864881753922, -0.014417577534914017, -0.05411643534898758, -0.024094773456454277, 0.004939976613968611, 0.007839161902666092, 0.02210319973528385, -0.014924476854503155, -0.0696449875831604, 0.01438608393073082, -0.01161467470228672, -0.02622942440211773, -0.011019292287528515, 0.02803037501871586, -0.05395174026489258, -0.02414797432720661, 0.021674545481801033, -0.035788457840681076, -0.031180379912257195, -0.004257129970937967, 0.023383229970932007, 0.01943884789943695, -0.010943609289824963, 0.02634839154779911, -0.013290956616401672, -0.0037370696663856506, -0.009814782068133354, 0.020320923998951912, 0.031050927937030792, 0.008817861787974834, -0.028437962755560875, -0.04366135969758034, 0.009733485989272594, -0.010142170824110508, -0.0012945628259330988, 0.04245759919285774, 0.013720535673201084, -0.04362410306930542, -0.006687077693641186, 0.027360936626791954, 0.004098984878510237, -0.0011006068671122193, -0.042672690004110336, -0.012824146077036858, 0.0028626553248614073, 0.037896569818258286, -0.09214883297681808, 0.03216223418712616, -0.029614539816975594, -0.0009718052460812032, 0.007143521681427956, 0.8350086212158203, 0.01127227209508419, 0.02299794740974903, 0.004407878499478102, 0.029811669141054153, -0.00490699615329504, -0.00973315630108118, -0.01053465437144041, -0.0169896949082613, -0.0032558906823396683, -0.03000483289361, 0.03625927492976189, 0.03808913007378578, 0.01715722307562828, 0.002549149561673403, 0.0013803596375510097, 0.05710144713521004, 0.007921707816421986, -0.010526793077588081, 0.009836137294769287, 0.0050827497616410255, -0.00466995919123292, -0.016588997095823288, -0.023178834468126297, -0.0016856318106874824, -0.013214602135121822, -0.18669140338897705, 0.02127222716808319, -6.552504527858921e-33, 0.05141812935471535, 0.010791458189487457, 0.024435753002762794, -0.00010806215868797153, -0.017981616780161858, 0.024374399334192276, 0.007874325849115849, -0.03517095372080803, -0.01853124052286148, -0.010705030523240566, -0.010446300730109215, -0.030460994690656662, 0.0012396122328937054, -0.038977839052677155, 0.017705051228404045, -0.007730476558208466, -0.02280440926551819, 0.029508309438824654, -0.021233825013041496, 0.04424865171313286, 0.046909913420677185, 0.028500178828835487, -0.00711851567029953, 0.02181404083967209, 0.02184004709124565, 0.026658108457922935, 0.02118687331676483, 0.00043467702926136553, -0.041675128042697906, -0.04263948276638985, -0.005455457605421543, -0.009980497881770134, -0.029295051470398903, -0.003510212292894721, 0.029182640835642815, -0.04123442992568016, -0.03764050081372261, -0.0006454429239965975, -0.01616102084517479, 0.003256754018366337, -0.04194781929254532, -0.008084049448370934, 0.014279253780841827, -0.011153904721140862, -0.054072894155979156, 0.0024676413740962744, -0.020453931763768196, -0.003534046234562993, 0.015886448323726654, 0.0011130579514428973, 0.026270702481269836, 0.01051341276615858, -0.015232100151479244, 0.034021373838186264, -0.015315847471356392, 0.010804933495819569, -0.02136446163058281, 0.018583744764328003, 0.013633293099701405, 0.04352915287017822, 0.02486654371023178, -0.020923925563693047, -0.012650086544454098, 0.037947364151477814, -0.007360865827649832, -0.0049104830250144005, 0.04944807291030884, 0.017897728830575943, 0.03059854358434677, 0.03396490588784218, -0.021356044337153435, 0.02412913553416729, 0.004494297783821821, -0.016821810975670815, 0.004565360024571419, -0.020517487078905106, 0.015319009311497211, -0.016671836376190186, 0.0013582047540694475, 0.031973641365766525, 0.010822564363479614, -0.027436455711722374, 0.001283907564356923, -0.019710570573806763, -0.02983955666422844, -0.02605537697672844, 0.023705612868070602, 0.0031671011820435524, 0.017650730907917023, 0.01439500879496336, 0.05787014216184616, 0.04379330202937126, 0.008296781219542027, -0.007632549852132797, -0.02035508118569851, 6.78432744220443e-33, 0.03637761250138283, -0.006580967456102371, -0.004813592415302992, -0.02999226003885269, 0.01096190046519041, -0.02326599881052971, 0.011073272675275803, 0.0594254806637764, -0.04009067267179489, 0.024611661210656166, 0.004929177928715944, 0.01980486884713173, 0.0050767394714057446, 0.027961919084191322, 0.04628404229879379, -0.009490824304521084, 0.013519108295440674, -0.03526761755347252, 0.020725971087813377, 0.012379392050206661, -0.0081489784643054, 0.031847190111875534, 0.007986840792000294, 0.022119032219052315, 0.011356182396411896, 0.05089320242404938, -0.008179874159395695, 0.014085198752582073, -0.020092951133847237, 0.028572717681527138, -0.009940391406416893, -0.05312574654817581, 0.0033131304662674665, -0.015869319438934326, -0.01944248378276825, 0.019479595124721527, 0.0031031647231429815, -0.008914541453123093, 0.0036444151774048805, 0.010160277597606182, 0.024349505081772804, 0.02479548379778862, -0.02654782310128212, 0.05653524398803711, 0.016266467049717903, 0.0014478572411462665, 0.015686549246311188, -0.001967409858480096, 0.02636299654841423, 0.0450160838663578, 0.014850093051791191, 0.0003849575005006045, -0.016090333461761475, 0.009239446371793747, 0.02463933452963829, -0.050322916358709335, -0.013850315473973751, -0.012798169627785683, -0.012308130972087383, 0.006010898854583502, -0.036078616976737976, 0.002954983152449131, -0.02933174930512905, 0.022075112909078598, -0.01125764288008213, 0.010145766660571098, -0.05132782831788063, -0.010624348185956478, -0.013063543476164341, 0.00061813835054636, -0.0258009135723114, -0.002075123367831111, -0.008978229947388172, 0.03398340567946434, 0.024727826938033104, -0.02427319996058941, -0.02615029364824295, 0.0532156378030777, -0.025615965947508812, 0.03699781000614166, 0.017771106213331223, -0.009836874902248383, 0.015904385596513748, 0.02194879949092865, -0.005734455306082964, -0.0001322069438174367, -0.05693434551358223, 0.032744746655225754, -0.01243341714143753, -0.07676949352025986, 0.024861741811037064, -0.04720441624522209, -0.02860237844288349, 0.0650629848241806, -0.0064004953019320965, -1.2493634571342227e-8, -0.05566486716270447, 0.028412822633981705, -0.04269389435648918, 0.027103452011942863, -0.00011704749340424314, -0.008465101011097431, 0.005672748200595379, -0.008551240898668766, 0.009649340063333511, 0.01756940595805645, 0.028761964291334152, 0.007995747961103916, 0.02406332828104496, 0.0005741530912928283, 0.020798902958631516, -0.0415673665702343, 0.005728631280362606, 0.01747644506394863, 0.016243403777480125, -0.010678577236831188, 0.004868300165981054, 0.04565148055553436, -0.0017725370125845075, -0.0024875698145478964, 0.011553170159459114, 0.03987695649266243, -0.01269763894379139, -0.09324377030134201, -0.023584982380270958, 0.004096432123333216, 0.034377098083496094, -0.05293900892138481, -0.009018839336931705, 0.006785448174923658, -0.03173276036977768, -0.024958482012152672, -0.024214567616581917, 0.003642390016466379, 0.01661359705030918, 0.006419645622372627, -0.03211752697825432, 0.043728362768888474, -0.00895548053085804, -0.0003844165476039052, -0.02299947664141655, -0.00845841784030199, -0.05740625783801079, -0.014222804456949234, -0.012633655220270157, -0.039572130888700485, -0.009472285397350788, -0.0012055826373398304, 0.06535541266202927, 0.006469932850450277, 0.00590948760509491, 0.01139470748603344, 0.014250900596380234, 0.00879614520817995, -0.026314860209822655, -0.02520001493394375, 0.03628702461719513, -0.028647564351558685, 0.008736280724406242, -0.009506280533969402 ]
querying-wikidata-construct-select
https://markhneedham.com/blog/2020/02/02/querying-wikidata-construct-select
false
2020-02-07 00:21:00
SPARQL: OR conditions in a WHERE clause using the UNION clause
[ "wikidata", "sparql" ]
[ "Wikidata" ]
This is part 4 of my series of posts about querying the Wikidata API, in which I learn how to use SPARQL's `UNION` clause to handle an OR condition in a `WHERE` clause. image::{{<siteurl>}}/uploads/2020/02/sparql-or-conditions.png[title="Using SPARQL's UNION clause"] But first, some context! After https://markhneedham.com/blog/2020/02/04/neo4j-enriching-existing-graph-wikidata-sparql-api/[running queries against the Wikidata SPARQL API to pull the date of birth and nationality of tennis players into the Australian Open Graph^], I noticed that several players hadn't actually been updated. I ran some exploratory queries to work out why, and realised that the problem was that some players had anglicised names in my dataset, whereas Wikidata uses their real name. For example in my dataset we have 'Nicolas Escude', whereas in Wikidata we have 'Nicolas Escudé'. I wanted to figure out if there was a way to find players by an alternate name, or another name that they were known by, and found https://stackoverflow.com/questions/46850562/how-to-query-wikidata-for-also-known-as[a StackOverflow answer^] that suggested using the `skos.altLabel` predicate. If we wanted to return the date of birth and nationality for the alternate name 'Nicolas Escude', we can write the following query: .https://query.wikidata.org/#SELECT%20%2a%0AWHERE%20%7B%20%20%20%0A%20%20%3Fperson%20wdt%3AP106%20wd%3AQ10833314%20%3B%0A%20%20%20%20%20%20%20%20%20%20skos%3AaltLabel%20%22Nicolas%20Escude%22%40en%3B%0A%20%20%20%20%20%20%20%20%20%20rdfs%3Alabel%20%3FplayerName%20%3B%0A%20%20%20%20%20%20%20%20%20%20wdt%3AP569%20%3FdateOfBirth%3B%0A%20%20%20%20%20%20%20%20%20%20wdt%3AP27%20%5B%20rdfs%3Alabel%20%3FcountryName%20%5D%20.%0A%20%20%0A%20%20filter%28lang%28%3FcountryName%29%20%3D%20%22en%22%29%20%20%20%20%20%20%20%0A%20%20filter%28lang%28%3FplayerName%29%20%3D%20%22en%22%29%0A%20%20%0A%7D[Run this query on Wikidata^] [source,sparql] ---- SELECT * WHERE { ?person wdt:P106 wd:Q10833314 ; skos:altLabel "Nicolas Escude"@en; rdfs:label ?playerName ; wdt:P569 ?dateOfBirth; wdt:P27 [ rdfs:label ?countryName ] . filter(lang(?countryName) = "en") filter(lang(?playerName) = "en") } ---- If we run this query, we'll see the following output: .Results [opts="header"] |=== | person|playerName|dateOfBirth|countryName | http://www.wikidata.org/entity/Q470879|Nicolas Escudé|1976-04-03T00:00:00Z|France |=== So far so good. But not every player has an alternate name and we don't know whether the name that we have is an alternate name or actual name. For example, let's try and find the data of birth and nationality for the alternate name 'Roger Federer': .https://query.wikidata.org/#SELECT%20%2a%0AWHERE%20%7B%20%20%20%0A%20%20%3Fperson%20wdt%3AP106%20wd%3AQ10833314%20%3B%0A%20%20%20%20%20%20%20%20%20%20skos%3AaltLabel%20%22Roger%20Federer%22%40en%3B%0A%20%20%20%20%20%20%20%20%20%20rdfs%3Alabel%20%3FplayerName%20%3B%0A%20%20%20%20%20%20%20%20%20%20wdt%3AP569%20%3FdateOfBirth%3B%0A%20%20%20%20%20%20%20%20%20%20wdt%3AP27%20%5B%20rdfs%3Alabel%20%3FcountryName%20%5D%20.%0A%20%20%0A%20%20filter%28lang%28%3FcountryName%29%20%3D%20%22en%22%29%20%20%20%20%20%20%20%0A%20%20filter%28lang%28%3FplayerName%29%20%3D%20%22en%22%29%0A%20%20%0A%7D[Run this query on Wikidata^] [source,sparql] ---- SELECT * WHERE { ?person wdt:P106 wd:Q10833314 ; skos:altLabel "Roger Federer"@en; rdfs:label ?playerName ; wdt:P569 ?dateOfBirth; wdt:P27 [ rdfs:label ?countryName ] . filter(lang(?countryName) = "en") filter(lang(?playerName) = "en") } ---- If we run that query, we'll see the following output: .Results [opts="header"] |=== | person|playerName|dateOfBirth|countryName 4+| No matching records found |=== Not so good. So we actually want to be able to match triples if either `rdfs:label` or `skos:altLabel` equal the name of the player. I thought there might be a way to write an `OR` clause within the `WHERE` block, but as I understand it, the way to achieve this in SPARQL is via a `UNION` statement. I found https://www.w3.org/2009/Talks/0615-qbe/[Query #8 in SPARQL By Example^] helpful for understanding how to write such a query. Let's write a query that does this: .https://query.wikidata.org/#SELECT%20%2a%0AWHERE%20%7B%0A%20%20%7B%20%3Fperson%20rdfs%3Alabel%20%22Nicolas%20Escude%22%40en%20%7D%0A%20%20UNION%0A%20%20%7B%3Fperson%20skos%3AaltLabel%20%22Nicolas%20Escude%22%40en%7D%0A%0A%20%20%3Fperson%20wdt%3AP106%20wd%3AQ10833314%20%3B%0A%20%20%20%20%20%20%20%20%20%20rdfs%3Alabel%20%3FplayerName%20%3B%0A%20%20%20%20%20%20%20%20%20%20wdt%3AP569%20%3FdateOfBirth%3B%0A%20%20%20%20%20%20%20%20%20%20wdt%3AP27%20%5B%20rdfs%3Alabel%20%3FcountryName%20%5D%20%3B%0A%20%20%20%20%20%20%20%20%20%20skos%3AaltLabel%20%3FalternateName%0A%20%20%20%20%20%20%20%20%20%20%0A%20%20filter%28lang%28%3FalternateName%29%20%3D%20%22en%22%29%0A%20%20filter%28lang%28%3FcountryName%29%20%3D%20%22en%22%29%0A%20%20filter%28lang%28%3FplayerName%29%20%3D%20%22en%22%29%0A%0A%7D[Run this query on Wikidata^] [source,sparql] ---- SELECT * WHERE { { ?person rdfs:label "Nicolas Escude"@en } UNION {?person skos:altLabel "Nicolas Escude"@en} ?person wdt:P106 wd:Q10833314 ; rdfs:label ?playerName ; wdt:P569 ?dateOfBirth; wdt:P27 [ rdfs:label ?countryName ] ; skos:altLabel ?alternateName filter(lang(?alternateName) = "en") filter(lang(?countryName) = "en") filter(lang(?playerName) = "en") } ---- And now let's try it out for 'Nicolas Escude': .Results [opts="header"] |=== |person|playerName|dateOfBirth|countryName|alternateName |http://www.wikidata.org/entity/Q470879|Nicolas Escudé|1976-04-03T00:00:00Z|France|Nicolas Escude |=== Cool, that works. And what about for 'Roger Federer'? .https://query.wikidata.org/#SELECT%20%2a%0AWHERE%20%7B%0A%20%20%7B%20%3Fperson%20rdfs%3Alabel%20%22Roger%20Federer%22%40en%20%7D%0A%20%20UNION%0A%20%20%7B%3Fperson%20skos%3AaltLabel%20%22Roger%20Federer%22%40en%7D%0A%0A%20%20%3Fperson%20wdt%3AP106%20wd%3AQ10833314%20%3B%0A%20%20%20%20%20%20%20%20%20%20rdfs%3Alabel%20%3FplayerName%20%3B%0A%20%20%20%20%20%20%20%20%20%20wdt%3AP569%20%3FdateOfBirth%3B%0A%20%20%20%20%20%20%20%20%20%20wdt%3AP27%20%5B%20rdfs%3Alabel%20%3FcountryName%20%5D%20%3B%0A%20%20%20%20%20%20%20%20%20%20skos%3AaltLabel%20%3FalternateName%0A%0A%20%20filter%28lang%28%3FalternateName%29%20%3D%20%22en%22%29%0A%20%20filter%28lang%28%3FcountryName%29%20%3D%20%22en%22%29%0A%20%20filter%28lang%28%3FplayerName%29%20%3D%20%22en%22%29%0A%7D[Run this query on Wikidata^] [source,sparql] ---- SELECT * WHERE { { ?person rdfs:label "Roger Federer"@en } UNION {?person skos:altLabel "Roger Federer"@en} ?person wdt:P106 wd:Q10833314 ; rdfs:label ?playerName ; wdt:P569 ?dateOfBirth; wdt:P27 [ rdfs:label ?countryName ] ; skos:altLabel ?alternateName filter(lang(?alternateName) = "en") filter(lang(?countryName) = "en") filter(lang(?playerName) = "en") } ---- .Results [opts="header"] |=== |person|playerName|dateOfBirth|countryName|alternateName 5+|No matching records found |=== D'oh, still no good. The problem this time is that we have the statement `?player skos:altLabel ?alternateLabel` in our `WHERE` clause, which means we'll only get back results where the player has an alternate name. So if we ran this query for 'Rafael Nadal', it would actually work because he has several alternate names: .https://query.wikidata.org/#SELECT%20%2a%0AWHERE%20%7B%0A%20%20%7B%20%3Fperson%20rdfs%3Alabel%20%22Rafael%20Nadal%22%40en%20%7D%0A%20%20UNION%0A%20%20%7B%3Fperson%20skos%3AaltLabel%20%22Rafael%20Nadal%22%40en%7D%0A%0A%20%20%3Fperson%20wdt%3AP106%20wd%3AQ10833314%20%3B%0A%20%20%20%20%20%20%20%20%20%20rdfs%3Alabel%20%3FplayerName%20%3B%0A%20%20%20%20%20%20%20%20%20%20wdt%3AP569%20%3FdateOfBirth%3B%0A%20%20%20%20%20%20%20%20%20%20wdt%3AP27%20%5B%20rdfs%3Alabel%20%3FcountryName%20%5D%20%3B%0A%20%20%20%20%20%20%20%20%20%20skos%3AaltLabel%20%3FalternateName%0A%20%20%20%20%20%20%20%20%20%20%0A%20%20filter%28lang%28%3FalternateName%29%20%3D%20%22en%22%29%0A%20%20filter%28lang%28%3FcountryName%29%20%3D%20%22en%22%29%0A%20%20filter%28lang%28%3FplayerName%29%20%3D%20%22en%22%29%0A%7D[Run this query on Wikidata^] [source,sparql] ---- SELECT * WHERE { { ?person rdfs:label "Rafael Nadal"@en } UNION {?person skos:altLabel "Rafael Nadal"@en} ?person wdt:P106 wd:Q10833314 ; rdfs:label ?playerName ; wdt:P569 ?dateOfBirth; wdt:P27 [ rdfs:label ?countryName ] ; skos:altLabel ?alternateName filter(lang(?alternateName) = "en") filter(lang(?countryName) = "en") filter(lang(?playerName) = "en") } ---- .Results [opts="header"] |=== |person|playerName|dateOfBirth|countryName|alternateName |http://www.wikidata.org/entity/Q10132|Rafael Nadal|1986-06-03T00:00:00Z|Spain|Rafa |http://www.wikidata.org/entity/Q10132|Rafael Nadal|1986-06-03T00:00:00Z|Spain|Rafa Nadal |http://www.wikidata.org/entity/Q10132|Rafael Nadal|1986-06-03T00:00:00Z|Spain|Rafael Nadal Parera |=== But let's go back to Federer. We're going to update the query to make the alternate name predicate optional, as shown below: .https://query.wikidata.org/#SELECT%20%2a%0AWHERE%20%7B%0A%20%20%7B%20%3Fperson%20rdfs%3Alabel%20%22Roger%20Federer%22%40en%20%7D%0A%20%20UNION%0A%20%20%7B%3Fperson%20skos%3AaltLabel%20%22Roger%20Federer%22%40en%7D%0A%0A%20%20%3Fperson%20wdt%3AP106%20wd%3AQ10833314%20%3B%0A%20%20%20%20%20%20%20%20%20%20rdfs%3Alabel%20%3FplayerName%20%3B%0A%20%20%20%20%20%20%20%20%20%20wdt%3AP569%20%3FdateOfBirth%3B%0A%20%20%20%20%20%20%20%20%20%20wdt%3AP27%20%5B%20rdfs%3Alabel%20%3FcountryName%20%5D%20.%0A%0A%20%20OPTIONAL%20%7B%0A%20%20%20%20%3Fperson%20skos%3AaltLabel%20%3FalternateName%0A%20%20%20%20%20%20%20%20%20%20%20%20filter%28lang%28%3FalternateName%29%20%3D%20%22en%22%29%0A%20%20%7D%0A%0A%20%20filter%28lang%28%3FcountryName%29%20%3D%20%22en%22%29%0A%20%20filter%28lang%28%3FplayerName%29%20%3D%20%22en%22%29%0A%0A%7D[Run this query on Wikidata^] [source,sparql] ---- SELECT * WHERE { { ?person rdfs:label "Roger Federer"@en } UNION {?person skos:altLabel "Roger Federer"@en} ?person wdt:P106 wd:Q10833314 ; rdfs:label ?playerName ; wdt:P569 ?dateOfBirth; wdt:P27 [ rdfs:label ?countryName ] . OPTIONAL { ?person skos:altLabel ?alternateName filter(lang(?alternateName) = "en") } filter(lang(?countryName) = "en") filter(lang(?playerName) = "en") } ---- .Results [opts="header"] |=== |person|playerName|dateOfBirth|countryName|alternateName |http://www.wikidata.org/entity/Q1426|Roger Federer|1981-08-08T00:00:00Z|Switzerland| |=== Sweet! And if we run this query for 'Nicolas Escude' or 'Rafael Nadal' we get the same results as before - good times!
Learn how to use SPARQL's UNION clause to handle OR conditions in a WHERE clause.
uploads/2020/02/sparql-or-conditions.png
[ 0.003996876999735832, -0.0173241775482893, -0.016189545392990112, 0.0368480309844017, 0.062338024377822876, -0.00904938392341137, 0.03507523238658905, 0.008674179203808308, 0.0018646628595888615, -0.018398389220237732, -0.021029170602560043, -0.024884875863790512, -0.09443843364715576, 0.02276357263326645, 0.0233314149081707, 0.06144045665860176, 0.02966500073671341, 0.012505270540714264, 0.013103989884257317, -0.03223516419529915, 0.03036683239042759, 0.06293682754039764, 0.012577926740050316, 0.02646820992231369, 0.04505116492509842, 0.03859280049800873, -0.014270599000155926, 0.019233042374253273, -0.03402882441878319, -0.002839217195287347, 0.03737026825547218, 0.016655685380101204, -0.008631439879536629, -0.03315330669283867, -0.0058459131978452206, 0.010583296418190002, -0.022068727761507034, 0.016630446538329124, 0.004444371908903122, 0.04506649449467659, -0.08054414391517639, 0.025243720039725304, -0.018070615828037262, 0.032735418528318405, -0.03181197866797447, -0.007931913249194622, -0.031697120517492294, 0.025033729150891304, -0.013204813003540039, 0.015040457248687744, -0.05535058677196503, 0.005105082876980305, -0.01546628586947918, -0.0006798550602979958, 0.0020468791481107473, 0.037969548255205154, 0.023346688598394394, -0.08339766412973404, 0.02501779980957508, -0.018096204847097397, -0.010829482227563858, 0.00806764978915453, 0.018325384706258774, -0.004424456972628832, 0.026396851986646652, -0.03263416513800621, 0.0010440046899020672, 0.05003523454070091, -0.04325808957219124, 0.002896917751058936, -0.003100388217717409, -0.0018565359059721231, -0.023714914917945862, -0.021242741495370865, 0.012908505275845528, -0.032743632793426514, 0.004846065305173397, 0.05904615297913551, 0.04102281481027603, 0.046322982758283615, 0.001839671516790986, -0.0007073247106745839, 0.0154031440615654, 0.02969055250287056, 0.017485560849308968, -0.06910622119903564, -0.042205557227134705, -0.04674436151981354, -0.037156712263822556, 0.05303575471043587, 0.014643940143287182, -0.05602748319506645, 0.0034128825645893812, -0.012088249437510967, -0.027800308540463448, 0.002320094034075737, 0.017934462055563927, -0.035865142941474915, -0.00889801699668169, -0.02923373132944107, -0.04486091434955597, -0.05866193026304245, 0.03771800547838211, 0.01232198067009449, -0.08101380616426468, -0.013827881775796413, -0.017246797680854797, 0.0011237559374421835, 0.019695913419127464, 0.015050260350108147, -0.02536736987531185, 0.027118870988488197, -0.008432788774371147, 0.0033498595003038645, -0.05853879824280739, 0.04440337419509888, 0.04182565584778786, -0.021827684715390205, 0.02136726677417755, 0.042312558740377426, 0.019679276272654533, 0.03574918955564499, -0.023901648819446564, 0.04960312321782112, 0.01303786225616932, 0.02841377817094326, 0.00828571431338787, 0.04953785613179207, -0.022517243400216103, -0.06807925552129745, 0.024568872526288033, 0.04035909101366997, -0.009977379813790321, 0.007558388169854879, 0.00221058027818799, -0.025540128350257874, -0.026651518419384956, 0.02970253862440586, 0.07337785512208939, 0.007522945292294025, 0.014515797607600689, -0.07209134846925735, -0.011664406396448612, 0.017875012010335922, 0.024056360125541687, 0.006638097111135721, 0.007854440249502659, -0.027580277994275093, 0.012563630007207394, 0.008017054758965969, 0.03433147817850113, 0.027874793857336044, 0.08389061689376831, -0.026328416541218758, 0.029912905767560005, 0.0817648321390152, 0.03250991180539131, -0.02386343851685524, 0.02014584094285965, 0.0026068442966789007, 0.03771278262138367, 0.013228067196905613, 0.031035862863063812, 0.04754570871591568, 0.01857137121260166, -0.04215515777468681, 0.003918374888598919, 0.05907171219587326, 0.0070381173864007, 0.01622965931892395, -0.0665852278470993, -0.05303718149662018, 0.07933638989925385, -0.02489657886326313, -0.0020477226935327053, 0.04840947687625885, 0.07087478041648865, 0.005599404685199261, 0.040831658989191055, 0.011453540064394474, -0.0681840032339096, 0.020957699045538902, -0.022672927007079124, 0.012918603606522083, 0.026586618274450302, 0.019324874505400658, 0.08470702916383743, 0.04642065241932869, 0.01645677536725998, 0.03267620503902435, -0.09060464054346085, -0.06020703911781311, -0.04115423932671547, -0.018704116344451904, 0.05280100926756859, -0.013325441628694534, 0.003458095947280526, 0.057524073868989944, -0.020284811034798622, 0.04546254500746727, 0.010082145221531391, 0.005327210295945406, 0.013515600934624672, -0.040386028587818146, -0.05098272114992142, 0.07063241302967072, 0.037686582654714584, -0.03464183583855629, -0.039925117045640945, 0.04103976488113403, -0.0412042997777462, -0.014150024391710758, -0.002414924092590809, -0.03461487218737602, -0.01402955036610365, 0.016762737184762955, 0.03970285505056381, -0.00013886127271689475, 0.04393454268574715, -0.016247889026999474, 0.0827244222164154, 0.03262542933225632, -0.021916883066296577, -0.031184008345007896, 0.0023570526391267776, 0.11987089365720749, 0.024782191962003708, -0.016807042062282562, -0.05149192735552788, 0.014554365538060665, 0.018899256363511086, -0.032696351408958435, 0.02105940692126751, -0.012204081751406193, 0.012348415330052376, -0.0541643425822258, -0.013428746722638607, -0.05132952705025673, 0.028714509680867195, -0.038238026201725006, -0.017512943595647812, 0.09064056724309921, 0.0034033649135380983, 0.05589867755770683, -0.00993115920573473, -0.016721073538064957, 0.0024613700807094574, -0.03232488036155701, -0.05233731120824814, 0.021323828026652336, 0.020913027226924896, -0.009474788792431355, 0.014242368750274181, -0.01728745922446251, 0.00227669021114707, -0.029450170695781708, -0.027605440467596054, 0.05311408266425133, 0.03978695720434189, 0.04217741638422012, -0.021827954798936844, 0.028661001473665237, -0.009647038765251637, -0.006962330546230078, -0.011371137574315071, -0.04587448388338089, -0.035578224807977676, -0.037866536527872086, 0.004181167110800743, 0.0041217440739274025, 0.02055688202381134, 0.004759217146784067, 0.020721865817904472, -0.012625024653971195, -0.017708782106637955, 0.03982945531606674, 0.009375306777656078, -0.01471201702952385, -0.013315177522599697, -0.023946937173604965, -0.039537426084280014, 0.05745862051844597, -0.05842310190200806, -0.031457193195819855, -0.0323067307472229, -0.06733816117048264, 0.0581611767411232, -0.07051367312669754, -0.06318608671426773, 0.015588628128170967, 0.04072700813412666, 0.027927516028285027, 0.011888365261256695, 0.0038484367541968822, 0.06484885513782501, -0.0022936013992875814, 0.00613587349653244, 0.048030249774456024, -0.013290110044181347, 0.040242478251457214, -0.034559186547994614, 0.04209514707326889, 0.05428730323910713, -0.032826412469148636, 0.02836025319993496, -0.04546239972114563, 0.008121654391288757, 0.01125409547239542, -0.26581767201423645, 0.05076145380735397, -0.03752986341714859, -0.016672950237989426, 0.03155718371272087, -0.015960078686475754, 0.004599287640303373, -0.00932489987462759, -0.01540432684123516, 0.030310457572340965, 0.012565315701067448, -0.014485125429928303, -0.00031089893309399486, 0.056566886603832245, 0.013015174306929111, 0.02237684838473797, -0.020099997520446777, -0.0362362377345562, -0.03164000064134598, 0.03446095436811447, 0.010819118469953537, -0.026674458757042885, -0.015474912710487843, 0.04326868802309036, 0.050702136009931564, 0.045476749539375305, -0.07971952855587006, 0.0066335489973425865, -0.038021109998226166, -0.03159201890230179, 0.014757627621293068, -0.007638343144208193, 0.004006156697869301, 0.0008249031379818916, -0.02642803266644478, -0.024419689550995827, 0.0455302856862545, 0.01460316963493824, 0.020912103354930878, 0.041636861860752106, -0.05475202947854996, -0.04773614928126335, -0.006876366678625345, -0.0017781464848667383, 0.10555017739534378, 0.015061150304973125, -0.0891454666852951, 0.002236936939880252, -0.03411474823951721, 0.04551183804869652, -0.01748829334974289, -0.032771915197372437, -0.028207257390022278, 0.05617990344762802, -0.022771185263991356, 0.0017835850594565272, 0.02442849613726139, -0.014727831818163395, -0.06693357229232788, -0.039112601429224014, 0.01093375962227583, -0.046928782016038895, 0.005168680101633072, -0.03739277645945549, -0.015494784340262413, -0.07390598207712173, -0.041384223848581314, -0.03590851649641991, 0.06580015271902084, 0.01530700083822012, -0.03538002073764801, 0.0007398567395284772, -0.040673330426216125, -0.10653357207775116, 0.004545638803392649, -0.038975704461336136, -0.003744382644072175, -0.008732378482818604, -0.009570347145199776, 0.03314124047756195, -0.03900694474577904, -0.05905144661664963, 0.0030872190836817026, 0.02195965312421322, 0.011824388056993484, 0.026974497362971306, 0.054346147924661636, -0.017520396038889885, -0.04879699647426605, 0.019155465066432953, 0.05745232105255127, 0.0045423503033816814, -0.030603788793087006, 0.00040433387039229274, -0.02956203557550907, 0.018630318343639374, -0.019514231011271477, 0.0007869781111367047, 0.015753688290715218, 0.0659070834517479, 0.03385872393846512, -0.05300590768456459, -0.008299172855913639, -0.057058487087488174, 0.00020300911273807287, 0.02770995907485485, -0.04847026988863945, 0.02114047296345234, 0.014112153090536594, 0.011852217838168144, 0.0019383708713576198, -0.051871366798877716, 0.0045212917029857635, -0.030165670439600945, -0.021297920495271683, -0.052926234900951385, 0.02623685449361801, 0.018826205283403397, 0.033630259335041046, -0.021942703053355217, -0.04642629995942116, 0.03497910872101784, 0.01901428773999214, -0.015881791710853577, -0.07113596796989441, -0.04206607863306999, -0.021012302488088608, -0.02984360046684742, 0.015844816341996193, -0.00004933527088724077, -0.040617432445287704, 0.019621364772319794, 0.012056730687618256, -0.04304564371705055, 0.04352051019668579, -0.007077873684465885, -0.026655472815036774, -0.022079985588788986, 0.0002682122285477817, 0.002040865132585168, -0.0008692429400980473, -0.004930431023240089, 0.025139760226011276, 0.03922108933329582, 0.057581305503845215, 0.001145232585258782, 0.00909495074301958, -0.014414098113775253, 0.009018655866384506, 0.0068885404616594315, 0.017195524647831917, -0.028074748814105988, 0.019266072660684586, -0.047524552792310715, -0.004914605990052223, -0.04019823670387268, 0.05881798267364502, -0.017205700278282166, -0.008950367569923401, -0.03743615001440048, -0.004651484079658985, -0.08338052779436111, -0.0015882659936323762, -0.025405842810869217, 0.030799366533756256, 0.04332497715950012, -0.033371664583683014, 0.022477662190794945, -0.022829309105873108, -0.013718733564019203, 0.0007365414639934897, 0.006235930137336254, -0.006091282702982426, 0.0005565836327150464, -0.002190795261412859, -0.02745492197573185, 0.004511577542871237, 0.03798780217766762, 0.010859048925340176, 0.011368137784302235, 0.004490528721362352, 0.012006747536361217, 0.003899920731782913, 0.018714917823672295, 0.053016386926174164, 0.04177983105182648, -0.0133143225684762, 0.002583610126748681, -0.011299015954136848, -0.01517739798873663, -0.003946360666304827, 0.03306259587407112, -0.013674271292984486, 0.006105707958340645, -0.036829110234975815, -0.04726848378777504, 0.027582162991166115, 0.003399967448785901, 0.012084182351827621, 0.04674214869737625, 0.010597151704132557, -0.026050064712762833, -0.027609463781118393, 0.028695089742541313, 0.043449338525533676, -0.0705564096570015, -0.0032611240167170763, 0.010973011143505573, -0.03452268987894058, -0.0054252571426332, -0.005327594466507435, -0.05002725124359131, 0.005322097335010767, -0.00722165172919631, 0.01932678557932377, -0.04077160730957985, -0.01115642860531807, 0.026691623032093048, 0.020790640264749527, -0.009971854276955128, 0.04550638049840927, -0.030703702941536903, 0.013083475641906261, 0.01948722079396248, -0.01425171922892332, 0.053631529211997986, 0.0003624947858043015, -0.021759146824479103, 0.008846902288496494, -0.0038745617493987083, 0.004522419534623623, -0.027648601680994034, -0.004613280761986971, 0.02465951442718506, -0.05393877625465393, -0.007139493711292744, -0.0546601302921772, -0.01140844076871872, 0.0008723815553821623, 0.04580293968319893, -0.001816158532164991, -0.02568061836063862, -0.00834680162370205, -0.0034863341134041548, -0.03045223094522953, 0.021274596452713013, -0.009348695166409016, 0.005121240857988596, 0.020553693175315857, -0.008857346139848232, -0.006245309486985207, 0.004502315539866686, -0.04207916557788849, -0.02849166840314865, 0.06224804371595383, -0.007483466994017363, -0.009363409131765366, -0.016722748056054115, -0.07011080533266068, 0.026221735402941704, 0.039317913353443146, 0.02218945138156414, -0.03407852724194527, 0.053621549159288406, 0.03708220273256302, 0.012513797730207443, 0.040263012051582336, -0.01554883923381567, 0.026367511600255966, -0.03867034614086151, -0.0321534238755703, -0.07113524526357651, 0.007994537241756916, 0.04447498917579651, 0.0016496623866260052, -0.01812896877527237, -0.005899521056562662, -0.022537248209118843, 0.03499670326709747, -0.06032412871718407, -0.04132549464702606, 0.004145880229771137, -0.016144882887601852, 0.006600158754736185, -0.0020442772656679153, -0.0395408496260643, -0.02164536342024803, 0.04998372122645378, -0.024546455591917038, -0.030196741223335266, -0.05483066290616989, 0.07039586454629898, -0.029252221807837486, 0.0035890918225049973, -0.013066231273114681, -0.04036293551325798, 0.044665440917015076, 0.011887947097420692, 0.05538683757185936, 0.04646895453333855, -0.01982908323407173, 0.0013660215772688389, 0.023581689223647118, 0.015222100540995598, 0.020859135314822197, 0.0342894084751606, -0.02232471853494644, -0.05354765057563782, 0.02512526512145996, 0.0198576208204031, -0.005953929387032986, -0.048178598284721375, 0.061043571680784225, 0.0031879323069006205, -0.04619335010647774, -0.034621596336364746, 0.04118472710251808, -0.0358116440474987, -0.036065515130758286, -0.01974964141845703, 0.005553720984607935, -0.045449379831552505, 0.0752204954624176, 0.01858391799032688, 0.03421485424041748, 0.06442505121231079, 0.018943417817354202, -0.034860458225011826, 0.0014291525585576892, 0.07475606352090836, 0.0825892761349678, 0.021848030388355255, -0.002183179371058941, 0.07035502046346664, -0.010127953253686428, -0.07478555291891098, 0.014750572852790356, -0.0016721560386940837, -0.030477382242679596, 0.03889133408665657, -0.00967246200889349, 0.06797628849744797, -0.01588895171880722, 0.054731424897909164, -0.02754700742661953, -0.008674433454871178, -0.004291076213121414, 0.008340318687260151, 0.032943278551101685, 0.037085648626089096, -0.01214331854134798, 0.049952875822782516, -0.003019810188561678, -0.05209704488515854, 0.012599218636751175, -0.0054922932758927345, -0.020889250561594963, 0.013358387164771557, -0.019065184518694878, -0.0034455282147973776, -0.007601830177009106, 0.03454611450433731, 0.09557786583900452, -0.038066912442445755, -0.016769863665103912, -0.014637889340519905, 0.01442235428839922, -0.0029190555214881897, 0.03063763864338398, -0.007311386987566948, -0.007762887515127659, -0.03087998740375042, -0.03579750284552574, 0.00396696524694562, -0.019037367776036263, -0.051688309758901596, 0.03966392204165459, -0.06905113160610199, -0.0053310212679207325, 0.000373020680854097, -0.0163918137550354, -0.014335626736283302, -0.04414380341768265, -0.04646839201450348, -0.048191457986831665, -0.0826006680727005, -0.007424789015203714, -0.002190019702538848, 0.009742826223373413, -0.027418751269578934, -0.012909641489386559, -0.026616940274834633, -0.004284511785954237, 0.053531281650066376, -0.04279596358537674, -0.01881106197834015, 0.006095412652939558, 0.043139416724443436, 0.04243237525224686, 0.006004922091960907, 0.06449362635612488, -0.015182449482381344, 0.028083398938179016, -0.04130468890070915, -0.0071449060924351215, 0.03062433749437332, 0.03419080749154091, -0.024416714906692505, -0.0694580227136612, 0.016183916479349136, -0.0001605986471986398, -0.016610005870461464, -0.07964359223842621, 0.013305562548339367, 0.03950706869363785, -0.008218182250857353, 0.040986329317092896, -0.010427401401102543, -0.005237221717834473, -0.01948866993188858, -0.025534624233841896, -0.00020743142522405833, 0.0021596720907837152, 0.02694256789982319, -0.03447186201810837, 0.07837647944688797, 0.06154024600982666, 0.00681449705734849, -0.054062455892562866, -0.03538324683904648, 0.00911988876760006, 0.017129693180322647, -0.049435436725616455, -0.04248107969760895, -0.054326966404914856, -0.08880077302455902, -0.038595929741859436, 0.009329044260084629, -0.030696559697389603, -0.030558712780475616, -0.010333511978387833, 0.05538870766758919, -0.05012526363134384, 0.002864840207621455, -0.038720689713954926, 0.030689269304275513, -0.028714295476675034, -0.020466547459363937, -0.007101780269294977, 0.043779801577329636, -0.0003587563696783036, 0.01934747025370598, 0.0413953997194767, -0.03768068924546242, 0.009857815690338612, -0.025485245510935783, 0.01914004236459732, 0.04240778088569641, 0.012386887334287167, 0.027509868144989014 ]
[ -0.05640172213315964, -0.01656792312860489, -0.030846530571579933, -0.007484130095690489, 0.04262707754969597, -0.03303419426083565, 0.0037608814891427755, 0.008883576840162277, 0.03137446939945221, -0.009479698725044727, 0.0008671884424984455, -0.052480440586805344, 0.00320180575363338, 0.0020363323856145144, 0.040864501148462296, 0.035934776067733765, -0.042360227555036545, -0.04559646546840668, -0.044911835342645645, 0.021609026938676834, -0.043575678020715714, -0.012266862206161022, -0.019371967762708664, -0.03232038766145706, 0.013726487755775452, 0.03324510529637337, 0.023637566715478897, -0.04054185748100281, -0.013276517391204834, -0.22069460153579712, 0.014572370797395706, 0.015703370794653893, -0.010970057919621468, 0.020507564768195152, 0.012011328712105751, -0.011514159850776196, 0.05782546103000641, 0.015329685993492603, 0.012973921373486519, 0.038010939955711365, 0.00788484513759613, -0.011332654394209385, -0.03598198667168617, 0.005078242626041174, 0.041458237916231155, 0.04583554342389107, -0.014814351685345173, 0.022477371618151665, -0.048809539526700974, 0.0521683469414711, -0.03649396821856499, 0.026613114401698112, 0.013091394677758217, 0.008227936923503876, 0.02046685479581356, 0.02734949439764023, 0.04667247459292412, 0.06686316430568695, 0.03979601338505745, 0.041528936475515366, 0.032375939190387726, -0.0038908033166080713, -0.14355213940143585, 0.07918103039264679, -0.055919647216796875, 0.04345531016588211, -0.019650761038064957, -0.02897080034017563, -0.000004885217094852123, 0.05999107286334038, 0.03360050544142723, -0.00995712075382471, -0.04066178947687149, 0.03516659140586853, 0.010879767127335072, -0.029565945267677307, 0.004494377877563238, 0.020517177879810333, 0.05595575273036957, -0.009861924685537815, -0.03075028769671917, -0.007349517196416855, -0.03463246673345566, -0.04891514778137207, -0.026716770604252815, 0.014187649823725224, -0.01577163301408291, -0.0037609015125781298, -0.015628982335329056, 0.004952355287969112, 0.017085831612348557, -0.016348613426089287, 0.05931485816836357, 0.033402588218450546, -0.07740570604801178, 0.003000757424160838, -0.012894506566226482, 0.04485408961772919, -0.014356891624629498, 0.42704564332962036, 0.008584922179579735, -0.02537187933921814, -0.014060760848224163, 0.04517755284905434, -0.015305467881262302, -0.01958240382373333, -0.0150464978069067, -0.06120267137885094, 0.012130068615078926, -0.03138241544365883, -0.012429016642272472, -0.0000872536184033379, 0.026224998757243156, -0.04050701484084129, 0.01194158848375082, 0.009658008813858032, 0.06997761875391006, 0.019133100286126137, -0.038967158645391464, 0.011058376170694828, -0.04458038508892059, 0.018414946272969246, -0.0026075378991663456, 0.026133636012673378, 0.02380559965968132, 0.013017052784562111, 0.03136961907148361, 0.044293466955423355, 0.0388481430709362, 0.005353173706680536, 0.05235692113637924, -0.028186744078993797, -0.06702450662851334, 0.0040032630786299706, -0.02034710720181465, 0.000781519222073257, 0.04330243542790413, -0.03241537883877754, -0.003918803762644529, 0.015652615576982498, -0.014238407835364342, -0.07609298825263977, 0.03657994046807289, 0.030420301482081413, -0.06486675143241882, 0.1099700853228569, -0.023130547255277634, -0.03414570167660713, -0.011207235977053642, -0.037627898156642914, -0.022714784368872643, 0.04721297323703766, -0.012466303072869778, -0.03429426625370979, -0.022205296903848648, 0.025902843102812767, 0.06103726848959923, -0.012232918292284012, -0.07538105547428131, -0.00984212663024664, 0.004643534775823355, -0.06290607154369354, -0.03748031333088875, 0.06702613085508347, 0.033071037381887436, -0.15582486987113953, -0.03353605791926384, 0.029467809945344925, 0.006160815712064505, -0.029329214245080948, 0.03024735115468502, -0.002670661546289921, -0.05120110139250755, 0.0011954403016716242, 0.03850618377327919, 0.007399718277156353, -0.006215116009116173, -0.008442111313343048, 0.010861028917133808, -0.003359478898346424, -0.04075561463832855, -0.014141715131700039, -0.04071464762091637, -0.027860606089234352, -0.05244167521595955, -0.03730487823486328, -0.05191723629832268, 0.03606132045388222, 0.021876778453588486, -0.0300879068672657, -0.03704021871089935, -0.023230360820889473, -0.09051746129989624, 0.06497073918581009, -0.029977673664689064, -0.011961014941334724, 0.038067109882831573, -0.025766991078853607, 0.019861547276377678, -0.02464165911078453, 0.002393436850979924, 0.048823773860931396, 0.05285094678401947, 0.02173542231321335, -0.02989240549504757, 0.0414610356092453, 0.03860264644026756, -0.02856854721903801, 0.05323295295238495, -0.025357916951179504, -0.03496395796537399, -0.03122865967452526, -0.08979562669992447, 0.014763428829610348, -0.00630005169659853, -0.011813334189355373, 0.017574802041053772, -0.024245796725153923, 0.021358883008360863, 0.04712389409542084, -0.040636200457811356, 0.001628906698897481, 0.0167978685349226, -0.35428300499916077, -0.04965923726558685, -0.032934609800577164, 0.026417287066578865, -0.021998416632413864, -0.0687384381890297, -0.027771512046456337, -0.0020791953429579735, 0.007043211720883846, 0.08690977096557617, 0.0559205561876297, 0.013161016628146172, -0.003749874420464039, -0.05408810079097748, -0.026074379682540894, 0.04615970700979233, 0.016748866066336632, -0.012363901361823082, -0.011746433563530445, -0.0028584832325577736, -0.0015114310663193464, -0.025780843570828438, -0.015576880425214767, -0.05219152197241783, 0.00510281091555953, -0.019403869286179543, 0.12525613605976105, 0.0807778462767601, 0.022101271897554398, -0.085722416639328, 0.03766443580389023, -0.03154592588543892, -0.01152724213898182, -0.08262915164232254, 0.025711096823215485, -0.026333780959248543, -0.004262042697519064, 0.002825086237862706, 0.0059502506628632545, -0.01938542351126671, -0.015354652889072895, -0.027292894199490547, -0.035486917942762375, -0.024812256917357445, -0.029570579528808594, 0.015689734369516373, 0.005041342228651047, -0.014159824699163437, -0.031424980610609055, 0.09992815554141998, 0.015998657792806625, 0.06424982100725174, 0.04803202673792839, 0.02254597842693329, -0.008063742890954018, -0.020571624860167503, -0.08229867368936539, -0.00040738427196629345, 0.000048208912630798295, 0.014490854926407337, 0.01704675890505314, 0.023367635905742645, 0.04619085043668747, -0.017617497593164444, 0.021958278492093086, -0.008652306161820889, -0.014299195259809494, 0.00716855563223362, 0.03464848920702934, -0.044582169502973557, -0.04621139541268349, 0.09817883372306824, -0.018166357651352882, 0.022961096838116646, 0.03460395336151123, 0.06622203439474106, -0.00006211906293174252, -0.008270242251455784, 0.044398240745067596, 0.009276785887777805, 0.044426124542951584, -0.051656775176525116, 0.07265841215848923, -0.027754567563533783, 0.03460538014769554, 0.040964700281620026, 0.049925535917282104, 0.013470648787915707, 0.062182772904634476, 0.01061814185231924, -0.014637661166489124, 0.00015048046770971268, -0.044453542679548264, -0.020362431183457375, 0.004073181189596653, -0.0414104238152504, -0.28795602917671204, 0.028746481984853745, 0.038189519196748734, 0.04923071712255478, 0.02282251976430416, 0.008095900528132915, 0.022350912913680077, -0.0467127189040184, -0.01337310392409563, 0.001548161031678319, 0.07862050831317902, 0.03818383812904358, -0.00818429421633482, -0.005396497435867786, -0.018839482218027115, 0.020942797884345055, 0.008861937560141087, 0.02253233827650547, 0.02650435082614422, 0.024882638826966286, 0.053791891783475876, 0.01030172873288393, 0.1859772950410843, 0.010841580107808113, 0.05618070438504219, 0.027726847678422928, 0.004948647692799568, -0.010913537815213203, 0.02539733611047268, 0.011398058384656906, -0.028323419392108917, 0.009347524493932724, 0.048927318304777145, 0.025789637118577957, 0.015216050669550896, -0.021197697147727013, -0.02263134904205799, 0.03996378555893898, 0.010307948105037212, -0.0530446320772171, -0.0388132743537426, 0.015337123535573483, -0.0448281355202198, 0.04965813830494881, 0.061979398131370544, 0.02186858281493187, -0.01852828823029995, -0.014837180264294147, -0.022272249683737755, 0.013998922891914845, -0.008513380773365498, -0.04077373817563057, -0.05166959390044212, 0.01776472106575966, -0.00957806408405304, -0.0010714614763855934, 0.026352036744356155, -0.03140253201127052, 0.034495022147893906, 0.004433207213878632, -0.033513423055410385, 0.0009445343748666346, 0.0473702996969223, -0.01099449209868908, 0.011221473105251789 ]
[ -0.00026016923948191106, 0.02412996254861355, -0.003255772404372692, 0.032067157328128815, -0.021936707198619843, 0.011335384100675583, -0.007359391078352928, -0.015864916145801544, -0.00518247252330184, 0.026861626654863358, -0.0049940976314246655, -0.021449722349643707, 0.036327071487903595, 0.014245728962123394, 0.026901472359895706, 0.010139266029000282, -0.009724846109747887, -0.009824912995100021, 0.025017110630869865, -0.0214175246655941, -0.014832173474133015, -0.007938619703054428, 0.006462167017161846, -0.008012435398995876, 0.023316139355301857, -0.028041133657097816, -0.04453561455011368, 0.021455733105540276, -0.0012401448329910636, -0.1222558245062828, -0.039159029722213745, -0.04116782918572426, -0.050117071717977524, 0.03390306234359741, -0.03302478790283203, -0.03616390749812126, -0.019949540495872498, 0.02965763956308365, 0.0326266884803772, 0.019561152905225754, 0.014135323464870453, -0.05002022907137871, -0.02928234077990055, 0.026207640767097473, -0.012898284941911697, 0.029869074001908302, -0.0536898709833622, 0.0002992519293911755, 0.0025205444544553757, 0.014825711958110332, -0.03443717584013939, -0.05494338646531105, 0.008792092092335224, -0.0005677802837453783, 0.03636292368173599, -0.018488069996237755, -0.060707420110702515, 0.0019003513734787703, 0.016738591715693474, 0.009000983089208603, 0.015575808472931385, 0.0010060797212645411, -0.04003093019127846, -0.014711815863847733, -0.022755201905965805, -0.051233384758234024, -0.01851990632712841, 0.02879895456135273, 0.003310303669422865, 0.0018852220382541418, 0.011002929881215096, 0.031517744064331055, -0.032793544232845306, -0.010890977457165718, -0.02118009142577648, 0.03838079422712326, 0.023729734122753143, 0.017786230891942978, -0.015240577980875969, -0.030949357897043228, -0.010244978591799736, 0.01880209520459175, -0.026895375922322273, 0.011681895703077316, 0.026186643168330193, -0.026357829570770264, 0.015305371023714542, -0.02057722397148609, 0.006806894671171904, -0.0023484507109969854, -0.02669893577694893, -0.005903960205614567, 0.021448783576488495, 0.00019941247592214495, -0.06613695621490479, 0.01992643252015114, -0.003991594072431326, 0.0207821112126112, 0.0014297947054728866, 0.8511870503425598, 0.019741026684641838, 0.003964387811720371, -0.009277952834963799, 0.026800278574228287, -0.023746320977807045, -0.017235416918992996, 0.006029818672686815, 0.007355142384767532, 0.0007439308101311326, -0.029456444084644318, 0.008491246961057186, 0.025012388825416565, 0.014482107944786549, 0.00922255590558052, 0.013289261609315872, 0.04443485662341118, 0.021878741681575775, 0.0028781990986317396, -0.004947585053741932, -0.0007384734344668686, -0.01104342844337225, -0.006240459159016609, -0.02264329418540001, -0.016253268346190453, 0.013970284722745419, -0.1737794280052185, 0.03806303068995476, -6.475965886624974e-33, 0.06766624748706818, -0.0018132735276594758, 0.023930523544549942, -0.0006441890145651996, -0.0018209049012511969, 0.009269707836210728, 0.002846179762855172, -0.01970541663467884, -0.024248477071523666, 0.010762888938188553, -0.03700222074985504, 0.0007365858182311058, 0.012917119078338146, -0.02965475060045719, 0.015109064988791943, 0.004568079020828009, -0.017515800893306732, 0.0027482477016747, -0.027044329792261124, 0.050740353763103485, 0.04298122972249985, 0.04471864178776741, -0.0017908023437485099, 0.02516005001962185, -0.005231600254774094, 0.03585377708077431, -0.014667266048491001, -0.041216734796762466, -0.02730286866426468, -0.03752318024635315, -0.019635114818811417, -0.0073447939939796925, -0.0033448694739490747, -0.011348994448781013, 0.013236803002655506, -0.053697098046541214, -0.01199235487729311, 0.006517292466014624, -0.020137429237365723, -0.04219380021095276, -0.008438915945589542, -0.005373142659664154, -0.03164033219218254, -0.014763045124709606, -0.0424625501036644, 0.010063987225294113, -0.017174746841192245, -0.020132452249526978, -0.011641159653663635, 0.0025322844740003347, 0.015861105173826218, 0.026674577966332436, -0.01630493253469467, 0.04203732684254646, -0.005512900184839964, 0.00710107060149312, -0.019661223515868187, 0.0015956429997459054, -0.00779644213616848, 0.00984971597790718, 0.049013346433639526, -0.023373184725642204, -0.01569746620953083, 0.02041308768093586, -0.004086715169250965, 0.005614975467324257, 0.034405697137117386, -0.010671188123524189, 0.015588327310979366, -0.013693454675376415, -0.008879573084414005, 0.02844732254743576, -0.013900252990424633, -0.00854246411472559, 0.008079065941274166, -0.04057130962610245, 0.020842857658863068, -0.0006369458860717714, -0.009000945836305618, 0.03325112909078598, 0.007710539270192385, -0.02436733804643154, -0.024264244362711906, -0.004215939436107874, -0.032865073531866074, -0.010756859555840492, 0.04583054780960083, 0.0031754544470459223, 0.02765657752752304, 0.03055245243012905, 0.04299280419945717, 0.038096826523542404, 0.03312721848487854, -0.02097848244011402, -0.011885990388691425, 6.86640339651472e-33, 0.00967440102249384, -0.015250091440975666, 0.0024620250333100557, -0.023791568353772163, 0.012554545886814594, -0.01197517104446888, 0.046486254781484604, 0.0353921614587307, -0.04087721183896065, 0.050168078392744064, 0.01276205200701952, -0.0025336970575153828, -0.010558397509157658, 0.025258006528019905, 0.042819712311029434, 0.013695183210074902, 0.005468000657856464, -0.041425447911024094, 0.008539330214262009, 0.04540356993675232, -0.013220096006989479, 0.038177281618118286, 0.00758519908413291, 0.003042376134544611, 0.04659287631511688, 0.041968438774347305, -0.015654515475034714, -0.0009310333407483995, -0.027962760999798775, 0.013129155151546001, -0.004151953384280205, -0.045386649668216705, -0.006828842684626579, -0.037433918565511703, -0.02575165033340454, 0.0052878824062645435, -0.007319536525756121, -0.0012213620357215405, 0.002448991872370243, -0.013233490288257599, 0.011113141663372517, 0.031528715044260025, -0.022614510729908943, 0.05615416541695595, 0.010697879828512669, 0.02029688097536564, -0.019243795424699783, -0.010765206068754196, -0.013085685670375824, 0.0034622137900441885, 0.02357650175690651, 0.022718943655490875, 0.01640361361205578, -0.006518613547086716, 0.017864979803562164, -0.042434342205524445, -0.002813479397445917, 0.01300857588648796, -0.023400910198688507, 0.0009873646777123213, -0.02941412664949894, 0.006128024309873581, -0.027164706960320473, -0.009322166442871094, -0.003304016310721636, 0.00882686022669077, -0.05931863561272621, -0.003894004039466381, -0.01858694851398468, -0.020344840362668037, -0.009496179409325123, -0.020225081592798233, -0.007097391877323389, 0.04793768376111984, 0.03861623257398605, -0.012864908203482628, -0.037398677319288254, 0.04575050622224808, -0.008962997235357761, 0.043430253863334656, -0.00976492464542389, 0.01864767074584961, 0.01144204568117857, 0.003921594470739365, 0.00307113747112453, 0.03737157955765724, -0.02547633647918701, 0.03573453426361084, -0.009131098166108131, -0.030450930818915367, 0.017047284170985222, -0.052817653864622116, -0.009327215142548084, 0.013284483924508095, -0.013420342467725277, -1.2615409161753632e-8, -0.04970688745379448, 0.0039145913906395435, -0.021513039246201515, 0.010387522168457508, -0.0019435242284089327, 0.0049600983038544655, 0.002883994486182928, 0.011089696548879147, 0.02548656053841114, 0.015488233417272568, 0.058009568601846695, 0.04460375756025314, 0.05109647661447525, -0.014979539439082146, 0.016156475991010666, -0.023462312296032906, 0.017229143530130386, 0.03281303867697716, 0.027451053261756897, -0.015993494540452957, 0.012763669714331627, 0.04379976913332939, -0.02129664085805416, -0.006545569747686386, -0.012305337935686111, 0.014424079097807407, 0.020839126780629158, -0.06400371342897415, -0.015797073021531105, -0.0424392893910408, 0.00755182234570384, -0.03360845893621445, 0.0005689929239451885, 0.0242751631885767, -0.0066596330143511295, 0.002126741223037243, -0.0016754508251324296, 0.006698972079902887, 0.003176567144691944, 0.0003064468037337065, -0.027751034125685692, 0.011983334086835384, -0.011850688606500626, -0.0236800629645586, -0.0342542827129364, 0.00014956790255382657, -0.040470074862241745, -0.009819316677749157, 0.025218140333890915, -0.020205270498991013, -0.0030567238572984934, -0.003125678049400449, 0.0410907156765461, 0.01963004469871521, 0.01741671934723854, -0.010335473343729973, 0.01430476550012827, 0.008240706287324429, -0.02634878270328045, -0.005553666036576033, 0.019379811361432076, -0.00928579829633236, -0.03185248747467995, -0.013046161271631718 ]
sparql-or-conditions-where-union-query
https://markhneedham.com/blog/2020/02/07/sparql-or-conditions-where-union-query
false
2020-10-29 00:21:00
Neo4j: Cypher - FOREACH vs CALL {} (subquery)
[ "neo4j", "cypher" ]
[ "Neo4j" ]
I recently wanted to create a graph based on an adjacency list, and in this post we'll learn how to do that using the https://neo4j.com/docs/cypher-manual/current/clauses/foreach/[FOREACH^] clause and then with the new https://neo4j.com/docs/cypher-manual/current/clauses/call-subquery/#subquery-aggregation[CALL {}^] subquery clause. We'll start with the following map of ids -> arrays of ids: [source,cypher] ---- :param list => ({`0`: [7, 9], `1`: [2, 4, 5, 6, 8, 9], `2`: [0, 6, 8, 9], `3`: [1, 2, 6, 9], `4`: [1, 2, 3, 7], `5`: [8, 9], `6`: [2, 4, 5, 7, 8, 9], `7`: [0, 3, 4, 6, 8, 9], `8`: [1, 6, 9], `9`: [0, 1, 3, 5]}) ---- We want to create one node per id and create a relationship from each node to the nodes in its array. So for example, we'll have a relationship from `0` -> `7`, `0` -> `9`, `1` -> `2`, and so on. We can do this using the `FOREACH` clause, as shown in the following query [source,cypher] ---- UNWIND keys($list) AS key MERGE (n:Node {id: toInteger(key)}) FOREACH(item IN $list[key] | MERGE (m:Node {id: item}) MERGE (n)-[:CONNECTED_TO]->(m) ) RETURN n.id; ---- If we run this query, we'll see the following output: .Results [opts="header"] |=== | n.id | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 |=== But what if along with the id, we'd also like to return the number of outgoing relationships from each node? One way to do this would be to use the `UNWIND` clause to iterate through the values in the array, as shown below: [source,cypher] ---- UNWIND keys($list) AS key MERGE (n:Node {id: toInteger(key)}) WITH n, key UNWIND $list[key] AS item MERGE (m:Node {id: item}) MERGE (n)-[:CONNECTED_TO]->(m) RETURN n.id, count(*); ---- If we run this query, we'll see the following output: .Results [opts="header"] |=== | n.id | count | 0 | 2 | 1 | 6 | 2 | 4 | 3 | 4 | 4 | 4 | 5 | 2 | 6 | 6 | 7 | 6 | 8 | 3 | 9 | 4 |=== This works, but we are creating a lot of extra rows between lines 4-6, before squashing them back again on line 7. In this example it's not too much of a problem, but in queries with multiple `UNWIND` clauses, we can simplify things by https://neo4j.com/docs/cypher-manual/current/clauses/call-subquery/#subquery-aggregation[isolating the side effects^] in a `CALL {}` subquery. If we do that, we'll have the query below: [source,cypher] ---- UNWIND keys($list) AS key MERGE (n:Node {id: toInteger(key)}) CALL { WITH key, n UNWIND $list[key] AS item MERGE (m:Node {id: item}) MERGE (n)-[:CONNECTED_TO]->(m) RETURN count(*) AS count } RETURN n.id, count ---- If we run that query, we'll see the following output: .Results [source,text] ---- WITH is required between MERGE and CALL (line 3, column 1 (offset: 62)) "CALL {" ^ ---- Hmmm, not quite. Let's add a `WITH` clause for `n` and `key`: [source,cypher] ---- UNWIND keys($list) AS key MERGE (n:Node {id: toInteger(key)}) WITH n, key CALL { UNWIND $list[key] AS item MERGE (m:Node {id: item}) MERGE (n)-[:CONNECTED_TO]->(m) RETURN count(*) AS count } RETURN n.id, count; ---- And run our query again: .Results [source,text] ---- Variable `key` not defined (line 5, column 16 (offset: 96)) " UNWIND $list[key] AS item" ^ ---- Not quite! We also need to add a `WITH` clause with each of these values to the start of the `CALL{}` clause: [source,cypher] ---- UNWIND keys($list) AS key MERGE (n:Node {id: toInteger(key)}) WITH n, key CALL { WITH key, n UNWIND $list[key] AS item MERGE (m:Node {id: item}) MERGE (n)-[:CONNECTED_TO]->(m) RETURN count(*) AS count } RETURN n.id, count ---- And now if we run the query, we'll see the following output: .Results [opts="header"] |=== | n.id | count | 0 | 2 | 1 | 6 | 2 | 4 | 3 | 4 | 4 | 4 | 5 | 2 | 6 | 6 | 7 | 6 | 8 | 3 | 9 | 4 |===
Learn how to use the CALL {} subquery syntax to create data in a graph.
null
[ 0.006773173809051514, -0.0315568670630455, 0.011911606416106224, 0.03615595027804375, 0.08042588829994202, -0.007028299383819103, 0.023553015664219856, 0.008426551707088947, 0.03322751447558403, -0.021340373903512955, 0.008047480136156082, -0.007512189447879791, -0.08018428832292557, 0.010806893929839134, 0.009534269571304321, 0.07623152434825897, 0.0657682791352272, 0.03027127869427204, 0.0029180324636399746, -0.02720295637845993, 0.003141421126201749, 0.02140389382839203, 0.0031763012520968914, 0.03337065130472183, 0.05369284749031067, 0.004865419585257769, -0.008856748230755329, 0.004929880611598492, -0.027959033846855164, 0.0024704537354409695, 0.040428582578897476, -0.014081462286412716, 0.02421395480632782, -0.01677922159433365, 0.021343132480978966, -0.013829149305820465, -0.05681685730814934, -0.015683697536587715, -0.019024860113859177, -0.01951821707189083, -0.060249850153923035, 0.030993517488241196, 0.009678768925368786, 0.012860673479735851, -0.02929656393826008, 0.0033388056326657534, -0.06163422018289566, 0.05919479951262474, 0.010634763166308403, 0.01840566284954548, -0.0775187686085701, 0.007312066853046417, 0.004351192619651556, 0.02047492191195488, -0.021385302767157555, 0.05777532234787941, 0.006096701603382826, -0.05506215989589691, 0.058402854949235916, -0.01775537244975567, 0.000658057106193155, 0.010258784517645836, 0.007004794664680958, 0.011837709695100784, -0.012428434565663338, -0.04384656250476837, -0.01609674096107483, 0.0686635971069336, -0.059014856815338135, -0.011213395744562149, -0.006551122292876244, 0.01320678275078535, -0.0028662318363785744, -0.007626578211784363, -0.007286421488970518, -0.033302221447229385, -0.01971127651631832, 0.03985369950532913, 0.03965085372328758, 0.04276624321937561, -0.021322496235370636, 0.03125888109207153, 0.009331222623586655, 0.011448098346590996, 0.005802067928016186, -0.022117163985967636, -0.026109816506505013, -0.033290497958660126, -0.06841887533664703, 0.043304190039634705, -0.004584555514156818, -0.06941505521535873, -0.04361307993531227, 0.008635374717414379, -0.02050446718931198, -0.017148176208138466, 0.010068880394101143, -0.006050547119230032, 0.01391795463860035, -0.009685717523097992, -0.0061575681902468204, -0.02884802035987377, 0.015322638675570488, -0.0023216709960252047, -0.05568333715200424, -0.018022587522864342, -0.028988400474190712, -0.029117899015545845, 0.015821369364857674, -0.01876569539308548, -0.05489933118224144, -0.018797090277075768, 0.01047411561012268, 0.03921492025256157, -0.07257512211799622, 0.0547311045229435, 0.04065462574362755, -0.010043064132332802, -0.0224238820374012, 0.010358314961194992, 0.046189501881599426, 0.007618126459419727, 0.012337964959442616, 0.07809804379940033, -0.013079089112579823, 0.04755567014217377, 0.011660940945148468, 0.0544159859418869, -0.026842130348086357, -0.06618349254131317, 0.007330947555601597, 0.04750610888004303, -0.0012783089186996222, -0.0010865600779652596, -0.0203984584659338, -0.05272068828344345, -0.0552314929664135, 0.026627352461218834, 0.03993482142686844, 0.019496716558933258, 0.014857062138617039, -0.048151303082704544, 0.04232800751924515, -0.024362610653042793, 0.01984422467648983, 0.01998251862823963, -0.042825646698474884, -0.032241325825452805, -0.011871125549077988, 0.028735032305121422, 0.027058156207203865, 0.039001382887363434, 0.043020859360694885, -0.01625731959939003, 0.01925223506987095, 0.11956531554460526, 0.025058066472411156, 0.009961554780602455, -0.005943996366113424, 0.02230815775692463, 0.05182410776615143, 0.03275425732135773, 0.03165603429079056, 0.059140805155038834, 0.002502245595678687, -0.015790384262800217, -0.007005083840340376, 0.06371226161718369, -0.01335835363715887, -0.00795616116374731, -0.022543203085660934, -0.07387983053922653, 0.0441976860165596, -0.039822157472372055, -0.007007894106209278, 0.04067590460181236, 0.07289287447929382, 0.028819508850574493, 0.027125651016831398, 0.00775221548974514, -0.07950051873922348, 0.051851820200681686, 0.006756443530321121, -0.0184455756098032, -0.004826908465474844, -0.009527808986604214, 0.052017759531736374, 0.047330811619758606, 0.004253013990819454, 0.015775663778185844, -0.08362821489572525, -0.05716322734951973, -0.013989664614200592, -0.016038039699196815, 0.06722711026668549, -0.02285989746451378, 0.02970889024436474, 0.0319005586206913, -0.0062222606502473354, 0.020090391859412193, 0.002084441250190139, -0.0025184266269207, 0.03964785858988762, -0.04842058941721916, -0.04725218564271927, 0.05238007754087448, 0.013856254518032074, -0.06046316772699356, -0.04803988337516785, 0.029131852090358734, -0.017965449020266533, -0.0020645142067223787, 0.02142472378909588, -0.04415328800678253, 0.049126144498586655, 0.020826736465096474, 0.029331186786293983, -0.01652178168296814, 0.027546793222427368, -0.02566666714847088, 0.06963616609573364, 0.033622123301029205, -0.04818224161863327, 0.008059059269726276, -0.00413247337564826, 0.10875102132558823, 0.057296305894851685, -0.013941681943833828, -0.044109318405389786, 0.03938952460885048, 0.0077561805956065655, -0.007314414717257023, 0.03373222053050995, -0.04459648206830025, 0.0036285140085965395, -0.02306828461587429, -0.010893654078245163, 0.0034125049132853746, -0.01067301630973816, -0.04450640827417374, 0.008242353796958923, 0.054125525057315826, -0.03343697637319565, 0.06500492244958878, 0.037867624312639236, -0.013370652683079243, -0.0024237206671386957, -0.04784300550818443, -0.021868042647838593, 0.053132928907871246, 0.0025036013685166836, -0.012928487733006477, 0.059856727719306946, -0.034492358565330505, -0.012771880254149437, -0.02956598624587059, -0.018415480852127075, 0.027686139568686485, 0.05815538763999939, 0.05329525098204613, -0.03795631229877472, 0.036248885095119476, -0.042068179696798325, 0.01609538123011589, -0.018123922869563103, -0.055339667946100235, -0.054118577390909195, -0.016128472983837128, 0.04100589454174042, 0.012369050644338131, 0.030252426862716675, -0.018762433901429176, 0.03607090562582016, -0.0161428302526474, -0.00760111166164279, -0.011118300259113312, 0.019196905195713043, -0.0011648109648376703, -0.01397814229130745, -0.03848237916827202, -0.009944730438292027, 0.057866331189870834, -0.05049112066626549, -0.05429478734731674, -0.03234073519706726, -0.059243377298116684, 0.08114150166511536, -0.05229102075099945, -0.021780967712402344, 0.006251929327845573, 0.04710054397583008, 0.0817594975233078, -0.017407316714525223, -0.01284873578697443, 0.08345310389995575, 0.01888979971408844, -0.0026661516167223454, 0.02475617453455925, 0.0013551326701417565, 0.029643122106790543, -0.01528310589492321, 0.036281175911426544, 0.034662242978811264, -0.025587258860468864, -0.006605774629861116, -0.043353185057640076, 0.004160004667937756, -0.011684977449476719, -0.25303125381469727, 0.033975668251514435, -0.05498155206441879, -0.056073252111673355, 0.013912863098084927, -0.04547370225191116, -0.00026892696041613817, -0.03628784045577049, -0.010269774124026299, 0.008465368300676346, 0.01676022820174694, -0.03331384062767029, -0.0299963541328907, 0.04207292199134827, 0.018247151747345924, 0.02388603799045086, -0.027368364855647087, -0.0719892755150795, 0.02412262372672558, 0.04579875245690346, 0.02672624960541725, -0.06107264384627342, -0.02840431034564972, 0.014512612484395504, 0.025966063141822815, 0.027056192979216576, -0.07793685048818588, 0.014459997415542603, -0.05921824276447296, -0.019351007416844368, -0.03069777972996235, -0.01298378687351942, 0.008184476755559444, 0.020449543371796608, -0.03427812084555626, -0.003391761565580964, 0.05515598878264427, -0.006528432946652174, 0.000970365887042135, 0.012299084104597569, -0.051179591566324234, -0.027481600642204285, -0.021676400676369667, -0.0073379455134272575, 0.067935511469841, 0.009989816695451736, -0.050638336688280106, -0.019696827977895737, -0.017921414226293564, 0.061672136187553406, -0.017060458660125732, -0.019317133352160454, 0.006748341489583254, 0.000017274174751946703, -0.017564814537763596, -0.029184415936470032, -0.005306262522935867, -0.010662147775292397, -0.07810789346694946, 0.017302293330430984, -0.01357550360262394, -0.08067893981933594, 0.030521081760525703, -0.06257351487874985, -0.014292645268142223, -0.03095926158130169, -0.06666898727416992, -0.049593668431043625, 0.0414288304746151, 0.025471793487668037, 0.01570579595863819, 0.05180028825998306, -0.03928486257791519, -0.10485531389713287, -0.05709345266222954, -0.02785595878958702, 0.018411526456475258, 0.001845393213443458, -0.014603706076741219, 0.0348539836704731, -0.022741494700312614, -0.045897405594587326, -0.019513452425599098, 0.026380036026239395, 0.01946195214986801, 0.0030504243914037943, -0.013866128399968147, -0.026134870946407318, -0.04843369498848915, 0.01639445312321186, 0.06985781341791153, -0.027295054867863655, -0.0035308210644870996, -0.0003044157929252833, 0.006122575141489506, 0.04787431284785271, -0.0015118058072403073, 0.007907696068286896, 0.017633585259318352, 0.02731936052441597, 0.06759610027074814, -0.028040241450071335, 0.012257627211511135, -0.00963705126196146, -0.03365045040845871, -0.005968078970909119, -0.03799299895763397, 0.01562844216823578, 0.02808118425309658, 0.019846443086862564, -0.023104973137378693, -0.013907653279602528, 0.025310825556516647, -0.03806610777974129, -0.005445270333439112, -0.03983619436621666, 0.023868465796113014, 0.022930247709155083, 0.056875575333833694, -0.03211952745914459, -0.08536457270383835, 0.03003636561334133, 0.04828811436891556, -0.01807469315826893, -0.07241031527519226, -0.04197516292333603, -0.026385432109236717, -0.00907366443425417, -0.0013726074248552322, 0.0454980731010437, -0.01877290941774845, 0.013234818354249, 0.02917616441845894, -0.02947845868766308, 0.05664148926734924, -0.029026959091424942, -0.016656236723065376, -0.04399601370096207, -0.008709192276000977, 0.004324121866375208, -0.022781606763601303, -0.011360477656126022, 0.000500133668538183, 0.03977787494659424, 0.003884231671690941, 0.026034556329250336, 0.0031394162215292454, 0.02127908542752266, 0.00010977654164889827, 0.017126575112342834, -0.04591378569602966, 0.008103618398308754, -0.0052085211500525475, -0.035122014582157135, -0.008908464573323727, -0.0021643766667693853, 0.05812115594744682, -0.03605610504746437, -0.023547854274511337, -0.04516726732254028, 0.030693072825670242, -0.05812276527285576, 0.021883659064769745, -0.013597357086837292, -0.0065355924889445305, 0.050245366990566254, -0.031583383679389954, 0.02641577646136284, -0.04220270365476608, 0.01117364875972271, 0.03074423223733902, 0.0003868206113111228, -0.03173161670565605, -0.0030250234995037317, -0.006585258059203625, -0.000585869827773422, 0.017846060916781425, 0.047905027866363525, 0.002130902372300625, 0.020847303792834282, -0.01631750538945198, -0.006000834051519632, 0.023197883740067482, 0.005910738371312618, 0.04848073795437813, 0.048380084335803986, -0.020023688673973083, 0.005610071588307619, -0.050703905522823334, -0.006761220749467611, -0.009616703726351261, -0.005456252489238977, -0.03684006631374359, -0.00019371201051399112, -0.031283605843782425, -0.04382344335317612, 0.047604698687791824, -0.0006974397110752761, -0.015048093162477016, 0.0025316348765045404, 0.019554156810045242, -0.007807843387126923, -0.03036201000213623, 0.048250216990709305, 0.04614304006099701, -0.047959838062524796, -0.021808579564094543, 0.0063002826645970345, -0.01927930675446987, -0.02084526978433132, 0.04112253710627556, -0.06473015993833542, -0.033920206129550934, -0.017002396285533905, 0.014647632837295532, -0.001930510625243187, -0.019432179629802704, -0.015868443995714188, -0.020487505942583084, 0.007455118466168642, 0.03332420438528061, 0.011153227649629116, 0.02550612762570381, -0.026223188266158104, -0.008125638589262962, 0.05906522646546364, -0.0329936183989048, -0.027806447818875313, 0.01576710306107998, -0.004383209627121687, 0.030414873734116554, -0.017261307686567307, 0.030392179265618324, 0.02022179588675499, 0.015833666548132896, 0.005130453035235405, -0.07806440442800522, 0.011485674418509007, -0.01435101218521595, 0.05751466378569603, -0.013275559060275555, 0.016930975019931793, -0.02791525050997734, -0.004649512469768524, -0.003930589184165001, -0.010347149334847927, 0.021315278485417366, -0.02075013890862465, 0.006370512302964926, 0.022398492321372032, -0.013314048759639263, 0.03889484331011772, -0.0019911674316972494, -0.034579429775476456, 0.05487858131527901, -0.013184075243771076, -0.03503192588686943, -0.004374190233647823, -0.07077966630458832, 0.02403753437101841, -0.0266535896807909, 0.0013774733524769545, -0.06920839101076126, 0.07220641523599625, 0.05647815018892288, 0.040729280561208725, 0.023005735129117966, -0.013089630752801895, 0.046009376645088196, -0.020363975316286087, -0.01994885690510273, -0.07716569304466248, 0.0006591002456843853, 0.043288759887218475, 0.013050971552729607, 0.005741240922361612, -0.014071422629058361, -0.015482028014957905, -0.0036375366616994143, -0.06117264926433563, -0.031330496072769165, 0.046524062752723694, -0.02105645276606083, 0.027017727494239807, 0.00846728403121233, -0.03628163784742355, -0.017381839454174042, 0.05161536857485771, -0.025827473029494286, -0.021316586062312126, -0.011302490718662739, 0.04161607846617699, -0.032519951462745667, 0.03681621327996254, -0.012716569006443024, -0.016026915982365608, 0.07099910080432892, 0.015017365105450153, 0.032008517533540726, 0.07718656957149506, -0.022709792479872704, 0.029510313645005226, 0.01899837888777256, -0.004699268378317356, -0.027157412841916084, 0.07258408516645432, -0.029310127720236778, -0.04645804688334465, 0.03128760680556297, 0.00912504456937313, -0.007921921089291573, -0.05674407631158829, 0.06168099120259285, 0.002827240852639079, -0.06986446678638458, -0.024545753374695778, 0.04571400210261345, -0.0343177504837513, -0.013427233323454857, -0.04828987270593643, 0.03689475730061531, -0.028957679867744446, 0.06341244280338287, -0.03538868576288223, 0.003500857390463352, 0.06182193383574486, 0.006924377288669348, -0.006053581368178129, -0.01561405137181282, 0.0814870297908783, 0.0632980614900589, 0.04395192489027977, 0.020651381462812424, 0.06852439045906067, -0.015408024191856384, -0.022376567125320435, -0.017401201650500298, -0.02614821493625641, -0.01099440362304449, 0.01595580205321312, 0.030684974044561386, 0.08172857761383057, -0.03020530752837658, 0.06571939587593079, -0.01427348330616951, -0.012805340811610222, 0.0028730351477861404, -0.032735057175159454, 0.0212072916328907, 0.07309499382972717, 0.009446337819099426, 0.04477318376302719, -0.012715501710772514, -0.023504413664340973, 0.021037990227341652, 0.02174357697367668, -0.00422969926148653, 0.038554269820451736, -0.0005083752330392599, 0.006773641332983971, 0.011038563214242458, 0.03231301158666611, 0.09553081542253494, -0.0340045802295208, -0.032077595591545105, -0.015546362847089767, 0.004785135388374329, -0.009486810304224491, -0.012227344326674938, -0.018567508086562157, -0.041611045598983765, -0.011502807028591633, -0.05530078336596489, -0.037047769874334335, -0.04355795681476593, -0.02682448737323284, -0.004775772802531719, -0.010687977075576782, -0.01572541519999504, -0.00007344347250182182, -0.004267220851033926, -0.03484304994344711, -0.03537292033433914, -0.04250373691320419, -0.0570155531167984, -0.05313188210129738, 0.01379215344786644, -0.005929230246692896, 0.02173883467912674, 0.0003267381398472935, 0.004255083855241537, -0.019111424684524536, -0.0010200382675975561, 0.05282830074429512, -0.013157573528587818, 0.004687321837991476, 0.007762841880321503, 0.024505209177732468, 0.013731843791902065, 0.02211199887096882, 0.05412520468235016, -0.005752286873757839, 0.020139139145612717, -0.01795084960758686, 0.024256976321339607, 0.052801113575696945, 0.009812064468860626, 0.014681984670460224, -0.0724521353840828, -0.02261674962937832, -0.002574245212599635, -0.014115867204964161, -0.07849695533514023, 0.013776127249002457, 0.05438359081745148, -0.0026597287505865097, 0.0345168374478817, -0.0056605287827551365, -0.024512963369488716, -0.0174031350761652, 0.02262011170387268, 0.021700333803892136, -0.02099236100912094, 0.037880316376686096, -0.02925359643995762, 0.06380811333656311, 0.026296915486454964, -0.025895753875374794, -0.014186931774020195, -0.012096450664103031, 0.01894049346446991, -0.003636700101196766, -0.038584936410188675, -0.016780268400907516, -0.026773355901241302, -0.08259523659944534, -0.028645029291510582, 0.007252758368849754, -0.00009846511238720268, -0.011191287077963352, -0.01617523282766342, 0.022087503224611282, -0.0373087041079998, 0.040660958737134933, -0.022031914442777634, 0.0451480858027935, -0.04050438106060028, -0.04633815586566925, -0.0368383526802063, 0.0038998336531221867, -0.02304275892674923, 0.010410181246697903, -0.0005076885572634637, -0.06079446151852608, -0.02050168812274933, -0.02951270528137684, 0.014021182432770729, 0.019701944664120674, 0.016643287613987923, 0.029090749099850655 ]
[ -0.03879576548933983, -0.035179782658815384, -0.04596604034304619, -0.0022626868449151516, 0.02657492831349373, -0.016975626349449158, -0.01750165969133377, 0.0032495867926627398, 0.03106408566236496, 0.01317585539072752, 0.020182909443974495, -0.04975103959441185, 0.045961182564496994, 0.007131650112569332, 0.04991569742560387, -0.004259228706359863, -0.04266829043626785, -0.013189834542572498, -0.05620095878839493, 0.05824770778417587, -0.030825259163975716, -0.03476005047559738, -0.053235724568367004, -0.025150394067168236, 0.022331351414322853, 0.052569519728422165, 0.046346716582775116, -0.03591979295015335, -0.009593452326953411, -0.22547033429145813, 0.006500091403722763, 0.03715711086988449, 0.04489096999168396, -0.008615925908088684, 0.012081833556294441, -0.005857299547642469, 0.05324871838092804, -0.012157357297837734, -0.011781133711338043, 0.032533854246139526, 0.04262185096740723, 0.0010830933460965753, -0.06176414340734482, -0.008857355453073978, 0.049175042659044266, 0.02207384817302227, -0.025654420256614685, -0.009666865691542625, -0.008020129054784775, -0.01306658610701561, -0.031618110835552216, -0.042879391461610794, -0.025713853538036346, 0.017554491758346558, 0.019727298989892006, 0.07215329259634018, 0.010210038162767887, 0.049692075699567795, 0.021304314956068993, 0.04620913416147232, 0.002615442732349038, 0.017219018191099167, -0.11782605201005936, 0.07449579238891602, -0.0022280060220509768, 0.021251071244478226, -0.059368327260017395, 0.000930429610889405, -0.029328254982829094, 0.08737502247095108, 0.04092071205377579, 0.0009424142772331834, -0.02734925039112568, 0.052723679691553116, 0.0011052701156586409, 0.034453365951776505, -0.01798505336046219, 0.00492270989343524, 0.048671502619981766, -0.027036700397729874, -0.054006658494472504, 0.012139709666371346, -0.020544594153761864, 0.00021544824994634837, -0.02221245877444744, 0.04430462047457695, -0.019585667178034782, 0.0051651159301400185, -0.005438218824565411, 0.028395414352416992, 0.013536722399294376, 0.012487227097153664, 0.04476701095700264, 0.028147496283054352, -0.08793117851018906, -0.02943739853799343, -0.01760793849825859, -0.013744077645242214, 0.0031994066666811705, 0.37119123339653015, -0.007267463020980358, 0.015457550063729286, 0.05555598810315132, 0.04968680441379547, -0.02988620474934578, -0.021831095218658447, 0.00394044304266572, -0.10262425988912582, 0.03242414817214012, 0.010268786922097206, -0.025751663371920586, -0.06678314507007599, 0.036917511373758316, -0.11239936202764511, -0.009681052528321743, 0.022993965074419975, 0.060106027871370316, 0.04665514454245567, -0.043130408972501755, -0.026885347440838814, -0.0073558734729886055, 0.015525641851127148, 0.007535466458648443, 0.03771171346306801, 0.023395884782075882, 0.048843979835510254, 0.006064984481781721, 0.04394328221678734, 0.031766295433044434, 0.037058472633361816, 0.060501426458358765, 0.024562019854784012, -0.035110440105199814, 0.0365876704454422, -0.02424645982682705, -0.010281533002853394, 0.03622796759009361, -0.026670705527067184, -0.02347317896783352, 0.031016647815704346, -0.02348572015762329, -0.019595835357904434, 0.036093469709157944, -0.0006112055853009224, -0.01259604748338461, 0.14265432953834534, 0.004636500030755997, -0.02506721392273903, -0.06690461933612823, -0.036693207919597626, -0.022005068138241768, 0.02876938134431839, 0.019270746037364006, -0.05001954361796379, -0.040513988584280014, 0.03864316642284393, 0.06800185143947601, -0.010385961271822453, -0.07401511073112488, 0.024003339931368828, -0.012859209440648556, -0.03914128988981247, -0.045335810631513596, 0.10834288597106934, 0.05232612416148186, -0.13084720075130463, -0.01383773609995842, 0.03138408809900284, -0.01181798055768013, -0.0903700515627861, 0.01887836679816246, 0.034867580980062485, -0.04334058240056038, -0.00778353214263916, 0.0692172646522522, -0.00010365818161517382, -0.03721335157752037, -0.03261135146021843, 0.049665529280900955, 0.004233389161527157, -0.013523678295314312, 0.0031636443454772234, -0.042020585387945175, -0.004672938957810402, -0.07200975716114044, -0.061634525656700134, -0.09262154996395111, 0.023948080837726593, -0.05095403641462326, -0.05581270158290863, -0.01902354694902897, 0.024956000968813896, -0.03563956171274185, 0.07763735204935074, -0.06874237209558487, -0.05803023651242256, 0.02237747609615326, -0.01666015014052391, -0.0056875539012253284, -0.03980245068669319, 0.025405624881386757, 0.027634765952825546, -0.01701432652771473, 0.018238360062241554, -0.06583317369222641, -0.011753604747354984, 0.06983745843172073, -0.03367365524172783, 0.05639924481511116, 0.019890278577804565, -0.020933954045176506, 0.027780262753367424, -0.03434634581208229, 0.02884390577673912, -0.0011935372604057193, -0.017597276717424393, -0.018996039405465126, -0.010799269191920757, 0.03968111053109169, 0.0513429120182991, -0.02336404100060463, -0.03359311446547508, -0.009066503494977951, -0.3450086712837219, -0.050056569278240204, -0.015444540418684483, -0.0022166837006807327, -0.014563847333192825, -0.0013963304227218032, 0.00873714778572321, -0.004824602045118809, -0.013126715086400509, 0.023190263658761978, 0.08978787809610367, 0.02140948362648487, -0.0023608000483363867, -0.06399259716272354, -0.01552046462893486, 0.03676161915063858, -0.006912143900990486, -0.013784386217594147, -0.011431841179728508, 0.02815939113497734, -0.013515207916498184, -0.0343783013522625, 0.010377146303653717, -0.04860350862145424, 0.00003224899774068035, 0.012501421384513378, 0.12371848523616791, -0.011605621315538883, -0.004547358490526676, -0.03403237834572792, 0.045636553317308426, 0.011973537504673004, -0.03740880638360977, -0.02381334826350212, 0.00530721852555871, -0.02530953474342823, 0.006564841605722904, 0.029104188084602356, -0.028688831254839897, -0.031099436804652214, -0.05424335598945618, 0.0031397577840834856, -0.050052937120199203, -0.05080651864409447, -0.03607059642672539, 0.0008610038203187287, -0.04275185614824295, 0.004132662434130907, 0.03971828147768974, 0.07485580444335938, 0.008286873809993267, 0.0373205840587616, 0.04454168304800987, 0.007362841162830591, -0.0023838321212679148, -0.023053521290421486, -0.07780297100543976, -0.03350960463285446, 0.015692776069045067, 0.0076653375290334225, 0.00853662472218275, 0.027314990758895874, 0.020400531589984894, -0.04988052323460579, 0.04256552457809448, -0.012346554547548294, -0.024406125769019127, -0.0054276734590530396, 0.012216453440487385, -0.05078568682074547, -0.027705585584044456, 0.0748477652668953, 0.04226795583963394, 0.0059193517081439495, 0.04522334411740303, 0.035246748477220535, -0.026196368038654327, 0.022775575518608093, 0.03504667803645134, 0.021277302876114845, 0.027651101350784302, -0.05986378714442253, 0.061061497777700424, -0.013685407117009163, -0.011216366663575172, 0.06924105435609818, 0.022098707035183907, -0.021337518468499184, 0.05191474407911301, 0.008664536289870739, -0.0010225535370409489, 0.011752454563975334, -0.015943076461553574, -0.03420637547969818, 0.055100250989198685, -0.040019888430833817, -0.28488418459892273, 0.03829756751656532, 0.011217181570827961, 0.050613608211278915, -0.006260715890675783, 0.004806398414075375, 0.031443532556295395, -0.009859820827841759, 0.0041648996993899345, -0.026282865554094315, 0.044353339821100235, 0.07596216350793839, 0.009473534300923347, -0.011011241935193539, -0.005867727100849152, 0.0030559233855456114, 0.037372950464487076, -0.018293358385562897, 0.01763756573200226, 0.014808365143835545, 0.05815177410840988, -0.015243376605212688, 0.21040302515029907, 0.040849633514881134, 0.017492355778813362, 0.0485474094748497, -0.0480768084526062, 0.0015509114600718021, 0.04620116949081421, 0.01090717501938343, 0.0008865684503689408, 0.037566233426332474, 0.031471557915210724, 0.03583880886435509, 0.028958695009350777, -0.013035242445766926, -0.011965550482273102, 0.03308491408824921, 0.011935674585402012, -0.04524150863289833, -0.016052013263106346, -0.0091315982863307, -0.028495078906416893, 0.03995582088828087, 0.0805526003241539, -0.03543197736144066, -0.02171390689909458, -0.006000370718538761, -0.034471165388822556, 0.02082052081823349, -0.027055643498897552, -0.0493692010641098, -0.03315931186079979, -0.023891346529126167, -0.00839529000222683, 0.04226019233465195, 0.017365068197250366, -0.01617816649377346, -0.004217484034597874, 0.018533838912844658, -0.01441127248108387, -0.06196294352412224, 0.09615861624479294, -0.013371104374527931, 0.006408131215721369 ]
[ 0.018794948235154152, 0.07134602218866348, -0.017667056992650032, 0.02870406024158001, -0.027749300003051758, -0.024876046925783157, -0.0021025948226451874, 0.011165170930325985, -0.029705289751291275, 0.004283163230866194, -0.03206650912761688, 0.030183637514710426, 0.06695333123207092, -0.00924323033541441, -0.011634726077318192, 0.026810066774487495, -0.046303048729896545, 0.04023413360118866, 0.04175041243433952, -0.04951855540275574, -0.03841288387775421, 0.03008747100830078, 0.043492306023836136, -0.04599369317293167, -0.028524577617645264, 0.016991430893540382, -0.009513783268630505, 0.01817104034125805, 0.006286414340138435, -0.09434827417135239, -0.04399031400680542, -0.02311434969305992, -0.016340594738721848, 0.014853018335998058, -0.06353759765625, -0.0025349583011120558, 0.02316123992204666, 0.023060161620378494, 0.004078648518770933, 0.037857554852962494, 0.04452443867921829, 0.0178254172205925, -0.048628807067871094, 0.007847942411899567, 0.004065916873514652, 0.007292958442121744, -0.03774511069059372, -0.006132584530860186, -0.0016349576180800796, -0.008067776449024677, -0.05606471374630928, -0.008373003453016281, -0.01279678288847208, 0.007803034503012896, 0.02899468131363392, 0.015279503539204597, -0.07984477281570435, -0.012414218857884407, 0.012683517299592495, -0.00706526031717658, 0.02876841090619564, -0.0013322553131729364, -0.06391406804323196, -0.02508215792477131, -0.003472193842753768, -0.02278752252459526, 0.007100220769643784, 0.05224873498082161, 0.024040669202804565, 0.01115298643708229, 0.00726351048797369, 0.030685704201459885, -0.09687848389148712, -0.01860751397907734, -0.013361772522330284, 0.054100509732961655, 0.04454927146434784, -0.039140909910202026, -0.027044441550970078, -0.02164340950548649, -0.013044199906289577, 0.028749382123351097, -0.030168471857905388, -0.0069672721438109875, -0.03489476069808006, -0.008250555954873562, -0.022266756743192673, -0.005788453854620457, 0.0029864301905035973, 0.0005279198521748185, -0.046181898564100266, 0.01790226437151432, -0.030235759913921356, -0.014262910932302475, -0.0850202739238739, 0.012393679469823837, 0.047267574816942215, 0.006758845876902342, 0.013740258291363716, 0.8027827143669128, 0.019479241222143173, -0.003982441499829292, -0.006511087529361248, -0.005289227701723576, 0.02195030078291893, 0.03671475499868393, 0.015554230660200119, 0.0025572823360562325, -0.03879903629422188, -0.02710915543138981, -0.024898380041122437, 0.004982957150787115, -0.0034125398378819227, -0.012650576420128345, -0.002885102992877364, 0.02078491821885109, 0.018587162718176842, 0.03226012736558914, 0.021250521764159203, 0.007369150873273611, 0.0046357098035514355, 0.0001586123398737982, 0.0036888306494802237, 0.008083225227892399, -0.008557172492146492, -0.161786749958992, -0.044620830565690994, -7.240005623248783e-33, 0.04066704586148262, -0.011199474334716797, 0.07722117751836777, -0.003680847119539976, 0.016404015943408012, 0.019176436588168144, 0.018081406131386757, -0.017930904403328896, -0.02322610653936863, -0.022769926115870476, -0.017132755368947983, 0.001962854992598295, 0.0008938086102716625, -0.0034154322929680347, 0.002097336109727621, -0.02666480652987957, 0.022319354116916656, 0.0366014689207077, -0.009859709069132805, -0.015059935860335827, -0.002684869570657611, 0.01911996118724346, -0.025612493976950645, 0.04848247393965721, 0.0006213901797309518, 0.030779823660850525, -0.006851073354482651, -0.009980106726288795, -0.0285147987306118, -0.06489153951406479, -0.08081428706645966, 0.06248936802148819, 0.0009578850003890693, -0.030367380008101463, 0.016157248988747597, -0.05319065973162651, -0.014576109126210213, -0.008581548929214478, -0.02000955492258072, -0.09290112555027008, -0.038968417793512344, -0.0025981543585658073, 0.03230910375714302, -0.028973272070288658, -0.039288684725761414, -0.014867547899484634, -0.0312945619225502, -0.00848110020160675, 0.026007775217294693, 0.042240362614393234, 0.033563680946826935, 0.010812997817993164, -0.008504743687808514, 0.028103057295084, -0.03593854978680611, -0.01116979867219925, 0.022204244509339333, 0.04771915823221207, 0.000010820030183822382, 0.02822280302643776, 0.007408411707729101, -0.01922914944589138, -0.02402017079293728, 0.048919208347797394, 0.008167792111635208, 0.042705751955509186, -0.011012501083314419, 0.025358710438013077, 0.008675184100866318, 0.019091418012976646, -0.050551459193229675, 0.07472757995128632, -0.019807936623692513, -0.04100862145423889, 0.039950039237737656, -0.03865937143564224, -0.024973129853606224, -0.047449976205825806, 0.022837044671177864, 0.027997588738799095, -0.011692226864397526, -0.01638154685497284, 0.006551210768520832, 0.003018622752279043, -0.0014651062665507197, 0.009062124416232109, 0.0287211574614048, 0.05616455152630806, 0.017406679689884186, 0.012367485091090202, 0.045829951763153076, 0.030825218185782433, -0.009287946857511997, -0.012117776088416576, -0.017080290243029594, 6.831186320448053e-33, -0.016551954671740532, 0.03707199916243553, -0.0012210940476506948, -0.0022895033471286297, 0.020000731572508812, 0.004394124262034893, 0.03633726388216019, 0.004813353531062603, -0.02624380588531494, 0.026864411309361458, -0.0036602977197617292, -0.015085929073393345, 0.034776099026203156, 0.01792168989777565, 0.059065476059913635, -0.0036047687754034996, -0.01159810833632946, -0.018522582948207855, 0.013181398622691631, 0.028003903105854988, -0.008320063352584839, 0.008996715769171715, -0.002890531439334154, 0.027113595977425575, 0.018856273964047432, 0.0033031355123966932, 0.0029435972683131695, 0.007077576592564583, -0.011785722337663174, -0.008190656080842018, 0.014273172244429588, -0.049050018191337585, 0.0010786809725686908, -0.010190892964601517, 0.04976920038461685, 0.0068421149626374245, 0.010634860955178738, 0.0030986990313977003, 0.016090603545308113, -0.022264845669269562, 0.012750850059092045, -0.011411980725824833, -0.03149726614356041, 0.06825336813926697, 0.04576069116592407, 0.00024023899459280074, 0.021271884441375732, 0.02152380533516407, 0.002002785447984934, 0.026714811101555824, 0.01438244991004467, 0.03037736937403679, -0.017534462735056877, 0.02022590860724449, 0.02252962440252304, -0.05423927679657936, -0.007172430399805307, 0.04112669825553894, 0.021353650838136673, -0.013583840802311897, -0.029212279245257378, -0.03511879965662956, -0.046601198613643646, 0.05070075765252113, 0.0014612762024626136, -0.008744197897613049, -0.044055722653865814, -0.010857323184609413, -0.02290421910583973, 0.016948547214269638, -0.0010357152204960585, 0.01705304905772209, -0.01923319511115551, -0.006732631474733353, 0.01429473701864481, -0.04754064977169037, -0.021336592733860016, -0.011450093239545822, -0.033907148987054825, 0.06509211659431458, 0.0155705027282238, -0.015303443185985088, 0.024433769285678864, 0.01661933772265911, -0.006313655991107225, 0.0014317516470327973, 0.003197821555659175, 0.021182671189308167, -0.01541090663522482, 0.014087939634919167, 0.02135835774242878, -0.04117901250720024, -0.03849555179476738, 0.047250036150217056, -0.029103530570864677, -1.2457288534051258e-8, -0.039502691477537155, 0.023045575246214867, -0.01869545876979828, -0.00834034476429224, 0.028877830132842064, 0.03089935891330242, -0.000006130535894044442, -0.00681008817628026, -0.0031274049542844296, 0.010509161278605461, 0.015661941841244698, -0.029836568981409073, 0.029880763962864876, 0.01640906184911728, 0.008671599440276623, -0.049020446836948395, 0.01356610469520092, -0.021874230355024338, 0.03946562483906746, 0.006680784281343222, -0.03060847334563732, 0.020566370338201523, -0.047446109354496, 0.013739491812884808, 0.0007339513394981623, -0.029797125607728958, 0.04139798507094383, -0.02941317670047283, 0.011173959821462631, -0.031858619302511215, -0.006042417138814926, -0.021934375166893005, -0.01004837453365326, 0.054384615272283554, -0.021197885274887085, -0.02409256063401699, 0.030388249084353447, 0.04019704461097717, 0.00966786127537489, 0.03076949156820774, -0.028541266918182373, 0.00992799922823906, -0.039066385477781296, -0.020849749445915222, -0.03419705480337143, -0.00547883240506053, -0.03351346775889397, 0.0011523757129907608, 0.06171180680394173, -0.03953012451529503, 0.0018196799792349339, -0.01368014607578516, 0.036435239017009735, -0.046093471348285675, 0.04894797503948212, -0.011477825231850147, 0.008419902063906193, -0.0033849733881652355, -0.0021448456682264805, -0.007714835926890373, 0.01358745526522398, -0.0006268770666792989, -0.02836119756102562, -0.02046138606965542 ]
neo4j-foreach-call-subquery
https://markhneedham.com/blog/2020/10/29/neo4j-foreach-call-subquery
false
2020-08-07 00:21:00
pipenv: ImportError: No module named 'virtualenv.seed.via_app_data'
[ "pipenv", "python" ]
[ "Python" ]
I've been trying to install https://pipenv-fork.readthedocs.io/en/latest/[pipenv^] on a new computer and ran into a frustrating issue. After installing pipenv using pip, I tried to run the command below: [source, bash] ---- $ /home/markhneedham/.local/bin/pipenv shell Creating a virtualenv for this project… Pipfile: /tmp/Pipfile Using /usr/bin/python3.8 (3.8.2) to create virtualenv… ⠙ Creating virtual environment...ModuleNotFoundError: No module named 'virtualenv.seed.via_app_data' ✘ Failed creating virtual environment [pipenv.exceptions.VirtualenvCreationException]: Failed to create virtual environment. ---- Hmmm, for some reason it's unable to find one of the virtualenv modules. I found a https://github.com/pypa/virtualenv/issues/1875[GitHub issue on the virtualenv^] repository, which suggested the following: > It's a conflict between two existing virtualenv installation. You might have installed latest version, however if in the same python you also have an old version installed this error will pop up. Maybe you have a user and system installation in parallel. I uninstalled pipenv: [source, bash] ---- $ pip3 uninstall pipenv Found existing installation: pipenv 2020.6.2 Uninstalling pipenv-2020.6.2: Would remove: /home/markhneedham/.local/bin/pipenv /home/markhneedham/.local/bin/pipenv-resolver /home/markhneedham/.local/lib/python3.8/site-packages/pipenv-2020.6.2.dist-info/* /home/markhneedham/.local/lib/python3.8/site-packages/pipenv/* Proceed (y/n)? y Successfully uninstalled pipenv-2020.6.2 ---- And then thought I should check if there was anything left in the `~/.local/bin` directory: [source,bash] ---- $ ls -alh /home/markhneedham/.local/bin/ total 16K drwxrwxr-x 2 markhneedham markhneedham 4.0K Aug 7 11:27 . drwxr-xr-x 5 markhneedham markhneedham 4.0K Aug 7 11:19 .. -rwxrwxr-x 1 markhneedham markhneedham 238 Aug 7 11:19 virtualenv -rwxrwxr-x 1 markhneedham markhneedham 214 Aug 7 11:19 virtualenv-clone ---- virtualenv is still there! I thought it would have been removed when I uninstalled pipenv, but perhaps it was installed separately when I installed something else, I'm not sure. Anyway, let's get rid of virtualenv: [source,bash] ---- $ pip3 uninstall virtualenv Found existing installation: virtualenv 20.0.30 Uninstalling virtualenv-20.0.30: Would remove: /home/markhneedham/.local/bin/virtualenv /home/markhneedham/.local/lib/python3.8/site-packages/virtualenv-20.0.30.dist-info/* /home/markhneedham/.local/lib/python3.8/site-packages/virtualenv/* Proceed (y/n)? y Successfully uninstalled virtualenv-20.0.30 ---- And now we'll install pipenv again: [source,bash] ---- $ pip3 install pipenv Collecting pipenv Using cached pipenv-2020.6.2-py2.py3-none-any.whl (3.9 MB) Requirement already satisfied: setuptools>=36.2.1 in /usr/lib/python3/dist-packages (from pipenv) (45.2.0) Requirement already satisfied: pip>=18.0 in /usr/lib/python3/dist-packages (from pipenv) (20.0.2) Requirement already satisfied: virtualenv-clone>=0.2.5 in /home/markhneedham/.local/lib/python3.8/site-packages (from pipenv) (0.5.4) Requirement already satisfied: virtualenv in /usr/lib/python3/dist-packages (from pipenv) (20.0.17) Requirement already satisfied: certifi in /usr/lib/python3/dist-packages (from pipenv) (2019.11.28) Installing collected packages: pipenv WARNING: The scripts pipenv and pipenv-resolver are installed in '/home/markhneedham/.local/bin' which is not on PATH. Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. Successfully installed pipenv-2020.6.2 ---- And now let's try to create a virtual environment: [source, bash] ---- $ pipenv shell Creating a virtualenv for this project… Pipfile: /tmp/Pipfile Using /usr/bin/python3.8 (3.8.2) to create virtualenv… ⠹ Creating virtual environment...created virtual environment CPython3.8.2.final.0-64 in 161ms creator CPython3Posix(dest=/home/markhneedham/.local/share/virtualenvs/tmp-XVr6zr33, clear=False, global=False) seeder FromAppData(download=False, pkg_resources=latest, idna=latest, distlib=latest, contextlib2=latest, requests=latest, distro=latest, retrying=latest, certifi=latest, urllib3=latest, ipaddr=latest, webencodings=latest, pip=latest, wheel=latest, setuptools=latest, pep517=latest, colorama=latest, html5lib=latest, msgpack=latest, six=latest, packaging=latest, lockfile=latest, pyparsing=latest, progress=latest, chardet=latest, CacheControl=latest, appdirs=latest, pytoml=latest, via=copy, app_data_dir=/home/markhneedham/.local/share/virtualenv/seed-app-data/v1.0.1.debian) activators BashActivator,CShellActivator,FishActivator,PowerShellActivator,PythonActivator,XonshActivator ✔ Successfully created virtual environment! Virtualenv location: /home/markhneedham/.local/share/virtualenvs/tmp-XVr6zr33 Creating a Pipfile for this project… Launching subshell in virtual environment… . /home/markhneedham/.local/share/virtualenvs/tmp-XVr6zr33/bin/activate markhneedham@markhneedham-Precision-5550:/tmp$ . /home/markhneedham/.local/share/virtualenvs/tmp-XVr6zr33/bin/activate ---- Success!
Learn how to fix an error when using pipenv
null
[ 0.028879964724183083, -0.022196011617779732, -0.023129845038056374, 0.03672392666339874, 0.09600172191858292, 0.02622620388865471, 0.00990681815892458, 0.04602334648370743, -0.00405836058780551, -0.02177569270133972, -0.03189654275774956, 0.02978825569152832, -0.07237907499074936, 0.0508265420794487, -0.010633396916091442, 0.049091171473264694, 0.07934153079986572, -0.00312771531753242, 0.011113633401691914, 0.0359310582280159, 0.015300440602004528, 0.049940336495637894, 0.004552105907350779, 0.027992036193609238, -0.005650095641613007, -0.015589870512485504, 0.05148831754922867, -0.014495509676635265, -0.05067095905542374, -0.02235618233680725, 0.01587839052081108, 0.005019735544919968, 0.030105970799922943, -0.02167806774377823, 0.05780036374926567, -0.01394273154437542, -0.03671059384942055, 0.021174486726522446, 0.026497066020965576, 0.005529004614800215, -0.034348227083683014, 0.008420220576226711, -0.03552000969648361, -0.027527235448360443, -0.02698456309735775, 0.019244983792304993, 0.021388258785009384, 0.017339743673801422, -0.000247209332883358, -0.010764535516500473, -0.05672400817275047, 0.018272295594215393, 0.004200058523565531, -0.049321241676807404, 0.028880897909402847, 0.02108650468289852, 0.018496748059988022, -0.08866263926029205, 0.0340326763689518, -0.00752254156395793, -0.0017837989144027233, 0.0035529325250536203, -0.0012815323425456882, 0.037426553666591644, 0.008833153173327446, -0.04999812692403793, -0.0019006833899766207, 0.04271607846021652, -0.04757329076528549, -0.017281461507081985, 0.0013060016790404916, 0.0036145627964287996, -0.02862691693007946, -0.0285867340862751, 0.0075423019006848335, -0.03821222111582756, -0.0012052644742652774, 0.045515261590480804, 0.05415578931570053, 0.05473195016384125, -0.010330279357731342, 0.009058453142642975, 0.03132852539420128, 0.02973862551152706, 0.026423146948218346, -0.015080597251653671, -0.007584659848362207, 0.0008146220352500677, -0.07554769515991211, 0.039569638669490814, 0.03138670325279236, -0.055856309831142426, 0.016531528905034065, -0.007754303514957428, 0.007754722144454718, 0.005426562391221523, 0.01342578325420618, 0.021310726180672646, 0.03448836877942085, -0.008862379938364029, -0.04408535733819008, 0.019563786685466766, -0.027562173083424568, 0.021206501871347427, -0.04504794999957085, -0.006268590223044157, -0.0006190637941472232, -0.02462932839989662, -0.010781176388263702, -0.04647236689925194, -0.015439975075423717, 0.0436449870467186, 0.0021384223364293575, -0.001722336164675653, -0.07961133122444153, 0.08460914343595505, -0.017730185762047768, -0.06128528714179993, 0.000583083659876138, 0.00589299201965332, 0.02042667753994465, 0.024698182940483093, -0.028185619041323662, 0.06341634690761566, 0.0228567011654377, 0.0498141348361969, -0.02017413079738617, 0.04577293619513512, -0.013428352773189545, -0.07586190104484558, -0.010665821842849255, 0.060117121785879135, 0.004910904914140701, -0.006834372412413359, -0.010938032530248165, -0.004422886297106743, -0.0043735927902162075, -0.01566852256655693, 0.05603967607021332, 0.026490120217204094, -0.03741986304521561, 0.0018270026193931699, 0.02011541835963726, 0.02115660533308983, 0.025825215503573418, 0.06389393657445908, -0.00013950800348538905, -0.0360526517033577, -0.048818983137607574, 0.007123550865799189, 0.0057138740085065365, 0.0037985583767294884, 0.05764235928654671, -0.02815854363143444, 0.0030225857626646757, 0.06804680079221725, 0.06859792023897171, 0.03366651013493538, -0.04608394578099251, -0.003732383716851473, 0.0403524786233902, 0.04551728069782257, 0.028135573491454124, 0.07991257309913635, 0.020643947646021843, -0.033563099801540375, -0.019551776349544525, 0.0236901193857193, 0.021353604272007942, 0.004946847911924124, -0.05972469225525856, -0.10441215336322784, 0.058747924864292145, -0.045286837965250015, 0.032824449241161346, -0.004154637455940247, 0.07760642468929291, 0.05718918889760971, 0.03267979249358177, 0.027940580621361732, -0.08230167627334595, 0.06203801929950714, -0.0353236049413681, 0.0234328955411911, 0.01820594258606434, -0.005695016589015722, 0.07138147950172424, -0.020956657826900482, 0.0071441358886659145, 0.05337165668606758, -0.04615077003836632, -0.06716267019510269, -0.023667829111218452, 0.0036947450134903193, 0.043140511959791183, 0.01610763743519783, -0.050420451909303665, 0.04326344653964043, 0.05551204830408096, 0.01582510396838188, 0.0037474599666893482, 0.004800097551196814, 0.02155230939388275, -0.061274584382772446, -0.0773753821849823, 0.049651965498924255, 0.015432452782988548, -0.03390203043818474, -0.00444817403331399, 0.020196441560983658, -0.022337952628731728, -0.007029704749584198, 0.023541491478681564, -0.010473058559000492, 0.06435000151395798, 0.03154196962714195, 0.02156885154545307, -0.035896431654691696, 0.021332742646336555, -0.020393183454871178, -0.0037911718245595694, -0.025923792272806168, 0.012424193322658539, -0.05625121295452118, 0.004622506909072399, 0.08253654092550278, 0.06362929195165634, -0.013235792517662048, -0.04287068173289299, 0.02930487133562565, -0.011979634873569012, -0.022734997794032097, 0.009528134949505329, 0.003995099570602179, 0.015693996101617813, 0.006354787852615118, 0.010141165927052498, -0.012316681444644928, -0.00010730770736699924, -0.01658172532916069, -0.04364430531859398, 0.06786611676216125, -0.02705596201121807, 0.04199572652578354, 0.033239249140024185, -0.02262975089251995, -0.014398078434169292, -0.02073260024189949, -0.0728621557354927, 0.010535752400755882, 0.027463557198643684, -0.00047622830606997013, 0.05371066555380821, -0.035643819719552994, -0.03606737032532692, -0.028764188289642334, -0.04948124662041664, 0.019252128899097443, 0.014419474638998508, 0.03961704671382904, -0.06458994746208191, 0.06482138484716415, -0.013039950281381607, 0.03281974419951439, -0.027294503524899483, -0.0023779345210641623, -0.05705796554684639, -0.02388409897685051, 0.021375801414251328, 0.009520838968455791, 0.0035371617414057255, 0.004203103017061949, 0.0026125602889806032, -0.023066440597176552, 0.04996269568800926, -0.016248827800154686, 0.022770637646317482, 0.016457637771964073, 0.013829734176397324, -0.08069528639316559, 0.002362335566431284, 0.04041122645139694, -0.06852669268846512, -0.0054795220494270325, -0.006236093118786812, -0.04950231686234474, 0.01916014775633812, -0.07676226645708084, -0.03775971755385399, -0.037962254136800766, 0.01553520280867815, 0.031624797731637955, -0.013897295109927654, 0.006416087970137596, 0.05107593908905983, 0.016017111018300056, -0.005984652321785688, 0.03834831714630127, 0.021300211548805237, 0.06512431055307388, 0.014826386235654354, 0.019690269604325294, 0.022900303825736046, -0.011838720180094242, 0.0032468712888658047, -0.026941008865833282, 0.01232981588691473, -0.07423709332942963, -0.24043022096157074, 0.01594575121998787, 0.0003272058384027332, -0.04874226450920105, 0.053947336971759796, -0.04407702013850212, -0.000640727870631963, -0.037537284195423126, -0.015608315356075764, 0.010352023877203465, -0.024067740887403488, -0.035805393010377884, 0.0317542664706707, 0.020474568009376526, -0.024723034352064133, -0.0004785575729329139, 0.021128054708242416, -0.09814343601465225, 0.018651846796274185, 0.008780230768024921, -0.009843429550528526, -0.035019539296627045, 0.012417800724506378, 0.02231510542333126, 0.014055399224162102, 0.03499497473239899, -0.04382826015353203, 0.08230839669704437, -0.07062353938817978, -0.030640840530395508, -0.027423983439803123, -0.02390941232442856, -0.026540422812104225, 0.027413608506321907, -0.024455616250634193, 0.01596521958708763, 0.012817231938242912, -0.03319019079208374, 0.02410030923783779, 0.014229151420295238, -0.03852517530322075, -0.037832845002412796, 0.00928975734859705, -0.010361910797655582, 0.0231940895318985, -0.015417157672345638, -0.08037582039833069, -0.03051522746682167, -0.03280971571803093, 0.08539606630802155, -0.058801405131816864, 0.00868482980877161, 0.0004919896018691361, 0.025283249095082283, -0.013539869338274002, 0.026265660300850868, -0.045129649341106415, -0.0012856958201155066, -0.05193250626325607, -0.01996835321187973, -0.017957722768187523, -0.04302338883280754, -0.05349648371338844, -0.0381946787238121, 0.015386386774480343, -0.05679425597190857, -0.051608599722385406, -0.025518473237752914, 0.05136740580201149, 0.011225786060094833, -0.035542670637369156, -0.03992385044693947, -0.03662288561463356, -0.08708688616752625, 0.0022954409942030907, -0.021067140623927116, -0.03722500056028366, 0.01557181403040886, 0.0031693768687546253, -0.000840775144752115, -0.04235048592090607, -0.0293473731726408, -0.006166444160044193, -0.011880511417984962, -0.022714436054229736, 0.005203639157116413, 0.01697920821607113, -0.011481980793178082, -0.014507426880300045, -0.020428922027349472, 0.04699459671974182, -0.03134994953870773, -0.0380004420876503, -0.014900392852723598, -0.02832006849348545, 0.0033725304529070854, 0.0025588159915059805, 0.01433580182492733, 0.0015795010840520263, 0.0491001196205616, 0.022409027442336082, -0.06836552917957306, -0.04961353540420532, -0.04056553542613983, -0.021094562485814095, 0.009652120061218739, -0.061197679489851, 0.012728344649076462, 0.04242684319615364, 0.039310913532972336, -0.030895518139004707, -0.04101073369383812, 0.022085918113589287, -0.022312913089990616, -0.018600065261125565, 0.005848847329616547, 0.017278475686907768, 0.01741735078394413, 0.06550943106412888, 0.013913230039179325, -0.04158792644739151, 0.02907128818333149, 0.01883695274591446, -0.016478756442666054, -0.02048138901591301, -0.021932458505034447, -0.011460692621767521, 0.006419031415134668, -0.018226871266961098, 0.01513268519192934, -0.030654387548565865, 0.009952843189239502, 0.06848586350679398, -0.044899240136146545, 0.024493226781487465, -0.013836095109581947, -0.059355903416872025, -0.018886253237724304, 0.01722588576376438, 0.024495523422956467, -0.035635147243738174, 0.008071127347648144, -0.005659902468323708, 0.01755577139556408, 0.02763945236802101, 0.0061291842721402645, 0.041057828813791275, 0.005544661544263363, 0.0018777818186208606, 0.012360050342977047, 0.02093564346432686, -0.04594207555055618, 0.056542810052633286, -0.0037186634726822376, -0.043084971606731415, 0.01435301173478365, 0.003567227628082037, -0.019364764913916588, -0.054280348122119904, -0.013533090241253376, 0.030854230746626854, -0.034230247139930725, 0.012057430110871792, 0.01733284443616867, -0.02606469765305519, 0.054428160190582275, 0.0347997322678566, 0.0033453884534537792, -0.013063174672424793, -0.009928841143846512, 0.04927394911646843, 0.052566368132829666, -0.02091315947473049, -0.021160680800676346, -0.02306985855102539, 0.014454982243478298, 0.05714978650212288, 0.02718835510313511, 0.0025443867780268192, -0.011099065653979778, 0.009899149648845196, -0.012459262274205685, 0.032720599323511124, 0.01461782306432724, 0.008141087368130684, 0.001054798485711217, -0.019819268956780434, 0.004826980642974377, -0.0011074733920395374, -0.012971850112080574, -0.046642377972602844, 0.0025040404871106148, -0.016797127202153206, 0.0036253214348107576, -0.013569503091275692, -0.07807205617427826, 0.007965966127812862, 0.0033743202220648527, 0.0026686927303671837, -0.005569447297602892, -0.01675145886838436, 0.005547341424971819, -0.03847353160381317, 0.030054857954382896, 0.09051313251256943, -0.026723617687821388, 0.0029612865764647722, -0.045313816517591476, 0.024692287668585777, -0.007287908811122179, 0.037130799144506454, -0.05293991416692734, -0.05382530018687248, -0.027002355083823204, 0.01832142099738121, -0.03966392204165459, -0.04548240453004837, 0.010742477141320705, -0.007418513763695955, -0.003803269937634468, 0.007206734735518694, 0.01553340908139944, 0.03326466679573059, -0.00970462802797556, -0.0481412410736084, -0.003947836812585592, 0.00824092049151659, -0.034471407532691956, 0.08137009292840958, 0.0074825529009103775, 0.03232207149267197, -0.046468161046504974, 0.05369973182678223, -0.00785889383405447, 0.018936019390821457, -0.006142950151115656, -0.03570081293582916, -0.03330070525407791, -0.039720166474580765, -0.0008169303764589131, -0.00899198092520237, 0.016006920486688614, -0.03726350516080856, -0.019188642501831055, -0.05954938009381294, -0.009703674353659153, 0.02020491473376751, -0.007255579344928265, 0.014526212587952614, 0.05899932608008385, -0.004860169719904661, 0.00043974313302896917, 0.014513080008327961, -0.04979043826460838, 0.051703713834285736, -0.05073338747024536, -0.050455544143915176, -0.02747448720037937, -0.020658425986766815, 0.021462595090270042, 0.03256756067276001, -0.018071232363581657, -0.14139604568481445, 0.026989655569195747, 0.027973046526312828, 0.007642501033842564, 0.05841917172074318, -0.0011979577830061316, -0.0052385469898581505, -0.02910720743238926, -0.05788383632898331, -0.10642082989215851, -0.013332650996744633, 0.025532465428113937, -0.035927023738622665, 0.01571536809206009, 0.023167310282588005, -0.04848162457346916, 0.03855087608098984, -0.03060578741133213, -0.012362503446638584, 0.042657237499952316, -0.004684296436607838, -0.0008885958814062178, 0.01706586591899395, -0.031982697546482086, 0.03678054362535477, 0.04721115157008171, -0.0437067374587059, -0.010616819374263287, -0.05300130695104599, 0.05209453031420708, 0.0003032381646335125, 0.07100887596607208, -0.007132188882678747, -0.013258395716547966, 0.0694563016295433, 0.032629918307065964, 0.033529821783304214, 0.025219539180397987, -0.0002719688054639846, 0.050049759447574615, 0.05590429902076721, 0.03618644177913666, -0.004102432634681463, 0.029760045930743217, -0.0069158789701759815, -0.03828943893313408, 0.04047488421201706, -0.004261897411197424, 0.014562593773007393, -0.014581378549337387, 0.057936497032642365, -0.008103018626570702, -0.029053088277578354, -0.03807910904288292, 0.015775306150317192, -0.0684003233909607, -0.034657564014196396, -0.07543260604143143, 0.011504804715514183, -0.027261650189757347, 0.05898664519190788, -0.013785491697490215, 0.016843898221850395, 0.04474090039730072, -0.021157987415790558, 0.00556345097720623, 0.036500394344329834, 0.013885729014873505, 0.05853879824280739, 0.022301265969872475, 0.01700936071574688, 0.059392865747213364, 0.0076354919001460075, -0.033427152782678604, -0.01405579224228859, -0.03383343294262886, -0.02449418418109417, -0.026326801627874374, 0.0017801671056076884, 0.05241663008928299, -0.0024351635947823524, 0.06596517562866211, 0.009335597977042198, 0.03701681271195412, 0.01413059327751398, 0.0015899681020528078, 0.022109078243374825, 0.0406869500875473, 0.041445501148700714, 0.016446063295006752, 0.018127217888832092, -0.03818608447909355, -0.02998494915664196, -0.008190064691007137, 0.007154356222599745, 0.011927210725843906, 0.015391052700579166, 0.014831413514912128, 0.04452203959226608, 0.02633683942258358, 0.07614628225564957, -0.021138496696949005, -0.021806979551911354, 0.010586590506136417, 0.04599224030971527, 0.01251232996582985, 0.01387032587081194, -0.011102631688117981, 0.003406051779165864, -0.024305975064635277, -0.07224509119987488, 0.0023332841228693724, -0.003022658172994852, -0.03441875800490379, 0.014841968193650246, -0.051128361374139786, 0.026719525456428528, 0.029331643134355545, -0.011396203190088272, -0.024511544033885002, -0.009333053603768349, -0.0492561049759388, -0.017037538811564445, -0.014694713056087494, -0.010747483931481838, 0.008424033410847187, -0.041715480387210846, -0.03133028373122215, -0.011452334001660347, 0.026418520137667656, -0.033236436545848846, 0.02423213981091976, -0.06491318345069885, -0.012607317417860031, 0.019575761631131172, -0.010954773984849453, -0.009523318149149418, 0.01984156295657158, 0.05239305645227432, -0.019733328372240067, -0.00215807743370533, -0.005909979343414307, 0.014080632477998734, 0.03650312498211861, -0.014236212708055973, 0.017669150605797768, -0.0684223398566246, 0.053067129105329514, 0.04617300257086754, 0.031693652272224426, -0.05693497508764267, -0.0019857699517160654, 0.04637755826115608, -0.054062169045209885, 0.06265880912542343, 0.007783546578139067, 0.004474519286304712, -0.02003481797873974, -0.033256854861974716, -0.035521041601896286, 0.005672312807291746, 0.04288287088274956, -0.008993944153189659, 0.0581742599606514, 0.0342005118727684, 0.01736544445157051, -0.02149907685816288, 0.010560215450823307, -0.025675950571894646, -0.0010944113600999117, -0.041103921830654144, -0.022354675456881523, -0.054747678339481354, -0.06899401545524597, -0.009484092704951763, 0.014871425926685333, -0.043825533241033554, -0.01861472614109516, -0.009793986566364765, -0.021531881764531136, -0.0244640801101923, 0.04951938986778259, -0.044333118945360184, -0.027153147384524345, -0.004559407010674477, -0.006144393235445023, -0.0030643071513623, 0.03591755032539368, 0.025510190054774284, 0.02103447914123535, 0.031213296577334404, -0.03858587518334389, 0.0098724365234375, -0.0228146743029356, 0.04098425433039665, 0.06274737417697906, 0.023289749398827553, 0.04512092098593712 ]
[ -0.07154621928930283, -0.03217014670372009, -0.024739207699894905, -0.025580324232578278, 0.05044066160917282, -0.06939250975847244, -0.04644503816962242, 0.01592927984893322, 0.013018791563808918, 0.03728821873664856, 0.018751677125692368, -0.09841214865446091, 0.03374389186501503, -0.05734073743224144, 0.09458854794502258, 0.016554947942495346, -0.01576504111289978, -0.06354546546936035, -0.014562670141458511, 0.024788519367575645, -0.006480191834270954, -0.042649999260902405, 0.0021049403585493565, -0.03614693135023117, -0.03341229259967804, 0.030238045379519463, 0.03891085088253021, -0.023165617138147354, 0.010311675257980824, -0.1793055683374405, 0.013225107453763485, 0.0022194550838321447, -0.00957256369292736, -0.003946839831769466, 0.030376173555850983, 0.019874008372426033, 0.01717383787035942, 0.00009117653826251626, -0.0112637709826231, 0.04075106605887413, 0.020490380004048347, 0.005269390530884266, -0.08659809082746506, -0.06085483357310295, 0.04662436619400978, 0.005737682804465294, -0.0010163293918594718, -0.04613213613629341, 0.05426078662276268, -0.03593796491622925, -0.026186861097812653, -0.002103132428601384, -0.01638001576066017, -0.04862460494041443, -0.016186142340302467, 0.012517968192696571, 0.05255410820245743, 0.07402027398347855, 0.013102271594107151, 0.01748194918036461, 0.014707135036587715, -0.03998534381389618, -0.15097299218177795, 0.08833076804876328, 0.04765685647726059, 0.039454489946365356, -0.021603021770715714, -0.04382460191845894, -0.009250979870557785, 0.04885832592844963, -0.021620405837893486, -0.026267386972904205, -0.047845177352428436, 0.07535537332296371, -0.015832575038075447, -0.019488980993628502, -0.01644621416926384, 0.017856543883681297, 0.05176481977105141, -0.030180159956216812, -0.0017341142520308495, -0.02033236250281334, -0.032563988119363785, -0.004739083349704742, -0.028837256133556366, 0.011678272858262062, -0.0061015295796096325, 0.09199867397546768, 0.0220442283898592, -0.00871116854250431, 0.011662798002362251, 0.00017533398931846023, 0.07821118086576462, 0.03864511847496033, -0.06613032519817352, 0.005062413401901722, 0.03488964959979057, -0.028367990627884865, -0.0415501669049263, 0.42914292216300964, -0.022585956379771233, -0.03111533261835575, 0.018371552228927612, 0.02220321260392666, 0.08064614236354828, 0.02927406318485737, -0.045579154044389725, -0.023883966729044914, 0.02749687433242798, -0.03893386572599411, 0.03993524610996246, -0.019665053114295006, 0.08370642364025116, -0.07252656668424606, 0.0021982307080179453, 0.0036629096139222383, -0.014572473242878914, 0.007793997414410114, -0.05737578868865967, 0.032966673374176025, -0.023558130487799644, -0.007145820651203394, 0.03125024959445, 0.008095086552202702, 0.021732445806264877, -0.006569413933902979, 0.03608359396457672, 0.0641225054860115, -0.018072543665766716, 0.0023697223514318466, 0.02797849476337433, -0.030951540917158127, -0.030398333445191383, -0.014205903746187687, 0.0008283661445602775, 0.024149920791387558, 0.005147704854607582, -0.041397761553525925, -0.005646681413054466, 0.033787645399570465, -0.02047732099890709, -0.05944932624697685, -0.0008527085883542895, 0.003969584591686726, -0.030850328505039215, 0.050711363554000854, 0.013632882386446, 0.009969688020646572, -0.025236288085579872, -0.04531276598572731, -0.016775937750935555, 0.03289104253053665, -0.006145349703729153, -0.05938992276787758, 0.036895349621772766, 0.012020082212984562, 0.07039935886859894, -0.0058387271128594875, -0.05539688840508461, 0.015054568648338318, 0.0020158966071903706, -0.09059461951255798, -0.048167530447244644, 0.042805735021829605, 0.034399788826704025, -0.08984535187482834, -0.021878723055124283, 0.010192695073783398, 0.025710152462124825, -0.03024592250585556, -0.007608039770275354, -0.018129274249076843, -0.018314002081751823, -0.006056254263967276, 0.03842451795935631, -0.07302790880203247, -0.025896500796079636, 0.01002573687583208, 0.04960000887513161, 0.03292301297187805, -0.0022542737424373627, 0.000605870911385864, -0.03554923087358475, -0.004765977617353201, -0.01487902831286192, -0.10368747264146805, -0.04615175351500511, -0.0388215072453022, -0.036283280700445175, -0.0422036275267601, -0.05560342222452164, -0.003688147524371743, -0.020753923803567886, 0.03136802464723587, 0.037612974643707275, 0.015673073008656502, -0.002931468654423952, 0.0008688055095262825, -0.008093168027698994, -0.04723105952143669, 0.060306988656520844, 0.02298356406390667, 0.008739301934838295, 0.006780443247407675, -0.151377871632576, 0.0199147779494524, 0.04115850105881691, -0.042504046112298965, 0.06039765849709511, 0.027598215267062187, -0.026204759255051613, -0.00030746764969080687, 0.005662939045578241, 0.019542373716831207, -0.025524213910102844, -0.03486514836549759, -0.04523426294326782, 0.00014616308908443898, 0.04011819511651993, 0.035971060395240784, -0.040769144892692566, 0.014775757677853107, -0.01601324789226055, -0.3524954319000244, -0.008578762412071228, -0.011390346102416515, -0.0114927738904953, 0.040156006813049316, -0.03755601495504379, 0.01741049252450466, -0.029065150767564774, -0.021609466522932053, 0.03307632356882095, 0.10367895662784576, -0.02155565284192562, 0.045832496136426926, -0.0797950029373169, 0.02202317677438259, 0.022976001724600792, -0.0001414030703017488, -0.0012823969591408968, -0.017928598448634148, 0.030916288495063782, -0.011649619787931442, -0.04816469922661781, -0.0273944940418005, -0.0635271817445755, -0.02664325386285782, -0.023623740300536156, 0.13724395632743835, 0.009597119875252247, 0.08426549285650253, -0.032787419855594635, 0.05947725847363472, 0.03955255076289177, 0.004682305734604597, -0.12055376172065735, 0.004568341188132763, 0.006283253896981478, 0.02263222634792328, 0.05400141701102257, 0.001336401328444481, -0.01074689906090498, -0.054678238928318024, 0.016528526321053505, -0.032900676131248474, -0.024233350530266762, 0.016777753829956055, -0.018340405076742172, -0.021733205765485764, 0.043908242136240005, -0.03134662285447121, 0.0683295950293541, 0.03367209807038307, 0.04545089974999428, 0.0016424742061644793, 0.038170017302036285, -0.002078439574688673, -0.0028077075257897377, -0.05425744503736496, -0.041452184319496155, 0.057104963809251785, -0.007138779386878014, 0.017544398084282875, 0.053557876497507095, 0.0345475859940052, -0.07270590960979462, 0.010629134252667427, 0.00592494523152709, 0.020442353561520576, 0.027080070227384567, 0.09219510853290558, -0.01332500297576189, -0.029257353395223618, 0.09261774271726608, -0.01103581115603447, 0.05221325159072876, -0.00011397006164770573, 0.020492209121584892, -0.007047263439744711, 0.04311322420835495, 0.019242044538259506, -0.0159867312759161, 0.00506027415394783, -0.07092947512865067, 0.020717868581414223, -0.0257505364716053, 0.004724867641925812, 0.02375740371644497, -0.03984130173921585, 0.029197806492447853, 0.0589311309158802, 0.021193796768784523, -0.026519715785980225, -0.009648759849369526, -0.02026236429810524, -0.02422691136598587, 0.0824538916349411, 0.017636790871620178, -0.2132171094417572, 0.037115298211574554, 0.06651835888624191, 0.0325276181101799, 0.004316113889217377, 0.04013299196958542, 0.013859814032912254, -0.022703345865011215, 0.013266767375171185, -0.009443606249988079, -0.0035804163198918104, -0.0030839762184768915, -0.0033870635088533163, -0.003079109126701951, 0.0011139499256387353, -0.01446998119354248, 0.05373275279998779, 0.019973667338490486, 0.006018941756337881, 0.02012854628264904, -0.0015206714160740376, -0.011154762469232082, 0.11152081191539764, -0.017896760255098343, -0.019104639068245888, -0.0011206426424905658, -0.05690274015069008, 0.02872614376246929, 0.028061117976903915, 0.010456706397235394, -0.020764321088790894, 0.040895041078329086, 0.020841050893068314, -0.020206376910209656, 0.032476846128702164, -0.03550375998020172, -0.0068998029455542564, 0.002474531065672636, 0.047472309321165085, -0.009299392811954021, -0.035735875368118286, 0.06393660604953766, -0.01320582814514637, 0.026030125096440315, 0.02990294061601162, -0.016495581716299057, 0.025506654754281044, -0.0029979636892676353, -0.02566424198448658, 0.008323638699948788, -0.0209523793309927, -0.013569168746471405, 0.03187934681773186, 0.04194221645593643, 0.048108670860528946, 0.06290154159069061, 0.04546419531106949, -0.05195813626050949, 0.0038507350254803896, -0.016391582787036896, 0.00973169133067131, -0.04369473084807396, 0.15358774363994598, -0.0027781606186181307, -0.011022358201444149 ]
[ 0.020763959735631943, -0.011266370303928852, 0.0038454546593129635, -0.05033347010612488, 0.015128832310438156, -0.04483221843838692, -0.02848694659769535, 0.03670230880379677, 0.001559929340146482, -0.025020843371748924, -0.016547057777643204, -0.023304106667637825, -0.03595394268631935, 0.00788115244358778, -0.03694470226764679, -0.03285271301865578, -0.012348365969955921, 0.058957379311323166, 0.031156089156866074, -0.02508491836488247, -0.01394632924348116, 0.06825575232505798, 0.05942191928625107, 0.006730330176651478, -0.001441122149117291, -0.0038961253594607115, -0.06405352801084518, 0.03530079871416092, 0.023770034313201904, -0.13124077022075653, 0.012525956146419048, -0.029398959130048752, 0.0005751097924076021, -0.025807872414588928, 0.01600835658609867, 0.02910330705344677, 0.030670836567878723, 0.029418757185339928, -0.061716511845588684, 0.02266175113618374, 0.02074684016406536, -0.05673789978027344, -0.002788554411381483, -0.06814320385456085, -0.00006739284435752779, 0.044625550508499146, -0.015142150223255157, -0.01697777770459652, 0.019116880372166634, 0.0503130666911602, -0.009687544777989388, 0.0206636730581522, 0.03021356277167797, 0.03256139159202576, -0.007298571523278952, 0.00846038106828928, 0.013540340587496758, -0.009791611693799496, 0.015496728010475636, -0.016440393403172493, 0.0021557221189141273, 0.03715978562831879, -0.02308342233300209, -0.0107173603028059, 0.015483545139431953, -0.0206155925989151, 0.0004275973478797823, 0.022599458694458008, 0.007293063215911388, -0.0040896120481193066, -0.00934094563126564, 0.046877171844244, -0.0794772282242775, -0.035171933472156525, -0.02442837506532669, 0.03715694695711136, 0.012262084521353245, 0.011815117672085762, 0.007632246240973473, 0.048056527972221375, -0.06573071330785751, -0.003949859645217657, -0.025250161066651344, 0.00902947224676609, -0.0677347481250763, 0.016746485605835915, -0.024974847212433815, 0.01122852973639965, 0.03776494041085243, -0.02381628379225731, -0.06257041543722153, 0.02116810344159603, 0.04653310030698776, 0.03329343721270561, -0.03612520173192024, -0.014237265102565289, 0.021987436339259148, -0.019842073321342468, 0.01194705255329609, 0.7430896759033203, -0.04891059547662735, -0.01653590053319931, 0.024310017004609108, -0.0010349578224122524, 0.06103404611349106, 0.01074987556785345, 0.03277052938938141, -0.01870007812976837, -0.018475139513611794, -0.061123598366975784, 0.02064487338066101, -0.016192859038710594, 0.0511576347053051, -0.03401704132556915, 0.055438827723264694, 0.042080387473106384, 0.01617630571126938, 0.021104665473103523, -0.03676478564739227, 0.013967697508633137, -0.04292387142777443, -0.03146884962916374, 0.017915135249495506, 0.00456952303647995, -0.0130405742675066, -0.18692360818386078, 0.027798159047961235, -7.188294157388172e-33, -0.030285842716693878, -0.035830795764923096, 0.0546245314180851, 0.012948510237038136, 0.07338877022266388, 0.009179200977087021, 0.05296110734343529, 0.012060842476785183, -0.028207644820213318, -0.04040629789233208, -0.007746712304651737, -0.04578692093491554, 0.013597837649285793, 0.02193661965429783, 0.009827771224081516, -0.038493264466524124, -0.004838136024773121, 0.03696858882904053, -0.012617252767086029, 0.025285422801971436, 0.053726330399513245, -0.028135329484939575, 0.029635349288582802, 0.014332151971757412, 0.009434320032596588, -0.04240582883358002, 0.054407283663749695, 0.01671486534178257, 0.002745698904618621, -0.04737633839249611, -0.04689544439315796, 0.019099775701761246, 0.029218224808573723, -0.05547589436173439, 0.01278312224894762, -0.03257334232330322, -0.02913021668791771, 0.017572375014424324, -0.06542424857616425, 0.03679094836115837, 0.02419838309288025, -0.0007699579000473022, -0.019888760522007942, -0.006141965277493, -0.03465695306658745, 0.0027244670782238245, 0.002109590219333768, 0.0006957161240279675, 0.0063918414525687695, 0.026960989460349083, 0.07878325879573822, 0.0032642569858580828, -0.0056557441130280495, -0.019296720623970032, 0.026033680886030197, -0.04744500294327736, -0.0030701826326549053, 0.05587337166070938, -0.000848927884362638, -0.02986493520438671, 0.012992281466722488, 0.02506195195019245, 0.007883264683187008, 0.032151587307453156, 0.005993240047246218, 0.0015754339983686805, 0.04401640594005585, 0.018527192994952202, 0.04449477419257164, 0.006538676097989082, -0.06705217063426971, 0.005495685152709484, -0.056645505130290985, -0.016586607322096825, 0.06886259466409683, -0.01941446214914322, -0.011536693200469017, -0.029482373967766762, 0.023139946162700653, 0.03772431239485741, -0.018378015607595444, -0.006228337530046701, -0.01737893745303154, -0.03462497144937515, -0.02052362449467182, -0.03931901976466179, 0.022180618718266487, -0.029058467596769333, -0.02352892979979515, -0.005365233868360519, -0.008323723450303078, 0.0007612815243192017, -0.008830287493765354, 0.016081154346466064, -0.016238583251833916, 7.219175128668242e-33, 0.0020841085352003574, 0.037944018840789795, -0.04060788080096245, 0.031794995069503784, 0.017545277252793312, -0.01560663990676403, 0.027363663539290428, -0.023215152323246002, -0.024636005982756615, -0.031178463250398636, -0.026296421885490417, 0.010751495137810707, -0.007126137148588896, 0.06047224625945091, 0.03742999583482742, 0.05543160438537598, 0.02151377499103546, -0.04633525758981705, 0.053731150925159454, -0.010774822905659676, -0.030289262533187866, 0.015134039334952831, -0.012413897551596165, 0.0011332161957398057, -0.037437062710523605, 0.04884546622633934, 0.014106483198702335, -0.02809865027666092, -0.022141708061099052, 0.00036430422915145755, -0.013392990455031395, 0.006157069467008114, -0.015777867287397385, -0.017139781266450882, 0.017958123236894608, 0.043215371668338776, 0.03159892186522484, -0.0015163131756708026, 0.07037195563316345, -0.03392916917800903, 0.018940337002277374, -0.0016834062989801168, -0.009362845681607723, -0.007501998916268349, -0.027822677046060562, 0.04512009397149086, 0.04128718003630638, -0.014287681318819523, -0.023633286356925964, 0.03249311447143555, -0.01358511857688427, 0.03315325453877449, 0.008842870593070984, 0.042999785393476486, 0.0242778193205595, 0.0034884605556726456, -0.010762585327029228, 0.07982534915208817, -0.05438399314880371, -0.030677087604999542, -0.020046774297952652, -0.016962537541985512, 0.006317545659840107, -0.00012990085815545171, -0.03260790556669235, 0.021802246570587158, -0.018665188923478127, 0.004767163656651974, 0.017158037051558495, -0.09302426129579544, 0.007944987155497074, -0.04686734080314636, 0.004219492897391319, 0.04087533801794052, 0.024685803800821304, -0.039655331522226334, -0.00005362731826608069, -0.011285260319709778, -0.0018814255017787218, 0.010525780729949474, -0.03136088326573372, 0.006994206923991442, 0.004440220072865486, -0.011587811633944511, 0.04208235442638397, 0.04211660102009773, -0.06024669110774994, -0.028158752247691154, 0.021562708541750908, 0.009513957425951958, 0.033803023397922516, -0.04816967248916626, -0.07345914095640182, -0.024442346766591072, -0.017717208713293076, -1.194269749760224e-8, 0.043197598308324814, -0.010026734322309494, 0.010875765234231949, 0.023748459294438362, 0.015173378400504589, 0.02900930680334568, -0.027555136010050774, 0.057506728917360306, -0.04123438894748688, 0.01724988967180252, 0.051102232187986374, -0.004994274582713842, -0.015073353424668312, 0.032984159886837006, 0.05486005172133446, 0.03198448196053505, -0.01860496588051319, 0.03945307061076164, -0.0053334468975663185, -0.045226942747831345, -0.00619597639888525, 0.07209919393062592, 0.01119939237833023, -0.0254875086247921, -0.03391878306865692, -0.009045308455824852, 0.028299575671553612, -0.1000804677605629, -0.0067738560028374195, -0.02439429610967636, 0.032239340245723724, -0.014651915989816189, -0.09131363779306412, 0.009734313935041428, -0.0005005434504710138, -0.026689700782299042, -0.045063845813274384, 0.016026388853788376, 0.01713523268699646, -0.01544421911239624, 0.009432516992092133, -0.021855421364307404, 0.023019537329673767, -0.04372650012373924, -0.040298786014318466, 0.02906140126287937, -0.02830648608505726, 0.05255129933357239, -0.01048637367784977, 0.002784589771181345, 0.009045680984854698, 0.03514600172638893, 0.02979549579322338, 0.043002042919397354, -0.0065887700766325, 0.006916654296219349, 0.048069220036268234, -0.03325308486819267, -0.029216168448328972, -0.02293636091053486, 0.03596974536776543, 0.05095657706260681, 0.010408401489257812, -0.02564197964966297 ]
pipenv-import-file-no-module-named-virtualenv
https://markhneedham.com/blog/2020/08/07/pipenv-import-file-no-module-named-virtualenv
false
2020-08-24 00:21:00
Unix: Get file name without extension from file path
[ "unix", "bash" ]
[ "Unix" ]
I recently found myself needing to extract the file name but not file extension from a bunch of file paths and wanted to share a neat technique that I learnt to do it. I started with a bunch of Jupyter notebook files, which I listed usign the following command; [source,bash] ---- $ find notebooks/ -maxdepth 1 -iname *ipynb notebooks/09_Predictions_sagemaker.ipynb notebooks/00_Environment.ipynb notebooks/05_Train_Evaluate_Model.ipynb notebooks/01_DataLoading.ipynb notebooks/05_SageMaker.ipynb notebooks/09_Predictions_sagemaker-Copy2.ipynb notebooks/09_Predictions_sagemaker-Copy1.ipynb notebooks/02_Co-Author_Graph.ipynb notebooks/04_Model_Feature_Engineering.ipynb notebooks/09_Predictions_scikit.ipynb notebooks/03_Train_Test_Split.ipynb ---- If we pick one of those files: [source,bash] ---- file="notebooks/05_Train_Evaluate_Model.ipynb" ---- I want to extract the file name from this file path, which would give us `05_Train_Evaluate_Model`. We can extract the file name using the `basename` function: [source,bash] ---- $ basename ${file} 05_Train_Evaluate_Model.ipynb ---- StackOverflow has https://stackoverflow.com/questions/12152626/how-can-i-remove-the-extension-of-a-filename-in-a-shell-script[many suggestions^] for stripping out the file extension, but my favourite is one that https://www.gnu.org/software/bash/manual/html_node/Shell-Parameter-Expansion.html[uses parameter expansion^]. [quote] _____ **${parameter#word}** **${parameter##word}** The word is expanded to produce a pattern and matched according to the rules described below (see Pattern Matching). If the pattern matches the beginning of the expanded value of parameter, then the result of the expansion is the expanded value of parameter with the shortest matching pattern (the "\#" case) or the longest matching pattern (the "##" case) deleted. If parameter is '@' or '*', the pattern removal operation is applied to each positional parameter in turn, and the expansion is the resultant list. If parameter is an array variable subscripted with ‘@’ or ‘*’, the pattern removal operation is applied to each member of the array in turn, and the expansion is the resultant list. _____ We can use it like this: [source, bash] ---- $ basename ${file%.*} 05_Train_Evaluate_Model ---- Because we've used the `%` variant, this will delete the shortest matching pattern. i.e. only one file extension If we had a file that ends with multiple file extensions, we'd need to use the `%%` variant instead: [source,bash] ---- $ filename="notebooks/05_Train_Evaluate_Model.ipynb.bak" $ echo ${filename%%.*} notebooks/05_Train_Evaluate_Model ---- Going back to our original problem, we can extract the file names for all of our Jupyter notebooks by running the following: [source, bash] ---- for file in `find notebooks -maxdepth 1 -iname *.ipynb`; do echo $(basename ${file%.*}) done ---- [source, text] ---- 09_Predictions_sagemaker 00_Environment 05_Train_Evaluate_Model 01_DataLoading 05_SageMaker 09_Predictions_sagemaker-Copy2 09_Predictions_sagemaker-Copy1 02_Co-Author_Graph 04_Model_Feature_Engineering 09_Predictions_scikit 03_Train_Test_Split ----
Learn how to extract the file name without extension from a file path using Unix command line tools.
null
[ -0.013905609026551247, -0.047740060836076736, -0.053921472281217575, 0.018695008009672165, 0.09164029359817505, 0.03523608669638634, -0.009982183575630188, -0.009714475832879543, 0.01326871570199728, -0.007873915135860443, -0.029994307085871696, 0.03643106669187546, -0.0575823150575161, 0.01624109596014023, -0.007447810843586922, 0.048436038196086884, 0.0691179558634758, -0.00904418621212244, 0.043869271874427795, 0.010441937483847141, 0.003809511661529541, 0.036510903388261795, 0.023392045870423317, 0.025215743109583855, -0.02555011585354805, 0.011820773594081402, -0.0017931446200236678, -0.02376181073486805, -0.057552166283130646, 0.029596641659736633, 0.012317177839577198, -0.033809952437877655, 0.02694825269281864, -0.035857126116752625, 0.011049811728298664, 0.033813003450632095, -0.002206745557487011, 0.006973277777433395, 0.005725135561078787, 0.03434586152434349, -0.05912487581372261, 0.02494427002966404, -0.022030530497431755, -0.016543716192245483, -0.059466402977705, -0.004621866159141064, -0.077953040599823, 0.022095590829849243, -0.001529716420918703, 0.004434462171047926, -0.03636063262820244, 0.04645196348428726, -0.02118716947734356, -0.03437136858701706, 0.020123139023780823, 0.05267299339175224, 0.05259620025753975, -0.06555938720703125, 0.03387761116027832, -0.005729252938181162, -0.009344816207885742, -0.010453823022544384, -0.007892239838838577, 0.07433086633682251, 0.019325779750943184, -0.023114951327443123, 0.022977953776717186, 0.07165704667568207, -0.07009781897068024, -0.025295566767454147, -0.004307360853999853, 0.026108166202902794, -0.0309916865080595, -0.0027339179068803787, 0.008729305118322372, -0.027253257110714912, 0.011869939975440502, 0.048912886530160904, 0.019238440319895744, 0.05741775408387184, -0.028364507481455803, 0.01956266351044178, 0.0013610207242891192, 0.030101975426077843, 0.005161555018275976, -0.05994340032339096, -0.04960677772760391, 0.020931975916028023, -0.045371562242507935, 0.02203964814543724, 0.026705333963036537, -0.08400984853506088, 0.029590848833322525, 0.0024195872247219086, 0.007853611372411251, 0.004975666292011738, -0.000329416710883379, 0.0034831345546990633, 0.017764871940016747, 0.01887868158519268, -0.046218521893024445, -0.01315489411354065, 0.007084724958986044, 0.008062752895057201, -0.06537847220897675, -0.009314277209341526, 0.012970988638699055, -0.01737375557422638, 0.03290979191660881, -0.02543477900326252, 0.01842397451400757, 0.028697490692138672, -0.014194145798683167, 0.02114919386804104, -0.0959247350692749, 0.05572175607085228, 0.01440819539129734, -0.00969776976853609, 0.004467477556318045, 0.04118550196290016, 0.0033081183210015297, 0.0028425531927496195, 0.009870343841612339, 0.061161428689956665, 0.023968296125531197, 0.015997275710105896, 0.023323431611061096, 0.05635829269886017, -0.017682503908872604, -0.069160096347332, 0.0019928854890167713, 0.05713267996907234, 0.0018094457918778062, 0.0028342371806502342, -0.0073574562557041645, -0.028627900406718254, -0.006286385469138622, -0.03201731666922569, 0.04004262760281563, 0.02277560532093048, 0.00017045033746398985, 0.001249882043339312, 0.008351676166057587, -0.03608430549502373, 0.03125870227813721, 0.057639580219984055, -0.008021460846066475, -0.05331319943070412, -0.05789587274193764, -0.012846603989601135, 0.02355104312300682, 0.024282362312078476, 0.07653824985027313, -0.03719368204474449, 0.010607647709548473, 0.09472673386335373, 0.049770474433898926, 0.025364167988300323, -0.00619553541764617, -0.012085966765880585, 0.051228731870651245, 0.03737876936793327, 0.004144004546105862, 0.06768794357776642, -0.021275272592902184, -0.020516522228717804, 0.027417464181780815, 0.01772887632250786, -0.03993793949484825, -0.0024692423176020384, -0.026326756924390793, -0.05391402542591095, 0.10319051891565323, -0.018440496176481247, 0.004737024195492268, 0.02184470370411873, 0.07039517164230347, 0.002855176106095314, 0.04397052899003029, 0.008144826628267765, -0.06653228402137756, 0.05990039184689522, -0.02400912158191204, -0.006140430457890034, 0.046704553067684174, -0.031666211783885956, 0.04850127920508385, 0.014221586287021637, 0.017225049436092377, 0.03759724274277687, -0.07312953472137451, -0.07289973646402359, -0.038988396525382996, -0.011588972993195057, 0.05105040967464447, -0.048477645963430405, 0.01274822372943163, 0.06200302764773369, 0.010016687214374542, 0.02553355135023594, 0.00918087363243103, -0.029787814244627953, 0.020902609452605247, -0.06160919740796089, -0.09188927710056305, 0.029370466247200966, 0.015448378399014473, -0.04724087938666344, 0.011754174716770649, 0.02420026622712612, -0.03644101321697235, 0.036556508392095566, 0.024854913353919983, -0.0025670293252915144, 0.046548519283533096, 0.052899472415447235, 0.0028026087675243616, 0.0042360881343483925, 0.05118243768811226, -0.04869551211595535, 0.0030702375806868076, -0.02050628326833248, -0.03545217216014862, -0.01568690501153469, 0.022190729156136513, 0.11634735018014908, 0.05601570010185242, -0.015603510662913322, -0.0654984787106514, 0.03183724358677864, -0.0042458390817046165, -0.03547164797782898, -0.0010505939135327935, -0.014662174507975578, 0.011728265322744846, 0.011815494857728481, -0.01769263856112957, -0.007471432909369469, 0.024882305413484573, -0.017411183565855026, 0.008420351892709732, 0.05455251410603523, -0.022031672298908234, 0.015129994601011276, 0.025406362488865852, 0.003855501301586628, 0.021373627707362175, -0.06397747248411179, -0.04797834903001785, -0.016648026183247566, 0.03812069445848465, 0.014455977827310562, 0.033179301768541336, -0.054324228316545486, -0.037353020161390305, -0.024868888780474663, -0.06489808112382889, 0.013865980319678783, 0.06719385087490082, 0.05739623308181763, -0.032530684024095535, 0.02864636294543743, -0.016482805833220482, 0.0427873432636261, -0.010872251354157925, -0.015030634589493275, -0.050873301923274994, -0.01442792546004057, 0.032898567616939545, 0.011940139345824718, -0.020466847345232964, 0.04730977118015289, -0.007070642430335283, -0.012713396921753883, -0.014312434010207653, -0.0054390630684792995, 0.01609976775944233, 0.005711480975151062, -0.027689572423696518, -0.04854067787528038, 0.023029163479804993, 0.011243862099945545, -0.035620443522930145, -0.029821304604411125, 0.042089518159627914, -0.05830074101686478, 0.008066188544034958, -0.028114117681980133, -0.04799208417534828, -0.024015655741095543, -0.020184539258480072, 0.025927923619747162, -0.006428582593798637, 0.022603025659918785, 0.0034402997698634863, -0.006604474037885666, 0.012936956249177456, 0.010499915108084679, 0.04282137751579285, 0.0389392226934433, 0.03017822466790676, 0.03789867088198662, 0.03533749282360077, -0.0012261058436706662, 0.013440595008432865, 0.006347696762531996, 0.007749552838504314, -0.050357818603515625, -0.27564680576324463, 0.038580477237701416, -0.017849085852503777, -0.03763699531555176, 0.015654394403100014, -0.05616777762770653, -0.0019462993368506432, -0.05673014745116234, -0.04120545834302902, 0.009323814883828163, -0.027864206582307816, -0.023701947182416916, 0.040607187896966934, 0.040413811802864075, -0.013347256928682327, 0.03576379269361496, 0.03772289305925369, -0.03376235440373421, 0.05479233339428902, 0.017618706449866295, -0.010208159685134888, -0.03288058936595917, 0.0004626731970347464, 0.05366140604019165, 0.02779092825949192, 0.0473029650747776, -0.05892198905348778, -0.0003909363877028227, -0.05549022555351257, -0.04747844859957695, -0.0006851491052657366, -0.03098021261394024, 0.010243052616715431, 0.05206243321299553, 0.003751638811081648, 0.0004299519641790539, 0.053163591772317886, -0.018079735338687897, 0.046629853546619415, 0.03586606681346893, -0.04736122488975525, -0.009684943594038486, 0.014647791162133217, 0.0011665676720440388, 0.03012474998831749, -0.033883027732372284, -0.012774159200489521, -0.0556010864675045, -0.019903508946299553, 0.0768917053937912, -0.06306615471839905, -0.018837638199329376, -0.026090634986758232, 0.016959136351943016, -0.0034988094121217728, -0.016873223707079887, -0.010962365195155144, -0.004944556392729282, -0.04598430171608925, -0.04770873486995697, 0.01198024582117796, -0.053395334631204605, -0.032888080924749374, -0.0661846175789833, -0.0015443639131262898, -0.06735450029373169, -0.08323659747838974, -0.03319450095295906, 0.03116815909743309, 0.03923014551401138, -0.019093960523605347, -0.011050080880522728, -0.02056354098021984, -0.11351308226585388, -0.0329301655292511, -0.011444405652582645, -0.024739673361182213, 0.03474730625748634, -0.02757924050092697, 0.07240291684865952, -0.04163292422890663, -0.030318232253193855, 0.047935470938682556, 0.007996652275323868, 0.021038826555013657, 0.002609778428450227, -0.017418179661035538, -0.028330819681286812, -0.018124490976333618, -0.011816608719527721, 0.01629534736275673, -0.016266167163848877, 0.006272257771342993, -0.01936543919146061, -0.00039668710087426007, 0.014505911618471146, 0.02552960067987442, 0.01791653037071228, 0.02503928914666176, 0.007051810156553984, 0.02923576533794403, -0.052695680409669876, 0.012400010600686073, -0.06879953294992447, -0.012554388493299484, -0.003805839689448476, 0.002851027064025402, 0.0291910283267498, 0.053526971489191055, 0.021227866411209106, -0.011423011310398579, -0.034201085567474365, 0.017985031008720398, -0.06358253210783005, -0.022753730416297913, -0.04339940473437309, -0.015406925231218338, 0.00327678257599473, 0.0482354462146759, -0.03023330308496952, -0.0427965447306633, 0.004272405989468098, -0.03394768014550209, -0.04016290232539177, -0.051411811262369156, -0.03554169833660126, 0.01861470192670822, 0.015356007032096386, 0.008279363624751568, -0.0038788802921772003, -0.03272462263703346, 0.008800256997346878, 0.019370082765817642, -0.006647489964962006, 0.02186225913465023, -0.0015531140379607677, -0.03173573687672615, -0.04360717162489891, 0.011552106589078903, 0.016644692048430443, -0.062357448041439056, 0.024246985092759132, 0.005806025117635727, 0.029693100601434708, 0.07950106263160706, 0.0297757126390934, 0.026105036959052086, -0.03554028272628784, 0.030599525198340416, -0.00993374828249216, 0.029679421335458755, -0.022394483909010887, 0.018071720376610756, -0.021433932706713676, -0.024650290608406067, -0.0023527774028480053, 0.008407220244407654, 0.0023184185847640038, 0.0030970098450779915, -0.030910635367035866, 0.028906434774398804, 0.008279063738882542, 0.014735986478626728, 0.006879423279315233, -0.012609253637492657, 0.026182139292359352, 0.016204090788960457, 0.0339522548019886, -0.02447030320763588, 0.013585667125880718, 0.0008325809612870216, 0.014682495035231113, -0.022919099777936935, -0.007550863083451986, -0.016338994726538658, 0.027881842106580734, 0.05969985947012901, 0.03282397612929344, -0.016220523044466972, 0.050650548189878464, -0.028040673583745956, -0.07203967124223709, 0.012028674595057964, 0.02117881365120411, 0.041566818952560425, 0.04082641005516052, -0.01974000409245491, -0.03274063766002655, -0.04112910479307175, 0.0013790110824629664, -0.035679131746292114, -0.024307068437337875, -0.008739695884287357, -0.022117415443062782, -0.025860071182250977, -0.06313632428646088, 0.05378105118870735, 0.011110087856650352, -0.012720408849418163, -0.00045552890514954925, -0.03718191012740135, -0.006953346077352762, -0.010758920572698116, 0.040483180433511734, 0.02873975969851017, -0.056879956275224686, -0.024559682235121727, -0.01573188789188862, 0.019708601757884026, 0.008562449365854263, 0.017825767397880554, -0.06056946888566017, -0.049163736402988434, -0.018131814897060394, 0.04683835431933403, -0.030981916934251785, 0.01408124528825283, -0.031249353662133217, 0.019493913277983665, -0.04704698920249939, 0.05183926597237587, 0.007377535104751587, 0.0390816256403923, -0.0035984371788799763, 0.004047146532684565, 0.013374313712120056, -0.030094904825091362, 0.0027286300901323557, 0.02127227559685707, -0.01632692664861679, 0.00559505820274353, -0.05257155001163483, 0.021846741437911987, 0.020529771223664284, -0.025166722014546394, -0.03773185610771179, -0.021627914160490036, -0.0007129470468498766, -0.006451481021940708, 0.016490522772073746, 0.03477385640144348, 0.02124696411192417, -0.028824012726545334, -0.005347744096070528, -0.029011161997914314, -0.010263776406645775, -0.005318144336342812, -0.04978876933455467, 0.017522597685456276, 0.07453128695487976, 0.00980320293456316, 0.013556769117712975, -0.05732310563325882, -0.04558765888214111, 0.08356837928295135, -0.046435680240392685, -0.05212974175810814, -0.025597473606467247, -0.03247378021478653, 0.04832273721694946, 0.023137303069233894, 0.015962090343236923, -0.0685587003827095, 0.07107310742139816, 0.04126199707388878, -0.03034701570868492, 0.028074659407138824, -0.019671261310577393, 0.0286884568631649, -0.03546677902340889, -0.02641669102013111, -0.06572292745113373, -0.008057753555476665, 0.025089344009757042, -0.022527508437633514, -0.022126387804746628, 0.002635256154462695, -0.0016885516233742237, 0.03011796437203884, -0.06932101398706436, -0.04970240220427513, 0.04558611288666725, -0.02038559317588806, 0.04092591628432274, -0.0074882605113089085, -0.016270337626338005, 0.025597693398594856, 0.03890829533338547, -0.013099960051476955, -0.008353698067367077, -0.0436728298664093, 0.03544491156935692, -0.015962423756718636, 0.009973419830203056, -0.007628999650478363, -0.015759874135255814, 0.06622011214494705, 0.014934062957763672, -0.004816099535673857, -0.011311457492411137, -0.020344248041510582, 0.03602125868201256, 0.03822967782616615, -0.04985344409942627, -0.013408364728093147, 0.01725573092699051, -0.009333641268312931, -0.04658361151814461, 0.0027866819873452187, 0.014752048999071121, -0.010744350031018257, -0.013467271812260151, 0.055682580918073654, -0.01709931343793869, -0.027130914852023125, -0.04364794120192528, -0.0033462047576904297, -0.020386341959238052, 0.006229167338460684, -0.0023990345653146505, -0.021518215537071228, -0.027304474264383316, 0.05151147022843361, -0.009104477241635323, 0.03982238098978996, 0.057332247495651245, 0.006429548375308514, -0.002591302851215005, -0.01752808876335621, 0.04144500568509102, 0.06898355484008789, 0.03803503140807152, 0.013425702229142189, 0.010753906331956387, -0.04259999468922615, -0.04008058086037636, 0.0003235634067095816, -0.03829611837863922, 0.03706696256995201, -0.014120981097221375, 0.010156368836760521, 0.0981091782450676, 0.009270191192626953, 0.06183379888534546, -0.022132301703095436, 0.005673195235431194, -0.00687806773930788, 0.01568671502172947, 0.022859051823616028, 0.02052031271159649, 0.005383708979934454, 0.00976447481662035, -0.05509454384446144, -0.015149295330047607, 0.035625431686639786, 0.008724726736545563, -0.008899266831576824, 0.02168508991599083, -0.002762832213193178, -0.014609194360673428, 0.017344627529382706, 0.08501572161912918, 0.05327603220939636, -0.028745433315634727, -0.028312616050243378, 0.032962437719106674, 0.04131530225276947, 0.014303329400718212, 0.02769402228295803, 0.010180856101214886, 0.03136824816465378, 0.017778078094124794, -0.05695924907922745, -0.015657680109143257, -0.028438059613108635, -0.03953387588262558, 0.0006872194935567677, -0.008833536878228188, 0.009049030020833015, 0.03291354328393936, -0.0022891315165907145, -0.01593681611120701, -0.03639303147792816, -0.03864413499832153, -0.027234980836510658, -0.048602983355522156, -0.02166476473212242, -0.029401296749711037, 0.0017706116195768118, -0.04090214520692825, -0.006415765266865492, -0.05890233442187309, -0.011015216819941998, 0.04945620894432068, -0.04965304583311081, 0.006922469474375248, 0.017043374478816986, 0.030608009546995163, 0.0006965771899558604, 0.05849740281701088, 0.031146036460995674, 0.0115654356777668, -0.01466858945786953, 0.040387462824583054, -0.005107018165290356, 0.017437156289815903, -0.010135386139154434, 0.00830819085240364, -0.049046896398067474, 0.013310088776051998, 0.06556092947721481, -0.003119115950539708, -0.05519093945622444, 0.0807197242975235, 0.03751266002655029, -0.02668610028922558, 0.047087471932172775, -0.009602638892829418, -0.01985914818942547, -0.04392138868570328, -0.02641880512237549, -0.00037797115510329604, -0.0021851432975381613, 0.026039594784379005, -0.021281762048602104, 0.07406779378652573, 0.054600272327661514, -0.012920409440994263, -0.02308622933924198, -0.020461389794945717, -0.049526315182447433, 0.04205785691738129, -0.032197024673223495, -0.019886508584022522, -0.04259907454252243, -0.05306718870997429, -0.006384026259183884, 0.020530879497528076, -0.04515833780169487, -0.06650041043758392, 0.018264757469296455, -0.00035319794551469386, -0.023837847635149956, 0.035019587725400925, -0.02942156046628952, 0.0020841301884502172, -0.016499176621437073, -0.038053806871175766, -0.038945816457271576, 0.04883423447608948, -0.010104329325258732, 0.033163800835609436, 0.022415636107325554, 0.011644766665995121, -0.004710846580564976, -0.030848050490021706, 0.009727444499731064, 0.07901313155889511, -0.012824220582842827, 0.0028617174830287695 ]
[ -0.08626849949359894, -0.009720462374389172, -0.04055893048644066, -0.022303013131022453, 0.09898454695940018, -0.07663228362798691, -0.02446974255144596, -0.02522256225347519, 0.031697601079940796, 0.00154047308024019, 0.022387171164155006, -0.039507243782281876, -0.010314122773706913, -0.0866505578160286, 0.06724555045366287, -0.025985993444919586, 0.009553207084536552, -0.029239144176244736, -0.013782726600766182, 0.015997355803847313, -0.037333063781261444, -0.02053608000278473, -0.02254308946430683, -0.02841348946094513, 0.027858659625053406, 0.019372668117284775, 0.007100208196789026, -0.021587926894426346, -0.035607535392045975, -0.22183237969875336, 0.023118173703551292, 0.008855517953634262, -0.0004473516601137817, -0.02154717594385147, 0.03974960744380951, 0.049626994878053665, 0.03648430109024048, 0.04207155108451843, -0.0030772974714636803, 0.044077254831790924, 0.021839305758476257, -0.009228987619280815, -0.033155057579278946, 0.010023132897913456, 0.01979728788137436, 0.005119491834193468, -0.023150956258177757, -0.039054326713085175, 0.017446210607886314, 0.004411582835018635, -0.05196055769920349, -0.016199391335248947, -0.017033416777849197, -0.05059906467795372, -0.03608968108892441, -0.00023799287737347186, 0.06393147259950638, 0.07154975086450577, 0.009441598318517208, 0.015839150175452232, -0.004177515860646963, 0.018573882058262825, -0.16901454329490662, 0.09452740103006363, 0.03215392678976059, 0.03203651309013367, -0.02131291665136814, -0.01350042037665844, -0.022533096373081207, 0.09636329114437103, -0.036728695034980774, -0.0019200821407139301, -0.03591405972838402, 0.06353144347667694, -0.03215775638818741, -0.03438006341457367, 0.0056615243665874004, 0.013861154206097126, 0.019150370731949806, -0.04909013584256172, -0.07662255316972733, -0.006825655698776245, -0.036358464509248734, -0.033586256206035614, -0.035293277353048325, 0.04666650667786598, -0.0062803346663713455, 0.059513118118047714, 0.0368330180644989, 0.01667102240025997, 0.016571084037423134, -0.04473472759127617, 0.06033353880047798, 0.04489387944340706, -0.08345337212085724, -0.021719535812735558, 0.020302478224039078, 0.030931901186704636, 0.012872916646301746, 0.37737002968788147, -0.06807541847229004, -0.03007720597088337, 0.016798509284853935, -0.002521971706300974, 0.021769031882286072, 0.005440068896859884, -0.019953904673457146, -0.00835892092436552, 0.022655941545963287, -0.03196146711707115, 0.03648471087217331, -0.009813811630010605, 0.06351124495267868, -0.065310537815094, 0.03882896155118942, -0.011330980807542801, 0.009186233393847942, -0.018361486494541168, -0.04742780700325966, 0.005066235084086657, -0.02430064231157303, -0.01954730972647667, 0.05423671379685402, 0.041444916278123856, -0.0020282247569411993, 0.018451472744345665, 0.013622576370835304, 0.029874691739678383, 0.0832366943359375, -0.010496506467461586, 0.03196890279650688, -0.03903732821345329, -0.05709030479192734, -0.013845621608197689, 0.010122105479240417, 0.03845763951539993, 0.012354724109172821, -0.022679973393678665, -0.020606640726327896, -0.012717941775918007, 0.017106907442212105, -0.03954106569290161, 0.02315785363316536, 0.025444233790040016, -0.048987120389938354, 0.11448514461517334, -0.03695305064320564, -0.044258300215005875, -0.04822979494929314, -0.06085801497101784, -0.030796755105257034, 0.03371958062052727, -0.00242195394821465, -0.04353826493024826, 0.02362535148859024, 0.053842224180698395, 0.08144106715917587, 0.008414887823164463, -0.07364396005868912, 0.014680856838822365, -0.01150738075375557, -0.04574021324515343, -0.01886894553899765, 0.04385432228446007, 0.03793231025338173, -0.09302686154842377, -0.03077509254217148, 0.012351445853710175, 0.03190378099679947, -0.03868439793586731, 0.0149906100705266, -0.028639167547225952, 0.0008260781760327518, -0.0227517019957304, 0.033606838434934616, -0.026656631380319595, -0.006520063616335392, -0.005006755236536264, 0.03672299161553383, 0.006402861792594194, 0.0006666199187748134, -0.01394638605415821, -0.03097965382039547, -0.009076728485524654, -0.027405763044953346, -0.07241669297218323, -0.05884091556072235, 0.011509371921420097, 0.004311615601181984, 0.02262585237622261, -0.02782278135418892, 0.013026872649788857, -0.03491401672363281, 0.015588699840009212, -0.033715203404426575, -0.016081413254141808, 0.006024189293384552, 0.03043644316494465, -0.009792046621441841, -0.06638459861278534, 0.04349946603178978, 0.05007479339838028, 0.011798305436968803, 0.0250365249812603, -0.07054822146892548, 0.02838781662285328, 0.042585939168930054, -0.02862410619854927, 0.04111458361148834, 0.019215473905205727, -0.03416977450251579, -0.031658828258514404, -0.001964833587408066, -0.011285418644547462, -0.04020718112587929, -0.004602194298058748, 0.014744454994797707, 0.017721125856041908, 0.04273398593068123, 0.03314783796668053, -0.04197053238749504, -0.07238395512104034, -0.034408241510391235, -0.35469260811805725, -0.018660712987184525, -0.029628535732626915, 0.004205560777336359, 0.043572552502155304, -0.056780193001031876, 0.008968464098870754, 0.0016814353875815868, -0.012235688976943493, -0.0015788679011166096, 0.05357369780540466, -0.03374624624848366, -0.015152610838413239, -0.100407674908638, -0.003344723954796791, 0.038251589983701706, 0.00703513203188777, -0.025548338890075684, -0.04253842681646347, 0.040669772773981094, 0.01368692796677351, -0.01703423447906971, -0.03595715016126633, 0.00015766404976602644, -0.0000053931871661916375, -0.0054783602245152, 0.09007469564676285, 0.001965166535228491, 0.10576097667217255, -0.026722418144345284, 0.044322796165943146, 0.031038081273436546, 0.011608047410845757, -0.0925271213054657, -0.011752712540328503, -0.0367397777736187, -0.016302376985549927, 0.051396872848272324, 0.036883506923913956, 0.0004685469903051853, -0.014097151346504688, 0.013270101509988308, -0.014122643508017063, -0.05542013794183731, -0.02403174340724945, 0.017025450244545937, 0.022587670013308525, -0.04057840630412102, -0.0005158329149708152, 0.07921469956636429, 0.013435511849820614, 0.038794443011283875, 0.021415535360574722, 0.005915100686252117, 0.031783923506736755, -0.026526428759098053, -0.04998507350683212, 0.03267177566885948, 0.00235664751380682, -0.03226781636476517, 0.026290249079465866, 0.050717659294605255, 0.04195231944322586, -0.04167940840125084, -0.023698318749666214, -0.007088497281074524, -0.021091364324092865, 0.014434631913900375, 0.06096264347434044, -0.036894965916872025, -0.003403476206585765, 0.10805463045835495, 0.013857107609510422, 0.02797667123377323, -0.0051489332690835, 0.05587710440158844, 0.013174713589251041, 0.013714948669075966, -0.027032701298594475, -0.040331073105335236, 0.03562124818563461, 0.008066818118095398, 0.05957935377955437, -0.021686075255274773, -0.024964917451143265, 0.04822859913110733, -0.020162450149655342, -0.029040472581982613, 0.06066272407770157, -0.022154010832309723, -0.017339147627353668, -0.028825780376791954, -0.003869890933856368, -0.036235518753528595, 0.08061648905277252, 0.013773133046925068, -0.24306385219097137, 0.028497403487563133, 0.06570101529359818, 0.06411817669868469, 0.01787838712334633, 0.02870817855000496, 0.048355914652347565, -0.04205266758799553, 0.030953383073210716, 0.033841218799352646, 0.012495361268520355, 0.026731783524155617, -0.02853897213935852, -0.025768468156456947, -0.0013908697292208672, -0.006305229850113392, 0.0740128830075264, 0.023325596004724503, 0.036475397646427155, 0.025446513667702675, -0.014960877597332, -0.04514821991324425, 0.16945472359657288, -0.013540121726691723, 0.014211300760507584, -0.005766388028860092, -0.02597160078585148, -0.0027143151964992285, 0.06427112221717834, 0.007107199169695377, 0.0032349610701203346, -0.009412363171577454, 0.03393632173538208, -0.032804351300001144, 0.05209635943174362, -0.05269915610551834, 0.018297016620635986, 0.0386839359998703, 0.04249770939350128, -0.0352400466799736, 0.013504642993211746, 0.013221045024693012, -0.0889534205198288, 0.003836118383333087, 0.04704270511865616, -0.018803302198648453, 0.0013054163428023458, -0.023201577365398407, -0.042854540050029755, 0.0024380444083362818, -0.0320676751434803, -0.004995226860046387, -0.029524656012654305, 0.00874203909188509, 0.04987460374832153, 0.06382573395967484, 0.04829460382461548, -0.01385851763188839, 0.03626789525151253, 0.010293707251548767, -0.003550565103068948, -0.056680046021938324, 0.16715353727340698, 0.055287472903728485, 0.021671388298273087 ]
[ -0.04309439659118652, 0.02116171270608902, -0.023795031011104584, 0.04514749348163605, 0.013018214143812656, 0.01055246964097023, -0.020751573145389557, 0.03509007394313812, -0.04564855992794037, 0.003189622424542904, -0.009761983528733253, 0.021020706743001938, 0.018385594710707664, -0.00789346732199192, 0.01883738860487938, 0.005910741630941629, 0.008537151850759983, -0.017253292724490166, 0.014469891786575317, -0.02822011522948742, -0.022248290479183197, 0.0208218265324831, 0.018679983913898468, 0.0024093016982078552, 0.01895499788224697, 0.006379371974617243, -0.04422515630722046, -0.01898486353456974, 0.018441591411828995, -0.12021688371896744, -0.004046279471367598, -0.002179152565076947, 0.0011606290936470032, 0.011822008527815342, -0.004502563737332821, -0.012815991416573524, -0.021211978048086166, 0.03342711552977562, 0.0020352627616375685, 0.01051606796681881, 0.04474742338061333, -0.023647775873541832, -0.022826457396149635, 0.016218174248933792, 0.020104967057704926, -0.030429478734731674, -0.0018598941387608647, -0.04788830876350403, 0.014071054756641388, -0.007672689855098724, -0.06417421996593475, -0.019527554512023926, -0.004571865312755108, 0.009243641048669815, -0.01583991013467312, -0.011115902103483677, 0.022337697446346283, 0.031739018857479095, -0.008545422926545143, -0.014451934956014156, 0.018951009958982468, -0.003941335715353489, -0.07829469442367554, -0.023138707503676414, -0.013715381734073162, -0.02352488972246647, -0.022541550919413567, 0.02312317118048668, 0.017226021736860275, -0.013982398435473442, 0.004068761598318815, 0.008126238361001015, -0.043782494962215424, -0.006594628561288118, -0.010784226469695568, -0.0023094972129911184, 0.010130374692380428, 0.006678746081888676, 0.029807541519403458, -0.018471993505954742, -0.059256233274936676, 0.008997982367873192, 0.0204425398260355, -0.027225932106375694, 0.01435080636292696, 0.004892782773822546, -0.0031741925049573183, 0.018381638452410698, 0.025006139650940895, -0.0285877026617527, 0.0033352812752127647, -0.03081510215997696, -0.062440816313028336, 0.029097702354192734, -0.10527002811431885, 0.014034299179911613, 0.005370456725358963, 0.002741911681368947, 0.0006752567715011537, 0.8177512884140015, 0.004800226539373398, 0.0319226048886776, 0.01718210056424141, 0.01845531351864338, 0.008032701909542084, 0.029546871781349182, 0.023337017744779587, -0.02151283249258995, 0.024189075455069542, -0.06503280997276306, 0.034305378794670105, -0.02020934969186783, 0.04096231237053871, 0.00006396522076101974, 0.052889633923769, 0.025450395420193672, 0.021181000396609306, 0.01460790541023016, -0.025323936715722084, 0.021529026329517365, -0.005343039520084858, -0.02068311907351017, 0.04039352759718895, 0.022088538855314255, -0.01316265668720007, -0.16345375776290894, -0.028862791135907173, -6.492962800253895e-33, -0.0014870897866785526, -0.021002955734729767, 0.03392705321311951, -0.004404039587825537, 0.021581236273050308, 0.0019924407824873924, -0.0014478611992672086, 0.020644191652536392, -0.022096697241067886, -0.007590886205434799, -0.014210019260644913, -0.004986647516489029, 0.006013256963342428, -0.024344857782125473, 0.0018981705652549863, -0.037010181695222855, -0.019052719697356224, 0.026473267003893852, 0.009278581477701664, 0.02002536505460739, 0.04685753583908081, 0.04263575002551079, -0.025939414277672768, 0.02005026303231716, 0.02244703844189644, -0.004899380262941122, 0.041458673775196075, -0.007228373549878597, 0.0008219385053962469, -0.023601055145263672, -0.03195539489388466, 0.02239963226020336, 0.0068131848238408566, -0.06982772052288055, -0.0395638607442379, -0.03934098407626152, -0.04180257394909859, -0.000969272805377841, 0.01280299760401249, -0.030837276950478554, -0.008744103834033012, -0.0035464877728372812, -0.05084243789315224, -0.012596347369253635, -0.039255738258361816, 0.015236171893775463, 0.013957303017377853, 0.07524467259645462, 0.001385269220918417, 0.00019874940335284919, -0.034478649497032166, -0.0004032688739243895, 0.0000291505621135002, -0.018440360203385353, -0.013813911937177181, 0.038399938493967056, 0.016153911128640175, 0.0014816601760685444, 0.03236299753189087, 0.018728645518422127, 0.03161933645606041, 0.010937392711639404, -0.02917434275150299, 0.03561596944928169, 0.017397597432136536, -0.016078880056738853, -0.0031775529496371746, 0.021024910733103752, 0.013354390859603882, 0.026846053078770638, -0.07626870274543762, 0.032062649726867676, -0.020004726946353912, -0.060771726071834564, 0.07308933138847351, -0.07009468227624893, -0.019912611693143845, 0.009781737811863422, -0.0032332700211554766, -0.012826293706893921, -0.023492399603128433, 0.00009215382306138054, -0.0050617000088095665, -0.03617506101727486, -0.020522616803646088, 0.013568627648055553, 0.010654482990503311, -0.008789855055510998, -0.026055553928017616, -0.0025712247006595135, 0.05156053602695465, 0.055613137781620026, 0.0035281244199723005, -0.01576419733464718, -0.009231789037585258, 7.246834510743091e-33, 0.04144435375928879, 0.01470727939158678, -0.029451830312609673, 0.0089879734441638, 0.05876747891306877, 0.0050054327584803104, 0.01860065385699272, 0.006520991213619709, -0.03373021259903908, 0.0410495363175869, -0.027622606605291367, 0.007134678773581982, -0.025786470621824265, -0.007900050841271877, 0.06580079346895218, -0.017537206411361694, -0.016852067783474922, -0.01219948474317789, 0.025841785594820976, -0.014142517931759357, -0.016673831269145012, -0.003034362569451332, 0.00622978713363409, 0.025252217426896095, 0.04247240722179413, 0.03591831773519516, -0.045672107487916946, 0.03154439851641655, 0.024507563561201096, 0.025923993438482285, -0.014787810854613781, -0.02589312009513378, -0.017924070358276367, -0.021957116201519966, -0.0027704155072569847, 0.02170233055949211, 0.023818807676434517, 0.003124718088656664, -0.005471206270158291, 0.012945259921252728, 0.03829905018210411, 0.027658451348543167, -0.027445334941148758, 0.022737212479114532, 0.0016876686131581664, 0.02149859629571438, 0.0025142442900687456, 0.004444798454642296, -0.03780670836567879, -0.02758869342505932, 0.010936158709228039, -0.013991414569318295, -0.01354280486702919, 0.02430770732462406, 0.009625516831874847, -0.007853922434151173, 0.0002915056247729808, 0.03612884134054184, -0.026311499997973442, -0.0021923002786934376, -0.010941101238131523, 0.04266432672739029, -0.03163386881351471, 0.009051624685525894, -0.05402277037501335, -0.04874002933502197, -0.016187302768230438, 0.03789094090461731, 0.01720518060028553, -0.008012339472770691, 0.0006200365023687482, 0.02737252786755562, 0.0038441249635070562, 0.03785235807299614, 0.00793035514652729, 0.017366431653499603, -0.006166545674204826, 0.0004428293614182621, -0.013888845220208168, 0.03326103091239929, 0.019407987594604492, -0.0027992313262075186, 0.035713642835617065, -0.006399175152182579, -0.0006981021142564714, 0.02335437200963497, -0.024675248190760612, 0.06221843138337135, 0.04098924249410629, -0.01768656261265278, 0.01844193786382675, -0.03664934262633324, -0.007939637638628483, 0.036107659339904785, -0.022298606112599373, -1.2531307547192228e-8, -0.05064820498228073, 0.01238422840833664, -0.002046871930360794, 0.04415065795183182, 0.01037675142288208, 0.008935843594372272, 0.013376478105783463, 0.017738619819283485, -0.00445261737331748, 0.01826375722885132, 0.07945888489484787, -0.039767343550920486, 0.00843382254242897, 0.02901693619787693, -0.005429718643426895, -0.015059275552630424, 0.02518772892653942, 0.03726225346326828, 0.02590789645910263, 0.015941983088850975, 0.017164969816803932, 0.0390135683119297, -0.03959057480096817, 0.0037646291311830282, 0.0027292019221931696, -0.019596602767705917, -0.04840601980686188, -0.06782941520214081, -0.023409418761730194, -0.017245858907699585, 0.017008349299430847, -0.032352495938539505, 0.004772508516907692, 0.021343190222978592, -0.016513260081410408, -0.018596762791275978, 0.03190070763230324, 0.011002725921571255, 0.042925238609313965, 0.031164443120360374, -0.02653597481548786, 0.006790847517549992, 0.00866359006613493, -0.03676551580429077, -0.008577938191592693, -0.050339143723249435, -0.010574783198535442, -0.04941354691982269, -0.007930092513561249, -0.034397467970848083, 0.023316705599427223, -0.003421449102461338, 0.03120269440114498, 0.025345508009195328, 0.019253112375736237, 0.009873851202428341, -0.059242766350507736, -0.018539506942033768, -0.07706405222415924, -0.02226727455854416, 0.016348106786608696, -0.00027150646201334894, -0.010317432694137096, -0.0007795481942594051 ]
unix-get-file-name-without-extension-from-file-path
https://markhneedham.com/blog/2020/08/24/unix-get-file-name-without-extension-from-file-path
false
2020-01-04 00:21:00
QuickGraph #4: UK Official Singles Chart 2019
[ "quickgraph", "neo4j", "apoc" ]
[ "QuickGraph" ]
For our first QuickGraph of the new decade we're going to explore data from the https://www.officialcharts.com/[Official UK Top 40 Chart^]. This chart ranks the top 100 songs of the week based on official sales of sales of downloads, CD, vinyl, audio streams and video streams. Every week BBC Radio 1 broadcast the top 40 songs, which explains the name of the chart. image::{{<siteurl>}}/uploads/2020/01/official-charts-header.png[title="The Official UK Charts"] == Scraping the Official Charts I couldn't find a dump of the dataset, so we're going to use our web scraping skills again. Below is a printscreen showing the page that we're going to scrape. image::{{<siteurl>}}/uploads/2020/01/uk-charts-raw-data.png[title="UK Charts Raw Data"] If we take a look at the underlying HTML, we'll see that each chart entry is conveniently represented by a row in a table: image::{{<siteurl>}}/uploads/2020/01/uk-charts-one-row.png[title="HTML of one chart entry in the UK Charts"] I wrote a couple of Python scripts to https://github.com/mneedham/uk-charts-neo4j/blob/master/scripts/download_charts.py[download each of the charts^] and then for each chart entry, https://github.com/mneedham/uk-charts-neo4j/blob/master/scripts/scrape.py[extract the position, track, artist, and record label^]. We generate one JSON document per chart entry, and below is an example of one of these documents: [source,json] ---- { "start": "01 March 2019", "end": "07 March 2019", "position": 2, "track_name": "Giant", "track_uri": "/search/singles/giant/", "track_file_name": "search-singles-giant", "artist_name": "Calvin Harris & Rag'N'Bone Man", "artist_uri": "/artist/54916/calvin-harris-and-ragnbone-man/", "label": "Columbia" } ---- For many of the tracks the data scraped from the Official Charts website is sufficient, but for some of them I found it difficult to figure out the names of all the collaborating artists. I thought this would be a good opportunity to use the Spotify API to enrich the dataset. == Enriching the data with the Spotify API We'll use https://developer.spotify.com/documentation/web-api/reference-beta/#category-search[Spotify's Search API^] to retrieve the names of all collaborating artists for a track. Instructions explaining how https://github.com/mneedham/uk-charts-neo4j#downloading-and-scraping-charts[how to download and enrich the data^] are described in the https://github.com/mneedham/uk-charts-neo4j[uk-charts-neo4j^] repository. == Exploring the data Let's have a quick look at the first few lines of this file using command line tools: [source,bash] ---- head -n3 import/items.json | jq '.' ---- If we run that command, we'll see the following output: [source,json] ---- { "start": "01 March 2019", "end": "07 March 2019", "position": 1, "track_name": "Someone You Loved", "track_uri": "/search/singles/someone-you-loved/", "track_file_name": "search-singles-someone-you-loved", "artist_name": "Lewis Capaldi", "artist_uri": "/artist/51369/lewis-capaldi/", "label": "Emi", "duration": 182160, "artists": [ { "id": "4GNC7GD6oZMSxPGyXy4MNB", "name": "Lewis Capaldi" } ] } { "start": "01 March 2019", "end": "07 March 2019", "position": 2, "track_name": "Giant", "track_uri": "/search/singles/giant/", "track_file_name": "search-singles-giant", "artist_name": "Calvin Harris & Rag'N'Bone Man", "artist_uri": "/artist/54916/calvin-harris-and-ragnbone-man/", "label": "Columbia", "duration": 229184, "artists": [ { "id": "7CajNmpbOovFoOoasH2HaY", "name": "Calvin Harris" }, { "id": "4f9iBmdUOhQWeP7dcAn1pf", "name": "Rag'n'Bone Man" } ] } { "start": "01 March 2019", "end": "07 March 2019", "position": 3, "track_name": "Break Up With Your Girlfriend I'M Bored", "track_uri": "/search/singles/break-up-with-your-girlfriend-i'm-bored/", "track_file_name": "search-singles-break-up-with-your-girlfriend-i'm-bored", "artist_name": "Ariana Grande", "artist_uri": "/artist/26221/ariana-grande/", "label": "Republic Records", "duration": 190440, "artists": [ { "id": "66CXWjxzNUsdJxJ2JdwvnR", "name": "Ariana Grande" } ] } ---- We can also use the https://neo4j.com/docs/labs/apoc/3.5/[APOC^] Library's https://neo4j.com/docs/labs/apoc/current/import/load-json/[`apoc.load.json`^] procedure to explore the data. The following query returns the 1st chart entry: [source,cypher] ---- CALL apoc.load.json("https://github.com/mneedham/uk-charts-neo4j/raw/master/import/items.json") YIELD value RETURN value LIMIT 1 ---- If we run that query we'll see the following output: .Exploring the data [opts="header"] |=== | value | {"duration":182160,"track_file_name":"search-singles-someone-you-loved","artist_uri":"/artist/51369/lewis-capaldi/","artist_name":"Lewis Capaldi","artists":[{"name":"Lewis Capaldi","id":"4GNC7GD6oZMSxPGyXy4MNB"}],"start":"01 March 2019","end":"07 March 2019","position":1,"label":"Emi","track_uri":"/search/singles/someone-you-loved/","track_name":"Someone You Loved"} |=== Next we're going to use the `apoc.load.json` procedure to load the data into Neo4j. == Importing the data We're going to import the data into the following graph model: image::{{<siteurl>}}/uploads/2020/01/uk-chart-model.png[title="Graph Model for the UK Charts"] The following statements set up indexes and constraints for our graph: [source, cypher] ---- CREATE INDEX ON :Chart(start); CREATE CONSTRAINT ON (l:Label) ASSERT l.name IS UNIQUE; CREATE CONSTRAINT ON (s:Song) ASSERT s.uri IS UNIQUE; CREATE CONSTRAINT ON (a:Artist) ASSERT a.id IS UNIQUE; ---- The following statement imports the charts, songs, artists, and labels into the graph: [source, cypher] ---- CALL apoc.load.json("file://items.json") YIELD value MERGE (chart:Chart { start: date(datetime({epochmillis: apoc.date.parse(value.start, "ms", "dd MMMM yyyy")})), end: date(datetime({epochmillis: apoc.date.parse(value.end, "ms", "dd MMMM yyyy")})) }) MERGE (label:Label {name: value.label}) MERGE (song:Song {uri: value.track_uri}) SET song.title = value.track_name, song.duration = CASE WHEN value.duration is null THEN null ELSE duration({milliseconds:value.duration}) END MERGE (song)-[:LABEL]->(label) MERGE (song)-[inChart:IN_CHART]->(chart) SET inChart.position = value.position FOREACH(artist IN value.artists | MERGE (a:Artist {id: artist.id}) SET a.name = artist.name MERGE (song)-[:ARTIST]->(a) ); ---- We can see a sample of the imported graph in the Neo4j Browser visualisation below: image::{{<siteurl>}}/uploads/2020/01/uk-chart-preview.png[title="Sample of the UK Charts Graph"] == Querying the graph Now let's explore the data using Neo4j's https://neo4j.com/developer/cypher-basics-i/[Cypher^] query language. == Which song was number 1 for the most weeks? [source, cypher] ---- MATCH (song:Song)-[inChart:IN_CHART {position: 1}]->(chart), (song)-[:ARTIST]->(artist) // order the chart dates so that they show in order when // we collect them in the RETURN statement WITH song, collect(artist.name) AS artists, inChart, chart ORDER BY chart.start RETURN song.title AS song, artists, apoc.date.format(song.duration.milliseconds, 'ms', 'mm:ss') AS duration, count(*) AS count, collect(toString(chart.end)) AS weeks ORDER By count DESC; ---- .Which song was number 1 for the most weeks? [opts="header",cols="1,2,1,1,5"] |=== | song | artists | duration | count | weeks | "Dance Monkey" | ["Tones and I"] | "03:29" | 11 | ["2019-10-10", "2019-10-17", "2019-10-24", "2019-10-31", "2019-11-07", "2019-11-14", "2019-11-21", "2019-11-28", "2019-12-05", "2019-12-12", "2019-12-19"] | "I Don'T Care" | ["Ed Sheeran", "Justin Bieber"] | "03:39" | 8 | ["2019-05-23", "2019-05-30", "2019-06-06", "2019-06-13", "2019-06-20", "2019-06-27", "2019-07-04", "2019-07-11"] | "Someone You Loved" | ["Lewis Capaldi"] | "03:02" | 7 | ["2019-03-07", "2019-03-14", "2019-03-21", "2019-03-28", "2019-04-04", "2019-04-11", "2019-04-18"] | "Senorita" | ["Shawn Mendes", "Camila Cabello"] | "03:10" | 6 | ["2019-07-18", "2019-08-01", "2019-08-08", "2019-08-15", "2019-08-22", "2019-08-29"] | "Take Me Back To London" | ["Ed Sheeran", "Stormzy"] | "03:09" | 5 | ["2019-09-05", "2019-09-12", "2019-09-19", "2019-09-26", "2019-10-03"] | "Sweet But Psycho" | ["Ava Max"] | "03:07" | 4 | ["2019-01-03", "2019-01-10", "2019-01-17", "2019-01-24"] | "7 Rings" | ["Ariana Grande"] | "02:58" | 4 | ["2019-01-31", "2019-02-07", "2019-02-14", "2019-02-28"] | "Old Town Road" | ["Billy Ray Cyrus", "Lil Nas X"] | "02:37" | 2 | ["2019-04-25", "2019-05-02"] | "Vossi Bop" | ["Stormzy"] | "03:16" | 2 | ["2019-05-09", "2019-05-16"] | "Break Up With Your Girlfriend I'M Bored" | ["Ariana Grande"] | "03:10" | 1 | ["2019-02-21"] | "Beautiful People" | ["Khalid", "Ed Sheeran"] | "03:17" | 1 | ["2019-07-25"] | "I Love Sausage Rolls" | ["LadBaby"] | "03:23" | 1 | ["2019-12-26"] |=== The extremely catchy Dance Monkey was number 1 for 11 weeks, or just less than 3 months of the year. We can see Ed Sheeran show up in the _artists_ column a few times as well, so let's next see which artist was number 1 for the most weeks. == Which artist was number 1 for the most weeks? [source,cypher] ---- MATCH (song:Song)-[inChart:IN_CHART {position: 1}]->(chart), (song)-[:ARTIST]->(artist:Artist) WITH artist, song, count(*) AS weeks RETURN artist.name, apoc.map.fromPairs(collect([song.title, weeks])) AS songs, count(*) AS count, sum(weeks) AS weeks ORDER BY weeks DESC; ---- .Which artist was number 1 for the most weeks? [opts="header",cols="1,5,1,1"] |=== | artist | songs | count | weeks | "Ed Sheeran" | {`Take Me Back To London`: 5, `I Don'T Care`: 8, `Beautiful People`: 1} | 3 | 14 | "Tones and I" | {`Dance Monkey`: 11} | 1 | 11 | "Justin Bieber" | {`I Don'T Care`: 8} | 1 | 8 | "Lewis Capaldi" | {`Someone You Loved`: 7} | 1 | 7 | "Stormzy" | {`Take Me Back To London`: 5, `Vossi Bop`: 2} | 2 | 7 | "Shawn Mendes" | {Senorita: 6} | 1 | 6 | "Camila Cabello" | {Senorita: 6} | 1 | 6 | "Ariana Grande" | {`7 Rings`: 4, `Break Up With Your Girlfriend I'M Bored`: 1} | 2 | 5 | "Ava Max" | {`Sweet But Psycho`: 4} | 1 | 4 | "Billy Ray Cyrus" | {`Old Town Road`: 2} | 1 | 2 | "Lil Nas X" | {`Old Town Road`: 2} | 1 | 2 | "Khalid" | {`Beautiful People`: 1} | 1 | 1 | "LadBaby" | {`I Love Sausage Rolls`: 1} | 1 | 1 |=== Ed Sheeran had 3 number 1's last year, giving him a total of 14 weeks at number 1. I was surprised not to see what I thought was his most popular song of the year, South Of The Border. Let's see what happened there. == How did South Of The Border do on the charts? [source,cypher] ---- MATCH (song:Song {title: "South Of The Border"}) MATCH (song)-[inChart:IN_CHART]->(chart) WITH song, chart, inChart ORDER BY chart.start RETURN inChart.position AS position, collect(toString(chart.end)) AS charts ORDER BY position ---- .How did South Of The Border do on the charts? [opts="header",cols="1,3"] |=== | position | charts | 4 | ["2019-10-31", "2019-11-14", "2019-11-21"] | 5 | ["2019-11-07"] | 7 | ["2019-10-24", "2019-11-28"] | 9 | ["2019-12-05", "2019-12-12"] | 13 | ["2019-12-19"] | 24 | ["2019-10-17"] | 40 | ["2019-10-10"] | 55 | ["2019-12-26"] |=== Hmmm, it peaked at number 4 back in October and November, before falling down the chart after that. I wonder if Ed Sheeran released any other songs last year? == How did Ed Sheeran's other songs do? [source,cypher] ---- MATCH (artist:Artist {name: "Ed Sheeran"}) MATCH (artist)<-[:ARTIST]-(song)-[inChart:IN_CHART]->(chart) WITH song, artist, min(inChart.position) AS bestPosition, toString(min(chart.end)) AS chart OPTIONAL MATCH (artist)<-[:ARTIST]-(song)-[:ARTIST]->(collaborator) RETURN song.title AS song, collect(collaborator.name) AS collaborators, bestPosition, chart ORDER BY bestPosition ---- .How did Ed Sheeran's other songs do? [opts="header",cols="1,2,1,1"] |=== | song | collaborators | bestPosition | chart | "I Don'T Care" | ["Justin Bieber"] | 1 | "2019-05-23" | "Take Me Back To London" | ["Stormzy"] | 1 | "2019-07-25" | "Beautiful People" | ["Khalid"] | 1 | "2019-07-11" | "Own It" | ["Burna Boy", "Stormzy"] | 2 | "2019-12-05" | "South Of The Border" | ["Camila Cabello", "Cardi B"] | 4 | "2019-10-10" | "Cross Me" | ["Chance the Rapper", "PnB Rock"] | 4 | "2019-06-06" | "Perfect" | [] | 40 | "2019-01-10" | "Shape Of You" | [] | 82 | "2019-01-10" |=== The last two on this list are hangovers from 2018. I expect they charted much higher during that year. We can create a visual representation of this data by tweaking our query slightly: [source,cypher] ---- MATCH (artist:Artist {name: "Ed Sheeran"}) MATCH (artist)<-[:ARTIST]-(song)-[inChart:IN_CHART]->(chart) WITH song, artist, min(inChart.position) AS bestPosition, toString(min(chart.end)) AS chart // Create virtual nodes and relationships to represent // the best chart position for a song CALL apoc.create.vNode(["Chart"], {end: chart}) YIELD node AS bestChart CALL apoc.create.vRelationship(song, "IN_CHART", {position: bestPosition}, bestChart) YIELD rel OPTIONAL MATCH (artist)<-[:ARTIST]-(song)-[:ARTIST]->(collaborator) RETURN * ---- We could probably achieve the same result by tweaking the first part of the query, but I never like to miss an opportunity to use virtual nodes and relationships. image::{{<siteurl>}}/uploads/2020/01/ed-sheeran-songs.png[title="Ed Sheeran songs in the UK Charts of 2019"] It's interesting that he's had a collaborator on all his other songs in 2019, and all of his songs charted in the top 5. Let's explore artist collaborations a bit more. == How many collaborators did artists have during the year? The following query computes the number of collaborators each artist had and then creates a histogram of those counts: [source,cypher] ---- MATCH (artist:Artist) OPTIONAL MATCH (artist)<-[:ARTIST]-(song)-[:ARTIST]->(otherArtist) WITH artist, count(otherArtist) AS count RETURN count, count(*) ORDER BY count ---- This data is easiest to interpret as a chart, which we can create using https://www.chartgo.com/[chartgo.com^]. image::{{<siteurl>}}/uploads/2020/01/collaborations-count.png[title="Artist Collaborations"] Although the majority of artists mostly worked alone or had only one collaborator, there are a reasonable number who had 6 or more collaborators over the year. In all the queries that we're written so far, we've been looking at the chart position for a song in a single week. We haven't written any queries that look at how a song's chart position changes over the weeks. What if we want to do this? == Which song had the biggest climb between weeks? We're going to work out which song had the biggest climb between weeks, but first we'll create relationships between consecutive charts to make it easier to write this query. So for example we'll create a `NEXT` relationship between: * The _Chart_ nodes with _end_ properties `2019-02-14` and `2019-02-21` * The _Chart_ nodes with _end_ properties `2019-02-21` and `2019-02-28` And so on. The following query collects all the _Chart_ nodes in order by date and then creates `NEXT` relationships between consecutive nodes using the `apoc.nodes.link` procedure: [source,cypher] ---- MATCH (chart:Chart) WITH chart ORDER BY chart.start WITH collect(chart) AS charts CALL apoc.nodes.link(charts, "NEXT") RETURN count(*) ---- The Neo4j Browser visualisation below shows the linked list that we've now created: image::{{<siteurl>}}/uploads/2020/01/charts-linked-list.png[title="Linked list of consecutive Chart nodes"] We can now write the following query to return the 5 songs that made the biggest climb in the charts in consecutive weeks: [source,cypher] ---- MATCH (song:Song)-[inChart:IN_CHART]->(chart)<-[:NEXT]-(previousChart), (previousChart)<-[inChartPrevious:IN_CHART]-(song), (song)-[:ARTIST]->(artist) WITH song, collect(artist.name) AS artists, inChartPrevious.position AS firstPosition, inChart.position AS secondPosition, previousChart, chart RETURN song.title AS song, artists, firstPosition, secondPosition, firstPosition - secondPosition AS change, toString(previousChart.end) AS firstChart, toString(chart.end) AS secondChart ORDER BY change DESC LIMIT 5 ---- .Which song had the biggest climb between weeks? [opts="header"] |=== | song | artists | firstPosition | secondPosition | change | firstChart | secondChart | "Bruises" | ["Lewis Capaldi"] | 82 | 11 | 71 | "2019-10-03" | "2019-10-10" | "Playing Games" | ["Summer Walker", "Bryson Tiller"] | 93 | 25 | 68 | "2019-10-10" | "2019-10-17" | "Girls Like You" | ["Maroon 5", "Cardi B"] | 97 | 34 | 63 | "2019-01-03" | "2019-01-10" | "Lose You To Love Me" | ["Selena Gomez"] | 65 | 3 | 62 | "2019-10-31" | "2019-11-07" | "Play" | ["Years & Years", "Jax Jones"] | 80 | 19 | 61 | "2019-01-03" | "2019-01-10" |=== There are some big climbers there, but I think it'll be more interesting to look at number 1 songs in this context. == Which songs went straight in at number 1? Let's start by seeing whether any of our number 1 songs went straight in at number 1. The following query will tell us the answer to this question: [source,cypher] ---- // Find songs that charted at position 1 MATCH (song:Song)-[inChart:IN_CHART {position: 1}]->(chart) // And didn't have an entry on a chart before this one WHERE not((chart)<-[:NEXT*]-()<-[:IN_CHART]-(song)) WITH song, chart ORDER BY chart.end RETURN song.title AS song, [(song)-[:ARTIST]->(artist) | artist.name] AS artists, collect(toString(chart.end)) AS chart ---- .Which songs went straight in at number 1? [opts="header"] |=== | song | artists | chart | "Sweet But Psycho" | ["Ava Max"] | ["2019-01-03"] | "7 Rings" | ["Ariana Grande"] | ["2019-01-31"] | "Break Up With Your Girlfriend I'M Bored" | ["Ariana Grande"] | ["2019-02-21"] | "Vossi Bop" | ["Stormzy"] | ["2019-05-09"] | "I Don'T Care" | ["Ed Sheeran", "Justin Bieber"] | ["2019-05-23"] | "I Love Sausage Rolls" | ["LadBaby"] | ["2019-12-26"] |=== 6 songs went straight in at the top. That means we still have 6 songs that came in at a lower position and then climbed to number 1. == Which songs didn't go straight to number 1? The following query will help us figure out what position they charted on their first entry: [source,cypher] ---- // Find the first week that the song got to number 1 MATCH (song:Song)-[inChart:IN_CHART {position: 1}]->(chart) WITH song, chart ORDER BY song, chart.end WITH song, collect(chart)[0] AS firstWeekAtNumber1 // Find the earliest week that the song charted MATCH (firstWeekAtNumber1)<-[:NEXT*]-(previous)<-[previousInChart:IN_CHART]-(song) WITH song, firstWeekAtNumber1, previous, previousInChart ORDER BY song, previous.end WITH song, firstWeekAtNumber1, collect(previousInChart.position)[0] AS firstPosition, collect(previous)[0] AS firstWeek RETURN song.title AS song, [(song)-[:ARTIST]->(artist) | artist.name] AS artists, toString(firstWeekAtNumber1.end) AS firstWeekAtNumber1, firstPosition AS firstPosition, toString(firstWeek.end) AS firstWeek, [path = (firstWeekAtNumber1)<-[:NEXT*]-(firstWeek) | length(path)][0] AS weeksToReachNumber1 ---- .Which songs didn't go straight to number 1? [opts="header"] |=== | song | artists | firstWeekAtNumber1 | firstPosition | firstWeek | weeksToReachNumber1 | "Someone You Loved" | ["Lewis Capaldi"] | "2019-03-07" | 66 | "2019-01-17" | 7 | "Dance Monkey" | ["Tones and I"] | "2019-10-10" | 82 | "2019-08-15" | 8 | "Take Me Back To London" | ["Ed Sheeran", "Stormzy"] | "2019-09-05" | 3 | "2019-07-25" | 6 | "Senorita" | ["Shawn Mendes", "Camila Cabello"] | "2019-07-18" | 2 | "2019-07-04" | 2 | "Beautiful People" | ["Khalid", "Ed Sheeran"] | "2019-07-25" | 3 | "2019-07-11" | 2 | "Old Town Road" | ["Billy Ray Cyrus", "Lil Nas X"] | "2019-04-25" | 67 | "2019-04-04" | 3 |=== Interestingly the longest running number 1, Dance Monkey, started at the lowest position. And not only that, it took almost 2 months for it to get up to the number 1 spot. So if you start with a low chart position, all is not lost! == What’s interesting about this QuickGraph? This post has gone on for much longer than I intended, but I'll conclude with some thoughts on what makes this QuickGraph interesting. There's a lot of analysis of the charts in the UK, but it's often done along one dimension, be that a song or an artist. By modelling the data as a graph we can easily query the data along multiple dimensions. I especially enjoyed writing the queries that looked at how songs did across multiple charts. We could certainly extend our analysis further by adding in Wiki data, as Jesús Barrasa did in his https://jbarrasa.com/2019/12/05/quickgraph10-enrich-your-neo4j-knowledge-graph-by-querying-wikidata/[QuickGraph #10^], but that can wait for another blog post!
Learn how to build a graph of the UK's Official Singles Chart
uploads/2020/01/official-charts-header.png
[ 0.0033183502964675426, -0.029967226088047028, 0.033997099846601486, 0.04562559351325035, 0.058047693222761154, -0.008940276689827442, 0.027990970760583878, 0.030593357980251312, 0.014175008982419968, -0.004955260548740625, -0.03468792140483856, 0.008768361993134022, -0.06598667055368423, 0.012019364163279533, 0.004183928482234478, 0.0658656656742096, 0.051746562123298645, 0.009182839654386044, 0.014397635124623775, -0.010394462384283543, 0.040101971477270126, 0.07209397852420807, -0.008424347266554832, 0.010707946494221687, 0.01058074552565813, -0.018320994451642036, 0.007304052356630564, -0.004176768008619547, -0.06466814875602722, -0.005224061198532581, 0.05206073820590973, -0.0177940484136343, 0.004243618343025446, 0.005472735967487097, 0.025780342519283295, -0.01078056264668703, -0.009857657365500927, 0.0019010792020708323, -0.010952928103506565, -0.007861485704779625, -0.0735483318567276, 0.003947142511606216, -0.004258072003722191, 0.023029161617159843, -0.059638652950525284, -0.011681392788887024, -0.016220510005950928, 0.04171980917453766, 0.0026583306025713682, -0.015201601199805737, -0.055977609008550644, 0.07389328628778458, -0.05104730650782585, -0.0011537382379174232, -0.02680554986000061, 0.03160440921783447, 0.02606097422540188, -0.03375796973705292, 0.005813988856971264, -0.019643034785985947, 0.005661705508828163, -0.018974777311086655, -0.0017710926476866007, 0.01023219432681799, 0.006240007467567921, -0.058216553181409836, -0.03224334120750427, 0.06654412299394608, -0.0470852293074131, -0.020972169935703278, -0.023469923064112663, 0.015529030933976173, -0.03727734461426735, 0.006446662824600935, -0.008154147304594517, -0.0440063513815403, 0.02424219436943531, 0.048966314643621445, -0.007741383742541075, 0.0449884794652462, 0.01281163189560175, 0.043069060891866684, 0.01390946563333273, 0.0422244556248188, -0.04926289990544319, -0.047819145023822784, -0.024776482954621315, -0.02046588808298111, -0.07285749167203903, 0.0625893846154213, -0.004210904706269503, -0.06026875600218773, 0.016507763415575027, 0.03772096708416939, -0.025679249316453934, 0.01888968236744404, 0.02046184241771698, -0.010570110753178596, 0.00595617201179266, -0.03279759734869003, -0.02519519254565239, -0.021800139918923378, 0.03515810891985893, -0.0029736580327153206, -0.06513814628124237, -0.014386959373950958, -0.005888726096600294, 0.0013331923400983214, 0.007052483968436718, -0.02101610228419304, -0.012163198553025723, 0.02686760574579239, -0.033115457743406296, 0.03461671620607376, -0.04936165735125542, 0.054755449295043945, 0.024703871458768845, -0.04577896371483803, -0.015826832503080368, 0.02634793519973755, 0.04810703918337822, 0.010826239362359047, -0.001808006432838738, 0.08539346605539322, -0.0021612229757010937, 0.03233256936073303, 0.002622766885906458, 0.045349329710006714, -0.0075638266280293465, -0.039161503314971924, -0.008430948480963707, 0.06002268195152283, -0.017534691840410233, -0.008784199133515358, -0.020044410601258278, -0.008731390349566936, -0.0019285057205706835, 0.007676545064896345, 0.051179781556129456, 0.058593399822711945, 0.02140968292951584, -0.038734689354896545, -0.00402030861005187, 0.005405430216342211, 0.0012513616820797324, 0.0009024306200444698, -0.038608234375715256, -0.028492765501141548, -0.02908012643456459, 0.0030701602809131145, 0.03024502843618393, 0.002265361836180091, 0.03886422887444496, -0.040645673871040344, -0.021239176392555237, 0.08442021906375885, 0.04676355421543121, 0.028856327757239342, 0.0010192814515903592, 0.00680911261588335, 0.061482902616262436, 0.04020725563168526, -0.006245834287256002, 0.03919448330998421, 0.0013223682763054967, -0.029810039326548576, -0.01924937032163143, 0.07493069022893906, -0.05432403087615967, -0.018020035699009895, -0.04355451837182045, -0.03212999179959297, 0.04736960679292679, -0.01716635748744011, -0.04640192538499832, 0.07594021409749985, 0.09703612327575684, 0.03423397243022919, 0.031403932720422745, 0.01767251268029213, -0.08421652764081955, 0.04217493534088135, 0.048147398978471756, 0.0051004234701395035, 0.022613797336816788, 0.009397161193192005, 0.07879979908466339, 0.058947980403900146, 0.021707981824874878, 0.01982085220515728, -0.054567333310842514, -0.0767730101943016, -0.03453677520155907, -0.016582975164055824, 0.04214908182621002, -0.03029417060315609, 0.040707021951675415, 0.05453598499298096, 0.009344431571662426, 0.05669860169291496, -0.006975334603339434, -0.005493822041898966, 0.01080018375068903, -0.05681270360946655, -0.06095707416534424, 0.037760376930236816, 0.019450532272458076, -0.059563666582107544, -0.021629005670547485, -0.010327556170523167, -0.03112201578915119, -0.0035004077944904566, 0.04846787452697754, -0.009200599044561386, 0.001085322117432952, -0.00723900506272912, 0.0667007640004158, -0.0029271116945892572, 0.032370537519454956, -0.05575304478406906, 0.028687139973044395, 0.044442951679229736, -0.007691644132137299, -0.02020840346813202, -0.004302980378270149, 0.11719250679016113, 0.04511578753590584, -0.033522576093673706, -0.03627627342939377, 0.0038554274942725897, 0.0007416572771035135, -0.014063009060919285, 0.00916470866650343, -0.018118012696504593, -0.03597826510667801, 0.002106843516230583, -0.06077917665243149, -0.014260707423090935, 0.009517996571958065, -0.07069192081689835, -0.00003037197529920377, 0.04903930425643921, -0.016308272257447243, 0.06359251588582993, -0.00959132518619299, -0.0011000322410836816, -0.025604836642742157, -0.021163402125239372, -0.044562969356775284, 0.013111470267176628, 0.01450418122112751, -0.005081979092210531, -0.0003952940460294485, -0.028753453865647316, -0.014901934191584587, -0.00551582919433713, -0.022741444408893585, 0.0295823123306036, 0.05165209248661995, 0.06471697986125946, 0.012476801872253418, 0.020051002502441406, 0.0023418706841766834, 0.015428672544658184, -0.0009856176329776645, -0.05276236683130264, -0.07034458220005035, -0.048699550330638885, 0.025214480236172676, -0.0005596977425739169, 0.0307724941521883, 0.0305981133133173, 0.02944204956293106, 0.03284494951367378, 0.03345654159784317, 0.017458317801356316, 0.050512924790382385, 0.009321014396846294, 0.023555422201752663, -0.024274136871099472, -0.01864870823919773, 0.06205562874674797, -0.021760379895567894, -0.039233122020959854, 0.011466058902442455, -0.0624060332775116, 0.027353055775165558, -0.04516180232167244, -0.002004719339311123, 0.00513109564781189, -0.0006981482729315758, 0.04994548112154007, 0.0258152075111866, 0.028056448325514793, 0.04386746883392334, -0.017908599227666855, 0.03491923213005066, -0.005530342925339937, -0.034549418836832047, 0.05131028592586517, -0.02388427034020424, 0.034990765154361725, 0.057890258729457855, -0.03521091863512993, 0.03404359146952629, -0.04087940976023674, 0.01629508286714554, -0.02991640381515026, -0.2844246029853821, 0.019834943115711212, 0.009895739145576954, -0.040110643953084946, 0.030761634930968285, -0.02467084303498268, -0.003546134801581502, -0.047686100006103516, -0.026937192305922508, 0.02059919573366642, -0.006197707261890173, -0.030253764241933823, -0.05165660381317139, 0.02612888440489769, 0.043823789805173874, 0.001322433352470398, -0.009751069359481335, -0.045721717178821564, 0.0015914520481601357, 0.03764457255601883, 0.0036697913892567158, -0.0619012676179409, -0.0030564130283892155, 0.03432644158601761, 0.009425007738173008, 0.054123081266880035, -0.06544649600982666, 0.0034340110141783953, -0.0489230751991272, -0.008078554645180702, 0.020395109429955482, -0.020571855828166008, 0.03132909536361694, -0.019666779786348343, -0.009565301239490509, -0.03791961446404457, 0.02620585262775421, -0.018493331968784332, -0.014079995453357697, 0.010056667029857635, -0.03525024652481079, -0.03578625246882439, -0.008576726540923119, 0.021540869027376175, 0.06326249241828918, 0.013458133675158024, -0.040383465588092804, -0.016611585393548012, -0.04230845347046852, 0.09588100016117096, -0.03219415619969368, -0.030005058273673058, -0.030820343643426895, -0.005491877440363169, -0.053670044988393784, 0.00013825124187860638, -0.0005345495301298797, -0.01402073260396719, -0.05558774992823601, -0.04382399469614029, -0.005610184278339148, -0.0199455413967371, -0.018728408962488174, -0.04265807196497917, -0.004102436359971762, -0.06086597219109535, -0.03831513598561287, -0.017829053103923798, 0.07174377143383026, 0.026451479643583298, -0.01103492546826601, -0.01290752924978733, -0.010496711358428001, -0.09775181859731674, -0.03284730389714241, -0.021004626527428627, 0.013261220417916775, 0.03530247509479523, 0.0225975438952446, 0.03129437193274498, -0.042917851358652115, -0.03924473002552986, 0.040397126227617264, 0.007354672532528639, 0.022882413119077682, -0.035867393016815186, 0.017064396291971207, 0.016965841874480247, -0.0384405143558979, -0.00902099721133709, 0.07031281292438507, -0.032070886343717575, -0.023217422887682915, 0.009035996161401272, -0.013260713778436184, 0.03164296597242355, -0.001362451585009694, 0.006596228573471308, 0.009657219052314758, 0.05493752285838127, 0.01632254384458065, -0.038474563509225845, 0.0166535135358572, -0.011421965435147285, -0.017245063558220863, -0.030181098729372025, -0.04528911039233208, 0.004576987121254206, 0.0055117858573794365, -0.007839727215468884, 0.010861478745937347, -0.01621726155281067, 0.010669440031051636, -0.05209167301654816, -0.03291340172290802, -0.02979963831603527, 0.04224400222301483, 0.005731999408453703, 0.025454232469201088, -0.023366142064332962, -0.029422316700220108, 0.010901560075581074, 0.011414991691708565, 0.008456802926957607, -0.06980280578136444, -0.025962943211197853, 0.008415453135967255, -0.014221440069377422, 0.028190521523356438, 0.028445862233638763, -0.007226333022117615, 0.03036603517830372, 0.0036882057320326567, -0.046686261892318726, 0.038674309849739075, -0.017782127484679222, -0.011568175628781319, -0.0601729191839695, 0.041669394820928574, -0.008526896126568317, -0.024324962869286537, 0.015520655550062656, 0.028856754302978516, 0.034115616232156754, 0.05742223560810089, -0.012866294011473656, 0.036046285182237625, 0.0032799793407320976, 0.002948732115328312, 0.00607685511931777, -0.004673661198467016, -0.00960923358798027, 0.05023648217320442, -0.039171528071165085, 0.01506328210234642, 0.016827546060085297, 0.030268458649516106, -0.039066191762685776, -0.032229021191596985, -0.043978314846754074, 0.024859165772795677, -0.06113278120756149, -0.018411193042993546, -0.02385648712515831, 0.015586511231958866, 0.05607873573899269, -0.004216443747282028, 0.037689778953790665, 0.019425563514232635, 0.002702153054997325, -0.01599387265741825, 0.004162783734500408, -0.01636987179517746, -0.026701966300606728, -0.015416107140481472, -0.004660468082875013, -0.0042199669405817986, 0.03372308611869812, 0.028203658759593964, 0.041102372109889984, -0.02025064453482628, -0.0073623331263661385, 0.007258479483425617, 0.007881310768425465, 0.04604535177350044, 0.034224048256874084, -0.04787396639585495, 0.012950652278959751, -0.007523099891841412, -0.0061149452812969685, -0.0066310325637459755, -0.011136671528220177, -0.032042574137449265, -0.009057017043232918, -0.006453083828091621, -0.07756685465574265, -0.007092024199664593, 0.02002391591668129, 0.01486189104616642, 0.03249257802963257, -0.039416272193193436, 0.009505363181233406, -0.008869420737028122, 0.028015701100230217, 0.04721325635910034, -0.06522979587316513, 0.0025685583241283894, 0.007289860863238573, -0.026509668678045273, -0.015474331565201283, -0.019581278786063194, -0.06539397686719894, -0.02949843555688858, -0.02561867982149124, 0.022719640284776688, -0.043093662708997726, -0.04025770723819733, -0.04148693010210991, 0.03227744996547699, -0.005356431007385254, 0.0018216766184195876, 0.013133840635418892, -0.014878397807478905, 0.014017662964761257, 0.015973644331097603, 0.004382777493447065, -0.03343529254198074, -0.000447048427304253, 0.00835746992379427, -0.05359407514333725, 0.00764152966439724, -0.009908461943268776, 0.02464083582162857, 0.046748869121074677, -0.04055272787809372, 0.03567185997962952, -0.04412343353033066, 0.00868708360940218, 0.04010336846113205, 0.05698869377374649, 0.0028780358843505383, -0.015157163143157959, -0.02989361435174942, -0.00873753521591425, 0.010163161903619766, -0.006345678120851517, 0.04837151616811752, -0.008989064022898674, 0.04524610564112663, 0.028486989438533783, 0.0034429780207574368, 0.013323262333869934, -0.018385952338576317, -0.04691602289676666, 0.04491952061653137, -0.0610976479947567, -0.030251918360590935, -0.015409392304718494, -0.044043660163879395, 0.04165835306048393, 0.013750947080552578, 0.024036895483732224, -0.024345513433218002, 0.03773418068885803, 0.0345693975687027, 0.039453063160181046, 0.03842932730913162, 0.02140079438686371, 0.014312656596302986, -0.02848428674042225, -0.00023187343322206289, -0.08426284044981003, -0.021178385242819786, 0.03508744388818741, 0.01816219836473465, -0.02284475602209568, -0.003431369084864855, -0.050310757011175156, 0.01671728305518627, -0.05571739375591278, -0.03231383487582207, 0.03117552027106285, -0.010132919996976852, -0.013222064822912216, 0.03177417069673538, -0.04307371750473976, 0.02348625473678112, 0.02415643259882927, -0.019739778712391853, -0.030236510559916496, -0.010364619083702564, 0.0801558569073677, 0.009931491687893867, 0.023304671049118042, -0.014831320382654667, -0.023789992555975914, 0.0815153568983078, 0.03056315705180168, 0.04542406648397446, 0.03874846175312996, -0.014107026159763336, 0.03085869923233986, 0.010653560981154442, -0.011612026020884514, -0.0008786797989159822, 0.008462326601147652, 0.016919095069169998, -0.08411373943090439, 0.021052349358797073, 0.01153440773487091, -0.019732728600502014, -0.03817825764417648, 0.06288980692625046, 0.00664078164845705, -0.04046006500720978, -0.049427542835474014, 0.038162101060152054, -0.06392265111207962, 0.0017682266188785434, 0.00275778747163713, -0.002288132207468152, -0.06039974093437195, 0.056060656905174255, 0.015607267618179321, 0.016499467194080353, 0.05706460028886795, -0.026932870969176292, 0.010903948917984962, 0.02871747873723507, 0.09154888242483139, 0.07141130417585373, 0.07731939852237701, 0.012723001651465893, 0.07822109013795853, -0.038421157747507095, -0.045271217823028564, -0.004841472953557968, 0.002624688670039177, 0.008555860258638859, -0.00559984752908349, -0.016324473544955254, 0.0232229083776474, -0.0239714365452528, 0.0573994442820549, -0.007617136463522911, -0.049533531069755554, -0.02569432556629181, -0.008504156954586506, 0.0253322571516037, 0.04708178713917732, -0.010898957028985023, 0.03998938575387001, -0.03860166668891907, -0.03521522507071495, 0.06988624483346939, 0.009832738898694515, -0.008328072726726532, 0.0304923914372921, -0.023489534854888916, 0.011118140071630478, -0.020846527069807053, 0.05404778569936752, 0.07260482013225555, -0.024753298610448837, -0.012147093191742897, -0.010604383423924446, 0.04605129361152649, 0.04016018658876419, 0.04345567896962166, -0.012666616588830948, 0.015333427116274834, -0.015635060146450996, -0.03345693647861481, -0.023453082889318466, -0.028496980667114258, -0.051909055560827255, 0.022869890555739403, -0.015868939459323883, 0.005586771760135889, 0.004978952929377556, -0.00658542150631547, -0.027183828875422478, -0.05516885593533516, -0.04470403492450714, -0.05951051786541939, -0.058720801025629044, -0.04556339979171753, 0.036438558250665665, -0.014233536086976528, -0.01494106836616993, -0.03219102323055267, -0.006912623532116413, -0.012840552255511284, 0.00988189596682787, -0.07235532999038696, -0.04710778966546059, 0.038015175610780716, 0.03593041002750397, 0.010434763506054878, -0.008566314354538918, 0.05669337883591652, -0.00645465450361371, -0.020519714802503586, -0.007850788533687592, 0.02176794409751892, 0.05177321285009384, 0.01193105336278677, 0.026485903188586235, -0.08828108012676239, 0.025431279093027115, -0.014904027804732323, -0.02401711419224739, -0.06863153725862503, 0.004010194446891546, 0.01417109277099371, 0.006878675427287817, 0.048304151743650436, -0.031798336654901505, 0.005786777473986149, -0.05898246914148331, -0.009769942611455917, 0.008710602298378944, -0.0009054837864823639, 0.040737710893154144, -0.04724525660276413, 0.09613555669784546, 0.010496060363948345, 0.01922393962740898, -0.028394611552357674, 0.0014190329238772392, -0.011631777510046959, -0.0011909882305189967, -0.04290497303009033, -0.05644100531935692, -0.04522489756345749, -0.07676095515489578, -0.043746039271354675, 0.02224838361144066, -0.03258749097585678, -0.03127336502075195, 0.009674918837845325, 0.016609231010079384, -0.0049956985749304295, 0.011901315301656723, -0.03923463821411133, 0.002142416313290596, -0.013543357141315937, 0.017792783677577972, -0.033738769590854645, 0.03333377465605736, 0.026686280965805054, 0.006162733305245638, 0.02018294669687748, -0.04355311021208763, -0.00012793170753866434, -0.05178385600447655, 0.015349715948104858, 0.0451514907181263, 0.009168587625026703, -0.02603304013609886 ]
[ -0.0496983677148819, -0.044902898371219635, -0.008828354999423027, -0.033773262053728104, 0.1013905331492424, -0.006559193134307861, -0.044788580387830734, -0.006878289859741926, 0.002723697107285261, -0.0135420523583889, 0.027585113421082497, -0.03538665920495987, 0.022925259545445442, 0.0023043432738631964, 0.03332575410604477, 0.030858637765049934, 0.009546873159706593, -0.08351827412843704, -0.023969072848558426, 0.026223046705126762, -0.002149665029719472, 0.02717239409685135, -0.05539879947900772, -0.030609309673309326, 0.03816189244389534, 0.01587427407503128, 0.03872967138886452, -0.009700173512101173, -0.03675319254398346, -0.1804817169904709, 0.016998859122395515, -0.03193264082074165, 0.06074969470500946, -0.0068860137835145, 0.009500070475041866, 0.019039589911699295, 0.03612114489078522, 0.038078781217336655, 0.020884495228528976, 0.04415019229054451, 0.01633804477751255, -0.0013287421315908432, -0.06682795286178589, -0.0461733415722847, 0.039606694132089615, 0.036830052733421326, -0.010674208402633667, -0.006665634457021952, 0.017451299354434013, 0.05451027676463127, -0.056154705584049225, -0.0028432682156562805, -0.01940714381635189, 0.008293992839753628, 0.0018761040410026908, 0.021232567727565765, 0.03641123324632645, 0.04875325784087181, 0.024714713916182518, 0.041121914982795715, 0.009473186917603016, -0.00391047028824687, -0.1444627344608307, 0.07372462749481201, 0.004381529521197081, 0.035948410630226135, -0.04035784304141998, 0.00016379986482206732, -0.059984199702739716, 0.10775114595890045, -0.013217604719102383, -0.040379319339990616, -0.001471762196160853, 0.0097860898822546, 0.0006473807734437287, -0.020696565508842468, 0.00936594046652317, 0.025627613067626953, -0.026114029809832573, -0.03688911348581314, -0.019177136942744255, 0.03757079318165779, -0.02709704264998436, -0.06839892268180847, 0.0004627828311640769, 0.005886975675821304, -0.03598780184984207, 0.043896134942770004, 0.009569224901497364, 0.020411856472492218, 0.03285760432481766, 0.008289461024105549, 0.01626732014119625, 0.01306554488837719, -0.10702607035636902, -0.0379747673869133, 0.03332396224141121, 0.04122910276055336, 0.005437429994344711, 0.41260024905204773, -0.009251228533685207, 0.011950450949370861, 0.03571967035531998, 0.04192344471812248, -0.012277040630578995, -0.04099792614579201, 0.007565692067146301, -0.028307979926466942, 0.025295058265328407, -0.017803674563765526, 0.011678319424390793, -0.013887115754187107, 0.06429959833621979, -0.09611626714468002, 0.029918434098362923, -0.02186230570077896, -0.00484108692035079, 0.04804603010416031, 0.028696581721305847, -0.02552393265068531, -0.014820617623627186, 0.00441997405141592, 0.0328790657222271, 0.0061188614927232265, 0.016384964808821678, 0.02594311721622944, 0.06388058513402939, 0.016116971150040627, 0.03233826532959938, -0.0010256399400532246, 0.048028573393821716, -0.02495485171675682, -0.08691959828138351, 0.03573465347290039, -0.03917922452092171, -0.012532636523246765, 0.04082493484020233, -0.005798899102956057, -0.00233292649500072, 0.03015197440981865, -0.005814739502966404, -0.05627134069800377, 0.002204393967986107, -0.006261350121349096, -0.036733921617269516, 0.13920480012893677, -0.001798724289983511, -0.025527939200401306, -0.04364294186234474, -0.02334609441459179, -0.02935895137488842, 0.01681613363325596, 0.0388110987842083, -0.05605773627758026, 0.029703103005886078, 0.0420956015586853, 0.09584096074104309, -0.02828710339963436, -0.05177363380789757, 0.000917609955649823, 0.01809932105243206, -0.036041516810655594, -0.027373190969228745, 0.019075825810432434, 0.04511040821671486, -0.10202310234308243, -0.02468033879995346, 0.026568161323666573, -0.019000370055437088, -0.06918346136808395, -0.03087264858186245, 0.009251981042325497, -0.0598088838160038, 0.026060501113533974, 0.08081279695034027, -0.00946436170488596, -0.0026902765966951847, 0.009760071523487568, 0.04078684747219086, -0.01980431191623211, -0.036630596965551376, -0.039661359041929245, -0.043639589101076126, 0.009237871505320072, -0.058996692299842834, -0.044394925236701965, -0.04964819923043251, -0.005281314253807068, -0.014873008243739605, 0.0018636435270309448, 0.024138497188687325, -0.02992057241499424, -0.03903766721487045, 0.08565017580986023, -0.04017563536763191, -0.026516739279031754, -0.035600971430540085, 0.0032092095352709293, -0.011153972707688808, -0.04100295901298523, -0.02657267637550831, -0.04072977229952812, -0.0023349332623183727, 0.01680757664144039, -0.052710022777318954, 0.062444694340229034, 0.07338695973157883, -0.010511083528399467, 0.10135451704263687, 0.005312961060553789, -0.005837896838784218, -0.021768154576420784, -0.01840134896337986, -0.004392937291413546, 0.0011195461265742779, -0.032707180827856064, -0.018223507329821587, 0.012770192697644234, 0.010854623280465603, 0.03998604789376259, -0.026906630024313927, -0.06615167111158371, -0.03446304425597191, -0.35134926438331604, -0.01894884556531906, 0.002817487809807062, 0.018848514184355736, 0.03182648494839668, -0.0438050702214241, 0.009306076914072037, 0.005589125212281942, 0.03837363049387932, 0.08630263060331345, 0.07224985212087631, 0.013319042511284351, -0.0025253472849726677, -0.1307319700717926, -0.02765064500272274, 0.012638133019208908, -0.04860135167837143, -0.022282635793089867, 0.02556280419230461, 0.045314911752939224, 0.007999459281563759, -0.053282711654901505, -0.07059420645236969, -0.019506189972162247, -0.004516900982707739, -0.04905543476343155, 0.12827780842781067, 0.05206537991762161, 0.02336428314447403, -0.045225679874420166, 0.018326841294765472, -0.0009696254855953157, -0.024865763261914253, -0.08289080858230591, -0.022383442148566246, -0.02352944202721119, 0.029461773112416267, -0.005597182549536228, -0.041431427001953125, -0.055824749171733856, -0.052261289209127426, 0.0231068953871727, -0.016691654920578003, -0.02604982629418373, -0.04718351364135742, 0.027092071250081062, -0.010925805196166039, -0.01746223308146, -0.0008835040498524904, 0.0698290541768074, 0.041039008647203445, 0.01667378470301628, 0.020070625469088554, 0.012861907482147217, -0.004625280387699604, -0.02579343505203724, -0.07207870483398438, -0.002649581991136074, -0.014517594128847122, -0.028399096801877022, 0.03329767659306526, 0.021511629223823547, 0.04287491738796234, -0.06276559829711914, -0.0353904627263546, -0.0031813920941203833, 0.018198534846305847, 0.017208263278007507, 0.013980647549033165, -0.00431518629193306, -0.002018972998484969, 0.07263703644275665, -0.0028763459995388985, 0.02947593294084072, 0.02602521888911724, 0.03931156173348427, -0.009243026375770569, 0.013839690014719963, 0.027415962889790535, 0.006982330232858658, 0.022431598976254463, 0.01584607921540737, 0.020128102973103523, -0.02021651528775692, -0.032682690769433975, 0.061377983540296555, 0.05767826735973358, -0.05232418328523636, 0.0392436757683754, 0.018311163410544395, 0.012678488157689571, -0.0034349828492850065, -0.013857625424861908, -0.061291277408599854, 0.04074541851878166, 0.02620740234851837, -0.23981331288814545, 0.024427199736237526, 0.04418680816888809, 0.06486998498439789, -0.0007102194358594716, 0.000720810960046947, 0.034309905022382736, 0.014086373150348663, -0.014662115834653378, 0.034688953310251236, 0.01035479549318552, 0.05519179627299309, -0.00047968103899620473, -0.051810622215270996, -0.01896802894771099, -0.002631155541166663, 0.06577428430318832, 0.02445395477116108, 0.008910911157727242, 0.03760030120611191, 0.04079439491033554, -0.0009661289514042437, 0.1620466560125351, 0.06701496243476868, 0.013169248588383198, 0.013339376077055931, -0.024202371016144753, 0.0031629486475139856, 0.04443666338920593, -0.008634365163743496, -0.0012042124290019274, -0.008021986111998558, -0.009973273612558842, 0.010644880123436451, 0.004073162097483873, -0.05003727599978447, -0.048013437539339066, 0.046899132430553436, 0.015369903296232224, -0.024527115747332573, -0.006517473608255386, 0.019627461209893227, -0.08126039057970047, 0.05309264734387398, 0.05587015673518181, -0.020701032131910324, 0.01736891269683838, -0.05038253217935562, -0.056502487510442734, -0.014812758192420006, -0.02333863638341427, -0.05400312319397926, -0.0428767055273056, 0.005311347544193268, 0.018442343920469284, 0.10084975510835648, 0.0314270555973053, 0.0004481030919123441, 0.068562813103199, -0.0031418318394571543, -0.020902110263705254, -0.03737170621752739, 0.07866556197404861, 0.010615792125463486, 0.021630141884088516 ]
[ 0.011023193597793579, 0.02995857037603855, 0.011494415812194347, 0.014462295919656754, 0.038649193942546844, 0.030478496104478836, -0.010456625372171402, 0.017733236774802208, -0.042852070182561874, -0.006318752188235521, -0.02140623703598976, -0.010120799764990807, 0.01876920275390148, -0.00906316377222538, 0.04046802967786789, -0.00022314235684461892, -0.033343177288770676, -0.020060084760189056, 0.044948041439056396, -0.020414164289832115, -0.05920090153813362, -0.002219235757365823, -0.00046810024650767446, 0.01776878535747528, -0.02211902104318142, 0.012468552216887474, -0.07441829144954681, 0.04763174429535866, 0.0406232625246048, -0.11699936538934708, -0.0018739830702543259, -0.04037867486476898, 0.01572650671005249, 0.016763869673013687, -0.02655462548136711, -0.004546713083982468, -0.006166387349367142, 0.010623510926961899, 0.005520969163626432, 0.04047880321741104, 0.04956302046775818, -0.017473790794610977, -0.01610158383846283, -0.021096864715218544, -0.006669969297945499, -0.007627092767506838, -0.032741181552410126, -0.00009299628436565399, -0.02914780005812645, 0.04921894520521164, -0.039180729538202286, -0.011431190185248852, -0.01227871235460043, 0.027203937992453575, 0.006978833116590977, -0.002934041665866971, -0.02400343306362629, 0.005089744925498962, 0.0377127081155777, -0.0002928829344455153, -0.005792167503386736, -0.025825366377830505, -0.038825906813144684, -0.03518257662653923, 0.010082198306918144, -0.00172010890673846, -0.03963996842503548, 0.018825838342308998, -0.0035739087034016848, 0.054705146700143814, 0.026051105931401253, -0.007708275690674782, -0.044981036335229874, -0.020292388275265694, -0.037380773574113846, -0.03398105129599571, -0.01780979335308075, -0.028616705909371376, -0.05059421807527542, -0.007364614401012659, -0.021051397547125816, 0.01820356771349907, -0.015840018168091774, -0.023382632061839104, -0.024050038307905197, -0.019660484045743942, 0.01834915392100811, -0.01959143579006195, -0.03263411298394203, -0.027588551864027977, -0.03435412049293518, -0.008151308633387089, 0.016401223838329315, 0.038629960268735886, -0.06959883868694305, 0.031345434486866, 0.020315904170274734, -0.015735099092125893, 0.007291260175406933, 0.8084211945533752, 0.03959832340478897, -0.013194571249186993, 0.000025241266484954394, -0.00977243110537529, 0.007756874430924654, -0.04708606377243996, -0.030824225395917892, 0.023141397163271904, -0.010556047782301903, -0.03397958725690842, 0.020737288519740105, 0.03042973205447197, 0.007397085428237915, 0.04641837626695633, -0.009985707700252533, 0.030966494232416153, -0.037400562316179276, 0.01534509938210249, -0.016370121389627457, 0.015516389161348343, 0.018217934295535088, 0.02505185268819332, -0.00728575186803937, 0.010465960949659348, -0.0024709838908165693, -0.16144737601280212, 0.035214751958847046, -7.203596155100001e-33, 0.009385843761265278, -0.029675137251615524, 0.03074529394507408, -0.036734215915203094, 0.01551076490432024, 0.0006667652633041143, -0.053904999047517776, 0.012486821971833706, -0.000038073776522651315, 0.009681789204478264, 0.03591248765587807, 0.02997255139052868, 0.005325556732714176, 0.009671790525317192, 0.016762908548116684, 0.014681805856525898, 0.0031483815982937813, 0.03339236229658127, -0.015416363254189491, 0.00014974414079915732, 0.003555883886292577, 0.028880108147859573, 0.032295797020196915, 0.048415135592222214, -0.015703918412327766, 0.04412919655442238, -0.02200152911245823, 0.0070823924615979195, -0.014370368793606758, -0.04169932380318642, -0.04868146777153015, -0.005451732315123081, 0.009600555524230003, -0.04322560876607895, 0.018489429727196693, -0.055557020008563995, -0.04103818163275719, 0.012161596678197384, -0.03294454887509346, -0.04851024970412254, -0.030666595324873924, -0.010334904305636883, -0.027905238792300224, -0.04678858816623688, -0.0573386549949646, 0.029209084808826447, -0.0024149827659130096, 0.008806792087852955, 0.011134334839880466, 0.01683843694627285, 0.006730201188474894, 0.0039754630997776985, -0.023133404552936554, 0.015939241275191307, 0.009634717367589474, -0.0019348281202837825, 0.024155447259545326, 0.004553706850856543, 0.0033287014812231064, -0.0037579077761620283, 0.03812973573803902, -0.011096364818513393, 0.026581190526485443, 0.021828768774867058, -0.01410601381212473, 0.010601399466395378, 0.0406426303088665, -0.010405439883470535, 0.01484046783298254, 0.019589513540267944, -0.06185850873589516, 0.05192762240767479, -0.0055220345966517925, -0.04658571630716324, 0.07740721106529236, -0.006696484051644802, 0.004032592289149761, 0.00507658626884222, 0.01445392332971096, 0.048728443682193756, 0.008912865072488785, -0.024308502674102783, 0.0025303405709564686, -0.035840924829244614, -0.02818833477795124, -0.006409970112144947, 0.037913188338279724, 0.003911430947482586, -0.018701571971178055, 0.028283802792429924, 0.011033877730369568, 0.0442693866789341, -0.05133989080786705, -0.01575762964785099, 0.007700670976191759, 7.646947073824073e-33, 0.02160235494375229, 0.02345363050699234, 0.04600951448082924, -0.011894692666828632, 0.04029993712902069, -0.022308722138404846, 0.02887771464884281, 0.07413115352392197, -0.02406332641839981, 0.06163962930440903, 0.013813193887472153, -0.0727059543132782, -0.04115068167448044, 0.013722728937864304, 0.05253550410270691, -0.00872688926756382, -0.006027290131896734, 0.00010902669600909576, -0.0048541962169110775, -0.010937999933958054, -0.01181049458682537, 0.014228282496333122, 0.017080973833799362, 0.04848216101527214, 0.010168226435780525, 0.051623567938804626, -0.0012370178010314703, -0.012578911148011684, -0.008423433639109135, 0.009883063845336437, -0.0266423262655735, -0.031267888844013214, -0.010608956217765808, -0.056385405361652374, 0.007653670385479927, 0.04162529110908508, 0.027453310787677765, 0.004609612748026848, 0.004223877098411322, -0.005855829920619726, -0.0077645862475037575, 0.027965310961008072, -0.011707532219588757, 0.017654191702604294, 0.010631909593939781, 0.007463614922016859, -0.008966289460659027, 0.039994023740291595, -0.004350955132395029, 0.009446578100323677, 0.018762586638331413, 0.034597501158714294, 0.02583618089556694, 0.004962185863405466, 0.011795190162956715, -0.0388757549226284, -0.02166265808045864, 0.039423294365406036, -0.0638672336935997, -0.018073992803692818, -0.018695933744311333, -0.004410863853991032, -0.04875917732715607, 0.0053029716946184635, -0.0397421158850193, 0.0006296084611676633, -0.029264258220791817, -0.02842208370566368, 0.005596341099590063, 0.04215654730796814, 0.00778255145996809, -0.02027120441198349, 0.0052576856687664986, 0.020088646560907364, -0.01751277595758438, -0.0022252053022384644, -0.00809675082564354, 0.013916311785578728, -0.00882191676646471, 0.018968749791383743, 0.0355939045548439, 0.03161386772990227, 0.02984224073588848, -0.007874245755374432, 0.011746801435947418, 0.04822168126702309, -0.009852753020823002, -0.03299146145582199, 0.0235736146569252, -0.007142161019146442, 0.02808436192572117, -0.060045164078474045, -0.02451574243605137, 0.03653562441468239, -0.004475399386137724, -1.271798311108796e-8, -0.08539974689483643, -0.005638051312416792, -0.006126194726675749, 0.02696993015706539, 0.03157031536102295, 0.021871497854590416, 0.011054093949496746, 0.01577465981245041, 0.018043288961052895, 0.008958148770034313, 0.06853637844324112, -0.039502616971731186, -0.006698270794004202, 0.020115405321121216, -0.03952842950820923, -0.062099989503622055, -0.01017889566719532, 0.010623530484735966, 0.04122646152973175, 0.012821407057344913, 0.026974670588970184, 0.05332541838288307, 0.0501764677464962, -0.006929234601557255, 0.019414646551012993, -0.01054775808006525, 0.031615693122148514, -0.05514058470726013, -0.010191434063017368, -0.007428913377225399, 0.047473322600126266, -0.04204733669757843, -0.031049832701683044, 0.022322168573737144, 0.0037786017637699842, -0.03737912327051163, -0.017222879454493523, 0.021132957190275192, -0.02974829636514187, -0.0031185243278741837, -0.003198942868039012, 0.04072228819131851, -0.03655720129609108, -0.016754906624555588, -0.027867833152413368, -0.00371687114238739, -0.019192306324839592, 0.02135356143116951, 0.027569308876991272, -0.04638179764151573, -0.019295766949653625, -0.042846065014600754, 0.04369974508881569, 0.013626006431877613, 0.017790788784623146, -0.016488436609506607, 0.005398986861109734, -0.003495016833767295, -0.05427655577659607, 0.005732870195060968, 0.023003775626420975, -0.006005827337503433, 0.012619794346392155, -0.018677717074751854 ]
quick-graph-uk-official-charts
https://markhneedham.com/blog/2020/01/04/quick-graph-uk-official-charts
false
2020-01-02 00:21:00
Spotify API: Making my first call
[ "spotify", "python", "apis" ]
[ "Spotify" ]
:icons: font I wanted to enrich the data for a little music application I'm working on and realised it would be a perfect opportunity to try out the https://developer.spotify.com/documentation/[Spotify API^]. I want to extract data about individual tracks (via the https://developer.spotify.com/documentation/web-api/reference-beta/#category-tracks[Tracks API^]), but before we do that we'll need to create an app and have it approved for access to the Spotify API. image::{{<siteurl>}}/uploads/2020/01/spotify-logo.png[] == Registering an application After logging into the https://developer.spotify.com/dashboard/applications[Spotify Dashboard^] using my usual Spotify credentials, I was prompted to create an application: image::{{<siteurl>}}/uploads/2020/01/create-app.png[] We then have to fill in a three part form, providing some information about the application that we want to build: image::{{<siteurl>}}/uploads/2020/01/spotify-sign-up.png[] Once we submit that form, we will be redirected to a screen similar to the following: image::{{<siteurl>}}/uploads/2020/01/dashboard.png[] Before we start using the API in the next section, we'll need to have our Client ID and Client Secret handy. The Client ID is already visible, and we can retrieve our Client Secret by clicking on the _Show Client Secret_ link: image::{{<siteurl>}}/uploads/2020/01/dashboard-secret.png[] Once we click on that link, we'll see the following screen: image::{{<siteurl>}}/uploads/2020/01/spotify-show-secret.png[] We're now ready to start using the API. == Requesting access token Since we're not interested in accessing user information via the API, we can use the _Client Credentials Flow_ described in the https://developer.spotify.com/documentation/general/guides/authorization-guide/#client-credentials-flow[Authorization Developer Guide^]. The diagram below, taken from this guide, explains how this works: image::{{<siteurl>}}/uploads/2020/01/spotify-AuthG_ClientCredentials.png[] We're going to use the https://requests.readthedocs.io/en/master/[Python requests library ^] to call the `/api/token` endpoint. This endpoint expects to receive the `Authorization` header parameter with a value set to a Base 64 encoded string of our Client ID and Client Secret, which we saw on our Dashboard in the previous section. Let's create environment variables containing these values, by running the commands below on our terminal window: [NOTE] == Don't forget to change the placeholder values to your Client ID and Client Secret. == [source, bash] ---- export CLIENT_ID="<our-client-id>" export CLIENT_SECRET="<our-client-secret>" ---- Once we've done that, we can write the following Python script to get an access token: _spotify_exploration.py_ [source,python] ---- import requests import base64 import os import json credentials = f"{os.environ['CLIENT_ID']}:{os.environ['CLIENT_SECRET']}" encoded_credentials = str(base64.b64encode(credentials.encode("utf-8")), "utf-8") payload = {"grant_type": "client_credentials"} headers = {"Authorization": f"Basic {encoded_credentials}"} response = requests.post("https://accounts.spotify.com/api/token", headers=headers, data=payload).json() print("Response:", response) ---- If we run that script, we'll see the following output: .python spotify_exploration.py |=== | Response: {'access_token': '<our-access-token>', 'token_type': 'Bearer', 'expires_in': 3600, 'scope': ''} |=== == Calling the Tracks API We can now extend our script to make a call to the Tracks API to retrieve information about the UK's longest running number 1 song of 2019, Dance Monkey: [source,python] ---- token = response["access_token"] headers = {"Authorization": f"Bearer {token}"} track_response = requests.get("https://api.spotify.com/v1/tracks/2XU0oxnq2qxCpomAAuJY8K", headers=headers).json() print("Track Response:", json.dumps(track_response)) ---- If we run our script again, we'll see the following output: .python spotify_exploration.py |=== | Track Response: {"album": {"album_type": "single", "artists": [{"external_urls": {"spotify": "https://open.spotify.com/artist/2NjfBq1NflQcKSeiDooVjY"}, "href": "https://api.spotify.com/v1/artists/2NjfBq1NflQcKSeiDooVjY", "id": "2NjfBq1NflQcKSeiDooVjY", "name": "Tones and I", "type": "artist", "uri": "spotify:artist:2NjfBq1NflQcKSeiDooVjY"}], "available_markets": ["AD", "AE", "AR", "AT", "BE", "BG", "BH", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "DZ", "EC", "EE", "EG", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IL", "IS", "IT", "JO", "JP", "KW", "LB", "LI", "LT", "LU", "LV", "MA", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "OM", "PA", "PE", "PH", "PL", "PS", "PT", "PY", "QA", "RO", "SA", "SE", "SG", "SK", "SV", "TH", "TN", "TR", "TW", "US", "UY", "VN", "ZA"], "external_urls": {"spotify": "https://open.spotify.com/album/0UywfDKYlyiu1b38DRrzYD"}, "href": "https://api.spotify.com/v1/albums/0UywfDKYlyiu1b38DRrzYD", "id": "0UywfDKYlyiu1b38DRrzYD", "images": [{"height": 640, "url": "https://i.scdn.co/image/b98ddadfe65507738699fa7f80dc654f7f4d022d", "width": 640}, {"height": 300, "url": "https://i.scdn.co/image/2610e3524ce08c4d6ad16e7b9327f46998e1b821", "width": 300}, {"height": 64, "url": "https://i.scdn.co/image/93740961697e111d69fbbb8a16af64b354528cce", "width": 64}], "name": "Dance Monkey (Stripped Back) / Dance Monkey", "release_date": "2019-10-17", "release_date_precision": "day", "total_tracks": 2, "type": "album", "uri": "spotify:album:0UywfDKYlyiu1b38DRrzYD"}, "artists": [{"external_urls": {"spotify": "https://open.spotify.com/artist/2NjfBq1NflQcKSeiDooVjY"}, "href": "https://api.spotify.com/v1/artists/2NjfBq1NflQcKSeiDooVjY", "id": "2NjfBq1NflQcKSeiDooVjY", "name": "Tones and I", "type": "artist", "uri": "spotify:artist:2NjfBq1NflQcKSeiDooVjY"}], "available_markets": ["AD", "AE", "AR", "AT", "BE", "BG", "BH", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "DZ", "EC", "EE", "EG", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IL", "IS", "IT", "JO", "JP", "KW", "LB", "LI", "LT", "LU", "LV", "MA", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "OM", "PA", "PE", "PH", "PL", "PS", "PT", "PY", "QA", "RO", "SA", "SE", "SG", "SK", "SV", "TH", "TN", "TR", "TW", "US", "UY", "VN", "ZA"], "disc_number": 1, "duration_ms": 209438, "explicit": false, "external_ids": {"isrc": "QZES71982312"}, "external_urls": {"spotify": "https://open.spotify.com/track/2XU0oxnq2qxCpomAAuJY8K"}, "href": "https://api.spotify.com/v1/tracks/2XU0oxnq2qxCpomAAuJY8K", "id": "2XU0oxnq2qxCpomAAuJY8K", "is_local": false, "name": "Dance Monkey", "popularity": 100, "preview_url": "https://p.scdn.co/mp3-preview/535ffea66207a0fc07d57fbaea7b5594be797f9b?cid=<our-client-id>", "track_number": 2, "type": "track", "uri": "spotify:track:2XU0oxnq2qxCpomAAuJY8K"} |=== We've now successfully made our first call to the Spotify API. And it's onwards with the rest of our application!
Learn how to call the Spotify API to retrieve details about a particular song.
uploads/2020/01/spotify-logo.png
[ 0.024350740015506744, -0.002032811287790537, -0.0036069387570023537, 0.034220851957798004, 0.08476252108812332, 0.025463927537202835, 0.012416223995387554, 0.03647598251700401, -0.03263290971517563, -0.018416384235024452, -0.02497423253953457, -0.005159789230674505, -0.06901281327009201, -0.011280705220997334, -0.010240609757602215, 0.05044106766581535, 0.07631372660398483, 0.022687377408146858, 0.0378795862197876, 0.009527185931801796, 0.015218498185276985, 0.08808599412441254, -0.006343591492623091, 0.04003342613577843, 0.025089606642723083, 0.03114246390759945, -0.005945577751845121, -0.009090458042919636, -0.07594229280948639, 0.0027170998509973288, 0.035134896636009216, -0.011728421784937382, 0.015248140320181847, -0.020650703459978104, -0.0016212427290156484, -0.007129382807761431, 0.007810165174305439, 0.030157901346683502, 0.007431441452354193, 0.0224036555737257, -0.06546555459499359, 0.008551985956728458, 0.00012010081991320476, 0.0020160179119557142, -0.04274697229266167, 0.010706787928938866, -0.04449573531746864, 0.010898668318986893, 0.003357432084158063, -0.004836339969187975, -0.049172770231962204, 0.01615462824702263, -0.04030873626470566, 0.01153488177806139, 0.03185654431581497, 0.04936698451638222, 0.027514582499861717, -0.04069399833679199, 0.0011128531768918037, -0.04410571977496147, 0.005956627428531647, 0.0048903655260801315, 0.02805459126830101, 0.02178473398089409, 0.00650964118540287, -0.015181808732450008, 0.0033566888887435198, 0.05994005501270294, -0.03747577965259552, -0.024591779336333275, 0.004937283229082823, -0.012416334822773933, -0.04410072788596153, -0.011809494346380234, 0.012343477457761765, -0.04143444821238518, -0.012191029265522957, 0.048551321029663086, -0.008062468841671944, 0.04599519819021225, -0.005556339863687754, -0.004071986768394709, 0.03051225282251835, 0.021709445863962173, -0.0286566074937582, -0.07003337144851685, -0.03968484327197075, -0.009911319240927696, -0.03639936074614525, 0.05447347089648247, 0.038992952555418015, -0.06576506048440933, 0.03872773051261902, 0.04574752599000931, 0.006093811243772507, 0.01256462000310421, 0.014158312231302261, -0.02014162391424179, -0.0064035155810415745, 0.00940560083836317, -0.030204415321350098, 0.004419523756951094, 0.004293251782655716, 0.006978537421673536, -0.06302383542060852, 0.013134936802089214, -0.01744542084634304, -0.016466474160552025, -0.0181246530264616, 0.006617784965783358, 0.02031681500375271, 0.007495298981666565, -0.037546638399362564, 0.007545881904661655, -0.05339651182293892, 0.09516016393899918, 0.017973367124795914, -0.022944793105125427, 0.00463159941136837, 0.03608420118689537, 0.07024617493152618, 0.038393083959817886, -0.013185127638280392, 0.06344606727361679, 0.0028509446419775486, 0.04363643750548363, 0.008103041909635067, 0.0392284020781517, -0.013269895687699318, -0.05472217872738838, -0.018707063049077988, 0.050316229462623596, -0.004895616322755814, 0.009152318350970745, 0.012362760491669178, -0.003541576210409403, 0.01765008457005024, -0.024473004043102264, 0.05508400872349739, -0.003419403452426195, -0.02067650482058525, -0.035405442118644714, -0.011084404774010181, -0.014651517383754253, 0.03154566511511803, 0.011621881276369095, 0.027193013578653336, -0.03144346922636032, -0.05220292508602142, 0.04038409888744354, 0.018885979428887367, 0.004636845551431179, 0.055074311792850494, -0.02860132046043873, -0.012439223937690258, 0.08643198013305664, 0.04678340628743172, 0.006295705679804087, -0.017845189198851585, 0.0020201150327920914, 0.03973017632961273, 0.03489994257688522, 0.011251414194703102, 0.041030146181583405, 0.008940224535763264, -0.001914454041980207, -0.0012980328174307942, 0.03637006878852844, -0.006335013080388308, -0.008272579871118069, -0.06589685380458832, -0.05619035288691521, 0.057817958295345306, -0.018706688657402992, -0.00029854150488972664, 0.045538995414972305, 0.08071422576904297, 0.008193780668079853, 0.01828334666788578, 0.032093849033117294, -0.08643053472042084, 0.04211913049221039, 0.013792614452540874, 0.005777612794190645, 0.02833988517522812, -0.0030226274393498898, 0.08346305042505264, 0.027308980002999306, 0.0068245804868638515, 0.010075774975121021, -0.06240711361169815, -0.08019570261240005, -0.027271419763565063, 0.012215372174978256, 0.045591436326503754, -0.038533054292201996, 0.008112492971122265, 0.05993952974677086, 0.03670472651720047, 0.055881205946207047, 0.016349608078598976, -0.02240040712058544, 0.0032526866998523474, -0.04670393839478493, -0.062179334461688995, 0.023099320009350777, 0.04656560719013214, -0.04051707684993744, -0.03898557275533676, 0.004941902589052916, -0.03982733190059662, -0.004723859019577503, 0.038147326558828354, -0.010990804061293602, 0.025450894609093666, -0.0211781095713377, 0.016920169815421104, 0.006105318199843168, 0.031611185520887375, -0.0781022235751152, 0.02682267315685749, 0.007707210723310709, -0.01151023805141449, -0.007563787512481213, 0.004726525396108627, 0.11439438909292221, 0.04867587983608246, -0.0433950200676918, -0.00848726462572813, 0.011640405282378197, 0.010420423001050949, -0.04573445022106171, -0.0005491700721904635, -0.023884516209363937, -0.019875546917319298, 0.024943724274635315, -0.024539634585380554, -0.011406123638153076, 0.013802154920995235, -0.05153972655534744, 0.02260717749595642, 0.05352773889899254, -0.026496948674321175, 0.033510513603687286, 0.008989796042442322, -0.026078592985868454, -0.009026993066072464, -0.03832801803946495, -0.05676978453993797, 0.0040984689258039, 0.033299580216407776, -0.010276631452143192, 0.008190536871552467, -0.03858361020684242, -0.02898513153195381, -0.02182258665561676, -0.03210560977458954, 0.025740865617990494, 0.02006729133427143, 0.05695534124970436, -0.02367280423641205, 0.030767496675252914, -0.011769641190767288, 0.0015426732134073973, -0.018306730315089226, -0.041049525141716, -0.015994463115930557, -0.0040781437419354916, 0.004229441750794649, 0.05342208594083786, 0.023105256259441376, 0.027932923287153244, 0.01418561302125454, 0.007938181050121784, -0.0012554558925330639, 0.005550864152610302, 0.04979589581489563, -0.015413452871143818, 0.01787327416241169, -0.049024831503629684, -0.019507236778736115, 0.06075216084718704, -0.046619564294815063, -0.04071047902107239, 0.013942313380539417, -0.06696425378322601, 0.04310459643602371, -0.05492331460118294, -0.04580908641219139, -0.0163672287017107, -0.00029613255173899233, 0.045228101313114166, 0.011283185333013535, 0.028404414653778076, 0.07377353310585022, -0.00011525433365022764, -0.006472250446677208, -0.002297468949109316, -0.011645080521702766, 0.03370146453380585, -0.0057680183090269566, -0.01203144434839487, 0.06451991200447083, -0.059925924986600876, 0.019948216155171394, -0.06039857491850853, 0.004226170014590025, -0.0225401408970356, -0.2787921726703644, 0.031371574848890305, 0.0017603548476472497, -0.04007692262530327, 0.020802471786737442, -0.009474048390984535, 0.00276994239538908, -0.03312692046165466, 0.000030972900276537985, 0.018672483041882515, -0.025410450994968414, -0.019045040011405945, -0.02253596857190132, 0.02696390450000763, -0.022759201005101204, 0.012707037851214409, 0.014546279795467854, -0.0391804538667202, 0.0008910819888114929, 0.00538063608109951, -0.02354387938976288, -0.06305201351642609, 0.011717835441231728, 0.044396381825208664, 0.02486327663064003, 0.030649539083242416, -0.06293147057294846, 0.04456734657287598, -0.04623860865831375, -0.032074034214019775, 0.04927738383412361, -0.013535520061850548, 0.014945209957659245, -0.026727035641670227, -0.030829403549432755, -0.034858476370573044, 0.04292380064725876, -0.003398462664335966, 0.01086085382848978, -0.029722899198532104, -0.012620296329259872, -0.03133967146277428, -0.018333254382014275, -0.014882686547935009, 0.07653778046369553, -0.006146360654383898, -0.09279721975326538, -0.01965516246855259, -0.05732361599802971, 0.07904519885778427, -0.006231164094060659, -0.04385099187493324, -0.03514748066663742, 0.028894759714603424, -0.029900286346673965, -0.02190360799431801, 0.01561911404132843, 0.004165333695709705, -0.06479965895414352, -0.03370063379406929, 0.02950788289308548, -0.037950336933135986, -0.02529156766831875, -0.044566404074430466, 0.0020050767343491316, -0.0950722023844719, -0.03465467318892479, -0.024500742554664612, 0.07401832938194275, 0.05526762828230858, -0.028792813420295715, -0.011358290910720825, -0.010620644316077232, -0.11049538850784302, -0.004389314446598291, -0.031169235706329346, -0.015525796450674534, 0.012668324634432793, -0.02183263935148716, 0.036010727286338806, -0.0311447661370039, -0.015682119876146317, 0.052195630967617035, -0.005955052562057972, -0.010384412482380867, -0.004695093259215355, 0.028662394732236862, 0.004465885926038027, -0.024379808455705643, 0.019780196249485016, 0.0757703185081482, -0.043915729969739914, -0.015490077435970306, -0.009094714187085629, -0.008272753097116947, 0.030414462089538574, 0.02581571415066719, 0.021727336570620537, 0.008781450800597668, 0.044127207249403, 0.0353102907538414, -0.03602190315723419, -0.015999458730220795, -0.01701962761580944, 0.009286808781325817, -0.019902920350432396, -0.05010167136788368, -0.0018853119108825922, 0.020412785932421684, 0.002255354542285204, 0.009020842611789703, -0.03872638940811157, -0.0012177720200270414, -0.06658471375703812, -0.027559930458664894, -0.02463890239596367, 0.029564177617430687, 0.02096564508974552, 0.03212917596101761, -0.012157791294157505, -0.03434612229466438, 0.008639461360871792, 0.04017803445458412, 0.0059556919150054455, -0.0418563187122345, -0.03694841265678406, -0.004892115946859121, -0.014445935375988483, 0.02766784280538559, 0.038592834025621414, 0.007933240383863449, 0.0076065752655267715, -0.016651608049869537, -0.044094331562519073, 0.02146206609904766, -0.019205866381525993, -0.017521817237138748, -0.043999724090099335, 0.028904283419251442, -0.006859306711703539, 0.0028944117948412895, 0.025697246193885803, -0.0022272297646850348, 0.013595128431916237, 0.07859595119953156, -0.014849520288407803, 0.01415418554097414, -0.0021422754507511854, -0.017192039638757706, -0.030798332765698433, -0.002089752582833171, -0.05370750278234482, 0.017899461090564728, -0.04759601131081581, -0.009599694982171059, -0.03560736030340195, 0.019722694531083107, -0.026969609782099724, -0.02969302609562874, -0.0333256796002388, 0.0070048607885837555, -0.0636753961443901, -0.021729324012994766, -0.013982083648443222, -0.020106716081500053, 0.04699547961354256, 0.0036993941757827997, 0.020929887890815735, -0.0022176941856741905, -0.0187647957354784, 0.041922248899936676, -0.003384709358215332, -0.00603347085416317, -0.0176180861890316, -0.029148180037736893, -0.009768202900886536, 0.006099530961364508, 0.019690126180648804, 0.033226724714040756, 0.001991547644138336, -0.011696584522724152, -0.011592673137784004, 0.029659708961844444, -0.011196242645382881, 0.0358114019036293, 0.04078081250190735, -0.009762661531567574, -0.007582822348922491, -0.04003583639860153, 0.005900631193071604, -0.043487150222063065, -0.005323338788002729, -0.04070798307657242, -0.02102762833237648, -0.0008029738091863692, -0.08800449222326279, 0.0042050681076943874, 0.011258513666689396, 0.039702363312244415, 0.010195440612733364, -0.026020096614956856, 0.015893476083874702, -0.04302969202399254, 0.052320446819067, 0.04030139371752739, -0.06632072478532791, 0.017357096076011658, 0.007540876045823097, -0.015273120254278183, -0.020375948399305344, -0.0003659683861769736, -0.07023459672927856, -0.02842380851507187, -0.018124066293239594, -0.002772890031337738, -0.01934107206761837, -0.033070579171180725, -0.045956797897815704, 0.01373685896396637, -0.00593549432232976, 0.0377928763628006, 0.016276482492685318, -0.012960272841155529, 0.0026100906543433666, 0.010503996163606644, 0.007383858319371939, -0.016868721693754196, -0.013084715232253075, -0.004968134220689535, -0.006696351338177919, 0.02886468730866909, -0.00449155131354928, 0.03896164149045944, 0.030214743688702583, -0.019304247573018074, -0.004007929936051369, -0.07618679851293564, -0.016165612265467644, 0.03525571897625923, 0.07427114993333817, -0.012894101440906525, -0.015403843484818935, -0.04460682347416878, -0.01157652959227562, 0.00856117345392704, 0.028958722949028015, -0.021038837730884552, -0.004684068728238344, 0.030268143862485886, 0.053792379796504974, 0.03034549206495285, 0.012666543014347553, 0.00296721700578928, -0.03699665144085884, 0.06383795291185379, -0.03932756558060646, -0.01638445258140564, -0.011783162131905556, -0.039507072418928146, 0.040980469435453415, 0.026889270171523094, 0.046239033341407776, -0.02401951514184475, 0.040497787296772, 0.04800746962428093, 0.014024387113749981, 0.029144400730729103, -0.01609850488603115, 0.04815017059445381, -0.036345791071653366, 0.0170619897544384, -0.08820223808288574, 0.02610056661069393, 0.02716422826051712, -0.033339206129312515, -0.010367252863943577, 0.01047457754611969, -0.062149517238140106, 0.060347944498062134, -0.06349953263998032, -0.0346987321972847, 0.052885301411151886, -0.0003275118360761553, -0.008282738737761974, 0.02220970392227173, -0.05066477507352829, 0.038075778633356094, 0.0457368865609169, -0.02605762705206871, -0.025146571919322014, -0.002314268844202161, 0.061497196555137634, 0.006765763275325298, 0.043400030583143234, -0.004170563537627459, -0.01984248496592045, 0.08123210817575455, 0.012156353332102299, 0.015115376561880112, 0.05649418756365776, -0.017753493040800095, 0.04653184488415718, -0.0002499500405974686, -0.01693650148808956, 0.013609735295176506, 0.05193740129470825, 0.01606452651321888, -0.073697529733181, 0.012578795664012432, -0.002079626079648733, -0.013776782900094986, -0.07152124494314194, 0.06051287800073624, 0.0015127031365409493, -0.019698074087500572, -0.04435266926884651, 0.03614525869488716, -0.05507199466228485, -0.007323873229324818, -0.011720172129571438, -0.014919043518602848, -0.04416067525744438, 0.052237071096897125, 0.023096593096852303, 0.027794478461146355, 0.05348546802997589, 0.005218192934989929, -0.005972692277282476, -0.004192711319774389, 0.06953117996454239, 0.08226612210273743, 0.05417807027697563, 0.037470024079084396, 0.07633871585130692, -0.01071702130138874, -0.0547204352915287, 0.004846532829105854, -0.021709362044930458, -0.013010188937187195, -0.012381119653582573, -0.020878557115793228, 0.07681325823068619, 0.011098883114755154, 0.04777320846915245, -0.011497918516397476, -0.007721732836216688, -0.01886840909719467, 0.016526300460100174, 0.024978365749120712, 0.019601259380578995, -0.01819974184036255, 0.05044369772076607, -0.016538754105567932, -0.01741100661456585, 0.019271234050393105, -0.024252580478787422, -0.011866409331560135, 0.03877713531255722, -0.03188956156373024, 0.01753390021622181, -0.007496239151805639, 0.031521935015916824, 0.07313734292984009, -0.03195614367723465, -0.025058841332793236, -0.019567526876926422, 0.047595083713531494, 0.028882307931780815, 0.012657222338020802, -0.02373088151216507, 0.005965027026832104, -0.012613211758434772, -0.015119836665689945, -0.023269282653927803, -0.014303005300462246, -0.026926783844828606, 0.06560404598712921, 0.0062547288835048676, 0.028124842792749405, 0.008159629069268703, 0.005430323537439108, -0.03795218467712402, -0.031000014394521713, -0.06658175587654114, -0.07657663524150848, -0.06665510684251785, -0.02466326206922531, 0.015346833504736423, 0.015471039339900017, -0.05422774702310562, -0.051035791635513306, -0.02606932260096073, 0.02614150010049343, 0.004214907065033913, -0.047619614750146866, -0.0322713702917099, 0.03220240771770477, 0.025509744882583618, 0.016720322892069817, 0.0018421118147671223, 0.05019475519657135, 0.014332945458590984, -0.008151644840836525, -0.05979465693235397, -0.01106811873614788, 0.05209203436970711, -0.000834939070045948, 0.00882464088499546, -0.0830218642950058, 0.0475296676158905, 0.010849490761756897, -0.02190089039504528, -0.06826808303594589, 0.018201041966676712, 0.042978499084711075, -0.004310025367885828, 0.08347038924694061, -0.043163325637578964, -0.008868712931871414, -0.03302788734436035, -0.013083175756037235, 0.006282361689954996, 0.01740821823477745, 0.034834351390600204, -0.016045527532696724, 0.09966722875833511, 0.011163074523210526, 0.005322040989995003, -0.02987140789628029, 0.01273257564753294, -0.014464487321674824, 0.0018663854571059346, -0.04125654697418213, -0.015887491405010223, -0.05600728839635849, -0.05693206563591957, -0.019196858629584312, 0.021231634542346, -0.03945041075348854, -0.056481607258319855, -0.0029881405644118786, 0.025011152029037476, -0.010310061275959015, 0.033428728580474854, -0.042409610003232956, 0.01792656071484089, -0.024956924840807915, 0.000823589856736362, -0.05533977225422859, 0.02787889540195465, 0.004704154096543789, -0.0050431122072041035, 0.03488761931657791, -0.04767100512981415, -0.004747115541249514, -0.04016777127981186, 0.02436450496315956, 0.049287986010313034, -0.02888636663556099, 0.00014398759230971336 ]
[ -0.04563286527991295, -0.08820312470197678, -0.03880688175559044, -0.05192357674241066, 0.04181216284632683, -0.011240025982260704, -0.005903046578168869, -0.03998870775103569, -0.00025541207287460566, -0.024076027795672417, 0.007450446952134371, -0.02385360561311245, 0.026425229385495186, -0.041312579065561295, 0.03933408483862877, 0.02998756244778633, 0.028766151517629623, -0.055733852088451385, -0.0635903850197792, 0.044245023280382156, -0.035137925297021866, 0.04805048555135727, -0.03311385586857796, -0.015737362205982208, -0.035001542419195175, 0.01571289822459221, 0.02644055336713791, -0.0023001967929303646, -0.016223296523094177, -0.11892853677272797, 0.011588269844651222, -0.016157563775777817, 0.0385480672121048, -0.00202155951410532, -0.0012623107759281993, 0.031254541128873825, 0.01612544246017933, 0.03850499168038368, -0.01108673308044672, 0.03951312601566315, 0.03174198046326637, 0.008739853277802467, -0.09735656529664993, -0.027874376624822617, 0.04225065931677818, 0.00341752078384161, -0.016483649611473083, -0.015045173466205597, -0.006806374993175268, 0.007062492426484823, 0.02262808196246624, 0.006655950099229813, 0.0004077484190929681, 0.04355008155107498, -0.036656979471445084, 0.018815407529473305, 0.03244433179497719, 0.0828196108341217, 0.02011970803141594, 0.0578279048204422, -0.0035133117344230413, -0.01646733283996582, -0.11236774921417236, 0.09851132333278656, -0.004188315011560917, 0.027163755148649216, -0.020103979855775833, -0.006476144772022963, -0.0443977527320385, 0.05187329277396202, 0.008035114035010338, -0.02362433262169361, -0.027830252423882484, 0.03917079418897629, 0.013077075593173504, -0.012887975201010704, 0.040632154792547226, 0.035976096987724304, -0.00941848661750555, -0.025525040924549103, -0.058759234845638275, 0.00252096657641232, -0.017415836453437805, -0.007621468976140022, -0.02768496610224247, -0.00344021525233984, -0.011072789318859577, 0.03564735874533653, -0.008016864769160748, 0.016651179641485214, 0.014745247550308704, -0.05369458347558975, 0.040817469358444214, 0.019344262778759003, -0.05979292094707489, -0.013093524612486362, -0.006266139447689056, 0.0224037766456604, -0.04151807725429535, 0.3714123070240021, -0.055190425366163254, 0.018001416698098183, 0.009885177947580814, 0.01429160125553608, 0.02637668512761593, -0.007405961398035288, 0.03626887872815132, -0.0032502806279808283, 0.02071252465248108, -0.00668407091870904, 0.015154322609305382, -0.013675143010914326, 0.00469083059579134, -0.08185701817274094, 0.023657742887735367, -0.014123142696917057, -0.036000557243824005, 0.04752567782998085, 0.0370207354426384, 0.022291574627161026, -0.026260877028107643, 0.00030217916355468333, 0.05339610576629639, 0.0006070934468880296, -0.004238897934556007, 0.04808807373046875, 0.05104215815663338, 0.022357186302542686, 0.031400226056575775, 0.042109016329050064, 0.07448826730251312, -0.0014384607784450054, -0.08556049317121506, 0.011828296817839146, -0.004192441701889038, 0.00831863097846508, -0.002679340308532119, -0.02025410905480385, -0.003614122746512294, 0.030210135504603386, -0.029242340475320816, -0.0206915196031332, 0.05453915894031525, -0.01591908186674118, 0.002003727713599801, 0.1599661260843277, -0.0046072364784777164, 0.015451349318027496, -0.045082852244377136, -0.07118525356054306, -0.023642972111701965, 0.028331339359283447, -0.027366548776626587, -0.004371974617242813, 0.007972941733896732, 0.028160275891423225, 0.07537570595741272, -0.03185481205582619, -0.02963775210082531, 0.04012524336576462, 0.04228221997618675, -0.08743736147880554, 0.012873931787908077, 0.03477048873901367, 0.016150638461112976, -0.1352025419473648, -0.02252056635916233, 0.023687759414315224, 0.005807499401271343, -0.055284954607486725, -0.07701484858989716, -0.010841148905456066, -0.023601779714226723, -0.007011623587459326, 0.03326662629842758, -0.024922523647546768, 0.026854505762457848, -0.001258753938600421, 0.03808492049574852, -0.029559055343270302, -0.03746507316827774, -0.05460555851459503, -0.023127084597945213, -0.017682520672678947, -0.05221637338399887, -0.08582849055528641, -0.03167904540896416, -0.02364354208111763, -0.005716503597795963, 0.0011657896684482694, -0.004758413415402174, -0.025630144402384758, -0.07953204214572906, 0.04432974010705948, -0.026442142203450203, -0.01890554279088974, 0.0016857725568115711, -0.06258834898471832, -0.023204440250992775, -0.0327598936855793, 0.013492303900420666, -0.008046572096645832, 0.005554534029215574, 0.029866179451346397, -0.03419152647256851, 0.06481114029884338, 0.04584871232509613, -0.027342895045876503, 0.05264709144830704, -0.038061924278736115, -0.04209447279572487, -0.0029327787924557924, -0.006621430162340403, -0.010805469937622547, 0.027344658970832825, -0.03966635838150978, -0.027037909254431725, 0.013791682198643684, 0.011851325631141663, 0.03737685829401016, -0.04301125183701515, -0.04790889844298363, -0.05398808792233467, -0.3230753242969513, -0.02539816126227379, -0.016130074858665466, 0.026448309421539307, -0.009860895574092865, -0.06308196485042572, 0.03880278393626213, -0.0003687464923132211, 0.008206335827708244, 0.044618621468544006, 0.18246740102767944, -0.01001881342381239, 0.027695121243596077, -0.0365215465426445, -0.011499105021357536, 0.009441637434065342, -0.021176740527153015, -0.029405714944005013, 0.015972306951880455, -0.0017036849167197943, 0.013169866986572742, -0.048093512654304504, 0.00938824936747551, -0.027320800349116325, 0.009623694233596325, -0.026849761605262756, 0.10072597861289978, 0.08998887240886688, -0.002078741556033492, -0.050078172236680984, 0.03710451349616051, 0.04042733460664749, -0.028495248407125473, -0.15517951548099518, -0.03806529566645622, -0.023930469527840614, 0.017021410167217255, 0.00708723533898592, 0.020083945244550705, -0.0553954653441906, -0.06039129197597504, -0.0008427376160398126, -0.02769230306148529, -0.054872430860996246, 0.012943047098815441, -0.006405573803931475, -0.029842030256986618, 0.01072151679545641, 0.01309166755527258, 0.06767874211072922, 0.05540760979056358, 0.02388317696750164, 0.03279267996549606, 0.028271030634641647, 0.015561509877443314, -0.06490178406238556, -0.03432484343647957, -0.015013493597507477, 0.019734149798750877, 0.003438575891777873, 0.026983948424458504, 0.018442939966917038, 0.04869269207119942, -0.05207926034927368, -0.00870674941688776, 0.03959363326430321, -0.0382697619497776, -0.011765096336603165, 0.045183975249528885, -0.038598716259002686, -0.006765220779925585, 0.09011809527873993, 0.014358076266944408, 0.018388548865914345, 0.0702672153711319, -0.0024317263159900904, 0.033943794667720795, -0.04483715444803238, 0.05456623435020447, -0.01736859418451786, -0.01904452219605446, 0.02087203785777092, -0.00797012448310852, -0.06047059968113899, -0.010934095829725266, 0.10244787484407425, 0.0550353117287159, -0.03294476866722107, 0.015446275472640991, -0.023482443764805794, 0.01693577878177166, -0.0028836384881287813, -0.01896277442574501, -0.11128818243741989, 0.02728911302983761, 0.022756174206733704, -0.26466017961502075, 0.003498892765492201, 0.0714312419295311, 0.07392861694097519, -0.009411473758518696, -0.003422327572479844, 0.04595854505896568, -0.033030226826667786, -0.08727991580963135, 0.03177482262253761, -0.02491128444671631, 0.03401508182287216, 0.028082208707928658, -0.041048791259527206, 0.0261120293289423, 0.035066209733486176, 0.07790987193584442, 0.016439445316791534, 0.006733485963195562, -0.00785481184720993, 0.012020470574498177, -0.008484425023198128, 0.1791885793209076, 0.048860978335142136, -0.010870042257010937, 0.023535290732979774, -0.0015710884472355247, 0.02354421280324459, 0.10954562574625015, 0.04381035640835762, 0.0009575231815688312, -0.012970630079507828, 0.0481007881462574, 0.03908528760075569, 0.02944129705429077, -0.07844708859920502, 0.019938865676522255, -0.0021973620168864727, -0.014586862176656723, -0.04109823703765869, 0.028919892385601997, -0.014338060282170773, -0.053530432283878326, 0.05396363511681557, 0.03089366853237152, -0.05286138504743576, 0.026374736800789833, 0.015213342383503914, -0.03710145875811577, -0.00041997336666099727, -0.005434350576251745, -0.10015954822301865, -0.033055540174245834, 0.001977785024791956, 0.028924547135829926, 0.06020046025514603, -0.0055550700053572655, -0.020104411989450455, 0.0610664002597332, 0.04030641168355942, 0.04460461437702179, -0.010827198624610901, 0.09934768825769424, 0.012055809609591961, 0.03563564270734787 ]
[ -0.012485989369452, 0.012853683903813362, 0.025985002517700195, 0.03895264491438866, 0.0336519256234169, 0.01818794384598732, 0.012809593230485916, 0.035413261502981186, 0.011544495820999146, -0.03611733391880989, -0.035595543682575226, -0.0017442425014451146, 0.030136384069919586, -0.02278955467045307, 0.06565182656049728, -0.022143715992569923, -0.008700509555637836, -0.024237260222434998, 0.03246063366532326, -0.024201175197958946, -0.025386912748217583, -0.0056765698827803135, -0.0008775694295763969, -0.007836682721972466, -0.020742256194353104, 0.0018404318252578378, -0.013402784243226051, -0.030473176389932632, 0.043229296803474426, -0.09909802675247192, -0.0071032182313501835, -0.05151969939470291, 0.0263504758477211, -0.029147639870643616, -0.05657462403178215, 0.00004072414230904542, 0.009775117039680481, -0.028509287163615227, -0.02204863727092743, 0.011363144032657146, 0.028410600498318672, -0.018363596871495247, -0.007687496021389961, -0.005806091241538525, 0.004735181108117104, -0.03709138184785843, -0.03333509340882301, -0.02338254265487194, -0.03186661750078201, 0.016258982941508293, -0.0291680209338665, -0.051357802003622055, -0.010858394205570221, -0.002354593249037862, -0.02845366857945919, -0.02050662226974964, -0.01683695800602436, 0.057672224938869476, 0.040029533207416534, 0.0376737080514431, 0.020422587171196938, -0.03648631274700165, -0.01871643215417862, -0.03677559271454811, 0.028822042047977448, -0.014679326675832272, -0.0507013276219368, -0.020453503355383873, 0.019086964428424835, 0.03830702602863312, 0.035168152302503586, 0.02760651335120201, -0.030675817281007767, -0.06119641661643982, -0.035627610981464386, -0.028863996267318726, -0.002139231888577342, 0.01348890084773302, -0.0325908362865448, -0.011457436718046665, 0.013954326510429382, 0.019740859046578407, -0.021474020555615425, 0.018811002373695374, 0.006652585230767727, 0.00035755994031205773, 0.008454100228846073, 0.010865887627005577, -0.03656158596277237, -0.03446963056921959, -0.03059256449341774, 0.020084364339709282, -0.0035141727421432734, 0.00872887670993805, -0.030510365962982178, 0.020131953060626984, -0.015326226130127907, -0.024488434195518494, 0.006309144198894501, 0.8100976347923279, 0.010946989059448242, -0.005543436389416456, 0.01993684656918049, 0.022434839978814125, 0.03822483494877815, -0.0069669801741838455, -0.03554392606019974, 0.025200512260198593, 0.03621266409754753, 0.02484062686562538, 0.03618808835744858, -0.013907628133893013, 0.0056215571239590645, 0.06205082684755325, -0.008639734238386154, 0.04085823521018028, -0.042988404631614685, -0.03192400187253952, -0.003179964842274785, 0.039494942873716354, 0.02364630065858364, -0.007517950609326363, -0.029016194865107536, 0.0018898338312283158, -0.0014008930884301662, -0.19333888590335846, 0.030443979427218437, -7.137894837096666e-33, 0.01376981008797884, -0.005665251053869724, 0.04366663470864296, -0.025410236790776253, 0.03244875371456146, -0.0005756962345913053, -0.02553587406873703, -0.014035165309906006, -0.029308553785085678, -0.012546186335384846, 0.030985288321971893, -0.008339251391589642, -0.02161267213523388, 0.027284542098641396, 0.013677909038960934, -0.0002706450177356601, -0.02365886978805065, 0.02899097464978695, 0.017832912504673004, -0.018438871949911118, 0.021398667246103287, -0.016874894499778748, -0.03703082352876663, 0.011497678235173225, -0.014880270697176456, 0.03912954032421112, -0.002313001314178109, 0.03702006861567497, 0.008806269615888596, -0.05704334378242493, -0.010431514121592045, -0.011258604936301708, 0.029659388586878777, -0.023371553048491478, 0.02035105787217617, -0.06667578220367432, -0.06605920940637589, 0.0009299380471929908, -0.05811956152319908, -0.04679406061768532, 0.027927955612540245, -0.006973898503929377, -0.042199764400720596, 0.0024730542208999395, -0.06696420162916183, 0.009000983089208603, -0.011280865408480167, 0.0030083057936280966, 0.01138581708073616, 0.009311744943261147, -0.0002304329100297764, 0.0358472503721714, -0.018097393214702606, 0.02515130303800106, 0.020028023049235344, -0.019251517951488495, -0.053933896124362946, -0.006595606449991465, -0.01869192346930504, -0.022272838279604912, 0.06847057491540909, 0.009687797166407108, 0.011819815263152122, 0.007016051094979048, -0.04678811505436897, 0.04411095008254051, 0.036524947732686996, 0.002470622071996331, 0.04206404089927673, 0.013153435662388802, -0.07385444641113281, 0.06588099151849747, -0.023261897265911102, -0.02260790765285492, 0.010919378139078617, -0.05673926696181297, 0.03376082703471184, 0.04098854959011078, -0.01899782009422779, 0.044310495257377625, -0.0030255340971052647, -0.04730642959475517, -0.011174623854458332, 0.010970809496939182, -0.0670485869050026, -0.0007810912793502212, 0.033923085778951645, 0.010012003593146801, -0.04430301859974861, 0.008677206002175808, 0.039766453206539154, 0.07574503868818283, -0.02324429526925087, -0.0023989800829440355, -0.03296925872564316, 6.996728251138479e-33, 0.00731010502204299, -0.014428878203034401, -0.006889026612043381, -0.012186720035970211, 0.03302086517214775, -0.03720059245824814, 0.013852212578058243, 0.043541502207517624, -0.012817184440791607, 0.03513441979885101, -0.02058814838528633, 0.02635241113603115, -0.04294050857424736, 0.0002642683684825897, 0.014994987286627293, -0.03811044618487358, 0.003837048541754484, 0.004284074995666742, 0.005282622762024403, -0.03291185200214386, -0.034032195806503296, -0.006960443686693907, 0.041474610567092896, 0.024416040629148483, -0.005014272406697273, 0.06798946857452393, 0.003962845075875521, 0.008004098199307919, -0.042373985052108765, 0.008338384330272675, 0.011577911674976349, -0.012830092571675777, 0.007241270039230585, -0.04544984921813011, -0.00014534874935634434, -0.012555038556456566, 0.003721015527844429, 0.0184792373329401, 0.015016283839941025, -0.03174184262752533, 0.02223007008433342, 0.020291242748498917, 0.02915828488767147, 0.033690158277750015, 0.009357376955449581, 0.008819916285574436, 0.017312508076429367, 0.01740354113280773, -0.002594846533611417, -0.00905262865126133, 0.011006023734807968, 0.009668528102338314, -0.011329440400004387, 0.02201511524617672, 0.00834750384092331, -0.0059910668060183525, -0.004215911962091923, 0.00966281071305275, -0.021901417523622513, -0.01576303504407406, 0.005086406599730253, -0.012374555692076683, -0.017676813527941704, 0.03750154748558998, -0.036083269864320755, 0.0013702879659831524, -0.041342366486787796, 0.024711737409234047, 0.011726506054401398, 0.0668674036860466, 0.008141939528286457, 0.020945420488715172, -0.011567349545657635, 0.06119165197014809, -0.000889281858690083, 0.0008871738100424409, 0.00893726758658886, 0.007653618697077036, -0.019814426079392433, 0.0071260156109929085, 0.001363745890557766, 0.03428560867905617, 0.011515227146446705, -0.04021298140287399, -0.00013865319488104433, 0.024086210876703262, -0.03413308784365654, 0.015676550567150116, -0.015018945559859276, 0.03314697742462158, -0.017888585105538368, 0.0025567798875272274, -0.020773151889443398, -0.024423032999038696, 0.00296711060218513, -1.2908683899581774e-8, -0.02593688666820526, 0.017278892919421196, -0.012233120389282703, 0.008912044577300549, -0.012921626679599285, 0.02544725127518177, -0.031100589781999588, -0.017408939078450203, 0.03394107148051262, 0.005091603845357895, -0.028113603591918945, -0.058220792561769485, -0.035035621374845505, -0.006683355197310448, -0.004267996642738581, -0.022274717688560486, -0.007474842015653849, 0.025989854708313942, 0.039966829121112823, 0.010267217643558979, 0.0007036227616481483, 0.0469050370156765, 0.02437836490571499, -0.01896100863814354, 0.014942259527742863, -0.014957577921450138, 0.053276460617780685, -0.02912037819623947, -0.043547969311475754, 0.007204033900052309, 0.028775585815310478, -0.01762956567108631, -0.011745684780180454, 0.00393689377233386, 0.0007628558669239283, -0.013123244047164917, 0.0017618266865611076, -0.0016745827160775661, -0.035820372402668, 0.023313025012612343, 0.011254769749939442, 0.035514846444129944, 0.01754198782145977, -0.0394691564142704, -0.03685364872217178, -0.04247622564435005, 0.02222791127860546, 0.025799227878451347, 0.05351102352142334, -0.013648663647472858, -0.01749875210225582, -0.03187798336148262, -0.0021638190373778343, 0.0023860440123826265, 0.05229668691754341, -0.015924880281090736, -0.006978095509111881, -0.03019554726779461, -0.031676482409238815, 0.03011264279484749, 0.05515215918421745, -0.004002586472779512, 0.01721043325960636, 0.014374581165611744 ]
spotify-api-making-my-first-call
https://markhneedham.com/blog/2020/01/02/spotify-api-making-my-first-call
false
2020-01-27 00:21:00
Neo4j: Exporting a subset of data from one database to another
[ "neo4j", "apoc" ]
[ "Neo4j" ]
As part of the preparation for another blog post, I wanted to export a subset of data from one Neo4j database to another one, which seemed like a blog post in its own right. image::{{<siteurl>}}/uploads/2020/01/apoc-export-json.png[title="Exporting data using APOC's Export JSON"] == Setting up Neo4j We're going to use the following Docker Compose configuration in this blog post: .Dockerfile [source,yaml] ---- version: '3.7' services: neo4j: image: neo4j:4.0.0-enterprise container_name: "quickgraph-aus-open" volumes: - ./plugins:/plugins - ./data:/data - ./import:/var/lib/neo4j/import ports: - "7474:7474" - "7687:7687" environment: - "NEO4J_ACCEPT_LICENSE_AGREEMENT=yes" - "NEO4J_AUTH=neo4j/neo" - NEO4J_apoc_import_file_use__neo4j__config=true - NEO4J_apoc_import_file_enabled=true - NEO4J_apoc_export_file_enabled=true - NEO4JLABS_PLUGINS=["apoc"] ---- Once we've created that file we need to open a terminal session where that file lives and then run the following command to spin up Neo4j: [source,bash] ---- docker-compose up ---- If we run that command, we'll see the following (truncated) output: [source,text] ---- Started quickgraph-aus-open ... done Attaching to quickgraph-aus-open quickgraph-aus-open | Changed password for user 'neo4j'. quickgraph-aus-open | Fetching versions.json for Plugin 'apoc' from https://neo4j-contrib.github.io/neo4j-apoc-procedures/versions.json quickgraph-aus-open | Installing Plugin 'apoc' from https://github.com/neo4j-contrib/neo4j-apoc-procedures/releases/download/4.0.0.0/apoc-4.0.0.0-all.jar to /plugins/apoc.jar quickgraph-aus-open | Applying default values for plugin apoc to neo4j.conf quickgraph-aus-open | Directories in use: quickgraph-aus-open | home: /var/lib/neo4j quickgraph-aus-open | config: /var/lib/neo4j/conf quickgraph-aus-open | logs: /logs quickgraph-aus-open | plugins: /plugins quickgraph-aus-open | import: /import quickgraph-aus-open | data: /var/lib/neo4j/data quickgraph-aus-open | certificates: /var/lib/neo4j/certificates quickgraph-aus-open | run: /var/lib/neo4j/run quickgraph-aus-open | Starting Neo4j. quickgraph-aus-open | 2020-01-21 22:24:29.976+0000 INFO ======== Neo4j 4.0.0 ======== quickgraph-aus-open | 2020-01-21 22:24:29.982+0000 INFO Starting... quickgraph-aus-open | 2020-01-21 22:24:35.656+0000 INFO Called db.clearQueryCaches(): Query cache already empty. quickgraph-aus-open | 2020-01-21 22:24:40.765+0000 INFO Sending metrics to CSV file at /var/lib/neo4j/metrics quickgraph-aus-open | 2020-01-21 22:24:40.790+0000 INFO Bolt enabled on 0.0.0.0:7687. quickgraph-aus-open | 2020-01-21 22:24:40.791+0000 INFO Started. quickgraph-aus-open | 2020-01-21 22:24:40.879+0000 INFO Server thread metrics have been registered successfully quickgraph-aus-open | 2020-01-21 22:24:41.723+0000 INFO Remote interface available at http://0.0.0.0:7474/ ---- Once we see that last line we're ready to roll. == Exporting data In the https://markhneedham.com/blog/2020/01/23/quick-graph-australian-open/[Australian Open QuickGraph^] blog post we imported all the matches from the Australian Open tennis tournament. We can see a sample of the imported graph in the Neo4j Browser visualisation below: image::{{<siteurl>}}/uploads/2020/01/aus-open-preview.png[title="Sample of the Australian Open Graph"] Let's quickly check how much data this graph contains. We'll query the database via the Cypher Shell command, which we can launch by running the following: [source,bash] ---- $ docker exec -it quickgraph-aus-open cypher-shell -u neo4j -p neo -d womens Connected to Neo4j 4.0.0 at neo4j://localhost:7687 as user neo4j. Type :help for a list of available commands or :exit to exit the shell. Note that Cypher queries must end with a semicolon. neo4j@womens> ---- We'll use APOC's `apoc.meta.stats` procedure to get back a summary of what's in this database: [source,cypher] ---- CALL apoc.meta.stats() YIELD nodeCount, relCount, labels, relTypesCount RETURN nodeCount, relCount, labels, relTypesCount ---- .apoc.meta.stats [opts="header"] |=== | nodeCount | relCount | labels | relTypesCount | 9013 | 27727 | {Player: 571, Set: 5882, Tournament: 20, Match: 2540} | {WINNER: 8383, IN_TOURNAMENT: 2540, NEXT_MATCH: 2520, NEXT_TOURNAMENT: 19, LOSER: 8383, IN_MATCH: 5882} |=== There's not much data in there, but we only want to export the `Tournament` nodes, `NEXT_TOURNAMENT` relationships, `Match` nodes for the finals, and the `Player` nodes that competed in those finals. We're going to export the data with a little help from https://neo4j.com/docs/labs/apoc/3.5/[APOC^]'s https://neo4j.com/docs/labs/apoc/current/export/json/[export to JSON procedures^]. P.S. 👇 ++++ <blockquote class="twitter-tweet" data-theme="light"><p lang="en" dir="ltr">Finally finished refactoring the <a href="https://twitter.com/hashtag/Neo4j?src=hash&amp;ref_src=twsrc%5Etfw">#Neo4j</a> <a href="https://twitter.com/hashtag/APOC?src=hash&amp;ref_src=twsrc%5Etfw">#APOC</a> export documentation - <a href="https://t.co/RXTjV9n5rV">https://t.co/RXTjV9n5rV</a><br><br>Let us know what&#39;s missing/what else can be improved!</p>&mdash; Mark Needham (@markhneedham) <a href="https://twitter.com/markhneedham/status/1220813924360163328?ref_src=twsrc%5Etfw">January 24, 2020</a></blockquote> <script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script> ++++ When we're using the export procedures, we need to specify some properties that enable this functionality. In our Dockerfile, we have the following lines: [source,yaml] ---- - NEO4J_apoc_import_file_use__neo4j__config=true - NEO4J_apoc_export_file_enabled=true ---- These properties are the equivalent of adding the following values to the `apoc.conf` file: [source,yaml] ---- apoc.import.file.use_neo4j_config=true apoc.export.file.enabled=true ---- * `apoc.export.file.enabled=true` enables writing export files to disk * `apoc.import.file.use_neo4j_config=true` writes those export files to the `import` directory We'll export the data in two parts using the `apoc.export.json.query` procedure, writing: * one query to export the `Tournament` nodes and the `NEXT_TOURNAMENT` relationships between them * one query to export the `Match` nodes where `round: "F"` and the associated `Player` and `Tournament` nodes and any relationships .The following query exports the tournaments to the file `tournaments.json` [source,cypher] ---- WITH "MATCH path = (t1:Tournament)-[rel:NEXT_TOURNAMENT]->(t2) RETURN t1, t2, rel" AS query CALL apoc.export.json.query(query, "tournaments.json", {format: "plain"}) YIELD file RETURN file ---- The contents of `tournaments.json`, truncated for brevity, are shown below: .import/tournaments.json [source,json] ---- {"t1":{"type":"node","id":"256","labels":["Tournament"],"properties":{"year":2000,"name":"Australian Open"}},"t2":{"type":"node","id":"257","labels":["Tournament"],"properties":{"year":2001,"name":"Australian Open"}},"rel":{"id":"10266","type":"relationship","label":"NEXT_TOURNAMENT","start":{"id":"256","labels":["Tournament"]},"end":{"id":"257","labels":["Tournament"]}}} {"t1":{"type":"node","id":"257","labels":["Tournament"],"properties":{"year":2001,"name":"Australian Open"}},"t2":{"type":"node","id":"258","labels":["Tournament"],"properties":{"year":2002,"name":"Australian Open"}},"rel":{"id":"10267","type":"relationship","label":"NEXT_TOURNAMENT","start":{"id":"257","labels":["Tournament"]},"end":{"id":"258","labels":["Tournament"]}}} {"t1":{"type":"node","id":"258","labels":["Tournament"],"properties":{"year":2002,"name":"Australian Open"}},"t2":{"type":"node","id":"259","labels":["Tournament"],"properties":{"year":2003,"name":"Australian Open"}},"rel":{"id":"10268","type":"relationship","label":"NEXT_TOURNAMENT","start":{"id":"258","labels":["Tournament"]},"end":{"id":"259","labels":["Tournament"]}}} ... {"t1":{"type":"node","id":"265","labels":["Tournament"],"properties":{"year":2009,"name":"Australian Open"}},"t2":{"type":"node","id":"266","labels":["Tournament"],"properties":{"year":2010,"name":"Australian Open"}},"rel":{"id":"10275","type":"relationship","label":"NEXT_TOURNAMENT","start":{"id":"265","labels":["Tournament"]},"end":{"id":"266","labels":["Tournament"]}}} {"t1":{"type":"node","id":"266","labels":["Tournament"],"properties":{"year":2010,"name":"Australian Open"}},"t2":{"type":"node","id":"267","labels":["Tournament"],"properties":{"year":2011,"name":"Australian Open"}},"rel":{"id":"10276","type":"relationship","label":"NEXT_TOURNAMENT","start":{"id":"266","labels":["Tournament"]},"end":{"id":"267","labels":["Tournament"]}}} {"t1":{"type":"node","id":"267","labels":["Tournament"],"properties":{"year":2011,"name":"Australian Open"}},"t2":{"type":"node","id":"268","labels":["Tournament"],"properties":{"year":2012,"name":"Australian Open"}},"rel":{"id":"10277","type":"relationship","label":"NEXT_TOURNAMENT","start":{"id":"267","labels":["Tournament"]},"end":{"id":"268","labels":["Tournament"]}}} ... {"t1":{"type":"node","id":"274","labels":["Tournament"],"properties":{"year":2018,"name":"Australian Open"}},"t2":{"type":"node","id":"0","labels":["Tournament"],"properties":{"year":2019,"name":"Australian Open"}},"rel":{"id":"10284","type":"relationship","label":"NEXT_TOURNAMENT","start":{"id":"274","labels":["Tournament"]},"end":{"id":"0","labels":["Tournament"]}}} ---- .The following query exports the final matches and surrounding nodes and relationships to the file `finalists.json` [source,cypher] ---- WITH "MATCH (t:Tournament)<-[tournRel:IN_TOURNAMENT]-(match:Match {round: 'F'})<-[winnerRel:WINNER]-(winner), (loser)-[loserRel:LOSER]->(match) RETURN t, tournRel, winner, winnerRel, loser, loserRel, match" AS query CALL apoc.export.json.query(query, "finalists.json", {format: "plain"}) YIELD file RETURN file ---- The contents of `finalists.json`, truncated for brevity, are shown below: .import/finalists.json [source,json] ---- {"t":{"type":"node","id":"0","labels":["Tournament"],"properties":{"year":2019,"name":"Australian Open"}},"tournRel":{"id":"380","type":"relationship","label":"IN_TOURNAMENT","start":{"id":"191","labels":["Match"]},"end":{"id":"0","labels":["Tournament"]}},"winner":{"type":"node","id":"34","labels":["Player"],"properties":{"name":"Naomi Osaka","id":"211768"}},"winnerRel":{"id":"378","type":"relationship","label":"WINNER","start":{"id":"34","labels":["Player"]},"end":{"id":"191","labels":["Match"]}},"loser":{"type":"node","id":"66","labels":["Player"],"properties":{"name":"Petra Kvitova","id":"201520"}},"loserRel":{"id":"379","type":"relationship","label":"LOSER","start":{"id":"66","labels":["Player"]},"end":{"id":"191","labels":["Match"]}},"match":{"type":"node","id":"191","labels":["Match"],"properties":{"score":"7-6(2) 5-7 6-4","round":"F","id":"20190114_226"}}} {"t":{"type":"node","id":"256","labels":["Tournament"],"properties":{"year":2000,"name":"Australian Open"}},"tournRel":{"id":"887","type":"relationship","label":"IN_TOURNAMENT","start":{"id":"464","labels":["Match"]},"end":{"id":"256","labels":["Tournament"]}},"winner":{"type":"node","id":"401","labels":["Player"],"properties":{"name":"Lindsay Davenport","id":"200128"}},"winnerRel":{"id":"885","type":"relationship","label":"WINNER","start":{"id":"401","labels":["Player"]},"end":{"id":"464","labels":["Match"]}},"loser":{"type":"node","id":"276","labels":["Player"],"properties":{"name":"Martina Hingis","id":"200001"}},"loserRel":{"id":"886","type":"relationship","label":"LOSER","start":{"id":"276","labels":["Player"]},"end":{"id":"464","labels":["Match"]}},"match":{"type":"node","id":"464","labels":["Match"],"properties":{"score":"6-1 7-5","round":"F","id":"20000117_127"}}} ... {"t":{"type":"node","id":"260","labels":["Tournament"],"properties":{"year":2004,"name":"Australian Open"}},"tournRel":{"id":"2405","type":"relationship","label":"IN_TOURNAMENT","start":{"id":"1054","labels":["Match"]},"end":{"id":"260","labels":["Tournament"]}},"winner":{"type":"node","id":"278","labels":["Player"],"properties":{"name":"Justine Henin","id":"200003"}},"winnerRel":{"id":"2403","type":"relationship","label":"WINNER","start":{"id":"278","labels":["Player"]},"end":{"id":"1054","labels":["Match"]}},"loser":{"type":"node","id":"547","labels":["Player"],"properties":{"name":"Kim Clijsters","id":"200079"}},"loserRel":{"id":"2404","type":"relationship","label":"LOSER","start":{"id":"547","labels":["Player"]},"end":{"id":"1054","labels":["Match"]}},"match":{"type":"node","id":"1054","labels":["Match"],"properties":{"score":"6-3 4-6 6-3","round":"F","id":"20040119_127"}}} ... {"t":{"type":"node","id":"274","labels":["Tournament"],"properties":{"year":2018,"name":"Australian Open"}},"tournRel":{"id":"7745","type":"relationship","label":"IN_TOURNAMENT","start":{"id":"2984","labels":["Match"]},"end":{"id":"274","labels":["Tournament"]}},"winner":{"type":"node","id":"96","labels":["Player"],"properties":{"name":"Caroline Wozniacki","id":"201496"}},"winnerRel":{"id":"7743","type":"relationship","label":"WINNER","start":{"id":"96","labels":["Player"]},"end":{"id":"2984","labels":["Match"]}},"loser":{"type":"node","id":"2","labels":["Player"],"properties":{"name":"Simona Halep","id":"201594"}},"loserRel":{"id":"7744","type":"relationship","label":"LOSER","start":{"id":"2","labels":["Player"]},"end":{"id":"2984","labels":["Match"]}},"match":{"type":"node","id":"2984","labels":["Match"],"properties":{"score":"7-6(2) 3-6 6-4","round":"F","id":"20180115_701"}}} ---- == Importing data We're now ready to import the data into a new database. Let's first create a new database and start using it: [source,cypher] ---- :use system; CREATE DATABASE blog; :use blog ---- Before we import any data, let's create the constraints that we had on our original database: [source, cypher] ---- CREATE CONSTRAINT ON (p:Player) ASSERT p.id IS UNIQUE; CREATE CONSTRAINT ON (m:Match) ASSERT m.id IS UNIQUE; CREATE CONSTRAINT ON (t:Tournament) ASSERT (t.name, t.year) IS NODE KEY; ---- We can check that those have been created by running the following command: [source,cypher] ---- CALL db.indexes(); ---- .CALL db.indexes() [opts="header"] |=== | id | name | state | populationPercent | uniqueness | type | entityType | labelsOrTypes | properties | provider | 5 | "constraint_989cb13a" | "ONLINE" | 100.0 | "UNIQUE" | "BTREE" | "NODE" | ["Tournament"] | ["name", "year"] | "native-btree-1.0" | 3 | "constraint_a016a763" | "ONLINE" | 100.0 | "UNIQUE" | "BTREE" | "NODE" | ["Match"] | ["id"] | "native-btree-1.0" | 1 | "constraint_cbe92269" | "ONLINE" | 100.0 | "UNIQUE" | "BTREE" | "NODE" | ["Player"] | ["id"] | "native-btree-1.0" |=== Alright, it's time to import the data! We're going to use the `apoc.load.json` procedure to do this, and we'll start with `tournaments.json`. When we're using the import procedures, we need to specify some properties that enable importing from local files. In our Dockerfile, we have the following lines: [source,yaml] ---- - NEO4J_apoc_import_file_use__neo4j__config=true - NEO4J_apoc_import_file_enabled=true ---- These properties are the equivalent of adding the following values to the `apoc.conf` file: [source,yaml] ---- apoc.import.file.use_neo4j_config=true apoc.import.file.enabled=true ---- * `apoc.import.file.enabled=true` enables reading files to disk * `apoc.import.file.use_neo4j_config=true` reads those files from the `import` directory Let's quickly run an exploratory query to remind ourselves the data that we'll be working with: [source,cypher] ---- CALL apoc.load.json("tournaments.json") YIELD value RETURN value.t1, value.t2, value.rel LIMIT 1; ---- .Exploring `tournaments.json` [opts="header"] |=== | value.t1 | value.t2 | value.rel | {id: "256", type: "node", properties: {name: "Australian Open", year: 2000}, labels: ["Tournament"]} | {id: "257", type: "node", properties: {name: "Australian Open", year: 2001}, labels: ["Tournament"]} | {start: {id: "256", labels: ["Tournament"]}, end: {id: "257", labels: ["Tournament"]}, id: "10266", label: "NEXT_TOURNAMENT", type: "relationship"} |=== where: * `t1` and `t2` represent `Tournament` nodes * `rel` represents the `NEXT_TOURNAMENT` relationship We can recreate the original graph structure by running the following query: [source,cypher] ---- CALL apoc.load.json("tournaments.json") YIELD value CALL apoc.merge.node(value.t1.labels, value.t1.properties) YIELD node AS t1 CALL apoc.merge.node(value.t2.labels, value.t2.properties) YIELD node AS t2 CALL apoc.merge.relationship(t1, value.rel.label, {}, {}, t2, {}) YIELD rel RETURN count(*); ---- We're using the `apoc.merge.node` and `apoc.merge.relationship` procedures to create the nodes and relationships. These procedures are the equivalent of Cypher's https://neo4j.com/docs/cypher-manual/current/clauses/merge/[`MERGE`^] clause, and come in handy when we're importing data from a dynamic source e.g. a JSON file .Results [opts="header"] |=== | count(*) | 19 |=== Everything looks good, but let's quickly check the contents of our database by running the `apoc.meta.stats` procedure that we ran earlier: [source,cypher] ---- CALL apoc.meta.stats() YIELD nodeCount, relCount, labels, relTypesCount RETURN nodeCount, relCount, labels, relTypesCount; ---- .apoc.meta.stats [opts="header"] |=== | nodeCount | relCount | labels | relTypesCount | 20 | 19 | {Tournament: 20} | {NEXT_TOURNAMENT: 19} |=== So we've got 20 nodes representing the 20 tournaments from 2000 to 2019 and 19 relationships between them. So far so good. Time to import `finalists.json`. We'll start with an exploratory query: [source,cypher] ---- CALL apoc.load.json("finalists.json") YIELD value RETURN value.t, value.tournRel, value.winner, value.winnerRel, value.loser, value.loserRel, value.match LIMIT 1; ---- .Exploring `finalists.json` [opts="header"] |=== | value.t | value.tournRel | value.winner | value.winnerRel | value.loser | value.loserRel | value.match | {id: "0", type: "node", properties: {name: "Australian Open", year: 2019}, labels: ["Tournament"]} | {start: {id: "191", labels: ["Match"]}, end: {id: "0", labels: ["Tournament"]}, id: "380", label: "IN_TOURNAMENT", type: "relationship"} | {id: "34", type: "node", properties: {name: "Naomi Osaka", id: "211768"}, labels: ["Player"]} | {start: {id: "34", labels: ["Player"]}, end: {id: "191", labels: ["Match"]}, id: "378", label: "WINNER", type: "relationship"} | {id: "66", type: "node", properties: {name: "Petra Kvitova", id: "201520"}, labels: ["Player"]} | {start: {id: "66", labels: ["Player"]}, end: {id: "191", labels: ["Match"]}, id: "379", label: "LOSER", type: "relationship"} | {id: "191", type: "node", properties: {score: "7-6(2) 5-7 6-4", id: "20190114_226", round: "F"}, labels: ["Match"]} |=== where: * `t` represents the `Tournament` node * `winner` and `loser` represent `Player` nodes * `match` represents the `Match` node * `winnerRel` represents the `WINNER` relationship between a `Player` and a `Match` * `loserRel` represents the `LOSER` relationship between a `Player` and a `Match` * `tournRel` represents the `IN_TOURNAMENT` relationship between a `Match` and a `Tournament` Let's now run the following query to import our matches: [source,cypher] ---- CALL apoc.load.json("finalists.json") yield value CALL apoc.merge.node(value.winner.labels, value.winner.properties) YIELD node AS winner CALL apoc.merge.node(value.loser.labels, value.loser.properties) YIELD node AS loser CALL apoc.merge.node(value.match.labels, value.match.properties) YIELD node AS match CALL apoc.merge.node(value.t.labels, value.t.properties) YIELD node AS tournament CALL apoc.merge.relationship(winner, value.winnerRel.label, {}, {}, match, {}) YIELD rel AS winnerRel CALL apoc.merge.relationship(loser, value.loserRel.label, {}, {}, match, {}) YIELD rel AS loserRel CALL apoc.merge.relationship(match, value.tournRel.label, {}, {}, tournament, {}) YIELD rel AS tournRel return count(*); ---- .Results [opts="header"] |=== | count(*) | 20 |=== Let's do one last call to `apoc.meta.stats`: [source,cypher] ---- CALL apoc.meta.stats() YIELD nodeCount, relCount, labels, relTypesCount RETURN nodeCount, relCount, labels, relTypesCount; ---- .apoc.meta.stats [opts="header"] |=== | nodeCount | relCount | labels | relTypesCount | 59 | 79 | {Player: 19, Tournament: 20, Match: 20} | {WINNER: 20, LOSER: 20, IN_TOURNAMENT: 20, NEXT_TOURNAMENT: 19} |=== And finally, let's run one of the queries from the original QuickGraph post to check that everything's in order: [source,cypher] ---- MATCH (winner:Player)-[:WINNER]->(match:Match {round: "F"})<-[:LOSER]-(loser), (match)-[:IN_TOURNAMENT]->(tournament) RETURN tournament.year AS year, winner.name AS winner, loser.name AS loser, match.score AS score ORDER BY tournament.year ---- .Results [opts="header"] |=== | year | winner | loser | score | 2000 | "Lindsay Davenport" | "Martina Hingis" | "6-1 7-5" | 2001 | "Jennifer Capriati" | "Martina Hingis" | "6-4 6-3" | 2002 | "Jennifer Capriati" | "Martina Hingis" | "4-6 7-6(7) 6-2" | 2003 | "Serena Williams" | "Venus Williams" | "7-6(4) 3-6 6-4" | 2004 | "Justine Henin" | "Kim Clijsters" | "6-3 4-6 6-3" | 2005 | "Serena Williams" | "Lindsay Davenport" | "2-6 6-3 6-0" | 2006 | "Amelie Mauresmo" | "Justine Henin" | "6-1 2-0 RET" | 2007 | "Serena Williams" | "Maria Sharapova" | "6-1 6-2" | 2008 | "Maria Sharapova" | "Ana Ivanovic" | "7-5 6-3" | 2009 | "Serena Williams" | "Dinara Safina" | "6-0 6-3" | 2010 | "Serena Williams" | "Justine Henin" | "6-4 3-6 6-2" | 2011 | "Kim Clijsters" | "Na Li" | "3-6 6-3 6-3" | 2012 | "Victoria Azarenka" | "Maria Sharapova" | "6-3 6-0" | 2013 | "Victoria Azarenka" | "Na Li" | "4-6 6-4 6-3" | 2014 | "Na Li" | "Dominika Cibulkova" | "7-6(3) 6-0" | 2015 | "Serena Williams" | "Maria Sharapova" | "6-3 7-6(5)" | 2016 | "Angelique Kerber" | "Serena Williams" | "6-4 3-6 6-4" | 2017 | "Serena Williams" | "Venus Williams" | "6-4 6-4" | 2018 | "Caroline Wozniacki" | "Simona Halep" | "7-6(2) 3-6 6-4" | 2019 | "Naomi Osaka" | "Petra Kvitova" | "7-6(2) 5-7 6-4" |=== Same results as before, which I think classifies as a #win!
Learn how to export a subset of data from one Neo4j database to another one
uploads/2020/01/apoc-export-json.png
[ -0.014968995936214924, -0.01823851466178894, 0.0034990068525075912, 0.04846055060625076, 0.10014807432889938, 0.01524102408438921, 0.0004020378109999001, 0.03963449224829674, -0.01375958975404501, -0.03076079487800598, -0.017670396715402603, -0.012735988944768906, -0.06901610642671585, -0.002542962785810232, 0.031856223940849304, 0.05184414982795715, 0.05555304139852524, 0.029588453471660614, 0.008961698040366173, 0.017497623339295387, 0.02419331856071949, 0.036701448261737823, -0.0031471073161810637, 0.027856383472681046, 0.01258097868412733, -0.0007778838044032454, 0.02305286005139351, -0.0051721083000302315, -0.06386129558086395, -0.01884615421295166, 0.026264691725373268, -0.025766730308532715, 0.006992687005549669, 0.004881137516349554, 0.023735882714390755, 0.005049592815339565, -0.04756498336791992, 0.00970594771206379, -0.02396666817367077, 0.02289924956858158, -0.0818432867527008, 0.04415721818804741, 0.016346389427781105, 0.013543136417865753, -0.021766791120171547, 0.015858637169003487, -0.04441827908158302, 0.0429634153842926, 0.007980558089911938, -0.015435939654707909, -0.10579793900251389, 0.011307797394692898, -0.033795811235904694, -0.005573639180511236, 0.016578812152147293, 0.05259983241558075, 0.006382356397807598, -0.051434408873319626, 0.027253206819295883, -0.030414018779993057, -0.012032552622258663, -0.01522467378526926, 0.016769232228398323, 0.031177975237369537, 0.013897808268666267, -0.050439927726984024, -0.010080150328576565, 0.046914130449295044, -0.05393682047724724, -0.007021964993327856, 0.023410603404045105, 0.025274578481912613, -0.019906001165509224, -0.023558439686894417, 0.00673828087747097, -0.04733225703239441, 0.010361917316913605, 0.04797779396176338, 0.02932361327111721, 0.05664597451686859, -0.006926768459379673, 0.025387929752469063, -0.010188973508775234, 0.036517489701509476, -0.008532409556210041, -0.07268692553043365, -0.025509199127554893, 0.007876279763877392, -0.05673471838235855, 0.05156254395842552, 0.008627252653241158, -0.050995416939258575, 0.016482051461935043, -0.004426409490406513, -0.004511152394115925, 0.03999849036335945, -0.01624087616801262, 0.03496277704834938, 0.024135850369930267, 0.012117606587707996, -0.05048510059714317, -0.004639977123588324, -0.0014237156137824059, 0.02832021377980709, -0.06788650900125504, -0.04475408047437668, -0.029242955148220062, -0.03504425659775734, 0.0063126422464847565, -0.0049470835365355015, 0.012432506307959557, 0.008751319721341133, -0.0015846076421439648, 0.006763126235455275, -0.08937884867191315, 0.06870827078819275, 0.028050944209098816, -0.025967856869101524, -0.016291329637169838, -0.01255140732973814, 0.03770873695611954, 0.042812541127204895, 0.010301473550498486, 0.06977801024913788, -0.02168210595846176, 0.013618551194667816, -0.013685612007975578, 0.0442701131105423, -0.024522094056010246, -0.04767433553934097, -0.024282153695821762, 0.06176002323627472, 0.010841524228453636, 0.026476586237549782, 0.006508022081106901, -0.016275210306048393, -0.002575031714513898, 0.03438195586204529, 0.05936193838715553, 0.028923766687512398, 0.007036810275167227, -0.058382660150527954, 0.006980414502322674, 0.0005402886890806258, 0.01912439800798893, 0.024554304778575897, -0.020231621339917183, -0.05944593995809555, -0.03635799512267113, 0.008131946437060833, 0.010887416079640388, 0.0005745532689616084, 0.05443016067147255, -0.02775239385664463, 0.013704981654882431, 0.10628385096788406, 0.06721824407577515, 0.01799698919057846, -0.017951756715774536, 0.004994298331439495, 0.034367308020591736, 0.05014076083898544, -0.0026793302968144417, 0.04652632027864456, 0.0020723764318972826, -0.04268310219049454, -0.025166070088744164, 0.045060064643621445, 0.008419551886618137, 0.013745740987360477, -0.047035761177539825, -0.07780426740646362, 0.08417883515357971, -0.02980864979326725, -0.019642330706119537, 0.07129319757223129, 0.07183106243610382, 0.01880956068634987, 0.011076316237449646, -0.003813000163063407, -0.0837438553571701, 0.0649554580450058, -0.014436637051403522, 0.004861508961766958, 0.0022668815217912197, -0.013029410503804684, 0.05446479469537735, 0.04433461278676987, 0.026393797248601913, 0.050354745239019394, -0.0836406946182251, -0.08693062514066696, -0.009675774723291397, -0.00833086110651493, 0.0636264830827713, -0.026680786162614822, -0.030347194522619247, 0.06940191239118576, 0.009770120494067669, 0.013314156793057919, 0.008768714033067226, 0.015134310349822044, 0.031334538012742996, -0.0787956640124321, -0.06971342116594315, 0.06887766718864441, 0.027047745883464813, -0.0414964035153389, -0.05903115123510361, 0.014605645090341568, -0.05317028984427452, -0.009219402447342873, 0.03057512827217579, -0.026273496448993683, 0.052640222012996674, 0.007493253331631422, 0.018365856260061264, -0.03231213241815567, 0.0256947111338377, -0.05137783661484718, 0.05434248223900795, 0.00791790522634983, -0.019884753972291946, -0.0027086015325039625, -0.008580530062317848, 0.10548216849565506, 0.06168229132890701, -0.008791830390691757, -0.047138724476099014, 0.04405108094215393, 0.025873644277453423, -0.021533293649554253, 0.0003496300196275115, -0.020589390769600868, 0.00023441862140316516, -0.015340365469455719, -0.028032690286636353, 0.0032594010699540377, -0.004073022864758968, -0.004386992193758488, 0.01407638005912304, 0.0672948881983757, -0.04500541463494301, 0.04750077798962593, 0.01526566967368126, 0.003673735074698925, -0.010081167332828045, -0.058089181780815125, -0.060466308146715164, 0.019245347008109093, 0.04333823546767235, -0.0049504307098686695, 0.057922158390283585, -0.025247681885957718, 0.001503409119322896, -0.056166719645261765, -0.03486566245555878, 0.012082823552191257, 0.013803054578602314, 0.03930448368191719, -0.021825036033988, 0.03704017773270607, -0.043835509568452835, 0.020807165652513504, -0.00003451357770245522, -0.041764989495277405, -0.042368050664663315, -0.000260942179011181, 0.022062985226511955, -0.0022185705602169037, 0.03592456504702568, -0.003668704070150852, 0.021334348246455193, -0.026172524318099022, 0.036955807358026505, 0.014106555841863155, 0.026467403396964073, 0.01874692738056183, 0.009881461970508099, -0.017894184216856956, -0.025377310812473297, 0.06397558003664017, -0.07390952110290527, -0.01783294789493084, 0.009889050386846066, -0.07735401391983032, 0.026625029742717743, -0.04415740445256233, -0.020087292417883873, -0.0017167951446026564, 0.04785365238785744, 0.028995448723435402, 0.030802695080637932, 0.00919552892446518, 0.05206756666302681, 0.0089271804317832, 0.022588446736335754, -0.002514523919671774, -0.007784848101437092, 0.04656507447361946, -0.01848430745303631, 0.03368920832872391, 0.047580279409885406, -0.016720904037356377, 0.011651787906885147, -0.02572643756866455, 0.0029136554803699255, -0.03253147751092911, -0.267699271440506, 0.0519549697637558, -0.029637537896633148, -0.04207705706357956, 0.0022486625239253044, -0.018518608063459396, 0.022898992523550987, -0.031352486461400986, -0.012520646676421165, -0.002107556676492095, -0.007952746003866196, -0.03843051567673683, -0.013307581655681133, 0.050141166895627975, 0.009988215751945972, 0.053179651498794556, 0.0005110136116854846, -0.03095083124935627, 0.011098483577370644, -0.008424674160778522, -0.015340341255068779, -0.03341908007860184, -0.0009073886321857572, 0.009435076266527176, 0.014579416252672672, 0.015055636875331402, -0.08894409239292145, 0.03280806168913841, -0.04102581366896629, -0.036163099110126495, -0.0118227768689394, -0.023572862148284912, 0.014999808743596077, 0.016731208190321922, -0.021990450099110603, -0.023241210728883743, 0.029870782047510147, -0.012051143683493137, 0.0005029517924413085, -0.001772042247466743, -0.03638055920600891, -0.03002333827316761, -0.014339799992740154, -0.003153605852276087, 0.06892241537570953, -0.022039251402020454, -0.07671334594488144, 0.004372859839349985, -0.030252790078520775, 0.0888347178697586, -0.01907951384782791, -0.04527200385928154, -0.033429473638534546, 0.0346931554377079, -0.0073968833312392235, -0.0268219206482172, -0.018035855144262314, -0.004908460658043623, -0.06796441972255707, -0.025211423635482788, -0.0007259529083967209, -0.03675159066915512, 0.0005382582312449813, -0.05163603276014328, -0.0377170667052269, -0.03836348280310631, -0.08086366951465607, -0.02952175959944725, 0.05801954120397568, 0.029529817402362823, -0.049120355397462845, 0.04053853079676628, -0.009649133309721947, -0.09728506952524185, -0.02351095899939537, -0.03504409268498421, -0.027322668582201004, 0.012947207316756248, -0.007700935937464237, 0.0484306775033474, -0.02363767847418785, -0.02157805860042572, 0.024240931496024132, 0.026356257498264313, 0.0022473386488854885, -0.008238491602241993, 0.02851274237036705, -0.007725577335804701, -0.001621060073375702, 0.017864957451820374, 0.07086876034736633, -0.03161795064806938, -0.017146317288279533, -0.020629582926630974, -0.007389850448817015, 0.016860496252775192, -0.004396927077323198, -0.0026906603015959263, 0.008445858024060726, 0.038436390459537506, 0.041845861822366714, -0.018433773890137672, -0.01125151664018631, -0.011745315045118332, -0.010441421531140804, -0.020649060606956482, -0.057450681924819946, 0.014317565597593784, 0.014349482022225857, 0.0307918768376112, -0.0057087792083621025, -0.01573624275624752, 0.04683639854192734, -0.059190042316913605, -0.015897667035460472, 0.008649425581097603, 0.0134269492700696, 0.01899629645049572, 0.06400953233242035, -0.021180875599384308, -0.05127844959497452, 0.03735940530896187, 0.040842365473508835, -0.01659463904798031, -0.045667923986911774, -0.02872232347726822, -0.013266102410852909, -0.025477232411503792, -0.00693537387996912, 0.03064345382153988, -0.018287111073732376, 0.0334368571639061, 0.04540881887078285, -0.03524250537157059, 0.04321126639842987, -0.03793125972151756, -0.029654575511813164, -0.056463610380887985, 0.04276386648416519, 0.01077267061918974, -0.02990073151886463, 0.009159587323665619, -0.024918638169765472, 0.03894561529159546, 0.04906124621629715, 0.004719122312963009, 0.006572909653186798, 0.023720085620880127, 0.04876430705189705, -0.01509967353194952, -0.016666309908032417, -0.027770740911364555, -0.013162681832909584, -0.038153041154146194, -0.0296487957239151, 0.007739660330116749, 0.04077684506773949, -0.04466170817613602, -0.019875988364219666, -0.037940554320812225, 0.03129731863737106, -0.0658423975110054, -0.009060125797986984, 0.003736449172720313, -0.0015974815469235182, 0.05203934386372566, -0.008267589844763279, 0.020805591717362404, -0.01734909415245056, -0.019047144800424576, 0.026731444522738457, 0.01743003912270069, -0.025823505595326424, -0.023022040724754333, 0.014150593429803848, 0.0017303950153291225, 0.0008679467719048262, 0.03492273762822151, 0.041224367916584015, 0.017815662547945976, -0.017281491309404373, -0.029237190261483192, 0.014669531024992466, 0.009119932539761066, 0.04421665519475937, 0.045749541372060776, -0.032226089388132095, 0.003819751087576151, -0.021599935367703438, -0.003658752189949155, -0.044381033629179, 0.02985115349292755, -0.016368964686989784, 0.01994226686656475, -0.018327170982956886, -0.05880064517259598, 0.0511527918279171, 0.009435710497200489, 0.006284232717007399, 0.04840727522969246, -0.023288337513804436, 0.0015112997498363256, -0.03576364368200302, 0.03829289227724075, 0.05372938513755798, -0.06462283432483673, -0.04565563052892685, 0.00037035634159110487, 0.01777890883386135, -0.011355862952768803, 0.012667526490986347, -0.07423830032348633, -0.030571533367037773, 0.009107347577810287, 0.021000495180487633, -0.041745588183403015, -0.051772017031908035, 0.0017449434380978346, 0.015614326111972332, 0.004372775554656982, 0.011695961467921734, 0.024091534316539764, 0.005956440698355436, -0.011842996813356876, -0.030881967395544052, 0.05423103645443916, -0.030803460627794266, 0.016918707638978958, 0.0027299574576318264, -0.0037875103298574686, 0.013138861395418644, -0.02636406384408474, 0.027310162782669067, 0.012287168763577938, -0.007448308635503054, 0.011029822751879692, -0.04347893223166466, 0.017666565254330635, -0.005335050635039806, 0.03764311596751213, -0.01131381094455719, 0.015172550454735756, -0.035047996789216995, -0.02410641685128212, -0.02762126922607422, -0.026285110041499138, -0.016020741313695908, 0.004294416401535273, 0.00026715005515143275, 0.03172625973820686, 0.010764405131340027, 0.022738611325621605, -0.014090003445744514, -0.05347592011094093, 0.04886054992675781, -0.05142994597554207, -0.05748727172613144, 0.007069980725646019, -0.07571715116500854, 0.015046478249132633, 0.03806730732321739, 0.02031305432319641, -0.03793461620807648, 0.06058556213974953, 0.04783671721816063, 0.015457955189049244, 0.023311451077461243, -0.0133974002674222, 0.02761090360581875, -0.018030816689133644, -0.009299073368310928, -0.07548312842845917, 0.020751116797327995, 0.053683795034885406, -0.017426276579499245, 0.00549040362238884, 0.0090476144105196, -0.037368372082710266, 0.03945088014006615, -0.05288655310869217, -0.03578343614935875, 0.05663842335343361, -0.022445321083068848, 0.00784505344927311, -0.008210552856326103, -0.06618642061948776, 0.020240500569343567, 0.038011323660612106, -0.05120830237865448, -0.01675312966108322, -0.004714370705187321, 0.05601846054196358, -0.017751628533005714, 0.041493967175483704, -0.02221078984439373, -0.022578388452529907, 0.08630987256765366, 0.01942257769405842, 0.0020136560779064894, 0.02457193098962307, 0.0002591608790680766, 0.02860601246356964, 0.003451428608968854, -0.03411027789115906, 0.0102519690990448, 0.025336118414998055, -0.0288909450173378, -0.04406879097223282, 0.03134836256504059, 0.02987588755786419, -0.02711918018758297, -0.03103329986333847, 0.05120356008410454, 0.010044770315289497, -0.0403376929461956, -0.06293797492980957, 0.06171730160713196, -0.06093816086649895, -0.024178018793463707, -0.036672402173280716, 0.01648484542965889, -0.04950203001499176, 0.033018093556165695, -0.02021433785557747, 0.0036996807903051376, 0.06900756806135178, 0.006033130455762148, -0.008287561126053333, 0.019706623628735542, 0.0953073799610138, 0.06753191351890564, 0.022158291190862656, 0.009433995932340622, 0.05408862605690956, -0.01341655757278204, -0.007800885941833258, -0.0004427231033332646, -0.018092816695570946, -0.011390112340450287, 0.004838391672819853, 0.011501439847052097, 0.07736743986606598, -0.0186885017901659, 0.062024813145399094, 0.001525069703347981, -0.018155792728066444, -0.03703800588846207, 0.004689220804721117, 0.019088909029960632, 0.022919682785868645, 0.029265960678458214, 0.04174646735191345, -0.028126714751124382, -0.038020648062229156, 0.02884480357170105, -0.013518610037863255, -0.011928790248930454, 0.03600888326764107, -0.028918758034706116, -0.011163388378918171, 0.018233684822916985, 0.03509918972849846, 0.08951947838068008, -0.03755248337984085, -0.0009025470935739577, 0.005036151967942715, 0.03185182809829712, 0.016413861885666847, 0.026466019451618195, -0.012134505435824394, -0.01803121715784073, -0.0011695928405970335, -0.03301744908094406, -0.014619052410125732, -0.01649785414338112, -0.011937723495066166, 0.01086925994604826, -0.008635655976831913, -0.0020209180656820536, 0.009131329134106636, -0.011433437466621399, -0.006161830388009548, -0.05083133652806282, -0.05416730418801308, -0.060964733362197876, -0.06839195638895035, 0.013042031787335873, 0.00009200438944390044, 0.015523691661655903, 0.004117021337151527, -0.011777164414525032, -0.020882921293377876, 0.005482721142470837, 0.04386343061923981, -0.03965931385755539, 0.012735060416162014, -0.001874386565759778, 0.022879645228385925, 0.0010461100609973073, -0.01500666793435812, 0.06615287065505981, 0.0018314672634005547, 0.02486519329249859, -0.009743878617882729, 0.04486973211169243, 0.034617483615875244, -0.003115008817985654, -0.004038706887513399, -0.08041518926620483, -0.009476544335484505, 0.02312725968658924, 0.010355955921113491, -0.06916573643684387, 0.015445610508322716, 0.05552447587251663, 0.0013388140359893441, 0.04320915415883064, -0.0037257280200719833, 0.011760854162275791, -0.027032939717173576, 0.004770718514919281, -0.01598380133509636, -0.005774086341261864, 0.03477780148386955, -0.023036958649754524, 0.0739939957857132, 0.05726516991853714, -0.026241762563586235, -0.014249148778617382, -0.03016451559960842, -0.0030041183345019817, 0.02106337808072567, -0.03449526056647301, -0.020494312047958374, -0.04681125283241272, -0.09097021818161011, -0.061274848878383636, -0.010876525193452835, -0.02622848004102707, -0.036266352981328964, -0.0072578731924295425, -0.003851576242595911, -0.02433375082910061, 0.0023626182228326797, -0.04746505618095398, 0.005021034739911556, -0.033055730164051056, -0.008510323241353035, -0.02013578824698925, -0.004490983672440052, 0.01470636110752821, -0.01963314414024353, 0.023281138390302658, -0.04492230340838432, -0.011210484430193901, -0.03049471415579319, 0.04088699072599411, 0.03821810707449913, 0.01862606592476368, -0.00047277871635742486 ]
[ -0.0447080172598362, -0.03103652596473694, -0.01766285113990307, -0.06331013888120651, 0.06612485647201538, -0.06471799314022064, -0.04141833260655403, 0.010737176984548569, -0.009845846332609653, -0.01166647020727396, 0.0010795521084219217, -0.037988632917404175, -0.009626217186450958, -0.002043286105617881, 0.0692623108625412, 0.014817362651228905, -0.03828152269124985, -0.053850363940000534, -0.03262009471654892, 0.04921597242355347, -0.01370891835540533, -0.016542555764317513, -0.018328791484236717, -0.05456127971410751, -0.0070447116158902645, 0.05839729681611061, 0.03449125215411186, -0.012008915655314922, -0.031533267349004745, -0.19546379148960114, -0.002749613020569086, -0.016275059431791306, -0.019933413714170456, -0.021050967276096344, 0.037261173129081726, 0.0469805970788002, 0.019632933661341667, -0.0047743115574121475, 0.012549234554171562, 0.04418722540140152, 0.03164825588464737, 0.007401312235742807, -0.07335338741540909, -0.009461645036935806, 0.07431712001562119, 0.010816340334713459, -0.00045507028698921204, -0.026150105521082878, 0.003985908348113298, 0.03948937729001045, -0.015483790077269077, 0.013622722588479519, -0.019653156399726868, -0.0163913331925869, 0.002101245569065213, 0.04089057818055153, 0.04838057979941368, 0.06785685569047928, 0.003909560386091471, 0.05597933009266853, 0.02110419236123562, 0.00032849604031071067, -0.1304745078086853, 0.11802263557910919, 0.017498135566711426, 0.007714454084634781, -0.06771504878997803, 0.0035383107606321573, -0.031475991010665894, 0.0672748014330864, 0.0013552714372053742, -0.03456219285726547, -0.05476914718747139, 0.07576601952314377, -0.0021188033279031515, 0.01766212284564972, -0.00816309079527855, 0.028198059648275375, 0.021058345213532448, -0.04430743306875229, -0.023608947172760963, 0.025816097855567932, -0.06127642095088959, -0.00757199851796031, -0.04171352833509445, 0.015608025714755058, -0.017565423622727394, 0.06448734551668167, -0.0023273935075849295, 0.021972481161355972, 0.03534908965229988, -0.014878363348543644, 0.06994593888521194, 0.035665325820446014, -0.10505495965480804, -0.0029404053930193186, 0.0249241441488266, 0.03469466790556908, -0.0034882689360529184, 0.3699056804180145, 0.023743661120533943, -0.010048501193523407, 0.05313469469547272, 0.03182539343833923, -0.0008059951942414045, -0.014962011948227882, -0.007983896881341934, -0.05184820666909218, 0.042426709085702896, -0.007386343088001013, -0.014277130365371704, -0.034092992544174194, 0.036855146288871765, -0.07898539304733276, 0.0113377021625638, -0.004171460401266813, 0.008690962567925453, 0.02989708073437214, -0.04269634559750557, 0.014972029253840446, -0.012395944446325302, -0.03287355229258537, 0.04737730696797371, 0.03265809640288353, 0.03361886739730835, 0.021066997200250626, 0.03172542154788971, 0.002877807943150401, 0.02882547676563263, 0.022562136873602867, 0.0368044339120388, 0.021649038419127464, -0.05788636580109596, 0.03348267078399658, 0.004581080283969641, -0.0147094102576375, 0.032651111483573914, -0.038955625146627426, -0.025698717683553696, 0.05107014626264572, -0.021013693884015083, -0.016600726172327995, 0.007327633909881115, 0.012893357314169407, -0.03299786150455475, 0.1284802407026291, 0.008466959930956364, -0.03543150797486305, -0.025106966495513916, -0.05115526542067528, -0.006480567157268524, 0.06543105840682983, 0.0038870093412697315, -0.04875887557864189, -0.00013822378241457045, 0.007298312149941921, 0.07500359416007996, -0.011871383525431156, -0.09603624045848846, 0.0070615774020552635, -0.02001848630607128, -0.05249842628836632, -0.034539736807346344, 0.07500531524419785, 0.0273505337536335, -0.12494293600320816, 0.011320030316710472, 0.012137800455093384, 0.0201615821570158, -0.054113324731588364, 0.004140969831496477, 0.016697309911251068, -0.018131282180547714, -0.05325331166386604, 0.05714791268110275, -0.007648284547030926, 0.006356352474540472, 0.0014995478559285402, 0.02560727670788765, 0.005622192285954952, -0.009046879597008228, -0.02379174344241619, -0.06007739156484604, -0.00537362415343523, -0.05370212346315384, -0.06631360948085785, -0.09874222427606583, 0.02704700641334057, -0.04749968275427818, -0.006890503689646721, -0.03830631822347641, 0.01817421428859234, -0.05828748643398285, 0.07990311086177826, -0.033304665237665176, -0.018087947741150856, -0.00826974492520094, 0.019102146849036217, -0.010747939348220825, -0.046242453157901764, 0.0311245396733284, 0.028717339038848877, -0.012859513983130455, 0.03727926313877106, -0.05736960843205452, 0.023816831409931183, 0.06042258068919182, -0.023182108998298645, 0.042608682066202164, 0.04013552516698837, -0.06963638961315155, 0.010154878720641136, -0.0015493413666263223, 0.04331088066101074, -0.020594436675310135, 0.002956697018817067, 0.003705123672261834, -0.0004139734955970198, 0.04293941333889961, 0.044616859406232834, -0.056698188185691833, -0.022893186658620834, 0.003509305417537689, -0.3559810221195221, -0.027960166335105896, -0.01634553074836731, -0.0014821880031377077, -0.0005051330081187189, -0.02525405026972294, 0.029924891889095306, 0.00014273416309151798, 0.018246948719024658, 0.007918991148471832, 0.10265811532735825, -0.043142374604940414, 0.037052277475595474, -0.06297174096107483, -0.002617364516481757, 0.028680361807346344, -0.010326962918043137, 0.028555048629641533, 0.010779204778373241, 0.009657127782702446, -0.0078052436001598835, -0.062236011028289795, -0.021260522305965424, -0.0398590974509716, -0.008082530461251736, -0.013840493746101856, 0.13320964574813843, 0.0006248546997085214, 0.03358963504433632, -0.051780637353658676, 0.03226575627923012, 0.017592499032616615, 0.013251137919723988, -0.10978484898805618, 0.008966361172497272, -0.01924717240035534, 0.027594303712248802, 0.03613528981804848, -0.023285506293177605, 0.014306314289569855, -0.03134109079837799, 0.004717285744845867, -0.04291224107146263, -0.06867387890815735, 0.004048134665936232, 0.002466544508934021, -0.061345018446445465, 0.012965316884219646, -0.007403834257274866, 0.06311894953250885, 0.021676689386367798, 0.013914661481976509, -0.003942632116377354, 0.038128260523080826, 0.002852085744962096, -0.02489427477121353, -0.05982658267021179, 0.0001931932201841846, 0.02467159368097782, 0.041382912546396255, 0.01678100787103176, 0.044559918344020844, 0.03521822765469551, -0.0748598501086235, 0.018047600984573364, 0.011606654152274132, -0.0034067623782902956, 0.03345799818634987, 0.04749158024787903, -0.04533102363348007, -0.029383590444922447, 0.11487933248281479, -0.0059773242101073265, 0.04040557146072388, 0.03505988419055939, 0.04210412874817848, -0.02832731604576111, 0.015580735169351101, 0.035034772008657455, 0.029241079464554787, 0.03409379720687866, -0.028943879529833794, 0.06632263958454132, -0.0037644365802407265, -0.01571744680404663, 0.07671649008989334, 0.019771169871091843, -0.04384703189134598, 0.05282210558652878, 0.02055041305720806, -0.04341665655374527, -0.009719226509332657, -0.021688515320420265, -0.05894112214446068, 0.07130829244852066, -0.018609166145324707, -0.2775120735168457, 0.019035713747143745, 0.036158010363578796, 0.05158044025301933, 0.0025100281927734613, -0.006471105385571718, 0.03258294612169266, -0.031107928603887558, -0.02240770123898983, 0.02765914611518383, -0.0019783414900302887, 0.0342986099421978, -0.027452312409877777, 0.0034467028453946114, 0.001920456299558282, 0.010731380432844162, 0.020092520862817764, 0.03539620339870453, 0.02334481105208397, -0.023409457877278328, 0.00908658280968666, -0.03887999802827835, 0.17674551904201508, 0.03654741495847702, -0.02429824322462082, 0.040299367159605026, -0.020532237365841866, 0.020625628530979156, 0.05024295300245285, 0.011502128094434738, -0.011592538096010685, 0.03455144912004471, -0.00033449940383434296, -0.005027668084949255, 0.018856503069400787, -0.04290151223540306, -0.03599478304386139, 0.03638842701911926, 0.026860645040869713, -0.016327019780874252, -0.021743951365351677, 0.01745835319161415, -0.03440006077289581, 0.023891832679510117, 0.06655391305685043, -0.025759221985936165, 0.0008356317994184792, -0.0359979085624218, -0.08928190916776657, -0.026463419198989868, -0.03327266499400139, -0.0608026422560215, -0.01218319870531559, -0.02066173404455185, -0.012303107418119907, 0.06921067088842392, 0.013210159726440907, -0.022276973351836205, 0.020393555983901024, 0.019681496545672417, 0.0009555984870530665, -0.0791742354631424, 0.09604980051517487, -0.006455933675169945, 0.015432865358889103 ]
[ 0.0375349186360836, 0.036397919058799744, -0.013956665061414242, 0.022606901824474335, -0.0011880418751388788, -0.013730163685977459, 0.007780378684401512, -0.000782371440436691, -0.0298142172396183, 0.005361488554626703, -0.002129913307726383, 0.025114860385656357, 0.045932140201330185, 0.04199004918336868, 0.0013665680307894945, 0.014207405969500542, -0.00945811066776514, 0.025448592379689217, 0.027565456926822662, 0.02396039105951786, -0.04260791838169098, -0.011345190927386284, 0.0281358752399683, 0.004620381165295839, -0.010438409633934498, 0.011181380599737167, -0.05498148128390312, 0.01584692671895027, 0.017823169007897377, -0.12210366874933243, -0.0062044900842010975, -0.004603999201208353, 0.0005626544007100165, -0.012945679016411304, 0.027524396777153015, 0.02463141828775406, 0.055517904460430145, -0.015120603144168854, 0.0011148321209475398, 0.030796168372035027, 0.04083216190338135, -0.01202109269797802, -0.014241574332118034, 0.013577687554061413, -0.017477942630648613, -0.02505495958030224, -0.027362879365682602, -0.04097627103328705, 0.0343065969645977, -0.004618415143340826, -0.04090367630124092, -0.010053910315036774, -0.048145174980163574, -0.017461663112044334, -0.0028018373996019363, 0.01009165309369564, -0.030376438051462173, -0.004573035519570112, 0.03350406140089035, 0.01315526943653822, 0.028432438150048256, -0.006286871153861284, -0.06394854933023453, -0.015863768756389618, -0.025372575968503952, -0.017042700201272964, -0.026612339541316032, -0.008093501441180706, -0.039839088916778564, 0.006302904337644577, 0.008973621763288975, 0.05207056179642677, -0.08150747418403625, -0.05492125824093819, -0.03377440944314003, 0.021215170621871948, 0.04351095110177994, -0.030809922143816948, -0.07620035111904144, -0.0004954116884618998, 0.005142864305526018, 0.029998956248164177, -0.03860308974981308, 0.011873957701027393, -0.05372285097837448, 0.017257750034332275, 0.009172072634100914, -0.0364651121199131, 0.00756946112960577, -0.0034749647602438927, 0.0007844913634471595, -0.01943904347717762, -0.0030115251429378986, -0.0364864245057106, -0.07616902887821198, -0.023729033768177032, 0.025780485942959785, -0.008175252005457878, 0.008665039204061031, 0.8016281723976135, 0.005311618559062481, -0.002399295335635543, 0.004667619243264198, -0.004653697833418846, 0.030401606112718582, -0.0004705533501692116, 0.022623248398303986, 0.0012646436225622892, 0.009271386079490185, 0.029771707952022552, -0.022996146231889725, 0.04314402490854263, 0.012860947288572788, 0.02524043805897236, 0.005594324786216021, 0.027835335582494736, 0.006493392866104841, -0.03516320884227753, -0.021785831078886986, 0.05452776327729225, 0.011704424396157265, 0.013672325760126114, 0.018191104754805565, 0.02889925241470337, 0.01542687602341175, -0.16864009201526642, -0.009122833609580994, -6.28695668058832e-33, 0.043011803179979324, -0.04298222437500954, 0.06849666684865952, 0.02379693277180195, 0.019612673670053482, 0.01891261152923107, -0.018748348578810692, -0.04875531420111656, -0.03088381141424179, -0.022558260709047318, -0.03820958361029625, 0.016280516982078552, -0.016937389969825745, 0.021545326337218285, -0.008688808418810368, -0.031821466982364655, 0.023387273773550987, 0.019441835582256317, -0.0027791988104581833, 0.017850907519459724, 0.007660870440304279, 0.02204713597893715, -0.038210008293390274, 0.046939533203840256, 0.024598216637969017, 0.03027009405195713, 0.02691086009144783, 0.019182346761226654, 0.005304527934640646, -0.046381134539842606, -0.0726650059223175, 0.012947995215654373, -0.01234823651611805, -0.020395377650856972, 0.00045075512025505304, -0.07255702465772629, -0.01776241883635521, 0.01194261945784092, -0.049434833228588104, -0.06282225996255875, -0.05118643119931221, -0.004486423451453447, -0.03420524671673775, -0.02319866232573986, -0.018616007640957832, -0.00795469619333744, -0.030945392325520515, 0.02597695402801037, 0.011088009923696518, 0.012365465052425861, -0.006331446580588818, 0.026165936142206192, -0.018184321001172066, 0.04284030199050903, -0.06205786392092705, -0.019056536257267, 0.011137832887470722, -0.013763491064310074, -0.01128222607076168, -0.0312516987323761, 0.024215778335928917, 0.01719716750085354, -0.011601939797401428, 0.04911408945918083, 0.029878275468945503, 0.024911949411034584, -0.007514435797929764, 0.02917342074215412, 0.0126441465690732, 0.0603833943605423, -0.037222690880298615, 0.031942058354616165, -0.024565765634179115, -0.05247972905635834, 0.03144675865769386, -0.0435183122754097, -0.002133212285116315, -0.015603849664330482, 0.0018907731864601374, 0.05749538913369179, -0.023633167147636414, -0.03347970172762871, -0.022268101572990417, -0.00669077830389142, -0.02385816164314747, -0.017056100070476532, 0.0563642792403698, 0.04946259781718254, 0.008884551003575325, 0.025898968800902367, 0.04435675963759422, 0.05084967613220215, -0.015077145770192146, -0.04243581369519234, -0.04048025608062744, 6.235835900638997e-33, 0.0096872728317976, -0.01807844638824463, -0.0051362402737140656, -0.0017008997965604067, 0.03576013073325157, 0.02209017239511013, 0.03242673724889755, 0.025238025933504105, -0.028378592804074287, 0.0470222532749176, -0.024329204112291336, 0.011739336885511875, -0.031076200306415558, 0.02214273065328598, 0.04647405073046684, 0.023491062223911285, 0.009662295691668987, -0.04468744248151779, -0.006307103205472231, 0.027655551210045815, -0.031389251351356506, 0.0059727816842496395, -0.0021316928323358297, 0.03377987816929817, 0.03767554834485054, 0.004042012616991997, -0.0140129579231143, 0.009341266006231308, -0.050314851105213165, -0.006731647998094559, -0.013794850558042526, -0.052023787051439285, -0.007403360679745674, 0.013560883700847626, -0.006024389527738094, 0.003735288977622986, -0.03122990019619465, 0.01741764135658741, -0.00909457914531231, -0.011757276952266693, 0.028259333223104477, -0.01913534477353096, -0.02947579324245453, 0.06044747680425644, 0.007106934208422899, -0.007255294360220432, -0.00516122579574585, 0.02310330793261528, 0.004877482540905476, 0.018198225647211075, -0.015061702579259872, 0.006913092453032732, 0.023531807586550713, 0.02739931084215641, 0.043241024017333984, -0.07330017536878586, -0.0013049788540229201, 0.02425442822277546, -0.013282115571200848, 0.015301772393286228, -0.0012127625523135066, -0.008275837637484074, -0.01341173890978098, 0.015041000209748745, -0.03434693068265915, -0.03244325518608093, -0.006759401876479387, -0.019003933295607567, -0.02516322024166584, 0.0232416782528162, 0.056806501001119614, 0.010883410461246967, 0.01046046707779169, 0.026331447064876556, 0.055986810475587845, -0.0018369393656030297, -0.025298455730080605, 0.001118387677706778, -0.040943797677755356, 0.019412480294704437, -0.003641386516392231, 0.02047538012266159, 0.0019142163218930364, -0.007377984933555126, -0.011892043054103851, -0.012902211397886276, -0.008734242990612984, 0.0046606650575995445, 0.002294739242643118, 0.006177423056215048, 0.049535587430000305, -0.03443991765379906, -0.006943729240447283, 0.03577624633908272, -0.04598795995116234, -1.2142852945373761e-8, -0.04192119464278221, -0.03130585700273514, -0.001384480157867074, 0.02989114448428154, -0.018188083544373512, -0.000004961840204487089, 0.017790231853723526, 0.03162459656596184, 0.00089922925690189, 0.025548754259943962, 0.03937872499227524, -0.025601277127861977, 0.0151124382391572, 0.009951922111213207, 0.0363549143075943, -0.018458547070622444, 0.030229752883315086, -0.015210901387035847, 0.033874593675136566, -0.008383622393012047, -0.00006287819996941835, 0.0326206274330616, -0.005314086098223925, 0.012099222280085087, -0.02300705388188362, -0.014702576212584972, 0.016894245520234108, -0.06046153977513313, -0.03802565112709999, -0.04205619916319847, 0.025668427348136902, -0.016933588311076164, -0.05716780573129654, 0.005611733067780733, -0.03392801806330681, 0.001867528771981597, 0.054169006645679474, 0.059304993599653244, 0.0036556776612997055, 0.01721241883933544, -0.029700813814997673, -0.003404458286240697, -0.033202074468135834, -0.048748210072517395, -0.05069643259048462, 0.016891855746507645, -0.02418656460940838, 0.0022140275686979294, 0.05966050922870636, 0.0039051962085068226, 0.011418057605624199, 0.017737263813614845, 0.02736312709748745, 0.021728115156292915, 0.010861357674002647, 0.006736322771757841, 0.026113325729966164, -0.017533088102936745, -0.02368996851146221, -0.017537040635943413, 0.03404374420642853, 0.028290698304772377, -0.0032110498286783695, -0.016610288992524147 ]
neo4j-exporting-subset-database
https://markhneedham.com/blog/2020/01/27/neo4j-exporting-subset-database
false
2020-01-29 00:21:00
A newbie's guide to querying Wikidata
[ "sparql", "wikidata" ]
[ "Wikidata" ]
After reading one of Jesús Barrasa's recent QuickGraph posts about https://jbarrasa.com/2019/12/05/quickgraph10-enrich-your-neo4j-knowledge-graph-by-querying-wikidata/[enriching a knowledge graph with data from Wikidata^], I wanted to learn how to query the Wikidata API so that I could pull in the data for my own QuickGraphs. I want to look up information about tennis players, and one of my favourite players is https://en.wikipedia.org/wiki/Nick_Kyrgios[Nick Kyrgios^], so this blog post is going to be all about him. image::{{<siteurl>}}/uploads/2020/01/wiki-logo.png[title="Wikidata"] So what is Wikidata? [quote, Jesús Barrasa, QuickGraph#10 Enrich your Neo4j Knowledge Graph by querying Wikidata] ____ Wikidata is a collaboratively edited knowledge base. It is a source of open data that you may want to use in your projects. Wikidata offers a query service for integrations. ____ The query service can be accessed by navigating to https://query.wikidata.org/[query.wikidata.org] If we go there, we'll see the following screen: image::{{<siteurl>}}/uploads/2020/01/wikidata-newbie.png[title="Wikidata Query Service"] There are a bunch of examples that we can pick from, but we're going to start with something even simpler than that. Wikidata stores data in triples of the form (subject, predicate, object), so we'll start with a query that returns one such triple: [source,sparql] ---- SELECT * WHERE { ?subject ?predicate ?object } LIMIT 1 ---- .Results [opts="header"] |=== |subject|predicate|object |http://wikiba.se/ontology#Dump|http://creativecommons.org/ns#license|http://creativecommons.org/publicdomain/zero/1.0/ |=== Admittedly it's not a very interesting triple, but we're off and running. What we actually want to do is find triples about Nick Kyrgios, so let's update our query to do that: [source,sparql] ---- SELECT * WHERE { ?subject ?predicate "Nick Kyrgios"@en } ---- This query finds any triples in Wikidata that have an object that matches the English language string "Nick Kyrgios". If we run this query, we'll get the following results: .Results [opts="header"] |=== | subject |predicate | https://en.wikipedia.org/wiki/Nick_Kyrgios | http://schema.org/name | http://www.wikidata.org/entity/Q3720084 | http://www.w3.org/2000/01/rdf-schema#label |=== So there are two triples that find Nick. I think we'll filter our query further to keep the one that returns a Wikidata URI, which means that we need to update the predicate in our query to be `rdfs:label`. Let's do that: [source,sparql] ---- SELECT * WHERE { ?person rdfs:label 'Nick Kyrgios'@en } ---- .Results [opts="header"] |=== | person | http://www.wikidata.org/entity/Q3720084 |=== We can navigate to that URI to see all the statements about Nick Kyrgios. One piece of information that we'd like to extract is his date of birth: image::{{<siteurl>}}/uploads/2020/01/sparql-query-1.png[title="Nick Kyrgios' date of birth"] We can see from this screenshot that date of birth can be accessed via the property https://www.wikidata.org/wiki/Property:P569[`P569`^]. To do this we'll construct the predicate `wdt:P569`, where: [quote, Wikidata:SPARQL query service/queries, https://www.wikidata.org/wiki/Wikidata:SPARQL_query_service/queries] ____ In line with the SPARQL model of everything as a triple, the wdt: namespace contains manifestations of properties as simple predicates that can directly connect an item to a value. ____ Let's update our query to return date of birth: [source,sparql] ---- SELECT * WHERE { ?person rdfs:label 'Nick Kyrgios'@en . ?person wdt:P569 ?dateOfBirth } ---- We can simplify this query by using the `;` syntax to construct multiple statements around `?person`. A more concise version is shown below: [source,sparql] ---- SELECT * WHERE { ?person rdfs:label 'Nick Kyrgios'@en ; wdt:P569 ?dateOfBirth } ---- .Results [opts="header"] |=== | person | dateOfBirth | http://www.wikidata.org/entity/Q3720084 | 1995-04-27T00:00:00Z |=== Next we'd like to pull in the country of citizenship, which is property https://www.wikidata.org/wiki/Property:P27[`P27`^]. [source,sparql] ---- SELECT * WHERE { ?person rdfs:label 'Nick Kyrgios'@en ; wdt:P569 ?dateOfBirth; wdt:P27 ?country } ---- .Results [opts="header"] |=== | person | dateOfBirth | country | http://www.wikidata.org/entity/Q3720084 | 1995-04-27T00:00:00Z | http://www.wikidata.org/entity/Q408 |=== This query returns the entity representing Australia, but what if we want to return the name of that page rather than the URI? We can return this by using the `rdfs:label` predicate: [source,sparql] ---- SELECT * WHERE { ?person rdfs:label 'Nick Kyrgios'@en ; wdt:P569 ?dateOfBirth; wdt:P27 ?country . ?country rdfs:label ?countryName } ---- .Results [opts="header"] |=== | person | dateOfBirth | country |countryName | http://www.wikidata.org/entity/Q3720084|1995-04-27T00:00:00Z|http://www.wikidata.org/entity/Q408|Australia | http://www.wikidata.org/entity/Q3720084|1995-04-27T00:00:00Z|http://www.wikidata.org/entity/Q408|Awıstralya | http://www.wikidata.org/entity/Q3720084|1995-04-27T00:00:00Z|http://www.wikidata.org/entity/Q408|Awstralska | http://www.wikidata.org/entity/Q3720084|1995-04-27T00:00:00Z|http://www.wikidata.org/entity/Q408|अस्ट्रेलिया 4+| ... | http://www.wikidata.org/entity/Q3720084|1995-04-27T00:00:00Z|http://www.wikidata.org/entity/Q408|Аѵстралїꙗ | http://www.wikidata.org/entity/Q3720084|1995-04-27T00:00:00Z|http://www.wikidata.org/entity/Q408|Австрали | http://www.wikidata.org/entity/Q3720084|1995-04-27T00:00:00Z|http://www.wikidata.org/entity/Q408|Awstralia |=== Wow, that returned a lot more rows than we were expecting! The problem is that we've returned country names in every single language when actually we only want the English version. We can fix that by applying a filter on the language of `countryName`: [source,sparql] ---- SELECT * WHERE { ?person rdfs:label 'Nick Kyrgios'@en ; wdt:P569 ?dateOfBirth; wdt:P27 ?country . ?country rdfs:label ?countryName filter(lang(?countryName) = "en") } ---- .Results [opts="header"] |=== | person | dateOfBirth | country |countryName | http://www.wikidata.org/entity/Q3720084 |1995-04-27T00:00:00Z | http://www.wikidata.org/entity/Q408 | Australia |=== That's more like it! But we're still returning the URI for Australia when we only want the country name. We can fix that by changing the fields returned in our `SELECT` statement, or we could use the `[]` operator to go from the person to country name in one statement, without needing to bind the `country` variable. The following query does this: [source] ---- SELECT * WHERE { ?person wdt:P106 wd:Q10833314 ; rdfs:label 'Nick Kyrgios'@en ; wdt:P569 ?dateOfBirth ; wdt:P27 [ rdfs:label ?countryName ] . filter(lang(?countryName) = "en") } ---- .Results [opts="header"] |=== | person | dateOfBirth | countryName | http://www.wikidata.org/entity/Q3720084 |1995-04-27T00:00:00Z | Australia |=== That's all the data that we want to extract for now, but if we wanted to get more stuff it wouldn't be too difficult to extend our query. And thanks to https://twitter.com/barrasadv[Jesus^] for his help with understanding the SPARQL syntax enough to get my queries working.
Learn how to query Wikidata's SPARQL API
uploads/2020/01/wiki-logo.png
[ 0.016974009573459625, -0.027950162068009377, 0.010920022614300251, 0.05175253748893738, 0.06794842332601547, -0.004837266635149717, 0.03945993632078171, 0.012652594596147537, 0.011309751309454441, -0.017659490928053856, -0.011226794682443142, -0.005428805947303772, -0.05231505632400513, 0.00654697697609663, 0.02393878996372223, 0.0584053210914135, 0.05873829871416092, 0.02563336491584778, 0.01846582628786564, -0.028450163081288338, 0.031708236783742905, 0.07136918604373932, 0.0030399751849472523, 0.041720662266016006, 0.04555470496416092, 0.015801142901182175, 0.006215193774551153, 0.004482743330299854, -0.041537806391716, -0.011557551100850105, 0.05669281259179115, 0.008273782208561897, -0.0016348245553672314, -0.02992916665971279, 0.007717260625213385, 0.005548343062400818, -0.014896710403263569, 0.02760506048798561, -0.0021098123397678137, 0.009720440953969955, -0.09575843811035156, 0.039566513150930405, -0.021444575861096382, 0.012711869552731514, -0.02187919057905674, 0.006697322241961956, -0.026032913476228714, 0.032820332795381546, -0.00985848717391491, 0.009386337362229824, -0.07487473636865616, 0.03202027827501297, -0.013946959748864174, 0.040192004293203354, -0.011076020076870918, 0.04864531382918358, 0.00072912173345685, -0.06185875087976456, 0.028357693925499916, -0.034441158175468445, -0.009970497339963913, -0.01419257652014494, 0.02002345770597458, 0.011760654859244823, 0.024916034191846848, -0.03981409966945648, 0.001771804760210216, 0.06418807059526443, -0.03422662988305092, 0.004942234139889479, 0.010576593689620495, 0.01563267596065998, -0.04254559427499771, 0.019080642610788345, 0.0031148430425673723, -0.05286424979567528, 0.009109494276344776, 0.053839340806007385, 0.027784015983343124, 0.030704844743013382, -0.01887165755033493, 0.016765741631388664, -0.011326315812766552, 0.03747718781232834, -0.008632793091237545, -0.06602378934621811, -0.0283625777810812, -0.041851017624139786, -0.060310281813144684, 0.05042494088411331, -0.010343600995838642, -0.062297772616147995, 0.0015042329905554652, 0.000059508438425837085, -0.036548081785440445, 0.02285970374941826, 0.02855258621275425, -0.008356544189155102, 0.0030969814397394657, -0.03373872861266136, -0.03142032027244568, -0.035553768277168274, 0.01584423892199993, 0.0278105977922678, -0.07397586852312088, -0.02202851139008999, -0.00958085898309946, -0.00912515539675951, 0.009801723062992096, 0.013014351949095726, -0.034084320068359375, 0.014091530814766884, -0.026609858497977257, 0.013943375088274479, -0.07204129546880722, 0.06116115674376488, 0.03818349912762642, -0.024417951703071594, -0.017800787463784218, 0.03669775649905205, 0.021265843883156776, 0.02302725613117218, -0.0028553029987961054, 0.06689932197332382, -0.017838582396507263, 0.01890436001121998, 0.019096335396170616, 0.0325380302965641, -0.0036651247646659613, -0.05711504444479942, 0.031741563230752945, 0.06588279455900192, -0.012610073201358318, -0.002655722200870514, -0.016264144331216812, -0.03496600314974785, -0.006911552045494318, 0.02795884944498539, 0.03839106112718582, 0.030100887641310692, 0.025791773572564125, -0.07859783619642258, -0.004941973369568586, 0.005261471029371023, 0.02793682925403118, -0.01008749008178711, -0.002949007321149111, -0.014957539737224579, -0.015343299135565758, 0.0020558794494718313, 0.022206496447324753, 0.01663229428231716, 0.05602870136499405, -0.0412425734102726, 0.02263820730149746, 0.10016624629497528, 0.0485287643969059, -0.006119433790445328, 0.017556583508849144, 0.026956288143992424, 0.06554482132196426, 0.03719310462474823, 0.009722775779664516, 0.03136003017425537, -0.00817964319139719, -0.047405075281858444, 0.004418025724589825, 0.06682337820529938, 0.0018135799327865243, -0.012608034536242485, -0.05491045489907265, -0.057695724070072174, 0.06313037127256393, -0.029188530519604683, -0.032407358288764954, 0.05773423612117767, 0.07187063246965408, 0.0005365077522583306, 0.016430681571364403, 0.010963485576212406, -0.07736032456159592, 0.027884380891919136, -0.0014469340676441789, -0.006137180607765913, 0.009284008294343948, 0.002117645228281617, 0.07200439274311066, 0.04959240183234215, 0.015432695858180523, 0.021179217845201492, -0.07552233338356018, -0.06291709095239639, -0.03807661682367325, -0.019044261425733566, 0.06580866873264313, -0.018837912008166313, 0.019474873319268227, 0.06680423021316528, 0.002250898163765669, 0.03215477615594864, 0.005165520589798689, 0.00648726150393486, 0.02685566619038582, -0.048347871750593185, -0.06425315141677856, 0.05674207955598831, 0.01885039359331131, -0.04986131191253662, -0.05473196506500244, 0.025688812136650085, -0.03316700458526611, -0.006601966917514801, 0.0027731575537472963, -0.040463726967573166, -0.006584696006029844, 0.021232236176729202, 0.029362445697188377, 0.01065958384424448, 0.032978616654872894, -0.03794509917497635, 0.0368313267827034, 0.026431214064359665, -0.016912037506699562, -0.015725327655673027, -0.004138212185353041, 0.11151114851236343, 0.05606495961546898, -0.02196296863257885, -0.03308733552694321, 0.005608152598142624, 0.0153849758207798, -0.02094457671046257, 0.017772089689970016, -0.021487750113010406, -0.0039415317587554455, -0.044666968286037445, -0.027362579479813576, -0.04358826205134392, 0.012385904788970947, -0.04060281440615654, 0.004066273104399443, 0.07844993472099304, -0.014016224071383476, 0.061554573476314545, 0.01954205520451069, -0.012486256659030914, 0.0007277000113390386, -0.033506058156490326, -0.07122846692800522, 0.023902613669633865, 0.024565741419792175, 0.0045243739150464535, 0.024999558925628662, -0.035234544426202774, 0.004804858937859535, -0.02365466021001339, -0.02272382751107216, 0.0297154001891613, 0.04448440298438072, 0.0585792250931263, 0.007733570411801338, 0.03647466003894806, -0.013021737337112427, 0.02727561816573143, -0.013004884123802185, -0.05011715367436409, -0.03124583140015602, -0.04554487392306328, 0.011998819187283516, 0.008174166083335876, 0.030064163729548454, -0.012202240526676178, 0.024525420740246773, 0.009995348751544952, 0.0036888245958834887, 0.020728394389152527, 0.016596665605902672, 0.024284355342388153, -0.012827428057789803, -0.028342355042696, -0.046676166355609894, 0.06809945404529572, -0.04411407932639122, -0.03557328134775162, -0.017814651131629944, -0.08034124970436096, 0.06318503618240356, -0.03587435558438301, -0.048533521592617035, 0.00684893224388361, 0.02914551831781864, 0.047113146632909775, 0.019521662965416908, -0.006701461970806122, 0.06662733107805252, 0.0017105784500017762, 0.016043325886130333, 0.006031872238963842, -0.02489030361175537, 0.034503523260354996, -0.04203316196799278, 0.04788297414779663, 0.07726425677537918, -0.006267383228987455, 0.03813000023365021, -0.021473361179232597, 0.02456759102642536, -0.007464881986379623, -0.28244203329086304, 0.06069425120949745, -0.012509242631494999, -0.04245063289999962, 0.010358544997870922, -0.014766290783882141, -0.013405959121882915, -0.014663459733128548, -0.028414111584424973, 0.011447301134467125, 0.004316344391554594, -0.021558500826358795, -0.025696486234664917, 0.037741586565971375, 0.012618628330528736, 0.02946477010846138, -0.004743857774883509, -0.03610190004110336, -0.01674489490687847, 0.04766218736767769, -0.013075010851025581, -0.03102949634194374, -0.029700523242354393, 0.046453166753053665, 0.04176145792007446, 0.028462965041399002, -0.09780566394329071, 0.011455398052930832, -0.04739822447299957, -0.001504105981439352, 0.024372076615691185, -0.02179551310837269, 0.004487312398850918, -0.001020925585180521, -0.025491632521152496, -0.030215641483664513, 0.03851991519331932, 0.01608601212501526, 0.002752091735601425, 0.030139053240418434, -0.043850429356098175, -0.03721598535776138, -0.022142915055155754, -0.0018037486588582397, 0.09260264784097672, 0.02015954628586769, -0.08077636361122131, 0.0051311226561665535, -0.02807707153260708, 0.057247910648584366, -0.03819693252444267, -0.06011927127838135, -0.03484458103775978, 0.03760288283228874, -0.0000646218832116574, -0.040256649255752563, 0.015229945071041584, -0.029872694984078407, -0.06479530036449432, -0.03834778815507889, 0.014109744690358639, -0.03112158179283142, -0.004109052009880543, -0.05012409761548042, -0.025378139689564705, -0.06577940285205841, -0.062028199434280396, -0.041078370064496994, 0.06232432648539543, 0.026667006313800812, -0.03085668385028839, 0.01779407449066639, -0.020039154216647148, -0.10681378096342087, -0.008783710189163685, -0.025843100622296333, -0.01345237996429205, 0.009085194207727909, 0.0009137456654570997, 0.06901448220014572, -0.023355757817626, -0.060996100306510925, 0.003417456988245249, 0.019715679809451103, 0.02905776910483837, -0.005704627372324467, 0.0296920295804739, -0.022372940555214882, -0.02957945317029953, 0.014500048942863941, 0.07004840672016144, -0.008550379425287247, -0.03155229240655899, -0.011276720091700554, -0.02374333143234253, 0.025822602212429047, -0.010249755345284939, -0.005424510221928358, -0.0021203155629336834, 0.05640633776783943, 0.041394010186195374, -0.034370675683021545, 0.008503911085426807, -0.014305760152637959, -0.02207217738032341, -0.010998272337019444, -0.04270955175161362, 0.010900065302848816, 0.019986357539892197, 0.0019663197454065084, -0.00046201582881622016, -0.025817647576332092, -0.0003322201082482934, -0.0389876514673233, -0.04059266299009323, -0.024349581450223923, 0.02040255442261696, 0.03339299559593201, 0.029204778373241425, -0.045935697853565216, -0.04757530242204666, 0.0031905020587146282, 0.027861766517162323, -0.009154475294053555, -0.06969951838254929, -0.04147139564156532, -0.0053835646249353886, -0.030718453228473663, 0.02017924375832081, 0.018788859248161316, -0.02141730673611164, 0.022796764969825745, 0.016064196825027466, -0.030053824186325073, 0.0339961051940918, -0.03021121397614479, -0.03866709768772125, -0.03330731391906738, 0.03212808817625046, -0.007841709069907665, -0.018034767359495163, 0.015306836925446987, -0.002751949243247509, 0.04845961183309555, 0.05813143029808998, -0.0026608016341924667, -0.0028072400018572807, 0.0032596809323877096, 0.011945548467338085, -0.01572275720536709, -0.002243055496364832, -0.021367797628045082, 0.02071995660662651, -0.03251760080456734, -0.0014172765659168363, -0.020793311297893524, 0.056374289095401764, -0.02634984441101551, -0.01920318976044655, -0.03147270530462265, -0.00010743965685833246, -0.06897316128015518, -0.013458251021802425, -0.00032740741153247654, 0.010130234062671661, 0.04302486404776573, -0.03361210599541664, 0.01226610504090786, 0.001557077281177044, -0.022087428718805313, 0.009118875488638878, -0.012843457981944084, -0.014117429032921791, -0.01703638955950737, -0.010410320945084095, -0.004581943154335022, -0.012333858758211136, 0.028661424294114113, 0.02353229746222496, 0.024624042212963104, -0.015683084726333618, -0.020483337342739105, 0.005495322868227959, 0.013907544314861298, 0.052207961678504944, 0.05584881082177162, -0.01715002954006195, 0.006150451023131609, -0.015609570778906345, -0.0011740736663341522, -0.0016396365826949477, 0.024414412677288055, -0.017727063968777657, 0.019876806065440178, -0.015970822423696518, -0.06127547100186348, 0.052053045481443405, -0.01162571832537651, 0.01666351407766342, 0.04005136340856552, -0.003885567421093583, 0.005021783523261547, 0.0002313835866516456, 0.052329856902360916, 0.05517587810754776, -0.06527749449014664, -0.0099993497133255, 0.007814209908246994, -0.01821192540228367, -0.016819043084979057, -0.019868819043040276, -0.043076787143945694, -0.0010353601537644863, -0.018115883693099022, 0.026114432141184807, -0.04635942727327347, -0.02458529733121395, 0.00026436621556058526, -0.0016261398559436202, 0.006907879840582609, 0.03526279330253601, -0.005285121034830809, -0.009800112806260586, 0.0010326867923140526, -0.002171299420297146, 0.05625582113862038, -0.0091348672285676, -0.03505578264594078, 0.006365419365465641, -0.031069977208971977, 0.01105482503771782, -0.024257756769657135, 0.0072739445604383945, 0.026335418224334717, -0.048487283289432526, 0.029774481430649757, -0.05270116403698921, 0.021963536739349365, 0.0019402175676077604, 0.045017603784799576, -0.010421316139400005, -0.03181004896759987, -0.04391709715127945, 0.01785893179476261, -0.046884674578905106, -0.002659380901604891, -0.010266205295920372, 0.025769563391804695, 0.026534035801887512, 0.008986524306237698, -0.006750123109668493, 0.006243785843253136, -0.01856044866144657, -0.033408310264348984, 0.058508869260549545, -0.0377899631857872, -0.04044857993721962, -0.026443561539053917, -0.04470299929380417, 0.006980319507420063, 0.01952335610985756, 0.015060191042721272, -0.019500525668263435, 0.061525147408246994, 0.03459904342889786, 0.012400931678712368, 0.029424548149108887, 0.0030553743708878756, 0.032107025384902954, -0.024383332580327988, -0.03144899755716324, -0.0807885006070137, -0.003900638548657298, 0.03896702826023102, -0.009121510200202465, -0.028345435857772827, -0.00903921015560627, -0.022203007712960243, 0.013179353438317776, -0.0683337152004242, -0.036686379462480545, 0.03255539387464523, -0.02199438028037548, 0.0031542954966425896, 0.007281244266778231, -0.06508710235357285, -0.005049493629485369, 0.04209398105740547, -0.03507541865110397, -0.05010256916284561, -0.05337008088827133, 0.05606618896126747, 0.0031947942916303873, 0.03584333881735802, -0.01255469024181366, -0.029190242290496826, 0.06253889203071594, 0.010283534415066242, 0.03999033197760582, 0.05133764445781708, -0.003765085246413946, 0.00638784421607852, 0.046850524842739105, 0.005174805410206318, 0.02357039973139763, 0.031249508261680603, -0.028697984293103218, -0.05712144449353218, 0.031372424215078354, 0.0009642211371101439, -0.00545444805175066, -0.04018333554267883, 0.08032475411891937, 0.007392216939479113, -0.048884376883506775, -0.04223764315247536, 0.030963577330112457, -0.02683417685329914, -0.005004844628274441, -0.025818215683102608, 0.010405500419437885, -0.029667308554053307, 0.05683082342147827, -0.007149553392082453, 0.00820889975875616, 0.057950325310230255, 0.017653504386544228, -0.0174117349088192, -0.0014682356268167496, 0.09733595699071884, 0.08577726781368256, 0.044801391661167145, -0.005822311155498028, 0.08569629490375519, 0.0047346618957817554, -0.05348246544599533, 0.008809278719127178, 0.003551916452124715, -0.005585966631770134, 0.019843690097332, 0.0020028536673635244, 0.045708347111940384, -0.03849419206380844, 0.06641097366809845, -0.035826198756694794, -0.035024505108594894, 0.00669771758839488, -0.01274042297154665, 0.01687183417379856, 0.05039656162261963, -0.02009693905711174, 0.06035420298576355, -0.03754488751292229, -0.045741382986307144, 0.024201883003115654, -0.010840688832104206, -0.018162354826927185, 0.030138453468680382, -0.03637582063674927, -0.005583137273788452, 0.005646503996104002, 0.042380064725875854, 0.10110247880220413, -0.041808199137449265, 0.012032484635710716, -0.0035502819810062647, -0.007146503776311874, 0.0060088494792580605, 0.028715670108795166, -0.008766147308051586, -0.023919101804494858, -0.011468872427940369, -0.030177658423781395, 0.002894915174692869, -0.03535039350390434, -0.03315652534365654, 0.0111719761043787, -0.04523266479372978, -0.0007389987586066127, 0.00006592254794668406, -0.021557576954364777, -0.021312575787305832, -0.05059618502855301, -0.04038413614034653, -0.029111061245203018, -0.07565567642450333, -0.010765159502625465, 0.018343955278396606, 0.022434929385781288, -0.02896699123084545, -0.022687878459692, -0.020370841026306152, 0.003966681659221649, 0.05326735973358154, -0.05744807794690132, -0.015829605981707573, 0.0019227532902732491, 0.029850022867321968, 0.014259550720453262, 0.00660770945250988, 0.06426504999399185, 0.0016470052069053054, 0.023491207510232925, -0.03833555802702904, 0.025288335978984833, 0.04921460524201393, 0.03563695400953293, -0.008144409395754337, -0.07677855342626572, -0.007354680448770523, -0.01955835148692131, -0.03532124310731888, -0.07126308977603912, -0.008822171948850155, 0.055583227425813675, 0.023337528109550476, 0.03417612239718437, 0.004026191774755716, -0.0015694773755967617, -0.04433566331863403, -0.003930801060050726, -0.004932621493935585, 0.0015788835007697344, 0.03521152213215828, -0.03268631920218468, 0.08891186863183975, 0.02896202728152275, 0.0034702233970165253, -0.03953656926751137, -0.04520643129944801, -0.004349385388195515, -0.0067697432823479176, -0.03640544041991234, -0.020125802606344223, -0.031546372920274734, -0.10188810527324677, -0.04886437952518463, 0.024495746940374374, -0.0087540652602911, -0.03074698895215988, -0.002641878789290786, 0.05021965131163597, -0.016115330159664154, 0.02521619200706482, -0.03816878795623779, 0.033822737634181976, -0.0205076914280653, -0.005310169421136379, -0.01473863422870636, 0.0342356339097023, -0.002251135418191552, 0.02063327468931675, 0.034793198108673096, -0.05360107868909836, 0.007337433286011219, -0.02459629438817501, 0.019088521599769592, 0.04608594998717308, 0.015012082643806934, -0.00620870990678668 ]
[ -0.0567641519010067, -0.021422777324914932, -0.03041853941977024, -0.03030926175415516, 0.06453979015350342, -0.017163923010230064, -0.016328882426023483, 0.03818002715706825, 0.008415939286351204, -0.009983976371586323, 0.0037315788213163614, -0.045142874121665955, -0.0074578686617314816, 0.035947155207395554, 0.07964228093624115, 0.009279103949666023, 0.0007010000408627093, -0.057620882987976074, -0.014905482530593872, 0.044902436435222626, -0.00822645053267479, -0.04252956807613373, -0.015837576240301132, -0.04020914435386658, -0.005357916932553053, 0.015143584460020065, 0.04312916845083237, -0.03732170909643173, -0.009528810158371925, -0.19061842560768127, -0.002902451902627945, 0.0035216379910707474, 0.030128933489322662, 0.0071313329972326756, 0.004205908626317978, 0.020638201385736465, 0.0472123958170414, 0.013657541014254093, 0.023931698873639107, 0.047335851937532425, 0.017972717061638832, 0.007237538229674101, -0.044090814888477325, 0.014389307238161564, 0.06077936664223671, 0.02039600908756256, -0.00815886352211237, 0.005924849770963192, -0.03753244876861572, 0.012652222067117691, -0.04267854988574982, 0.006687059998512268, 0.004946714732795954, -0.013809938915073872, 0.019061695784330368, 0.04266487807035446, 0.05028434842824936, 0.06400731205940247, 0.02716296724975109, 0.048469290137290955, 0.04433920979499817, 0.013585363514721394, -0.13348710536956787, 0.08413655310869217, -0.01468278281390667, 0.026137085631489754, -0.035837914794683456, -0.0025460992474108934, -0.014933314174413681, 0.05641498416662216, 0.03992416337132454, -0.014184080995619297, -0.016398467123508453, 0.02918734960258007, 0.003900199430063367, 0.0009569597314111888, -0.000021139803720870987, 0.027980495244264603, 0.01654878444969654, -0.042330771684646606, -0.03398260846734047, 0.032979149371385574, -0.027466902509331703, -0.03914899379014969, -0.040317729115486145, 0.042074140161275864, -0.029446899890899658, 0.022730186581611633, -0.0297564584761858, 0.0314316488802433, 0.03824376314878464, 0.012880202382802963, 0.07040375471115112, 0.021042706444859505, -0.09391620010137558, -0.0266993697732687, 0.0061441445723176, 0.02540418691933155, -0.005144570488482714, 0.3990508019924164, 0.005937648005783558, -0.01884709857404232, 0.042016636580228806, 0.040725819766521454, -0.03063739277422428, -0.0385870598256588, -0.007818535901606083, -0.07977831363677979, 0.02939809486269951, -0.004754049703478813, 0.01338519062846899, -0.02176797389984131, 0.03444819152355194, -0.06505180150270462, 0.026013899594545364, -0.019513683393597603, 0.05343903973698616, 0.030828656628727913, -0.014621064998209476, 0.008430459536612034, -0.043681878596544266, 0.0031153245363384485, 0.020042356103658676, 0.008431711234152317, 0.020898884162306786, -0.0056037018075585365, -0.000897980120498687, 0.03360733017325401, 0.04138908162713051, 0.010028552263975143, 0.04736850783228874, -0.002224721247330308, -0.09132120013237, 0.01635333150625229, -0.01974080502986908, -0.005472599994391203, 0.05015196278691292, -0.06032096967101097, 0.005673707462847233, 0.018010227009654045, -0.01002759113907814, -0.038069307804107666, 0.03120315447449684, 0.022410640493035316, -0.06481341272592545, 0.13387101888656616, 0.014987192116677761, -0.05410480126738548, -0.015905065461993217, -0.05907527729868889, -0.002798546804115176, 0.056493960320949554, 0.018305370584130287, -0.05164802074432373, 0.00441325455904007, 0.019770169630646706, 0.10561586916446686, 0.0001526557025499642, -0.08525082468986511, -0.007608022075146437, -0.03569763898849487, -0.04148204252123833, -0.04655471071600914, 0.0787380263209343, 0.04900128394365311, -0.13078860938549042, 0.0017768418183550239, 0.03270869702100754, -0.0029117341618984938, -0.07149287313222885, 0.011739764362573624, 0.030589992180466652, -0.055691152811050415, 0.0179365836083889, 0.05882902443408966, -0.017322810366749763, -0.02926071360707283, -0.007082960568368435, 0.03902367874979973, -0.00558021804317832, -0.01572965644299984, -0.044432297348976135, -0.04021979495882988, -0.01138211227953434, -0.07919282466173172, -0.046820539981126785, -0.05629478394985199, 0.01936333253979683, -0.020770084112882614, -0.011814355850219727, -0.013969695195555687, -0.0012486977502703667, -0.08624911308288574, 0.08068188279867172, -0.04779958352446556, -0.02029617503285408, 0.002350118011236191, 0.012670748867094517, -0.007950527593493462, -0.03250421956181526, -0.03497833386063576, 0.014605377800762653, -0.01336608175188303, 0.03309546783566475, -0.057043399661779404, 0.03604721277952194, 0.03793774172663689, -0.013304612599313259, 0.08738797903060913, 0.00003946558717871085, -0.03747662901878357, -0.028752125799655914, -0.07336210459470749, 0.012077136896550655, -0.006507877726107836, -0.014693835750222206, 0.01049017533659935, -0.022082870826125145, 0.015323183499276638, 0.025656353682279587, -0.019969670102000237, -0.019885683432221413, -0.03809991851449013, -0.3575249910354614, -0.06150880828499794, -0.05094708502292633, 0.027066124603152275, -0.003580752993002534, -0.05009697005152702, 0.006862163543701172, -0.011080666445195675, 0.015178482048213482, 0.05397763475775719, 0.06771266460418701, -0.010454666800796986, -0.006491240579634905, -0.09089131653308868, -0.00470619834959507, 0.040459565818309784, 0.013647650368511677, -0.003866929095238447, -0.03247483819723129, 0.001119682565331459, 0.014988136477768421, -0.020832234993577003, -0.024904273450374603, -0.06513695418834686, -0.007710957434028387, -0.02944766916334629, 0.12154873460531235, 0.04777323827147484, 0.02243664115667343, -0.07867351919412613, 0.029718879610300064, -0.01620451733469963, -0.03287545219063759, -0.09873459488153458, 0.030680369585752487, -0.028107114136219025, 0.019655345007777214, 0.01350607629865408, -0.007808287627995014, -0.043571289628744125, -0.03628638759255409, -0.00961274467408657, -0.03720672428607941, -0.042458534240722656, -0.0361001081764698, 0.013438096269965172, -0.021595017984509468, -0.025793613865971565, 0.004676355980336666, 0.08800197392702103, 0.014081794768571854, 0.04839371144771576, 0.022525660693645477, 0.030309543013572693, -0.001654361141845584, -0.01275835931301117, -0.06646387279033661, -0.0013171560131013393, 0.013849090784788132, 0.015936708077788353, 0.014379440806806087, 0.027553468942642212, 0.023835422471165657, -0.07029105722904205, 0.019960829988121986, -0.006384056992828846, -0.027248715981841087, 0.012209583073854446, 0.04273232817649841, -0.04850798472762108, -0.031035684049129486, 0.10342936217784882, -0.0016937252366915345, 0.028606891632080078, 0.040771644562482834, 0.0590088777244091, 0.00820033811032772, 0.004134903661906719, 0.05437697842717171, 0.027371235191822052, 0.03755563125014305, -0.03175666555762291, 0.04995068907737732, -0.02830938808619976, -0.004004677291959524, 0.05118904262781143, 0.03327375277876854, -0.055946480482816696, 0.0546870231628418, 0.02122902311384678, -0.011177241802215576, 0.02404387854039669, -0.02756424807012081, -0.06024119630455971, 0.04326566681265831, -0.019879302009940147, -0.26155468821525574, 0.035806018859148026, 0.05738058313727379, 0.05590907484292984, 0.023010192438960075, 0.0022371062077581882, 0.0342559739947319, -0.05261846259236336, 0.016646360978484154, 0.0037674102932214737, 0.04358155280351639, 0.040838152170181274, -0.009915171191096306, -0.01673700660467148, -0.019410114735364914, 0.00896740797907114, 0.03253121301531792, 0.013265169225633144, 0.02988709695637226, 0.02600395865738392, 0.05207538232207298, -0.012743307277560234, 0.177842915058136, 0.029084304347634315, 0.02635940909385681, 0.04419739916920662, -0.023154379799962044, -0.005541938357055187, 0.033668823540210724, 0.00037709856405854225, -0.013611946254968643, 0.015637313947081566, 0.01583734154701233, 0.04161986708641052, 0.03613162040710449, -0.028493955731391907, -0.022896824404597282, 0.04089820384979248, 0.006044430658221245, -0.033416345715522766, 0.01360858790576458, 0.029941996559500694, -0.055027734488248825, 0.029799340292811394, 0.07348402589559555, 0.013443008065223694, 0.005227457731962204, -0.03823311999440193, -0.07134702056646347, -0.006052191834896803, -0.014550985768437386, -0.06869856268167496, -0.047469474375247955, -0.018523354083299637, 0.00865749642252922, 0.06099018454551697, 0.03346366435289383, -0.02342010848224163, 0.040413472801446915, -0.009116564877331257, -0.033308837562799454, -0.025024622678756714, 0.05886373668909073, 0.0028718693647533655, 0.033382974565029144 ]
[ 0.02454070933163166, 0.0478149875998497, -0.004951086826622486, 0.026118556037545204, -0.013774080201983452, 0.003711795201525092, 0.023643333464860916, 0.008746383711695671, -0.03011876903474331, 0.026508377864956856, 0.020291129127144814, 0.007354800123721361, 0.03166234493255615, 0.032161206007003784, 0.05505022034049034, 0.010972872376441956, -0.026420054957270622, 0.005251092836260796, 0.008650104515254498, -0.023968303576111794, -0.016285818070173264, 0.001273496774956584, 0.018455328419804573, -0.015492034144699574, 0.0035158582031726837, 0.005085926037281752, -0.015625400468707085, 0.00223731086589396, 0.036336034536361694, -0.11823095381259918, -0.02875848300755024, -0.043500933796167374, -0.0052543082274496555, 0.01732560619711876, -0.05242525413632393, -0.017545143142342567, 0.006645793095231056, 0.015926798805594444, 0.02910086326301098, 0.02636726200580597, -0.0032059240620583296, -0.0002358813799219206, -0.039984509348869324, 0.04104551300406456, -0.01985561102628708, 0.013965964317321777, -0.053433869034051895, -0.011690933257341385, 0.020069725811481476, -0.00863802433013916, -0.048541367053985596, -0.0434420183300972, 0.0014324868097901344, 0.012173901312053204, 0.03428768739104271, -0.028536204248666763, -0.09809483587741852, -0.0012187156826257706, 0.020137587562203407, 0.014757553115487099, 0.02851824462413788, -0.004964406136423349, -0.03197912499308586, -0.00997342448681593, 0.00033973040990531445, -0.03452577814459801, -0.04296993091702461, 0.03283350542187691, 0.0014462195103988051, 0.012033022940158844, 0.03199092298746109, 0.04191141575574875, -0.03984927386045456, -0.029451647773385048, -0.01945764571428299, -0.025468936190009117, 0.026997311040759087, -0.010667466558516026, -0.03402266651391983, -0.034274183213710785, -0.003388970857486129, 0.01165816094726324, -0.0315965935587883, 0.01694096438586712, 0.011650662869215012, -0.026483213528990746, -0.0231331754475832, -0.01671772636473179, 0.013087592087686062, 0.009634393267333508, -0.01038628350943327, -0.022973712533712387, 0.006132603157311678, 0.004355386830866337, -0.08242743462324142, 0.046033695340156555, 0.0106184808537364, -0.017021048814058304, -0.03069652058184147, 0.8273355960845947, 0.0035552748013287783, 0.008481472730636597, 0.01783769018948078, 0.012390916235744953, -0.0019295926904305816, -0.014509934931993484, 0.019533129408955574, -0.002169001614674926, 0.011486697942018509, 0.0020438723731786013, -0.0033235049340873957, 0.027884120121598244, 0.008725874125957489, 0.010585363954305649, -0.01668526791036129, 0.02654889039695263, 0.001104710390791297, -0.026697468012571335, -0.006196236237883568, 0.02199951373040676, -0.027829069644212723, 0.033432941883802414, -0.004533053375780582, 0.01670198328793049, -0.001753677730448544, -0.15261678397655487, 0.007256169803440571, -6.196844018338253e-33, 0.07640445977449417, 0.002810349455103278, 0.0317835807800293, 0.0069694542326033115, -0.017862094566226006, -0.007899193093180656, 0.015529010444879532, -0.053010739386081696, -0.06111854314804077, -0.0007278410485014319, -0.023054493591189384, 0.03405285254120827, -0.0037409758660942316, -0.015542577020823956, -0.0032434265594929457, 0.032256659120321274, -0.014745122753083706, 0.01484314352273941, -0.029500143602490425, 0.034896209836006165, 0.010363960638642311, 0.018109740689396858, -0.015580900013446808, 0.030974240973591805, 0.013590922579169273, 0.028909927234053612, 0.009931655600667, 0.023940855637192726, -0.00795936118811369, -0.034498702734708786, -0.040022701025009155, 0.012029943987727165, -0.006334431003779173, -0.027932072058320045, 0.030711570754647255, -0.06377685070037842, -0.018626416102051735, -0.00018818577518686652, -0.033487074077129364, -0.05985425412654877, -0.013537449762225151, 0.01117887906730175, -0.02033713459968567, -0.01804102398455143, -0.05562819540500641, -0.0010712452931329608, -0.006955895107239485, -0.0133026959374547, -0.004244734067469835, 0.021517040207982063, 0.015108153223991394, 0.026024820283055305, -0.009255816228687763, 0.008251553401350975, -0.023918496444821358, -0.008897088468074799, 0.002444136654958129, 0.004939674865454435, 0.01427056360989809, 0.013253712095320225, 0.029229391366243362, -0.02525459975004196, -0.008574356324970722, 0.05300991237163544, -0.003470448777079582, 0.01354783121496439, -0.00011423903197282925, -0.01830444298684597, 0.017107026651501656, 0.0012970792595297098, -0.034773919731378555, 0.02805728279054165, -0.019693005830049515, -0.05783839896321297, 0.02016778662800789, -0.05050274357199669, -0.010261204093694687, -0.02893468737602234, -0.024361154064536095, 0.05259835720062256, 0.020200951024889946, -0.05719706043601036, -0.012525752186775208, -0.04150832071900368, -0.01785900443792343, -0.007908952422440052, 0.03819991275668144, -0.013569960370659828, 0.026665475219488144, 0.01764611527323723, 0.05263005197048187, 0.05947326496243477, -0.00937526673078537, -0.018414635211229324, -0.022385846823453903, 6.237934892739184e-33, 0.04233362525701523, -0.003719905624166131, 0.009207749739289284, -0.025053327903151512, 0.03854510560631752, -0.013005186803638935, 0.01810605451464653, 0.05626755952835083, -0.039663031697273254, 0.031037097796797752, 0.029297590255737305, -0.02833474986255169, -0.039428215473890305, 0.02423776313662529, 0.05567892640829086, 0.03215284273028374, 0.02139083296060562, -0.03220625966787338, 0.011469991877675056, 0.00043425417970865965, -0.014397691003978252, 0.028408722952008247, 0.0148576395586133, 0.03165104240179062, 0.010219748131930828, 0.028008179739117622, -0.009444034658372402, 0.0031788686756044626, -0.025745540857315063, 0.040936678647994995, -0.019740428775548935, -0.0567043162882328, -0.001468092785216868, -0.011572548188269138, -0.022380797192454338, 0.008675722405314445, -0.018489303067326546, -0.008086408488452435, 0.014094322919845581, -0.011778988875448704, 0.052721429616212845, 0.019620757550001144, -0.019991924986243248, 0.036805298179388046, -0.004181144759058952, 0.0016719324048608541, -0.011837424710392952, 0.0171221811324358, 0.002409430453553796, 0.016948996111750603, 0.011558049358427525, 0.017059525474905968, 0.005491418298333883, 0.007274308707565069, 0.02221294492483139, -0.041174162179231644, -0.01708200015127659, 0.03414461016654968, -0.025541599839925766, 0.0022266956511884928, -0.025168348103761673, -0.056255239993333817, -0.03879893198609352, 0.015984220430254936, -0.005915460176765919, 0.02089776284992695, -0.049093637615442276, 0.01708739995956421, -0.022280238568782806, 0.010816515423357487, -0.031035054475069046, -0.00891843531280756, 0.01592634618282318, 0.015152094885706902, 0.039083804935216904, -0.0047274925746023655, -0.010177991352975368, 0.03920368850231171, -0.02073712833225727, 0.03387562185525894, 0.02195682004094124, 0.0052227238193154335, 0.018773265182971954, -0.01275355089455843, 0.004371680319309235, 0.008300290443003178, -0.03572799637913704, 0.03219213709235191, -0.020984163507819176, -0.011612294241786003, 0.025923701003193855, -0.04759309068322182, 0.023073557764291763, 0.047751761972904205, -0.008366893045604229, -1.2283519978950608e-8, -0.08943643420934677, -0.026923593133687973, -0.010181139223277569, 0.01431932020932436, -0.002769977319985628, 0.03234570845961571, 0.007512508891522884, -0.005680503323674202, 0.004081554710865021, 0.01765492931008339, 0.052582282572984695, 0.04219892993569374, 0.0000988026222330518, 0.0030643551144748926, 0.021146446466445923, -0.03359046205878258, -0.005497002974152565, -0.007482960354536772, 0.02938225120306015, -0.014339728280901909, 0.04058000445365906, 0.019747294485569, 0.0034809093922376633, 0.01831643469631672, -0.0025815509725362062, 0.00781302247196436, 0.003411835292354226, -0.05970478802919388, -0.03590022027492523, -0.03351860120892525, -0.005565023981034756, -0.04052501916885376, -0.009262853302061558, 0.01046342495828867, -0.0008548324112780392, -0.021775705739855766, 0.0020250051748007536, 0.012419127859175205, -0.0010913542937487364, 0.011172899976372719, -0.01126906555145979, 0.034236662089824677, -0.030305691063404083, -0.030043825507164, -0.03583105653524399, 0.024796731770038605, -0.01604892872273922, 0.031391698867082596, 0.04895414784550667, -0.030508197844028473, -0.017991939559578896, -0.0067597078159451485, 0.06741229444742203, -0.00008237613656092435, -0.0036565435584634542, -0.00145531736779958, 0.013344112783670425, -0.0018767226720228791, -0.04859774559736252, -0.025562183931469917, 0.04710506647825241, -0.026656445115804672, -0.020975841209292412, 0.003441275330260396 ]
newbie-guide-querying-wikidata
https://markhneedham.com/blog/2020/01/29/newbie-guide-querying-wikidata
false
2020-01-29 15:21:00
Neo4j: Finding the longest path
[ "neo4j", "apoc" ]
[ "Neo4j" ]
One on my favourite things about storing data in a graph database is executing path based queries against that data. I've been trying to find a way to write such queries against the https://markhneedham.com/blog/2020/01/23/quick-graph-australian-open/[Australian Open QuickGraph^], and in this blog post we're going to write what I think of as longest path queries against this graph. image::{{<siteurl>}}/uploads/2020/01/longest-path.png[title="Finding longest paths in Neo4j"] == Setting up Neo4j We're going to use the following Docker Compose configuration in this blog post: .Dockerfile [source,yaml] ---- version: '3.7' services: neo4j: image: neo4j:4.0.0-enterprise container_name: "quickgraph-aus-open" volumes: - ./plugins:/plugins - ./data:/data - ./import:/var/lib/neo4j/import ports: - "7474:7474" - "7687:7687" environment: - "NEO4J_ACCEPT_LICENSE_AGREEMENT=yes" - "NEO4J_AUTH=neo4j/neo" - NEO4J_apoc_import_file_use__neo4j__config=true - NEO4J_apoc_import_file_enabled=true - NEO4J_apoc_export_file_enabled=true - NEO4JLABS_PLUGINS=["apoc"] ---- Once we've created that file we need to open a terminal session where that file lives and then run `docker-compose up` to launch Neo4j. == Importing our dataset We're going to learn how to write longest path queries using a dataset that contains the finalists of the Australian Open tennis tournament. [source,cypher] ---- :use system; CREATE DATABASE blog; :use blog ---- .The following query creates tournaments and relationships between them [source,cypher] ---- CALL apoc.load.json("https://github.com/mneedham/australian-open-neo4j/raw/master/blog_data/tournaments.json") YIELD value CALL apoc.merge.node(value.t1.labels, value.t1.properties) YIELD node AS t1 CALL apoc.merge.node(value.t2.labels, value.t2.properties) YIELD node AS t2 CALL apoc.merge.relationship(t1, value.rel.label, {}, {}, t2, {}) YIELD rel RETURN count(*); ---- .The following query creates matches and players and associated relationships [source,cypher] ---- CALL apoc.load.json("https://github.com/mneedham/australian-open-neo4j/raw/master/blog_data/finalists.json") YIELD value CALL apoc.merge.node(value.winner.labels, value.winner.properties) YIELD node AS winner CALL apoc.merge.node(value.loser.labels, value.loser.properties) YIELD node AS loser CALL apoc.merge.node(value.match.labels, value.match.properties) YIELD node AS match CALL apoc.merge.node(value.t.labels, value.t.properties) YIELD node AS tournament CALL apoc.merge.relationship(winner, value.winnerRel.label, {}, {}, match, {}) YIELD rel AS winnerRel CALL apoc.merge.relationship(loser, value.loserRel.label, {}, {}, match, {}) YIELD rel AS loserRel CALL apoc.merge.relationship(match, value.tournRel.label, {}, {}, tournament, {}) YIELD rel AS tournRel return count(*); ---- We can see the imported graph in the Neo4j Browser visualisation below: image::{{<siteurl>}}/uploads/2020/01/aus-open-finalists.png[title="Australian Open Womens Finalists"] == Finding longest paths Let's start with a https://neo4j.com/docs/cypher-manual/current/syntax/patterns/#cypher-pattern-varlength[variable length path query^] that starts with the `Tournament` in the year 2000 and follows the `NEXT_TOURNAMENT` relationship as many times as possible by using the `*` syntax after the relationship type: [source,cypher] ---- MATCH path = (:Tournament {year: 2000})-[:NEXT_TOURNAMENT*]->(next) RETURN [t in nodes(path) | t.year] AS allTournaments ---- If we run this query, we'll see the following output: .Results [opts="header"] |=== | allTournaments | [2000, 2001] | [2000, 2001, 2002] | [2000, 2001, 2002, 2003] | [2000, 2001, 2002, 2003, 2004] | [2000, 2001, 2002, 2003, 2004, 2005] | [2000, 2001, 2002, 2003, 2004, 2005, 2006] | [2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007] | [2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008] | [2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009] | [2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010] | [2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011] | [2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012] | [2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013] | [2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014] | [2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015] | [2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016] | [2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017] | [2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018] | [2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019] |=== As we can see from the results, we've returned all the intermediate paths between the tournament in the year 2000 and the one in the year 2019. But what if we only want to return the longest path? i.e the last one in the above results table. We can tweak our query to do this by adding a `WHERE` clause that filters out any paths where the last node in that path has a `NEXT_TOURNAMENT` relationship. The following query does this: [source,cypher] ---- MATCH path = (:Tournament {year: 2000})-[:NEXT_TOURNAMENT*]->(next) WHERE not((next)-[:NEXT_TOURNAMENT]->()) RETURN [t in nodes(path) | t.year] AS allTournaments ---- And if we run that query, we only get one row back, as expected: .Results [opts="header"] |=== | allTournaments | [2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019] |=== Now let's see how we can use this technique for a more complex query. We want to find which players have lost multiple finals in a row. So we need to find all the `Match` nodes that have `round "F"` where the `Player` has a `LOSER` relationship to that match. And we then want to see if that same player had a `LOSER` relationship to the final match in tournaments in the following years. The following query is our first attempt to do this: [source,cypher] ---- // Find losing finalists in a tournament and a path of all the tournaments // after that tournament MATCH path = (t:Tournament)-[:NEXT_TOURNAMENT*]->(t2:Tournament), (t)<-[:IN_TOURNAMENT]-(:Match {round: "F"})<-[:LOSER]-(player) // Check that the player lost the final in every subsequent tournament WITH nodes(path) AS tournaments, player WHERE all(t in tournaments[1..] WHERE (t)<-[:IN_TOURNAMENT]-(:Match {round: "F"})<-[:LOSER]-(player) ) RETURN player.name, [t IN tournaments | t.year] AS years ---- If we run this query, we'll see the following results: .Results [opts="header"] |=== | player.name | years | "Martina Hingis" | [2000, 2001] | "Martina Hingis" | [2000, 2001, 2002] | "Martina Hingis" | [2001, 2002] |=== Poor Martina Hingis! But despite telling us all the finals that Martina lost, we're still returning some rows that we want to exclude. Ideally we only want to return the longest path, which contains `[2000,2001,2002]`. We need to update our query to filter out any paths where the losing finalist didn't lose the final the year before [source,cypher] ---- // Find losing finalists in a tournament and a path of all the tournaments // after that tournament MATCH path = (t:Tournament)-[:NEXT_TOURNAMENT*]->(t2:Tournament), (t)<-[:IN_TOURNAMENT]-(:Match {round: "F"})<-[:LOSER]-(player) // Get the first and last tournaments in the list WITH nodes(path) AS tournaments, player WITH tournaments, tournaments[0] AS first, tournaments[-1] AS last, player // Get the tournament that happened immediately before the first one in the list and // the tournament that happened immediately after the last one in the list WITH tournaments, player, [(last)-[:NEXT_TOURNAMENT]->(next) | next][0] AS next, [(previous)-[:NEXT_TOURNAMENT]->(first) | previous][0] AS previous // Check that the player lost the final in every subsequent tournament and // that the player lost the final in the tournament immediately before and // that the player lost the final in the tournament immediately after WHERE all(t in tournaments[1..] WHERE (t)<-[:IN_TOURNAMENT]-(:Match {round: "F"})<-[:LOSER]-(player) AND not((next)<-[:IN_TOURNAMENT]-(:Match {round: "F"})<-[:LOSER]-(player)) AND not((previous)<-[:IN_TOURNAMENT]-(:Match {round: "F"})<-[:LOSER]-(player)) ) RETURN player.name, [t IN tournaments | t.year] AS years; ---- If we run this query, we'll see the following results: .Results [opts="header"] |=== | player.name | years | "Martina Hingis" | [2000, 2001, 2002] |=== Perfect, that's exactly what we want the results to look like! We can now extend this query to find the players who reached consecutive finals: [source,cypher] ---- // Find finalists in a tournament and a path of all the tournaments // after that tournament MATCH path = (t:Tournament)-[:NEXT_TOURNAMENT*]->(t2:Tournament), (t)<-[:IN_TOURNAMENT]-(:Match {round: "F"})<--(player) // Get the first and last tournaments in the list WITH nodes(path) AS tournaments, player WITH tournaments, tournaments[0] AS first, tournaments[-1] AS last, player // Get the tournament that happened immediately before the first one in the list and // the tournament that happened immediately after the last one in the list WITH tournaments, player, [(last)-[:NEXT_TOURNAMENT]->(next) | next][0] AS next, [(previous)-[:NEXT_TOURNAMENT]->(first) | previous][0] AS previous // Check that the player reached the final in every subsequent tournament and // that the player reached the final in the tournament immediately before and // that the player reached the final in the tournament immediately after WHERE all(t in tournaments[1..] WHERE (t)<-[:IN_TOURNAMENT]-(:Match {round: "F"})<--(player) AND not((next)<-[:IN_TOURNAMENT]-(:Match {round: "F"})<--(player)) AND not((previous)<-[:IN_TOURNAMENT]-(:Match {round: "F"})<--(player)) ) RETURN player.name, // Create a list containing the year of the final and the relationship type from the // player to the final match in that tournament apoc.coll.flatten( [t IN tournaments | [(t)<-[:IN_TOURNAMENT]-(:Match {round: "F"})<-[type]-(player) | [t.year, type(type)]][0]] ) AS years ORDER BY years[0] ---- If we run that query, we'll see the following results: .Results [opts="header"] |=== | player.name | years | "Martina Hingis" | [2000, "LOSER", 2001, "LOSER", 2002, "LOSER"] | "Jennifer Capriati" | [2001, "WINNER", 2002, "WINNER"] | "Maria Sharapova" | [2007, "LOSER", 2008, "WINNER"] | "Serena Williams" | [2009, "WINNER", 2010, "WINNER"] | "Victoria Azarenka" | [2012, "WINNER", 2013, "WINNER"] | "Na Li" | [2013, "LOSER", 2014, "WINNER"] | "Serena Williams" | [2015, "WINNER", 2016, "LOSER", 2017, "WINNER"] |=== There are a lot more players who reached multiple finals, but noone won more than 2 finals in a row. I was expecting to see more dominance by a single player! It would be interesting to run a similar query that looked at the finalists of all Grand Slam tournaments and not sure just consecutive Australian Opens. Perhaps that can be the topic of another blog post.
Learn how to write a Cypher query to find the longest path in a graph.
uploads/2020/01/longest-path.png
[ -0.003981860354542732, -0.027218252420425415, 0.004331730306148529, 0.049548111855983734, 0.08911512792110443, -0.006268617231398821, 0.00498786848038435, 0.04618612676858902, 0.00014566064055543393, -0.03356742113828659, -0.01313608605414629, -0.028187887743115425, -0.05882856994867325, 0.015020836144685745, 0.046082038432359695, 0.06328767538070679, 0.04455769807100296, 0.023955412209033966, 0.03090488538146019, -0.019603867083787918, 0.025135930627584457, 0.028648575767874718, -0.00397075479850173, 0.039879210293293, 0.04613206163048744, 0.014619389548897743, -0.002079361816868186, 0.011588619090616703, -0.054158568382263184, -0.013956702314317226, 0.048990022391080856, -0.025105444714426994, 0.02475256845355034, 0.007197473663836718, 0.03345515951514244, 0.0036914178635925055, -0.055030155926942825, 0.008365998044610023, -0.006038203369826078, 0.009817819111049175, -0.10293245315551758, 0.049179088324308395, -0.00370197556912899, 0.01719800755381584, -0.020177684724330902, 0.01621389389038086, -0.046296004205942154, 0.043595779687166214, 0.01403595507144928, 0.01699202135205269, -0.08525262027978897, 0.04481806978583336, -0.01827065460383892, 0.015288800932466984, 0.013599860481917858, 0.043051786720752716, 0.02665596827864647, -0.07201781123876572, 0.04373326897621155, -0.024470144882798195, 0.007079335395246744, -0.013281011022627354, 0.00763616943731904, 0.040022801607847214, 0.007289499510079622, -0.04400893673300743, -0.003226417815312743, 0.051434747874736786, -0.04641186073422432, 0.00009948544175131246, 0.012063682079315186, 0.016591349616646767, 0.0002118573320331052, 0.005181755404919386, -0.01974148489534855, -0.05254475027322769, -0.008761558681726456, 0.04612665995955467, 0.05036228150129318, 0.04780638962984085, -0.032608989626169205, 0.006268334574997425, -0.009090570732951164, 0.04286782070994377, -0.026852454990148544, -0.04357496276497841, -0.024644946679472923, -0.02503977157175541, -0.047787535935640335, 0.03443586826324463, 0.013496547006070614, -0.05906883627176285, -0.010233699344098568, -0.005680317524820566, -0.0151329655200243, 0.007279703859239817, -0.0026279897429049015, 0.01255964208394289, 0.016479182988405228, -0.013045390136539936, -0.0301751010119915, -0.01716451346874237, -0.0013647996820509434, 0.030222855508327484, -0.07121117413043976, -0.025969816371798515, -0.04751688614487648, -0.010710435919463634, 0.015207650139927864, -0.005638347007334232, -0.0348866805434227, 0.010253355838358402, -0.0059091090224683285, 0.005921251606196165, -0.09232113510370255, 0.06966371834278107, 0.03046075627207756, -0.03273013234138489, -0.009770743548870087, 0.01265819650143385, 0.04539837688207626, 0.01941605471074581, 0.0072468179278075695, 0.05964362993836403, -0.016658997163176537, 0.030366363003849983, -0.0026268556248396635, 0.04251319542527199, -0.014963064342737198, -0.06870733201503754, -0.028674934059381485, 0.044255394488573074, 0.0008913864730857313, 0.0022900316398590803, -0.017864203080534935, -0.016718462109565735, -0.008308355696499348, 0.03355781361460686, 0.051135268062353134, 0.02669929713010788, 0.004587003495544195, -0.07595612853765488, 0.01488388329744339, -0.006852430757135153, 0.03510867431759834, 0.0014028394361957908, -0.009411229752004147, -0.05472273752093315, -0.028353776782751083, -0.0011415285989642143, 0.00846576876938343, 0.01931450329720974, 0.03821485489606857, -0.030338270589709282, 0.002676457865163684, 0.12158557772636414, 0.04180224612355232, 0.009979515336453915, -0.029321791604161263, 0.002161550335586071, 0.047988273203372955, 0.022000867873430252, 0.006745954044163227, 0.05057106539607048, -0.003160479012876749, -0.02488984726369381, -0.012934861704707146, 0.06995731592178345, -0.016808748245239258, 0.01934271678328514, -0.03151455149054527, -0.06106879562139511, 0.07111374288797379, -0.05798891931772232, -0.0152714429423213, 0.03987925127148628, 0.07517928630113602, 0.01651407778263092, 0.0023240221198648214, -0.0010085947578772902, -0.07391484826803207, 0.05688177049160004, 0.002550536999478936, 0.013097734190523624, 0.014402135275304317, -0.0025223928969353437, 0.07275456935167313, 0.03858700394630432, 0.01919243112206459, 0.04316059499979019, -0.07439207285642624, -0.07186955958604813, -0.02422981709241867, -0.021442297846078873, 0.06027858331799507, -0.00664052739739418, 0.01362521294504404, 0.0456501729786396, 0.015612773597240448, 0.04128427058458328, 0.01010109018534422, 0.009939197450876236, 0.03204705938696861, -0.07602814584970474, -0.06816601008176804, 0.06542310118675232, 0.02177259512245655, -0.03495607525110245, -0.06047940254211426, 0.02953641675412655, -0.0382809154689312, -0.012671591714024544, 0.015077712945640087, -0.026016470044851303, 0.036991797387599945, 0.002786578144878149, 0.021431682631373405, -0.019938210025429726, 0.04018169641494751, -0.04979279637336731, 0.0410580039024353, 0.025102857500314713, -0.030199337750673294, -0.00895261112600565, -0.007632362190634012, 0.1032298356294632, 0.05478221923112869, -0.025582533329725266, -0.053757280111312866, 0.04539128392934799, 0.03690481185913086, -0.01680247113108635, 0.030321994796395302, -0.025954414159059525, 0.008950774557888508, -0.025568485260009766, -0.016600195318460464, -0.029362967237830162, 0.00856766477227211, -0.015234647318720818, -0.0057037146762013435, 0.05544298514723778, -0.024153225123882294, 0.058958880603313446, 0.006588912568986416, -0.023833151906728745, 0.004226414952427149, -0.03150058537721634, -0.060090385377407074, 0.023140033707022667, 0.01846504583954811, -0.011564943939447403, 0.04020320624113083, 0.009653245098888874, -0.016338467597961426, -0.0392766147851944, -0.04371650516986847, 0.03171481192111969, 0.030970413237810135, 0.059937428683042526, -0.022066542878746986, 0.05021846666932106, -0.019084038212895393, 0.014693019911646843, -0.01091210450977087, -0.06210312992334366, -0.03186984360218048, -0.023022081702947617, 0.03520295396447182, -0.002758624264970422, 0.010586717166006565, -0.0032202943693846464, 0.02418931946158409, -0.014226122759282589, 0.006432979833334684, -0.0005218831938691437, 0.02675710618495941, 0.007765885908156633, -0.00204850104637444, -0.023100294172763824, -0.014255513437092304, 0.0594317801296711, -0.04845099896192551, -0.023553617298603058, 0.002815325278788805, -0.0545545294880867, 0.04835894703865051, -0.05702700465917587, -0.017114808782935143, 0.018290424719452858, 0.03899865597486496, 0.05408448725938797, 0.011573659256100655, -0.008891443721950054, 0.08897772431373596, 0.008991162292659283, 0.011492363177239895, 0.0015827262541279197, -0.012642335146665573, 0.04826194420456886, -0.009835665114223957, 0.03333606943488121, 0.052194368094205856, -0.015257403254508972, 0.01174674741923809, -0.014718683436512947, -0.010012396611273289, -0.0011795815080404282, -0.27397093176841736, 0.047183845192193985, -0.03335859626531601, -0.03580077737569809, 0.011560486629605293, -0.010733813047409058, 0.009961326606571674, -0.032554615288972855, -0.017581777647137642, -0.02512507326900959, -0.024813663214445114, -0.031638458371162415, -0.014111313037574291, 0.04402836784720421, 0.0032207241747528315, 0.043226126581430435, -0.02140236832201481, -0.03946651145815849, -0.0033133409451693296, 0.007619911339133978, -0.0036955014802515507, -0.0582263246178627, -0.017139412462711334, 0.009151369333267212, 0.02875157631933689, 0.027270270511507988, -0.09124467521905899, 0.025750476866960526, -0.04735514521598816, -0.025065653026103973, 0.004993018694221973, -0.017109522596001625, 0.0003682624374050647, -0.0004446503589861095, -0.03250492364168167, -0.02675153873860836, 0.031970370560884476, -0.015346972271800041, 0.00921594724059105, 0.005307815968990326, -0.048220615833997726, -0.055406831204891205, -0.019873449578881264, 0.009759935550391674, 0.08221981674432755, -0.015643099322915077, -0.07685933262109756, 0.002140634460374713, -0.011030297726392746, 0.06759326159954071, -0.027676081284880638, -0.04170147702097893, -0.012220331467688084, 0.023578859865665436, -0.00961195956915617, -0.030851570889353752, -0.004967494867742062, -0.029864519834518433, -0.06638653576374054, -0.031937576830387115, 0.006925694644451141, -0.040789924561977386, 0.014134508557617664, -0.05532379075884819, -0.039910390973091125, -0.0432608462870121, -0.053472619503736496, -0.031187957152724266, 0.047609198838472366, 0.03158826008439064, -0.023311695083975792, 0.028978753834962845, -0.00714041106402874, -0.10678498446941376, -0.04478684812784195, -0.017441127449274063, -0.020918425172567368, 0.012838862836360931, -0.01893370784819126, 0.04682278260588646, -0.03592071309685707, -0.03819518908858299, 0.014692587777972221, 0.029394811019301414, 0.015363895334303379, -0.006353737320750952, 0.0317646749317646, -0.015879711136221886, -0.008463624864816666, 0.02448376640677452, 0.06255873292684555, -0.023960361257195473, -0.023352626711130142, -0.008576234802603722, -0.02034863457083702, 0.0394054539501667, 0.002448792103677988, -0.0035288440994918346, 0.007146691903471947, 0.04433896020054817, 0.05806144326925278, -0.026784779503941536, 0.0031942350324243307, -0.008377200923860073, -0.025820014998316765, -0.014756708405911922, -0.0478728823363781, 0.025883108377456665, 0.013600492849946022, 0.032958853989839554, 0.01015052106231451, -0.029060781002044678, 0.04245907813310623, -0.051840074360370636, -0.031115150079131126, -0.02857081964612007, 0.021444320678710938, 0.018978405743837357, 0.05022888630628586, -0.027159884572029114, -0.05766249820590019, 0.03976968675851822, 0.027016177773475647, -0.004424912855029106, -0.06340222805738449, -0.019771326333284378, -0.01318099070340395, -0.02259446121752262, -0.004844243172556162, 0.033992476761341095, -0.031124845147132874, 0.03692115843296051, 0.04518740251660347, -0.024447446689009666, 0.04348090663552284, -0.039114851504564285, -0.03674264997243881, -0.04734332114458084, 0.03240597993135452, -0.011393608525395393, -0.010800999589264393, 0.02445848099887371, 0.0074239433743059635, 0.0453883558511734, 0.0404135063290596, 0.022336620837450027, 0.025860607624053955, 0.0020732597913593054, 0.053494371473789215, -0.007890205830335617, -0.010581194423139095, -0.02618478797376156, 0.005521586164832115, -0.052076730877161026, -0.007870031520724297, -0.011333578266203403, 0.03942419961094856, -0.0166265107691288, -0.049142494797706604, -0.04614739492535591, 0.028572436422109604, -0.07050048559904099, 0.010494752787053585, -0.01470284815877676, -0.01127108559012413, 0.07284087687730789, -0.004060489125549793, 0.03855995833873749, -0.015199404209852219, -0.017242634668946266, 0.016299784183502197, 0.013067745603621006, -0.029420139268040657, -0.009218002669513226, -0.0006332697812467813, -0.004019610583782196, 0.011063464917242527, 0.035367343574762344, 0.036337584257125854, 0.01816909946501255, -0.032893504947423935, -0.004251639358699322, 0.008915474638342857, 0.026580562815070152, 0.03681529313325882, 0.05144038051366806, -0.030077073723077774, 0.0015900640282779932, -0.027746625244617462, 0.0036054712254554033, -0.030916888266801834, 0.015464378520846367, -0.03294338658452034, 0.010582610964775085, -0.01359864603728056, -0.05963703244924545, 0.05931205675005913, -0.025895897299051285, 0.005282501224428415, 0.046200089156627655, 0.004847618285566568, -0.015447539277374744, -0.011947130784392357, 0.05775793269276619, 0.05121421068906784, -0.03920359164476395, -0.02526208944618702, 0.017285292968153954, 0.0030396361835300922, -0.0010473120491951704, 0.004106503911316395, -0.06563308835029602, -0.02703896537423134, 0.010754373855888844, 0.029675688594579697, -0.03518553078174591, -0.030726371333003044, -0.0006587256211787462, -0.00188706093467772, 0.014700415544211864, 0.007595638744533062, 0.006697403732687235, 0.008724206127226353, -0.029557349160313606, -0.010308729484677315, 0.07357850670814514, -0.008333370089530945, -0.020587146282196045, 0.015768956393003464, -0.014836767688393593, -0.0024319470394402742, -0.02939446084201336, 0.02713247574865818, 0.010404188185930252, -0.014698678627610207, 0.00835021585226059, -0.05881435424089432, 0.01934012584388256, -0.013638151809573174, 0.047998636960983276, -0.01892554759979248, -0.019408395513892174, -0.030762942507863045, -0.014458141289651394, -0.02438158169388771, -0.0009117106674239039, -0.018569981679320335, 0.008479136973619461, 0.012236577458679676, 0.019769182428717613, -0.007520837709307671, 0.030358456075191498, -0.010306786745786667, -0.05102977901697159, 0.04920225217938423, -0.03844847157597542, -0.03231251984834671, -0.02556319162249565, -0.06187501922249794, 0.01408433262258768, 0.006992535665631294, 0.00808325968682766, -0.03622392565011978, 0.06358194351196289, 0.05042140930891037, 0.016728302463889122, 0.03760196641087532, -0.01963241770863533, 0.029818924143910408, -0.0176380705088377, -0.008553950116038322, -0.10037572681903839, 0.01975933276116848, 0.024649741128087044, -0.010914255864918232, -0.0007755971746519208, 0.010494408197700977, -0.020655250176787376, 0.01690548099577427, -0.06152159720659256, -0.03528562933206558, 0.03524620831012726, -0.019257649779319763, 0.006821705959737301, 0.002838113345205784, -0.054936762899160385, 0.018529901280999184, 0.03611453250050545, -0.028957929462194443, -0.041915759444236755, -0.013705838471651077, 0.049236901104450226, -0.027328893542289734, 0.03765949234366417, -0.028201263397932053, -0.024004174396395683, 0.08508478105068207, 0.017742125317454338, 0.020937781780958176, 0.038487326353788376, -0.02178153395652771, 0.040267881006002426, 0.02981739491224289, -0.021066611632704735, 0.002046979032456875, 0.025570737197995186, -0.031059183180332184, -0.05127366632223129, 0.048082832247018814, 0.03204377740621567, -0.004355200100690126, -0.03855573758482933, 0.06978070735931396, 0.020250512287020683, -0.061394136399030685, -0.05873149260878563, 0.03699836879968643, -0.0361347496509552, -0.0013077817857265472, -0.03370923921465874, -0.003684526775032282, -0.03849288448691368, 0.04709631949663162, -0.013833650387823582, 0.005975498352199793, 0.0578756257891655, 0.004192497581243515, -0.009279107674956322, 0.01813364587724209, 0.10215174406766891, 0.07901526987552643, 0.029759015887975693, 0.004761532414704561, 0.0739293098449707, -0.021560244262218475, -0.023360172286629677, -0.01595013402402401, -0.034921225160360336, -0.025975313037633896, -0.007647516671568155, 0.018565518781542778, 0.054612044245004654, -0.028477905318140984, 0.07770821452140808, -0.029669782146811485, 0.00677063362672925, -0.02208421751856804, -0.013965578749775887, 0.025885196402668953, 0.04889373108744621, 0.00772872706875205, 0.047187916934490204, -0.026934511959552765, -0.03316378593444824, 0.01905825547873974, 0.004589469637721777, -0.01878664456307888, 0.03634418547153473, -0.025506814941763878, -0.007605684921145439, 0.02020082250237465, 0.04653266444802284, 0.09232113510370255, -0.03137529641389847, -0.007054983172565699, -0.011239629238843918, 0.03496906906366348, 0.005557277239859104, 0.031702566891908646, -0.01518674474209547, -0.0018508991925045848, -0.012828444130718708, -0.05220299959182739, -0.01545758731663227, -0.03433857858181, -0.04295632615685463, -0.00032500032102689147, -0.017558075487613678, -0.010118680074810982, 0.01827753148972988, -0.01820351742208004, -0.027578067034482956, -0.038093484938144684, -0.05000828206539154, -0.03356544300913811, -0.0792999342083931, 0.0022153754252940416, 0.006481703370809555, 0.003565441118553281, -0.01963331177830696, -0.006606266368180513, -0.0025312351062893867, -0.01027745008468628, 0.0388486348092556, -0.035744473338127136, -0.015029702335596085, 0.01688123680651188, 0.042052868753671646, 0.01319835614413023, 0.008230709470808506, 0.06558504700660706, -0.012925714254379272, 0.028322657570242882, -0.025721298530697823, 0.025745756924152374, 0.052959900349378586, 0.00919544417411089, -0.003685463685542345, -0.07660810649394989, 0.012556102126836777, 0.006750502157956362, -0.009379870258271694, -0.07572288066148758, -0.010427297092974186, 0.05350957065820694, 0.0017436619382351637, 0.044250067323446274, -0.005084816366434097, 0.00941008422523737, -0.025321701541543007, 0.016188818961381912, -0.004926325753331184, -0.044778961688280106, 0.041633687913417816, -0.017524803057312965, 0.0634179413318634, 0.04672887176275253, -0.020492874085903168, -0.0298042930662632, -0.029513387009501457, -0.002024722285568714, 0.008271404542028904, -0.056752584874629974, -0.04165443032979965, -0.0396011620759964, -0.0980660691857338, -0.03320503979921341, 0.008621851913630962, -0.02830442041158676, -0.03381524235010147, -0.0023042019456624985, 0.0336899571120739, -0.024736249819397926, 0.006069456692785025, -0.04709574207663536, 0.031287528574466705, -0.010172153823077679, -0.0249039214104414, -0.015061848796904087, 0.001213832525536418, 0.008927457965910435, -0.0012843209551647305, 0.036447636783123016, -0.05674082413315773, -0.008385678753256798, -0.03075709380209446, 0.03639534115791321, 0.03949378430843353, 0.02805783413350582, -0.006392260082066059 ]
[ -0.04957471042871475, -0.04171682521700859, -0.035159483551979065, -0.01912466064095497, 0.07030811160802841, -0.031971439719200134, -0.03700703755021095, -0.003185050096362829, 0.008003231137990952, -0.01629410684108734, 0.019549673423171043, -0.03357239440083504, 0.0004030468116980046, 0.01691809482872486, 0.06356706470251083, -0.0015692031010985374, -0.009896853007376194, -0.04123368486762047, -0.013310528360307217, 0.05484351888298988, -0.018206676468253136, -0.05229150503873825, -0.018437562510371208, -0.07676661014556885, 0.00961952842772007, 0.0603526346385479, 0.05291443318128586, -0.04358747974038124, -0.022246545180678368, -0.2062368392944336, 0.01131073385477066, -0.0082466471940279, 0.007562148850411177, -0.0052688284777104855, 0.00439869612455368, 0.026661541312932968, 0.044365957379341125, -0.0169882420450449, 0.009661938063800335, 0.03321347013115883, 0.04740274325013161, 0.016897844150662422, -0.0478961244225502, 0.004199361428618431, 0.05101712420582771, 0.02278960309922695, -0.015822656452655792, -0.022206807509064674, -0.014790607616305351, 0.01905803196132183, -0.04520628601312637, 0.005041360389441252, -0.015226456336677074, -0.019552933052182198, 0.026609037071466446, 0.04576467350125313, 0.05464285612106323, 0.05375334247946739, 0.010122528299689293, 0.028757181018590927, 0.03353874385356903, -0.005823709536343813, -0.10583183169364929, 0.08296442776918411, 0.02543116733431816, 0.019822776317596436, -0.04545310139656067, -0.003364871721714735, -0.02590622380375862, 0.08147076517343521, 0.027501210570335388, -0.02141554281115532, -0.05932450667023659, 0.06507893651723862, 0.009803426451981068, 0.01940794475376606, -0.0033848921302706003, 0.029063954949378967, 0.0274206455796957, -0.03225957229733467, -0.0428471714258194, -0.006380354054272175, -0.052419211715459824, -0.0012004143791273236, -0.04286686331033707, 0.01589074172079563, -0.04911438375711441, 0.03788851946592331, -0.010412661358714104, 0.04031027480959892, 0.051635175943374634, 0.0001013030341709964, 0.07136046886444092, 0.03216654807329178, -0.087081678211689, -0.036068469285964966, -0.0010331652592867613, 0.024127496406435966, 0.010315864346921444, 0.39299818873405457, 0.007015798706561327, 0.002017584163695574, 0.015395993366837502, 0.05347538739442825, -0.0016882405616343021, 0.006759147625416517, -0.007907388731837273, -0.06544337421655655, 0.03736036643385887, -0.001535544521175325, 0.00636896351352334, -0.03223751112818718, 0.06064281985163689, -0.07290344685316086, 0.006022980902343988, 0.02209668606519699, 0.043893467634916306, 0.03173604607582092, -0.06804527342319489, 0.01986505649983883, -0.050033945590257645, 0.003772892989218235, 0.02659931778907776, 0.013477792963385582, 0.027444692328572273, 0.007675455417484045, 0.009234173223376274, 0.006900186184793711, 0.011591224931180477, 0.01728501170873642, 0.03186696022748947, 0.0005392660386860371, -0.0774938091635704, 0.03553398326039314, -0.01788688637316227, -0.008849745616316795, 0.04341764375567436, -0.04378189519047737, -0.014051620848476887, 0.013029593974351883, -0.026887504383921623, -0.01460290141403675, 0.07532784342765808, 0.01320689171552658, -0.031237388029694557, 0.11657531559467316, -0.005718404892832041, -0.06551270931959152, -0.030060693621635437, -0.060901571065187454, 0.002149321837350726, 0.047390397638082504, 0.008447244763374329, -0.07802318781614304, -0.034094374626874924, 0.010201063007116318, 0.08274675160646439, -0.017511574551463127, -0.10230418294668198, -0.0046706427820026875, -0.024858150631189346, -0.023424440994858742, -0.027979323640465736, 0.0881430059671402, 0.047002170234918594, -0.13855454325675964, -0.0011494266800582409, 0.020589731633663177, 0.008812080137431622, -0.05071112513542175, 0.010156983509659767, -0.0010583011899143457, -0.029104556888341904, -0.023213056847453117, 0.04633181914687157, -0.02127906307578087, -0.011479253880679607, -0.0024850184563547373, 0.025911279022693634, 0.007528183050453663, -0.019749904051423073, -0.0058459206484258175, -0.037967484444379807, -0.018252678215503693, -0.06375940144062042, -0.05112538859248161, -0.08464402705430984, 0.034605663269758224, -0.01968207210302353, -0.044392239302396774, -0.03696485236287117, 0.009196736849844456, -0.037242479622364044, 0.08943307399749756, -0.04446250572800636, -0.04844176024198532, -0.0012707592686638236, 0.03045637533068657, -0.019661983475089073, -0.042406897991895676, 0.02771870419383049, 0.007866952568292618, -0.011477956548333168, 0.021468911319971085, -0.044633880257606506, 0.013052895665168762, 0.05590496584773064, -0.025474512949585915, 0.04303989186882973, 0.029052047058939934, -0.05726092681288719, -0.02094748243689537, 0.0004801795585080981, 0.012714368291199207, -0.005481163039803505, -0.023753412067890167, 0.01163741759955883, -0.007209545001387596, 0.020312538370490074, 0.058776505291461945, -0.024358518421649933, -0.017546845600008965, -0.023699887096881866, -0.3606497645378113, -0.041383638978004456, -0.03562673553824425, 0.008457970805466175, 0.04639690741896629, -0.03785621374845505, 0.01959819719195366, -0.01255519688129425, 0.0162958987057209, -0.00036125947372056544, 0.07569343596696854, -0.029023028910160065, 0.0013831423129886389, -0.0895858108997345, -0.0107266278937459, 0.035283610224723816, -0.01729816198348999, 0.012487275525927544, -0.021528027951717377, 0.008364399895071983, 0.009903421625494957, -0.05363677814602852, -0.034819722175598145, -0.05007513239979744, -0.00152980734128505, 0.006857286207377911, 0.13541774451732635, -0.012763270176947117, 0.03741611912846565, -0.039922844618558884, 0.03667091578245163, -0.00915552768856287, -0.014570694416761398, -0.0652855709195137, 0.0028986604884266853, -0.029843347147107124, 0.024964511394500732, 0.002049828413873911, -0.007467579562216997, -0.0006522217881865799, -0.05376719310879707, -0.005527465604245663, -0.04772702604532242, -0.0440872460603714, -0.040641773492097855, 0.013888435438275337, -0.01963995397090912, -0.02466708794236183, 0.007156345993280411, 0.07413702458143234, 0.007399802096188068, 0.021615400910377502, 0.02256910130381584, 0.014190017245709896, 0.01972224749624729, -0.04198610782623291, -0.0602288581430912, -0.011362522840499878, 0.015170248225331306, 0.0378798171877861, 0.003613005392253399, 0.029430696740746498, 0.02518536150455475, -0.07088468223810196, 0.02410917729139328, 0.0026207829359918833, 0.0005326720420271158, 0.011084959842264652, 0.0607205368578434, -0.038487426936626434, -0.018986932933330536, 0.09049154818058014, -0.014005227945744991, 0.024885782971978188, 0.06232893094420433, 0.04308205097913742, 0.010241799987852573, 0.0375865176320076, 0.04612498730421066, -0.0032626648899167776, 0.04852820187807083, -0.04472022503614426, 0.06287107616662979, -0.02999654971063137, -0.002153863897547126, 0.053066741675138474, 0.030569488182663918, -0.036244772374629974, 0.06682214885950089, 0.031656716018915176, 0.0041732038371264935, -0.008014836348593235, -0.018498912453651428, -0.06804393976926804, 0.07290641963481903, -0.023656180128455162, -0.2669229805469513, 0.03943248838186264, 0.04079977422952652, 0.04404200613498688, -0.017056874930858612, 0.0061961011961102486, 0.0470140166580677, -0.00308850035071373, 0.0017150432104244828, 0.01596970669925213, 0.018832461908459663, 0.07535171508789062, -0.028193365782499313, -0.0195746049284935, -0.010742460377514362, 0.004491871222853661, 0.04014075919985771, 0.027451496571302414, 0.0372714139521122, 0.015363260172307491, 0.04791712015867233, -0.022785678505897522, 0.17938540875911713, 0.04087182879447937, 0.021858694031834602, 0.0520632266998291, -0.03416771441698074, -0.0025737548712641, 0.020690636709332466, -0.016318954527378082, -0.030962305143475533, 0.017238495871424675, 0.011296064592897892, 0.015000625513494015, 0.03445969894528389, -0.016871992498636246, -0.019153907895088196, 0.06205112487077713, 0.026565251871943474, -0.010931509546935558, -0.0006319368258118629, -0.00438211252912879, -0.04751696437597275, 0.032926660031080246, 0.07376408576965332, -0.0323294997215271, -0.0070624141953885555, -0.011378680355846882, -0.062024738639593124, -0.01728999800980091, -0.04306333512067795, -0.05419762432575226, -0.02251049503684044, -0.01279295701533556, -0.009394427761435509, 0.0834568589925766, 0.04656921327114105, -0.040186021476984024, 0.015660341829061508, 0.00399421900510788, -0.0267803855240345, -0.025688817724585533, 0.11163537204265594, -0.01716030016541481, 0.023927802219986916 ]
[ 0.041855353862047195, 0.037617459893226624, 0.004494072869420052, 0.025444652885198593, -0.024203356355428696, 0.004192960448563099, -0.005630572326481342, 0.003120352979749441, -0.03409477323293686, 0.014808189123868942, -0.026655538007616997, 0.023796381428837776, 0.03870492801070213, 0.031264569610357285, 0.012802059762179852, -0.008323502726852894, 0.01874121092259884, 0.01864965818822384, 0.033117737621068954, 0.02771090716123581, -0.03141256794333458, -0.008286884054541588, 0.0028064968064427376, 0.0022480266634374857, -0.0127720320597291, 0.0020358741749078035, -0.06460556387901306, 0.019331306219100952, 0.020516568794846535, -0.11726988852024078, -0.011492755264043808, -0.021854842081665993, 0.013161146081984043, 0.017819633707404137, -0.004011726006865501, -0.01021241582930088, 0.020470915362238884, -0.01825004257261753, -0.01369241438806057, 0.003838330041617155, 0.03345275670289993, -0.028880786150693893, -0.013874635100364685, 0.03291291743516922, -0.0049492414109408855, -0.034605640918016434, -0.04459239915013313, -0.01714971661567688, 0.007127473596483469, 0.018760060891509056, -0.07896137237548828, -0.022597400471568108, -0.014760230667889118, -0.010820879600942135, 0.0328882597386837, 0.021444806829094887, -0.04062908515334129, 0.005322618875652552, 0.007332197856158018, -0.007336480543017387, 0.03846364468336105, -0.012043099850416183, -0.05521849915385246, -0.028888383880257607, -0.018429601565003395, -0.0362827368080616, -0.01794089563190937, 0.029437068849802017, -0.0033894602674990892, 0.022232376039028168, -0.0030997057911008596, 0.05442504584789276, -0.08738189190626144, -0.031032711267471313, -0.01221142802387476, 0.04826929420232773, 0.011400213465094566, -0.00606592558324337, -0.050263237208127975, -0.028197500854730606, -0.01128886453807354, 0.009688732214272022, -0.005741829518228769, 0.0123590724542737, -0.021364718675613403, 0.00031825085170567036, 0.01729578711092472, -0.024060506373643875, 0.016484346240758896, -0.015336968004703522, -0.016791129484772682, 0.0012257571797817945, -0.010960533283650875, -0.013666358776390553, -0.07556642591953278, 0.001767774811014533, -0.006959386169910431, 0.0007299146964214742, 0.00751989521086216, 0.815912127494812, 0.015085074119269848, -0.010901098139584064, -0.0036091250367462635, 0.022304700687527657, 0.025411074981093407, 0.015247582457959652, 0.005076753906905651, -0.01259743981063366, 0.0166777390986681, -0.0077334437519311905, -0.02914188802242279, 0.03989885002374649, 0.01548162754625082, 0.017498774453997612, -0.000774701707996428, 0.0313999243080616, -0.005983387120068073, -0.012227247469127178, -0.01484740898013115, 0.04727446287870407, 0.009317340329289436, 0.013263034634292126, -0.012853614054620266, 0.008182073011994362, 0.003048879327252507, -0.18236827850341797, 0.010369234718382359, -6.486973656536456e-33, 0.03518934175372124, -0.040836818516254425, 0.05866151303052902, -0.005546900909394026, 0.027157636359333992, 0.02453063428401947, -0.01255529560148716, -0.03984743356704712, -0.036929916590452194, -0.01641453430056572, -0.024681031703948975, 0.006003015674650669, 0.008849482983350754, -0.006152781192213297, 0.026094136759638786, -0.023566005751490593, 0.011435762979090214, 0.01516443770378828, -0.012232383713126183, -0.01884487457573414, 0.01880606636404991, 0.028004586696624756, -0.0166011992841959, 0.035572633147239685, 0.0327993780374527, 0.033436503261327744, 0.005577908828854561, 0.0020788104739040136, -0.0042788079008460045, -0.04015187919139862, -0.06967189162969589, -0.02713836170732975, -0.02241888828575611, -0.0032672130037099123, -0.0018046620534732938, -0.06473617255687714, -0.008715200237929821, 0.02026502415537834, -0.04909229651093483, -0.04410204291343689, -0.047542981803417206, -0.023705562576651573, -0.0178520530462265, -0.012930500321090221, -0.061727169901132584, -0.011211653240025043, -0.025341851636767387, 0.02867172472178936, 0.004569373559206724, 0.026477336883544922, 0.030966386198997498, 0.011220012791454792, -0.02508336305618286, 0.027912186458706856, -0.04820702224969864, -0.005660758353769779, 0.0011697816662490368, -0.00794979464262724, -0.029325880110263824, 0.0028262229170650244, 0.01841679960489273, -0.003903062781319022, 0.0008372430456802249, 0.04315551370382309, 0.0020008033607155085, 0.03390444070100784, -0.008497233502566814, 0.012292245402932167, 0.028330735862255096, 0.04360335320234299, -0.03505565971136093, 0.04219807684421539, -0.0013102068332955241, -0.0376652292907238, 0.03310359641909599, -0.06489751487970352, -0.01455191895365715, -0.04291003569960594, -0.003347841091454029, 0.05600149184465408, -0.030726062133908272, -0.026587313041090965, -0.027012160047888756, -0.00822019949555397, -0.04177043214440346, -0.024107977747917175, 0.04154358059167862, 0.03547370433807373, 0.01897071860730648, 0.02209043689072132, 0.04130302742123604, 0.03422373905777931, -0.015217249281704426, -0.018621327355504036, -0.028218287974596024, 6.512719186871371e-33, 0.014893773943185806, -0.014472341164946556, 0.009941437281668186, -0.00648108497262001, 0.03914375975728035, -0.003297192044556141, 0.027543963864445686, 0.03117488883435726, -0.038934461772441864, 0.023773139342665672, -0.028013307601213455, 0.008909326046705246, -0.00022898658062331378, 0.014983609318733215, 0.0549360066652298, -0.009820445440709591, 0.019064385443925858, -0.04010102152824402, 0.007560728583484888, 0.026489827781915665, -0.023428212851285934, -0.0002070257905870676, -0.008991320617496967, 0.028597448021173477, 0.03692808374762535, 0.018390310928225517, 0.00982331857085228, -0.01762332394719124, -0.02985135093331337, 0.004495809320360422, -0.0027539038565009832, -0.0402793288230896, -0.016854213550686836, -0.0197504460811615, -0.00012685259571298957, 0.023085668683052063, -0.034406308084726334, 0.0023350873962044716, -0.0025791244115680456, -0.026097344234585762, 0.03007357567548752, 0.004333464428782463, -0.025101596489548683, 0.07542631030082703, 0.022786052897572517, 0.01637815684080124, -0.009733567014336586, 0.010236972942948341, 0.0059555391781032085, 0.017630238085985184, 0.00039718873449601233, 0.014526091516017914, 0.021562781184911728, 0.03457892686128616, 0.03775478154420853, -0.06213115528225899, -0.02616860345005989, 0.04705546796321869, -0.00306021049618721, 0.020448174327611923, 0.007767329458147287, 0.008206000551581383, -0.03989724814891815, 0.02615782804787159, 0.0007642796263098717, -0.017029376700520515, -0.03942875564098358, -0.0015472759259864688, -0.018395759165287018, 0.023376598954200745, 0.021902352571487427, 0.026867320761084557, -0.009737775661051273, 0.056400641798973083, 0.053462762385606766, -0.008434934541583061, -0.0343979112803936, 0.034639060497283936, -0.02645247057080269, 0.03886067122220993, 0.0068498761393129826, 0.030073441565036774, 0.014251206070184708, 0.00010428050154587254, -0.007582532241940498, -0.004715560004115105, -0.017955856397747993, 0.018142342567443848, 0.00735995639115572, 0.008744169026613235, 0.03520517796278, -0.058186307549476624, -0.0067488932982087135, 0.03803975507616997, -0.03890617564320564, -1.2359487655544399e-8, -0.051966212689876556, -0.0229365024715662, -0.018992239609360695, 0.022222066298127174, -0.01223499421030283, 0.04261554777622223, 0.022964367642998695, 0.03806465491652489, -0.0026281194295734167, 0.047621387988328934, 0.04681133106350899, -0.015862610191106796, 0.025443682447075844, 0.008659200742840767, 0.008919639512896538, -0.040665403008461, 0.029814671725034714, -0.017237043008208275, 0.03210543096065521, 0.007149318233132362, -0.00044697962584905326, 0.049708470702171326, -0.020277032628655434, 0.01871168427169323, -0.02555646002292633, -0.03729942440986633, 0.013540946878492832, -0.07648791372776031, -0.030758259817957878, -0.01950213871896267, 0.007600803393870592, -0.023000484332442284, -0.027394942939281464, 0.02398214116692543, -0.04705487936735153, -0.010771333239972591, 0.02622509002685547, 0.053313981741666794, 0.016920121386647224, 0.023607851937413216, -0.042228203266859055, 0.010364417918026447, -0.031254325062036514, -0.04887302219867706, -0.03416667878627777, 0.015974583104252815, -0.004538169130682945, 0.001640384434722364, 0.04014553129673004, -0.02638384886085987, 0.002446540631353855, -0.004494123626500368, 0.02602139115333557, -0.006638714112341404, 0.02401387318968773, 0.021107608452439308, 0.019657885655760765, -0.01339912973344326, -0.028899893164634705, -0.014655536971986294, 0.016310816630721092, 0.007738442625850439, 0.0013469371479004622, -0.011637040413916111 ]
neo4j-finding-longest-path
https://markhneedham.com/blog/2020/01/29/neo4j-finding-longest-path
false
2020-01-16 00:21:00
Creating an Interactive UK Official Charts Data App with Streamlit and Neo4j
[ "neo4j", "streamlit", "python" ]
[ "Neo4j" ]
I recently came across https://www.streamlit.io/[Streamlit^], a tool that makes it easy to https://towardsdatascience.com/coding-ml-tools-like-you-code-ml-models-ddba3357eace[build data based single page web applications^]. I wanted to give it a try, and the https://markhneedham.com/blog/2020/01/04/quick-graph-uk-official-charts/[UK Charts QuickGraph^] that I recently wrote about seemed like a good opportunity for that. This blog post starts from where we left off. The data is loaded into Neo4j and we've written some queries to explore different aspects of the dataset. Let's see what we can do if we integrate Neo4j and Streamlit. image::{{<siteurl>}}/uploads/2020/01/streamlit-neo4j-banner.png[title="Streamlit and Neo4j. Background from https://www.freepik.com/free-photo/3d-network-background-with-connecting-lines-dots_3961382.htm"] == Setting up our environment The first thing we need to do is setup our environment. Streamlit is a Python library, so we'll be using it alongside the https://neo4j.com/docs/api/python-driver/current/[Neo4j Python driver^], as well as some other dependencies. I like to use https://github.com/pypa/pipenv[Pipenv^] for my Python projects. Our _Pipfile_ is defined below: .Pipfile [source,text] ---- [[source]] name = "pypi" url = "https://pypi.org/simple" verify_ssl = true [dev-packages] [packages] streamlit = "*" neo4j = "*" vega-datasets = "*" selenium = "*" vegascope = "*" [requires] python_version = "3.7" ---- If we create that file in a directory, we can install all our dependencies by running the following command: [source,bash] ---- pipenv install ---- If we run that command, we'll see the following output: [source,bash] ---- Pipfile.lock not found, creating… Locking [dev-packages] dependencies… Locking [packages] dependencies… ✔ Success! Updated Pipfile.lock (0882a9)! Installing dependencies from Pipfile.lock (0882a9)… 🐍 ▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉ 84/84 — 00:00:11 To activate this project's virtualenv, run pipenv shell. Alternatively, run a command inside the virtualenv with pipenv run. ---- We'll follow those instructions, and now we're ready to build our Streamlit application. == Streamlit Application We're going to create our Streamlit application in a file called `visualise.py`. Let's import the libraries that we're going to be using: .visualise.py [source,python] ---- import streamlit as st from neo4j import GraphDatabase import pandas as pd import altair as alt import datetime from PIL import Image ---- We'll also instantiate our Neo4j Driver and give our Streamlit application a title and an image to make it look a bit prettier: .visualise.py [source,python] ---- driver = GraphDatabase.driver("bolt://localhost", auth=("neo4j", "neo")) st.title("UK Charts 2019") st.write("In this Streamlit application we're going to explore data from the UK Official Singles Chart.") st.image(Image.open("images/uk-charts.png")) ---- We can now launch our application by running the following command from the terminal: [source,bash] ---- streamlit run visualise.py ---- When we run this command, we'll see the following output: [source,bash] ---- You can now view your Streamlit app in your browser. Local URL: http://localhost:8501 Network URL: http://192.168.86.25:8501 ---- If we navigate to the Local URL, we'll see a page that looks like this: image::{{<siteurl>}}/uploads/2020/01/streamlit-header.png[title="Our first Streamlit Application"] So far so good! Let's add some more content to the page based on the queries that we ran in the QuickGraph blog post. == Which song was number 1 for the most weeks? The first thing we did in our previous post was work out which song was number 1 for the most weeks. We'll start by returning all the numbers 1 songs in 2019. The following code sample uses the Neo4j Python driver to execute a Cypher query that finds all the number 1 songs, puts them in a DataFrame, and then displays that DataFrame: [source,python] ---- with driver.session() as session: st.subheader("Number 1s") st.write("The chart below shows the number 1 charting songs of 2019.") result = session.run(""" MATCH (chart:Chart)<-[inChart:IN_CHART {position: 1}]-(song)-[:ARTIST]->(artist) WITH chart, song, collect(artist.name) AS artists RETURN toString(chart.end) AS date, song.title AS song, artists ORDER BY chart.end """) df = pd.DataFrame(result.data()) st.dataframe(df.style.hide_index()) ---- If we refresh the page in our web browser, we'll see the following output: image::{{<siteurl>}}/uploads/2020/01/streamlit-number1s.png[title="A DataFrame displaying Number 1 songs"] We want to know which song was number 1 for the most weeks, and a bar chart seems like a good way of displaying this data. Let's create one: [source,python] ---- result = session.run(""" MATCH (song:Song)-[inChart:IN_CHART {position: 1}]->(chart) RETURN song.title AS song, count(*) AS count ORDER By count DESC; """) df = pd.DataFrame(result.data()) c = alt.Chart(df, width=500, height=400).mark_bar(clip=True).encode(x='song', y='count') st.altair_chart(c) ---- image::{{<siteurl>}}/uploads/2020/01/streamlit-number1s-count.png[title="An Altair chart showing the Number 1 songs"] == Which song was number 1 on a specific date? As well as returning the results of a hard coded query like this, we can also execute dynamic queries based on user input. The `date_input` component gives us a calendar from which the user can select a date that we use in a query. The code below runs a query that returns the chart for a given date: [source,python] ---- st.subheader("Top songs by week") date = st.date_input("Search by date", datetime.date(2019, 12, 12)) result = session.run(""" MATCH (chart:Chart)<-[inChart:IN_CHART]-(song) WHERE chart.start <= $date <= chart.end RETURN inChart.position AS position, song.title AS song, [(song)-[:ARTIST]->(artist) | artist.name] AS artists ORDER BY position """, {"date": date}) df = pd.DataFrame(result.data()) st.dataframe(df.style.hide_index()) ---- Let's have a look which songs were at the top of the chart in June 2019: image::{{<siteurl>}}/uploads/2020/01/streamlit-chart-by-date.png[title="The top of the chart on 12th June 2019"] == How did a song chart over the year? In the QuickGraph blog post we wrote a query to find out which number 1 songs didn't go straight in at number 1. One of my favourite songs, Dance Monkey, took 8 weeks from its first appearance in the chart until it got to the top. We can use Streamlit to create a DataFrame and scatterplot showing how a song charted over the year: [source,python] ---- st.subheader("Songs charting over time") name = st.text_input('Search by song title', 'All I Want For Christmas') if name: result = session.run(""" MATCH (chart:Chart)<-[inChart:IN_CHART]-(song)-[:ARTIST]->(artist) WHERE song.title contains $songTitle WITH song, inChart, chart, collect(artist.name) AS artists RETURN song.title AS song, artists, inChart.position AS position, chart.end AS date ORDER BY chart.end """, {"songTitle": name}) df = pd.DataFrame(result.data()) st.dataframe(df.style.hide_index()) if df.shape[0] > 0: c = alt.Chart(df, title=f"Chart positions for {name}", width=500, height=300).mark_point().encode( x=alt.X('date:T', timeUnit='yearmonthdate', scale=alt.Scale(domain=list(domain_pd))), y=alt.Y('position', sort="descending") ) st.altair_chart(c) ---- And let's see how Dance Monkey fared: image::{{<siteurl>}}/uploads/2020/01/streamlit-dance-monkey.png[title="Dance Monkey's chart positions over the year"] We can see from this chart that the song had a very gradual climb to the top. I'd always assumed that songs achieved their top position when they were first released, but this is an interesting counter example. That's all for this blog post, but I'm looking forward to combining Streamlit and Neo4j on future datasets.
Learn how to use Streamlit and Neo4j to create an interactive data app of the UK Official Charts Graph.
uploads/2020/01/streamlit-neo4j-banner.png
[ 0.03266999125480652, -0.02295520342886448, -0.006830920930951834, 0.04888203367590904, 0.08810414373874664, 0.006968841888010502, 0.014431814663112164, 0.036307383328676224, 0.026309628039598465, -0.008648468181490898, -0.01555981021374464, 0.013279784470796585, -0.07883332669734955, -0.001622512936592102, -0.0010852579725906253, 0.05978813022375107, 0.06365608423948288, 0.009900553151965141, 0.016454044729471207, 0.010369881056249142, 0.00872876774519682, 0.04887724667787552, -0.005208041984587908, 0.03218187764286995, -0.01068165898323059, -0.0010536498157307506, 0.02421628311276436, -0.012534829787909985, -0.05502329394221306, 0.0029042470268905163, 0.04479415342211723, 0.004120667930692434, 0.014539566822350025, -0.018359271809458733, 0.04484741762280464, 0.011570864357054234, -0.038686804473400116, 0.026159968227148056, -0.011974764987826347, 0.01875239424407482, -0.07191000133752823, 0.02548331953585148, -0.02384048141539097, 0.017729416489601135, -0.02873213030397892, 0.010199619457125664, -0.019131388515233994, 0.05694403126835823, 0.0013446734519675374, 0.002070907736197114, -0.0658038780093193, 0.027454443275928497, -0.03866303712129593, 0.025608858093619347, 0.008657370693981647, 0.015248416922986507, 0.02666538581252098, -0.09209990501403809, 0.05378170311450958, -0.01117395143955946, 0.0026225093752145767, -0.009686591103672981, -0.007533455733209848, 0.0334688276052475, 0.006447033490985632, -0.05226767063140869, -0.008639640174806118, 0.059679046273231506, -0.05954752117395401, -0.02221563644707203, 0.01997867226600647, 0.037038132548332214, -0.05608576163649559, -0.01457618735730648, 0.01479098666459322, -0.05416552349925041, -0.02494814246892929, 0.05938246473670006, 0.03564465790987015, 0.04119432717561722, 0.007068412844091654, 0.014822633005678654, 0.014849895611405373, 0.057654570788145065, -0.02005160227417946, -0.022601410746574402, -0.01027299277484417, -0.02044624835252762, -0.048928260803222656, 0.039722587913274765, 0.010897922329604626, -0.06281060725450516, 0.015093134716153145, 0.0030380310490727425, -0.00383750326000154, 0.030177118256688118, 0.0014120469568297267, 0.021573882550001144, 0.023197785019874573, -0.029939133673906326, -0.03687639907002449, -0.03085918538272381, 0.013507863506674767, 0.009647976607084274, -0.07381165027618408, -0.02619919739663601, -0.024579932913184166, -0.03612547740340233, -0.0016014444408938289, 0.009996105916798115, -0.030392395332455635, 0.003720749169588089, -0.021547984331846237, 0.012034931220114231, -0.08335033059120178, 0.0722934901714325, 0.004015992861241102, -0.04605228453874588, -0.005312719848006964, 0.014571718871593475, 0.03928302973508835, 0.024920135736465454, -0.011602646671235561, 0.07123816758394241, -0.0016200740355998278, 0.0728491023182869, -0.007921114563941956, 0.03478728234767914, 0.0009359758696518838, -0.07612880319356918, -0.002450824249535799, 0.06701993942260742, -0.019551152363419533, 0.00017504037532489747, 0.0022390002850443125, -0.007945584133267403, 0.0013460268964990973, -0.000902959203813225, 0.056626614183187485, 0.03937240317463875, -0.01087886095046997, -0.04379540681838989, 0.03950439393520355, 0.006467324215918779, 0.03002234734594822, 0.02691764570772648, -0.002045881003141403, -0.041293781250715256, -0.055110156536102295, -0.0012161829508841038, -0.0011176085099577904, 0.021824488416314125, 0.05379302799701691, -0.02525954321026802, 0.0012820314150303602, 0.08383321762084961, 0.0540279857814312, 0.0387691967189312, -0.02617667056620121, 0.022123459726572037, 0.04665751755237579, 0.04024532437324524, 0.007838861085474491, 0.07014334946870804, -0.01651107333600521, -0.014672131277620792, -0.015439461916685104, 0.03364520147442818, -0.0022091539576649666, 0.018937185406684875, -0.024374524131417274, -0.05901695415377617, 0.05865849182009697, -0.035334814339876175, 0.017522746697068214, 0.03096606768667698, 0.07854751497507095, 0.008377847261726856, 0.0322912223637104, -0.007836897857487202, -0.07350616902112961, 0.040988098829984665, 0.007767547853291035, 0.017314724624156952, 0.013006175868213177, -0.011013563722372055, 0.08606257289648056, 0.023272909224033356, -0.004018764477223158, 0.010940700769424438, -0.07205384969711304, -0.05727551877498627, -0.04347093775868416, -0.02159416303038597, 0.06144136190414429, -0.02845814824104309, 0.020824719220399857, 0.061580050736665726, 0.01417508814483881, 0.045529868453741074, 0.009846280328929424, -0.013304288499057293, 0.010639348067343235, -0.07730935513973236, -0.06517503410577774, 0.0343954898416996, 0.042115483433008194, -0.06367795914411545, -0.0737195685505867, -0.01306002214550972, -0.02248763106763363, -0.001412306446582079, 0.03455029055476189, -0.02590586058795452, 0.057626962661743164, 0.04221498966217041, 0.0371616892516613, -0.001897204085253179, 0.03276773914694786, -0.011646421626210213, 0.04709404706954956, -0.013901441358029842, -0.029835745692253113, -0.02768636867403984, 0.008700160309672356, 0.10823144018650055, 0.06972415745258331, -0.03988056257367134, -0.0756613090634346, 0.016379086300730705, 0.00413129385560751, -0.023415548726916313, 0.0045499298721551895, -0.01964128203690052, -0.025622542947530746, -0.035031937062740326, -0.04018751159310341, -0.03263865038752556, -0.006683095823973417, -0.03014347143471241, 0.013750067912042141, 0.06889082491397858, -0.02242579124867916, 0.03974886238574982, 0.01570514403283596, -0.024450596421957016, -0.01740851253271103, -0.04597799852490425, -0.05678189918398857, 0.025319289416074753, 0.018274866044521332, -0.0020369412377476692, 0.04248415306210518, -0.028116226196289062, -0.031016206368803978, -0.015416324138641357, -0.059923071414232254, 0.026703830808401108, 0.056903280317783356, 0.055400554090738297, -0.00407870439812541, 0.034976448863744736, -0.036962322890758514, 0.031171996146440506, 0.007813612930476665, -0.05068710446357727, -0.047877877950668335, -0.04956144839525223, 0.027350211516022682, 0.024197835475206375, 0.04425651952624321, 0.032536305487155914, 0.014440270140767097, -0.004659187514334917, 0.028966765850782394, 0.0026005033869296312, 0.04233970120549202, 0.021596932783722878, 0.004198976792395115, -0.05520389601588249, -0.0240950807929039, 0.05831857770681381, -0.059567324817180634, -0.002181583782657981, -0.022840484976768494, -0.04988768696784973, 0.03855396807193756, -0.05883057042956352, -0.02200763113796711, -0.010078917257487774, 0.02184200845658779, 0.06262431293725967, 0.014164526015520096, 0.0036058039404451847, 0.04676957055926323, 0.018492018803954124, 0.014326813630759716, -0.008757409639656544, -0.005897491704672575, 0.062256138771772385, 0.0018353598425164819, 0.0404796302318573, 0.034297361969947815, -0.010491249151527882, 0.013277948834002018, -0.03089669533073902, 0.03514382988214493, -0.04542100057005882, -0.28825441002845764, 0.057115983217954636, -0.00803972128778696, -0.057276651263237, 0.03469882905483246, -0.02227674424648285, -0.013020913116633892, -0.022275881841778755, -0.021937362849712372, -0.003956805448979139, -0.011728044599294662, -0.027751965448260307, -0.03160158172249794, 0.026934055611491203, 0.02052990533411503, 0.013109522871673107, 0.0047912332229316235, -0.05454359948635101, 0.029448477551341057, 0.034883297979831696, -0.006390672642737627, -0.022612664848566055, -0.006304155569523573, 0.027026820927858353, 0.00732090137898922, 0.022001035511493683, -0.0824722945690155, 0.06789819896221161, -0.054962292313575745, -0.0335102416574955, 0.021582869812846184, -0.034806180745363235, -0.009980713948607445, 0.011646931059658527, -0.016667991876602173, -0.011832419782876968, 0.04143273085355759, 0.006519588176161051, 0.006521111354231834, 0.007880161516368389, -0.03197142854332924, -0.02345121279358864, -0.014784803614020348, -0.020178060978651047, 0.08103791624307632, 0.004281035158783197, -0.09237265586853027, -0.010883849114179611, 0.0015498603461310267, 0.07203123718500137, -0.055231112986803055, -0.015407486818730831, -0.02263982780277729, 0.034838415682315826, -0.028898268938064575, -0.020181922242045403, -0.030319197103381157, 0.0044883908703923225, -0.04875417798757553, -0.012269713915884495, -0.012666883878409863, -0.03208965063095093, -0.005719535052776337, -0.06359776109457016, 0.005241316743195057, -0.05163206532597542, -0.05648422986268997, -0.027651401236653328, 0.0549941323697567, 0.037304531782865524, -0.029824264347553253, 0.018500428646802902, -0.01248040422797203, -0.10407209396362305, -0.0018462911248207092, -0.05024905502796173, -0.0001787431538105011, 0.00026031845482066274, -0.0024190410040318966, 0.04073122516274452, -0.05317503213882446, -0.0643712505698204, 0.014757341705262661, 0.002633369294926524, 0.012186861597001553, -0.002248632488772273, 0.03395375609397888, -0.03122883476316929, -0.03344740718603134, 0.008418034762144089, 0.06264668703079224, -0.039310868829488754, -0.020030660554766655, -0.006154445465654135, -0.02733016386628151, 0.019704202190041542, 0.015657152980566025, 0.028503527864813805, 0.00407069968059659, 0.07363840937614441, 0.0346590094268322, -0.04708235338330269, -0.004324342589825392, -0.02835165336728096, 0.008715329691767693, -0.028471121564507484, -0.032027408480644226, -0.0035083622206002474, 0.01575276255607605, 0.02223631739616394, -0.01923675648868084, -0.018462788313627243, 0.02033628523349762, -0.03448764607310295, -0.023887231945991516, -0.006334216799587011, 0.03535386174917221, 0.0002630246162880212, 0.021501461043953896, -0.02381209097802639, -0.06497814506292343, 0.02065671980381012, 0.04963637888431549, -0.015130316838622093, -0.03271934390068054, -0.042621828615665436, -0.006766040343791246, -0.03490545600652695, 0.01980784721672535, 0.017109612002968788, -0.03605317696928978, 0.018289685249328613, 0.01239290926605463, -0.04608886316418648, 0.03165862709283829, -0.024414338171482086, -0.03095034696161747, -0.03556356951594353, 0.02529793046414852, 0.03229375183582306, -0.027195272967219353, 0.009608791209757328, -0.005883187521249056, 0.038703553378582, 0.03981888294219971, 0.02662857249379158, 0.01692919246852398, 0.02432589791715145, -0.007872378453612328, -0.012878252193331718, -0.012383393943309784, -0.026008758693933487, 0.010099911130964756, -0.021770332008600235, -0.016747239977121353, -0.022504093125462532, 0.04113093763589859, -0.008742942474782467, -0.013074032962322235, -0.03277548402547836, 0.030254632234573364, -0.07149060815572739, 0.012452961876988411, 0.02527591772377491, -0.003293702146038413, 0.049385663121938705, -0.011508378200232983, 0.01217320840805769, -0.012659274972975254, -0.01760864444077015, 0.036678459495306015, 0.04024716466665268, -0.020358776673674583, -0.003670297097414732, -0.00825406238436699, 0.013620301149785519, -0.0022075027227401733, 0.03123149648308754, 0.0024705075193196535, 0.010509178042411804, -0.003228131914511323, -0.015572192147374153, 0.005597244948148727, -0.002103450708091259, 0.044661447405815125, 0.03055400215089321, -0.007404066156595945, 0.015012968331575394, -0.007085723336786032, 0.02007170207798481, -0.023295961320400238, 0.020120032131671906, -0.02966470643877983, 0.013310499489307404, -0.024398518726229668, -0.06561433523893356, 0.045293450355529785, 0.003405362367630005, 0.008413718082010746, 0.009395282715559006, -0.03570673614740372, -0.014224297367036343, -0.018742550164461136, 0.04356606677174568, 0.05309555307030678, -0.059125933796167374, -0.022382827475667, -0.013656921684741974, -0.01640290766954422, -0.0088717145845294, 0.01025939080864191, -0.0606963224709034, -0.03198903053998947, -0.012714151293039322, -0.009852242656052113, -0.022671721875667572, -0.056054092943668365, -0.017480304464697838, 0.0009534263517707586, 0.004424790386110544, 0.019081415608525276, 0.0009642551303841174, 0.01318440679460764, -0.021042896434664726, -0.01278134435415268, 0.03026656061410904, -0.007145628798753023, -0.01762445457279682, 0.009421191178262234, -0.008621588349342346, 0.02015574462711811, -0.02892741933465004, 0.01640895940363407, 0.021631337702274323, -0.00620452594012022, 0.02818114683032036, -0.06502571702003479, 0.004797185305505991, -0.006533466745167971, 0.037726834416389465, 0.002623794600367546, 0.016594575718045235, -0.029202289879322052, -0.019720451906323433, -0.009699725545942783, -0.014133277349174023, -0.009709288366138935, 0.006258352193981409, -0.002527958247810602, 0.045740433037281036, 0.004378544632345438, 0.026968440040946007, 0.010208364576101303, -0.035376183688640594, 0.04101031273603439, -0.04653817415237427, -0.03882639482617378, -0.028693048283457756, -0.050213973969221115, 0.005817745812237263, 0.016762662678956985, 0.005094648338854313, -0.05190328508615494, 0.07019703835248947, 0.02977176196873188, 0.00723884254693985, 0.07049540430307388, 0.000045405744458548725, 0.02310164086520672, -0.03622199594974518, -0.019045162945985794, -0.09243521839380264, -0.02338569425046444, 0.04821376875042915, -0.01954563893377781, -0.009797397069633007, 0.001315814326517284, -0.03294800594449043, 0.030344484373927116, -0.06267698109149933, -0.03710281103849411, 0.03847907483577728, -0.021902723237872124, 0.0053128753788769245, -0.001969824079424143, -0.030614381656050682, 0.026282982900738716, 0.03857055678963661, -0.029352592304348946, -0.031133020296692848, -0.028901074081659317, 0.04635244980454445, -0.017623795196413994, 0.019201766699552536, -0.011629658751189709, -0.028476210311055183, 0.08301905542612076, 0.006201277021318674, 0.012438389472663403, 0.026880815625190735, 0.017451196908950806, 0.03234924376010895, 0.043570078909397125, 0.009308287873864174, -0.0005549830384552479, 0.04203030839562416, 0.015276326797902584, -0.04874647408723831, 0.047177720814943314, 0.014977253042161465, -0.005807141773402691, -0.02905166707932949, 0.06942013651132584, 0.024768920615315437, -0.05358586832880974, -0.0391429141163826, 0.0345277413725853, -0.037112921476364136, -0.026131531223654747, -0.05054027959704399, 0.019413717091083527, -0.036697618663311005, 0.04330810531973839, -0.026457639411091805, -0.009014412760734558, 0.06800441443920135, -0.0024122537579387426, 0.0030049674678593874, 0.017247511073946953, 0.0730578675866127, 0.09380795806646347, 0.041974980384111404, 0.01000198908150196, 0.07301843911409378, -0.01846480555832386, -0.03805343434214592, 0.0009047124185599387, -0.026279054582118988, -0.0288045946508646, -0.0029141840059310198, 0.01410193182528019, 0.04867250844836235, 0.004295463673770428, 0.09127537161111832, -0.02169550210237503, -0.0064872815273702145, -0.02196614071726799, -0.0007893980364315212, 0.0020581791177392006, 0.056173499673604965, 0.014174575917422771, 0.03646257892251015, -0.04834099858999252, -0.03575132414698601, 0.02777927927672863, -0.023152006790041924, -0.019109828397631645, 0.028274785727262497, 0.006296390667557716, -0.0030943620949983597, 0.019605232402682304, 0.05997103080153465, 0.09082409739494324, -0.04883924499154091, -0.030397849157452583, -0.012767709791660309, 0.00461155828088522, 0.007583084516227245, 0.013380116783082485, -0.038847051560878754, -0.00281164632178843, 0.0017665547784417868, -0.05009885132312775, -0.019994767382740974, -0.01761651784181595, -0.01482367143034935, 0.024833979085087776, -0.04540979862213135, -0.007114969193935394, -0.00877821072936058, -0.014192338101565838, -0.026778241619467735, -0.04740529507398605, -0.024693597108125687, -0.02153034135699272, -0.08490030467510223, -0.03495149314403534, -0.00791457761079073, 0.007647517137229443, -0.04216572642326355, -0.027288302779197693, -0.018841149285435677, -0.025162210687994957, 0.03779667988419533, -0.0656733438372612, -0.009880331344902515, 0.016941146925091743, 0.033192068338394165, -0.029149960726499557, 0.016132310032844543, 0.07261382043361664, 0.0063256146386265755, -0.004623470362275839, -0.01881442405283451, 0.029363485053181648, 0.03958374261856079, 0.0017736117588356137, 0.02155507728457451, -0.08056662231683731, 0.012379290536046028, 0.027099233120679855, 0.0011531927157193422, -0.08161564916372299, 0.0031447240617126226, 0.06279335170984268, 0.010595650412142277, 0.045497529208660126, 0.005552204791456461, -0.010933035984635353, -0.013560134917497635, -0.01712823286652565, -0.014787918888032436, 0.014653612859547138, 0.029797682538628578, -0.0095699867233634, 0.06334207952022552, 0.0221953634172678, 0.0015889299102127552, -0.017842205241322517, -0.018095901235938072, -0.010563116520643234, 0.010606594383716583, -0.03639616444706917, -0.03817468136548996, -0.05226018652319908, -0.0916338637471199, -0.020519401878118515, 0.016039758920669556, -0.03238875791430473, -0.02115621790289879, 0.0053904009982943535, 0.021599439904093742, -0.015319516882300377, 0.020749015733599663, -0.03775100037455559, 0.013928811997175217, -0.007431659381836653, -0.016935385763645172, -0.009767686016857624, 0.019366664811968803, 0.008514108136296272, -0.0008080286206677556, 0.01019395049661398, -0.036507830023765564, -0.012764434330165386, -0.029480908066034317, 0.05032140389084816, 0.03128296509385109, 0.022254830226302147, 0.011461973190307617 ]
[ -0.034972451627254486, -0.044855937361717224, -0.026482297107577324, -0.028920872136950493, 0.0883919820189476, -0.05566411465406418, -0.060629963874816895, 0.03236148878931999, -0.016699232161045074, 0.002881040330976248, -0.0026037446223199368, -0.06938933581113815, -0.02594374679028988, -0.00024264634703285992, 0.08792448043823242, 0.0138205261901021, -0.02594645880162716, -0.060653891414403915, -0.023462478071451187, 0.047811973839998245, -0.018574798479676247, -0.052613504230976105, -0.023749029263854027, -0.06101129576563835, 0.016047818586230278, 0.01422340702265501, 0.031112417578697205, -0.0404677651822567, -0.017573239281773567, -0.19387730956077576, 0.011657025665044785, -0.012960055842995644, 0.022901661694049835, -0.012669535353779793, -0.02030562236905098, 0.015242970548570156, 0.03339974954724312, -0.0011554793454706669, 0.024499399587512016, 0.02786916121840477, 0.011886811815202236, 0.006067382171750069, -0.06827110052108765, 0.005763115826994181, 0.03551139310002327, 0.028078006580471992, -0.00933370366692543, -0.016837432980537415, -0.03107963129878044, 0.017047695815563202, -0.04708225652575493, -0.02168678119778633, 0.007685238961130381, 0.0004310669028200209, 0.012584378942847252, 0.011225235648453236, 0.02030482143163681, 0.06003890559077263, 0.03772420808672905, 0.015871047973632812, 0.018370140343904495, 0.01874203234910965, -0.13195154070854187, 0.06955277919769287, -0.023333514109253883, 0.030253766104578972, -0.0641554594039917, -0.013279654085636139, -0.011727258563041687, 0.06261695176362991, 0.00923764705657959, -0.01971297897398472, -0.026928965002298355, 0.04641232639551163, -0.010892273858189583, 0.02553088404238224, -0.013534476980566978, 0.02324548363685608, 0.0382097102701664, -0.04150467365980148, -0.04303603991866112, 0.026166018098592758, -0.022168489173054695, -0.022968407720327377, -0.03892359510064125, 0.049043864011764526, -0.030444012954831123, 0.056706540286540985, -0.011721503920853138, 0.043767187744379044, 0.007036447990685701, 0.025081176310777664, 0.04606696218252182, 0.03626864403486252, -0.08458466082811356, 0.0006870066863484681, 0.017717137932777405, 0.007811596617102623, 0.004527229815721512, 0.3943787217140198, -0.003591274144127965, -0.01084859762340784, 0.04571257159113884, 0.061231132596731186, 0.030692633241415024, -0.022388339042663574, -0.022196169942617416, -0.05372035130858421, 0.03254241868853569, -0.021140627562999725, 0.016865799203515053, -0.05719488859176636, 0.0543302483856678, -0.10934785008430481, 0.019125932827591896, -0.0033611536491662264, 0.005807913839817047, 0.02134767360985279, -0.004173780791461468, 0.021735860034823418, -0.022536875680088997, -0.004449931904673576, 0.043061912059783936, 0.0007843326311558485, 0.04159454256296158, 0.036459486931562424, 0.03479261323809624, 0.04311824589967728, 0.03197284787893295, 0.028037860989570618, 0.05470627173781395, 0.014407649636268616, -0.0731896162033081, 0.02786506898701191, -0.033506568521261215, 0.016858045011758804, 0.024095838889479637, -0.03717093542218208, -0.015164530836045742, 0.03959585726261139, -0.02400585450232029, 0.0003001016448251903, 0.023999469354748726, 0.0008186905179172754, -0.02292114868760109, 0.11474542319774628, 0.01652439311146736, -0.028341680765151978, -0.02253773994743824, -0.04667024686932564, 0.020002972334623337, 0.0440174899995327, 0.0016124565154314041, -0.06699210405349731, 0.017567962408065796, 0.029924802482128143, 0.09260886162519455, -0.00676844734698534, -0.07815596461296082, 0.0207024235278368, -0.023203125223517418, -0.0496145524084568, -0.03518065810203552, 0.05276300385594368, 0.04239148646593094, -0.11946025490760803, -0.003973443526774645, 0.027019593864679337, 0.0004184068529866636, -0.04301653429865837, 0.011797802522778511, 0.0133914053440094, -0.01793544553220272, -0.0009165715309791267, 0.04465591162443161, -0.020284907892346382, -0.027483787387609482, -0.007532554678618908, 0.03252478688955307, 0.01880303956568241, -0.006657118443399668, -0.0029927832074463367, -0.030484355986118317, 0.008118108846247196, -0.09307017177343369, -0.047259315848350525, -0.06703918427228928, 0.005541591439396143, -0.050648875534534454, -0.02809014357626438, -0.021185854449868202, -0.00618028873577714, -0.039618588984012604, 0.07840868830680847, -0.02156880684196949, 0.0075036296620965, 0.01643560826778412, 0.017866021022200584, -0.019540119916200638, -0.025699647143483162, 0.009807944297790527, 0.030206385999917984, -0.01115887425839901, 0.011959715746343136, -0.06964041292667389, 0.035908445715904236, 0.06744151562452316, -0.046135853976011276, 0.046697475016117096, 0.027872536331415176, -0.02611483633518219, 0.0011803766246885061, -0.012439551763236523, 0.02172364853322506, -0.03153911605477333, -0.014524220488965511, 0.00966211874037981, -0.013025566004216671, 0.0026123037096112967, 0.057534147053956985, -0.020015740767121315, -0.047920797020196915, -0.05112331360578537, -0.3587568700313568, -0.035541340708732605, -0.010437071323394775, -0.011217350140213966, 0.026917941868305206, -0.059779006987810135, 0.0049619064666330814, -0.0202803835272789, 0.019223621115088463, 0.05207456275820732, 0.13033734261989594, 0.010220395401120186, 0.007091046776622534, -0.10148154199123383, 0.009250817820429802, 0.04494084045290947, -0.013825655914843082, 0.0028795127291232347, -0.0370870940387249, 0.008476834744215012, 0.009156996384263039, -0.04537011310458183, -0.010613104328513145, -0.03566330298781395, -0.0008944861474446952, -0.004641507286578417, 0.11653023958206177, -0.005028477869927883, 0.07877292484045029, -0.06348534673452377, 0.006933919154107571, 0.010573833249509335, -0.04210735484957695, -0.07568752020597458, 0.004477169364690781, -0.00638487096875906, 0.02977742627263069, 0.04010692611336708, -0.024197405204176903, -0.025139253586530685, -0.04258368909358978, -0.013839111663401127, -0.040517911314964294, -0.07138831168413162, -0.03929890692234039, 0.033628758043050766, -0.04180387780070305, -0.014818445779383183, -0.005432735662907362, 0.07113216072320938, 0.012940368615090847, 0.02104114182293415, 0.008367329835891724, 0.04757371544837952, 0.03037811443209648, -0.037451013922691345, -0.09143626689910889, 0.0035126267466694117, 0.007491068448871374, 0.0001453664299333468, 0.011645671911537647, 0.008854350075125694, 0.03383098542690277, -0.0787554457783699, 0.024318739771842957, 0.02563244104385376, -0.0006369237671606243, 0.0010184966959059238, 0.040535058826208115, -0.02106042206287384, -0.015272310934960842, 0.1182742714881897, 0.0051529924385249615, 0.04026636853814125, 0.028207791969180107, 0.05430477112531662, -0.009132085368037224, 0.013794041238725185, 0.05403966084122658, 0.013555674813687801, 0.04831049591302872, -0.028585365042090416, 0.05267028138041496, -0.025389470160007477, 0.006913820281624794, 0.06301016360521317, -0.004031185992062092, -0.06425246596336365, 0.04561784118413925, 0.03737754747271538, -0.015592741779983044, -0.007878057658672333, -0.03001059778034687, -0.07660675048828125, 0.07565022259950638, -0.010123197920620441, -0.26451924443244934, 0.03400222584605217, 0.04108129069209099, 0.0405600406229496, -0.0278196819126606, -0.03498729690909386, 0.034046899527311325, -0.03059535101056099, 0.008410020731389523, 0.0036055250093340874, 0.005220610648393631, 0.05300357565283775, -0.007914582267403603, 0.0030441961716860533, 0.0007983276736922562, 0.009787211194634438, 0.03203630447387695, 0.03131778538227081, 0.0056019132025539875, -0.006788682658225298, 0.04092034697532654, -0.03991706296801567, 0.15720325708389282, 0.05550815537571907, 0.017467614263296127, 0.06703978776931763, -0.02240109071135521, -0.005796471610665321, 0.05032123252749443, 0.010226638987660408, -0.022149600088596344, 0.047635357826948166, 0.0026278295554220676, 0.02608969248831272, 0.04383376985788345, -0.047428667545318604, -0.04567643627524376, 0.04259949550032616, 0.024061348289251328, -0.041795749217271805, 0.01171387080103159, 0.019794246181845665, -0.05629229173064232, 0.02807643823325634, 0.050654832273721695, -0.005203321110457182, 0.013782177120447159, -0.017726073041558266, -0.06077156215906143, -0.009165056981146336, -0.04256794974207878, -0.03727717697620392, -0.002920733066275716, 0.0009160171030089259, 0.005429391283541918, 0.07622869312763214, 0.011653152294456959, -0.026002034544944763, 0.04469101503491402, -0.00887025985866785, -0.014274829998612404, -0.06181073933839798, 0.09521100670099258, -0.026856670156121254, 0.005707086529582739 ]
[ 0.027031708508729935, 0.022528525441884995, -0.011728664860129356, 0.03367774933576584, 0.014713916927576065, -0.01731139048933983, 0.00000819025717646582, 0.01729590632021427, -0.03450027480721474, -0.03601096570491791, -0.018922658637166023, 0.00826833676546812, 0.014009800739586353, 0.004891321063041687, 0.023533189669251442, -0.002289604162797332, -0.009859299287199974, 0.0070275915786623955, 0.024244584143161774, -0.014946670271456242, -0.014655344188213348, -0.04162872955203056, 0.016662150621414185, 0.012475250288844109, -0.00285914889536798, 0.040269725024700165, -0.006706351414322853, 0.01840866543352604, 0.03157617524266243, -0.13029778003692627, -0.0005473923520185053, -0.023205041885375977, -0.01827913336455822, -0.014054276049137115, -0.00016335785039700568, -0.01319477055221796, 0.018978530541062355, -0.0020487543661147356, -0.03957177698612213, 0.03746999055147171, 0.05157380551099777, -0.027178140357136726, 0.0024413263890892267, -0.0012012585066258907, -0.01656324975192547, 0.012486565858125687, -0.021804243326187134, -0.023112891241908073, 0.0003887337807100266, -0.021629754453897476, -0.04699213430285454, -0.021822672337293625, -0.019757073372602463, 0.021283190697431564, -0.002877607475966215, -0.01746729388833046, -0.02478376403450966, -0.010539769195020199, 0.04113677889108658, -0.01363863330334425, 0.016602598130702972, -0.003522909013554454, -0.030373454093933105, -0.026326335966587067, -0.013356980867683887, -0.018082071095705032, -0.017023060470819473, 0.02447771653532982, 0.01567859575152397, 0.018915338441729546, -0.00937153585255146, 0.06383311003446579, -0.06157476082444191, -0.012618963606655598, -0.02226821891963482, -0.01599062792956829, 0.04465923830866814, -0.011175421997904778, -0.01878284104168415, -0.004263713490217924, 0.0031617076601833105, 0.02210092544555664, -0.02154700458049774, 0.021249016746878624, -0.020851213485002518, -0.014851730316877365, -0.00022299488773569465, -0.017277611419558525, 0.005379151552915573, 0.004503206815570593, -0.03688645735383034, 0.006249445024877787, -0.01981225237250328, 0.0072058215737342834, -0.08176536858081818, 0.01796654239296913, 0.028947321698069572, -0.020335104316473007, -0.013179154135286808, 0.8362346291542053, -0.004862396512180567, -0.03242108225822449, 0.022918250411748886, 0.025282010436058044, 0.023755092173814774, 0.00020112967467866838, 0.015524087473750114, 0.032833296805620193, 0.01138279214501381, -0.030881114304065704, -0.013913378119468689, 0.03341538831591606, 0.026969924569129944, 0.02180441841483116, 0.013429727405309677, 0.02102181687951088, -0.024806516245007515, 0.0022136764600872993, -0.009744320996105671, 0.04543668404221535, -0.02554829604923725, 0.02555258758366108, 0.018483435735106468, 0.021681293845176697, 0.024805832654237747, -0.14734812080860138, -0.015450808219611645, -6.967251260923672e-33, 0.044215574860572815, -0.012261503376066685, 0.015436206012964249, 0.011441206559538841, 0.022176222875714302, -0.010953166522085667, 0.009612811729311943, -0.02945268340408802, -0.026904407888650894, -0.021511157974600792, -0.006676597986370325, -0.004995214752852917, -0.00876642856746912, 0.008815755136311054, 0.004370975773781538, -0.007249473128467798, 0.011309422552585602, 0.014890073798596859, -0.0349653996527195, 0.014403245411813259, 0.013288957066833973, 0.018076688051223755, -0.0019789808429777622, 0.037701286375522614, -0.009967504069209099, 0.04202111437916756, 0.009461108595132828, 0.02139134518802166, -0.015178875997662544, -0.03548974171280861, -0.060370348393917084, 0.00687574315816164, 0.016111278906464577, -0.03752203285694122, 0.029778391122817993, -0.06694022566080093, -0.04566983878612518, -0.010519041679799557, -0.037585631012916565, -0.019427651539444923, -0.03729744255542755, 0.014815155416727066, -0.030048774555325508, -0.04385094344615936, -0.0557842031121254, 0.004069704562425613, -0.025224778801202774, 0.03917552903294563, -0.000591033895034343, -0.0018607351230457425, 0.020509252324700356, 0.018537912517786026, -0.021396610885858536, 0.01140557136386633, -0.021570749580860138, 0.00813017226755619, 0.016811134293675423, 0.012400759384036064, 0.009502977132797241, -0.01624620519578457, 0.02549014613032341, 0.013164986856281757, -0.007644901052117348, 0.036469146609306335, 0.034139327704906464, -0.0023545946460217237, 0.03573019057512283, 0.0231768935918808, 0.013850649818778038, -0.011101650074124336, -0.07183041423559189, 0.011965389363467693, -0.03742430359125137, -0.02755463309586048, 0.03935942426323891, -0.047336701303720474, 0.009756449609994888, -0.023307055234909058, 0.02049277350306511, 0.06964069604873657, -0.00610792962834239, -0.036307401955127716, 0.025789625942707062, -0.035520222038030624, -0.00866655446588993, -0.006757835857570171, 0.037429239600896835, -0.004357610363513231, -0.0024181941989809275, -0.003588343970477581, 0.03276018798351288, 0.027648530900478363, -0.002972987713292241, -0.02478751726448536, -0.02615402825176716, 7.512051750227523e-33, -0.006970229558646679, 0.01859034225344658, -0.016775449737906456, 0.013684134930372238, 0.049657970666885376, 0.0036576520651578903, 0.020835336297750473, 0.03230394050478935, -0.019102493301033974, 0.050299737602472305, -0.009128803387284279, -0.040461547672748566, -0.05030972138047218, 0.015954095870256424, 0.07561417669057846, -0.008900231681764126, 0.006075000856071711, -0.049145352095365524, 0.02007499895989895, 0.00766349770128727, -0.026635773479938507, 0.011481267400085926, -0.015890641137957573, -0.008688039146363735, 0.04420647770166397, 0.02649671956896782, -0.004166050348430872, 0.0016255687223747373, -0.031437214463949203, 0.015172144398093224, 0.004496387206017971, -0.025463080033659935, -0.012349339202046394, -0.02223718725144863, 0.013531627133488655, 0.009225067682564259, 0.01557573676109314, -0.011476853862404823, 0.009102722629904747, 0.0044005573727190495, 0.025338061153888702, 0.0026717563159763813, -0.027226030826568604, 0.03747351095080376, 0.0004769840161316097, 0.04864291474223137, -0.0019222787814214826, 0.013679507188498974, 0.0009722828399389982, 0.026701975613832474, -0.017730750143527985, 0.01181083731353283, 0.021152209490537643, 0.049467310309410095, 0.007227640133351088, -0.06494652479887009, 0.022954357787966728, 0.0668555423617363, -0.012007953599095345, -0.0028776901308447123, -0.03931931406259537, -0.04300003498792648, -0.01592688262462616, 0.00030607127700932324, -0.018048008903861046, 0.013775324448943138, -0.014376181177794933, 0.002219086280092597, 0.006748405285179615, -0.024760490283370018, 0.015863070264458656, -0.019001659005880356, -0.003741398686543107, 0.0337296687066555, 0.018618712201714516, -0.02180308662354946, -0.022326452657580376, 0.027100402861833572, -0.040894947946071625, 0.021053750067949295, 0.0109266247600317, 0.01836738921701908, 0.0016358935972675681, -0.0035515697672963142, 0.008891426958143711, 0.0028813788667321205, -0.006476862356066704, -0.0014495874056592584, -0.003559370059520006, 0.00034557911567389965, 0.018475312739610672, -0.030707495287060738, -0.018699882552027702, 0.03258249908685684, -0.007436172105371952, -1.2722117581631665e-8, -0.03425653651356697, -0.0077893780544400215, -0.023407772183418274, 0.006701050791889429, 0.016623277217149734, 0.03760455176234245, -0.025523260235786438, 0.024543175473809242, -0.011283914558589458, 0.03663629665970802, 0.058815035969018936, -0.0319775715470314, 0.02547403983771801, -0.015501368790864944, 0.019315116107463837, -0.04132211580872536, -0.0032988530583679676, -0.016700172796845436, 0.024739840999245644, 0.00008736849849810824, 0.04793418571352959, 0.04338109493255615, -0.011668870225548744, 0.024240029975771904, 0.009006164036691189, -0.0156734436750412, 0.04321964830160141, -0.08940989524126053, -0.03197434917092323, -0.03172535449266434, -0.01825275830924511, -0.014273886568844318, -0.008678920567035675, 0.0468449592590332, -0.019942142069339752, -0.008138364180922508, 0.0092766797170043, 0.047314196825027466, 0.01629219576716423, 0.01981624960899353, -0.01684226468205452, 0.039641909301280975, -0.016407178714871407, -0.04608079791069031, -0.034159108996391296, 0.029994092881679535, -0.035471782088279724, 0.008256359025835991, 0.0331043004989624, -0.007053860928863287, -0.01658898964524269, -0.0026296989526599646, 0.039726372808218, 0.043513745069503784, 0.017125362530350685, -0.005855492781847715, 0.01844368502497673, -0.05177279934287071, -0.033047866076231, -0.027701569721102715, 0.028106845915317535, 0.029788734391331673, -0.011267326772212982, -0.024530893191695213 ]
interactive-uk-charts-quickgraph-neo4j-streamlit
https://markhneedham.com/blog/2020/01/16/interactive-uk-charts-quickgraph-neo4j-streamlit
false
2020-01-28 00:21:00
Neo4j: Performing a database dump within a Docker container
[ "docker", "neo4j" ]
[ "QuickGraph" ]
Before the release of https://neo4j.com/release-notes/neo4j-4-0-0/[Neo4j 4.0^], https://serverfault.com/questions/835092/how-do-you-perform-a-dump-of-a-neo4j-database-within-a-docker-container[taking a dump of a database running within a Docker container^] was a tricky affair. We'd need to stop the container and remove it, run the container again in bash mode, and finally take a dump of the database. With 4.0 things are simpler. image::{{<siteurl>}}/uploads/2020/01/neo4j-docker.png[title="Neo4j on Docker"] We'll be using the following Docker Compose configuration in this blog post: .Dockerfile [source,yaml] ---- version: '3.7' services: neo4j: image: neo4j:4.0.0-enterprise container_name: "quickgraph-aus-open" volumes: - ./plugins:/plugins - ./data:/data - ./import:/var/lib/neo4j/import ports: - "7474:7474" - "7687:7687" environment: - "NEO4J_ACCEPT_LICENSE_AGREEMENT=yes" - "NEO4J_AUTH=neo4j/neo" ---- Once we’ve created that file we need to open a terminal session where that file lives and then run `docker-compose up` to spin up Neo4j. When that's finished running, we can then run the following command to check on the status of our container: [source,bash] ---- $ docker ps CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES 77b91b30aa88 neo4j:4.0.0-enterprise "/sbin/tini -g -- /d…" 8 seconds ago Up 6 seconds 0.0.0.0:7474->7474/tcp, 7473/tcp, 0.0.0.0:7687->7687/tcp quickgraph-aus-open ---- Let's check which databases our Neo4j instance contains by running the https://neo4j.com/docs/operations-manual/current/manage-databases/queries/#manage-databases-queries-stop-database[`SHOW DATABASES`^] command: [source,bash] ---- $ docker exec -it quickgraph-aus-open cypher-shell -u neo4j -p neo -d system "SHOW DATABASES;" ---- .SHOW DATABASES [opts="header"] |=== | name | address | role | requestedStatus | currentStatus | error | default | "neo4j" | "0.0.0.0:7687" | "standalone" | "online" | "online" | "" | TRUE | "system" | "0.0.0.0:7687" | "standalone" | "online" | "online" | "" | FALSE | "womens" | "0.0.0.0:7687" | "standalone" | "online" | "online" | "" | FALSE |=== We're going to take a dump of the `womens` database using the https://neo4j.com/docs/operations-manual/current/tools/dump-load/[Neo4j Admin dump command^]. We can call that command by running the following: [source, bash] ---- $ docker exec -it quickgraph-aus-open neo4j-admin dump --database=womens --to=/tmp/womens-aus-open.dump The database is in use. Stop database 'womens' and try again. ---- Let's stop that database using the https://neo4j.com/docs/operations-manual/current/manage-databases/queries/#manage-databases-queries-stop-database[`STOP DATABASE`^] command: [source,bash] ---- $ docker exec -it quickgraph-aus-open cypher-shell -u neo4j -p neo -d system "STOP DATABASE womens;" 0 rows available after 268 ms, consumed after another 0 ms ---- And now let's re-run the dump command: [source, bash] ---- $ docker exec -it quickgraph-aus-open neo4j-admin dump --database=womens --to=/tmp/womens-aus-open.dump Done: 75 files, 252.9MiB processed. ---- The dump file is written to the Docker container, so now we need to https://stackoverflow.com/questions/22049212/copying-files-from-docker-container-to-host[copy that file onto the host^]: [source, bash] ---- docker cp quickgraph-aus-open:/tmp/womens-aus-open.dump . ---- And finally let's start our database back up again: [source,bash] ---- $ docker exec -it quickgraph-aus-open cypher-shell -u neo4j -p neo -d system "START DATABASE womens;" 0 rows available after 238 ms, consumed after another 0 ms ---- And we're done!
Learn how to take a dump of a Neo4j database that's running within a Docker container.
uploads/2020/01/neo4j-docker.png
[ -0.013157469220459461, -0.020743418484926224, -0.007788961287587881, 0.038434237241744995, 0.09315226227045059, -0.009366201236844063, 0.011206639930605888, 0.054641176015138626, -0.002817868022248149, -0.022998066619038582, -0.005958116613328457, -0.017892826348543167, -0.07870697975158691, 0.005043147597461939, 0.008435308001935482, 0.03367716446518898, 0.07271796464920044, 0.013395366258919239, 0.021708913147449493, 0.005970928352326155, 0.010555123910307884, 0.044388528913259506, -0.016153043136000633, 0.024277102202177048, 0.02216009795665741, -0.0008705020882189274, -0.0003669075376819819, 0.0026158911641687155, -0.06478788703680038, -0.01599815860390663, 0.033409036695957184, -0.019451497122645378, 0.019220320507884026, -0.0029945867136120796, 0.030494846403598785, 0.007672610692679882, -0.026752419769763947, 0.013600421138107777, -0.015235560946166515, 0.00555101502686739, -0.08368226140737534, 0.02501838281750679, 0.01362075936049223, 0.011939139105379581, -0.03885222226381302, 0.012396888807415962, -0.02935059182345867, 0.02477942779660225, 0.03493271395564079, 0.0089008379727602, -0.09444364160299301, 0.023362968116998672, -0.04215309023857117, -0.0018517839489504695, 0.012522048316895962, 0.0398581363260746, 0.007216583006083965, -0.07268931716680527, 0.030318809673190117, -0.026738416403532028, 0.0038318338338285685, -0.015371470712125301, 0.006384821143001318, 0.020991036668419838, 0.02382771112024784, -0.04265319183468819, 0.003279889700934291, 0.056627057492733, -0.045424509793519974, 0.010087233036756516, 0.028196223080158234, 0.03364868089556694, -0.030467187985777855, -0.023816680535674095, 0.02137104421854019, -0.05061628296971321, 0.0017667269567027688, 0.044030528515577316, 0.028438523411750793, 0.06276679039001465, -0.02739717625081539, 0.006279900670051575, 0.014521967619657516, 0.021075159311294556, -0.007018845994025469, -0.05129075422883034, -0.04087398573756218, -0.008084410801529884, -0.06059512123465538, 0.03449273481965065, 0.03409481421113014, -0.04514067992568016, 0.02324732020497322, -0.00040845622424967587, -0.026351584121584892, 0.04222283884882927, -0.009002847597002983, 0.024488773196935654, 0.04056059569120407, 0.0012950770324096084, -0.0325009860098362, -0.013346871361136436, -0.012074664235115051, 0.02420690841972828, -0.06755167245864868, -0.03440141677856445, -0.04028790816664696, -0.03189457580447197, -0.009473825804889202, -0.00266039720736444, 0.0020782153587788343, 0.013053281232714653, -0.023833829909563065, 0.018765036016702652, -0.09839693456888199, 0.08168348670005798, 0.02043951116502285, -0.027340296655893326, -0.01602039858698845, -0.004155084956437349, 0.04329029470682144, 0.04980188608169556, 0.006567039061337709, 0.05408259853720665, -0.015155401080846786, 0.02393265813589096, 0.00027230309206061065, 0.04341250658035278, -0.02853209711611271, -0.06896910816431046, -0.018298864364624023, 0.057945944368839264, 0.005489114671945572, 0.02428477257490158, -0.021529804915189743, -0.03086438775062561, -0.007945375517010689, 0.01502896100282669, 0.06833034008741379, 0.033363182097673416, -0.0002097201650030911, -0.04931322857737541, 0.026298070326447487, 0.01164573710411787, 0.02393999509513378, 0.01674773171544075, -0.011043921113014221, -0.051671285182237625, -0.04642511531710625, 0.017168384045362473, 0.009006522595882416, 0.026586325839161873, 0.057305995374917984, -0.0372382216155529, 0.02117147482931614, 0.10346328467130661, 0.04249173030257225, 0.015336858108639717, -0.025158144533634186, 0.018608855083584785, 0.044307414442300797, 0.0365656353533268, 0.013578224927186966, 0.04577341303229332, 0.015499678440392017, -0.036049261689186096, -0.028541652485728264, 0.056448422372341156, 0.009239655919373035, 0.007373057771474123, -0.04436211660504341, -0.0742662325501442, 0.07020443677902222, -0.050800833851099014, -0.0015099708689376712, 0.05368269607424736, 0.06601734459400177, 0.003653124440461397, 0.014009003527462482, -0.0035798922181129456, -0.079879030585289, 0.06455659866333008, -0.008395155891776085, 0.02600247412919998, 0.0008533512591384351, 0.00040044967317953706, 0.05572115629911423, 0.03245631977915764, 0.018520906567573547, 0.032530542463064194, -0.08422829210758209, -0.10041365772485733, -0.01285703293979168, -0.004456622526049614, 0.04577840492129326, -0.020518342033028603, -0.011358123272657394, 0.06158891320228577, -0.0019996818155050278, 0.030151162296533585, 0.014833604916930199, 0.007997940294444561, 0.03158336505293846, -0.07622080296278, -0.0686127319931984, 0.06287601590156555, 0.025506969541311264, -0.04710141196846962, -0.06786806136369705, 0.026851193979382515, -0.03741984814405441, -0.007624602410942316, 0.012702072970569134, -0.03969881311058998, 0.0769120529294014, 0.018137959763407707, 0.02108311466872692, -0.012324078939855099, 0.0347907729446888, -0.03925827518105507, 0.03491748869419098, 0.012803304009139538, -0.00854357611387968, 0.0156667809933424, 0.013042357750236988, 0.09590411186218262, 0.0565587617456913, -0.018923262134194374, -0.055726196616888046, 0.053632136434316635, 0.039811212569475174, -0.032925885170698166, 0.0028416917193681, -0.023225916549563408, 0.014201662503182888, 0.006541970185935497, -0.027965877205133438, -0.004049746319651604, 0.005225334782153368, -0.01861461251974106, 0.006039257626980543, 0.050293780863285065, -0.05119599029421806, 0.051886361092329025, 0.020901452749967575, -0.016558684408664703, 0.003961269278079271, -0.05671238154172897, -0.06843942403793335, 0.010944840498268604, 0.05107705295085907, -0.0007960547809489071, 0.04648714140057564, -0.04259273409843445, 0.006091086659580469, -0.03638879209756851, -0.03063345141708851, 0.031489159911870956, 0.01800975762307644, 0.06269938498735428, -0.015879279002547264, 0.033640071749687195, -0.05225468799471855, 0.025242099538445473, -0.019128357991576195, -0.03626310080289841, -0.02799813263118267, -0.007528010290116072, 0.033314235508441925, -0.008351157419383526, 0.015899287536740303, -0.011881997808814049, 0.02050473541021347, -0.008601990528404713, 0.024734359234571457, -0.012987390160560608, 0.020727448165416718, 0.007136284839361906, 0.013997886329889297, -0.0343472883105278, -0.026506520807743073, 0.05978669598698616, -0.08233419805765152, -0.00839498732239008, -0.0019646661821752787, -0.07816360145807266, 0.037223733961582184, -0.05538418889045715, -0.03051266260445118, -0.014552340842783451, 0.039371129125356674, 0.02819954976439476, 0.014616463333368301, 0.012655776925384998, 0.05355077236890793, 0.02456061914563179, 0.009652751497924328, 0.005942053161561489, -0.0009923955658450723, 0.04818261042237282, -0.0052105155773460865, 0.033274922519922256, 0.04222855716943741, -0.026132918894290924, -0.003739167470484972, -0.043348561972379684, 0.010448348708450794, -0.02592245116829872, -0.26844313740730286, 0.05566217005252838, -0.026857715100049973, -0.05760878324508667, 0.01157517358660698, -0.025591928511857986, 0.0061500282026827335, -0.020882613956928253, -0.024736393243074417, 0.009550207294523716, -0.03062490187585354, -0.03878548741340637, 0.004696680698543787, 0.047828905284404755, 0.0083122244104743, 0.028564106673002243, 0.03265274316072464, -0.04013380408287048, 0.0006701482925564051, 0.000666056468617171, -0.024785270914435387, -0.025209398940205574, 0.018734687939286232, 0.008340188302099705, 0.020765477791428566, 0.04321672022342682, -0.07329120486974716, 0.048788536339998245, -0.044366929680109024, -0.02277703955769539, 0.0066139777190983295, -0.01431338395923376, -0.003363874973729253, 0.011815287172794342, -0.024418100714683533, -0.0023000917863100767, 0.014316112734377384, -0.011824753135442734, 0.0021081154700368643, 0.0004366485227365047, -0.03783247247338295, -0.05079088360071182, -0.01400019135326147, 0.0006019974825903773, 0.07829182595014572, -0.02409103699028492, -0.07530558854341507, -0.009862941689789295, -0.03339102491736412, 0.0912589505314827, -0.03134441748261452, -0.03588350489735603, -0.03172536939382553, 0.031239666044712067, -0.01891050860285759, -0.017272939905524254, -0.028663285076618195, -0.008999569341540337, -0.04931988567113876, -0.03348499909043312, -0.017903408035635948, -0.03820720687508583, 0.0059806243516504765, -0.045375607907772064, -0.018399052321910858, -0.04919714108109474, -0.06656230986118317, -0.030875422060489655, 0.05804773420095444, 0.020658127963542938, -0.02405906282365322, 0.035095103085041046, -0.019823385402560234, -0.10131781548261642, -0.020341573283076286, -0.03527189791202545, -0.03467005491256714, 0.006429135333746672, -0.014420459046959877, 0.05801640823483467, -0.048347894102334976, -0.036424972116947174, 0.01008690893650055, 0.012726626358926296, 0.008557185530662537, -0.01812209002673626, 0.027826856821775436, 0.0009620432392694056, -0.009939205832779408, 0.009480515494942665, 0.0687788650393486, -0.031836431473493576, -0.025411119684576988, -0.019255513325333595, -0.018105486407876015, 0.03407793119549751, -0.017608890309929848, 0.001515133772045374, 0.01335862372070551, 0.05307256430387497, 0.06432264298200607, -0.028219398111104965, 0.012894008308649063, -0.01869107410311699, -0.031602900475263596, -0.03869229555130005, -0.04744180291891098, 0.011443724855780602, 0.00278922775760293, 0.031306322664022446, 0.00108031474519521, -0.009660269133746624, 0.04218432679772377, -0.0720076784491539, -0.010683262720704079, 0.01018002349883318, 0.006700233556330204, 0.01614263467490673, 0.05177299305796623, -0.013395937159657478, -0.05303329601883888, 0.03222714364528656, 0.025404568761587143, -0.005662472452968359, -0.03909704089164734, -0.027388887479901314, -0.008826788514852524, -0.03321319445967674, 0.006650792434811592, 0.014039620757102966, -0.02141629345715046, 0.04003636911511421, 0.04208919033408165, -0.028477486222982407, 0.048935145139694214, -0.03037526272237301, -0.02395711839199066, -0.05361749231815338, 0.015184883959591389, 0.005188133101910353, -0.036041781306266785, 0.017649460583925247, -0.021203691139817238, 0.03456559404730797, 0.046845581382513046, 0.017984485253691673, 0.026076138019561768, -0.0026343469507992268, 0.043067511171102524, -0.0031842291355133057, -0.007674428168684244, -0.03362307325005531, -0.0007064683013595641, -0.04655103757977486, -0.031496040523052216, -0.009912834502756596, 0.05378858372569084, -0.03190825507044792, -0.029143139719963074, -0.030630914494395256, 0.008939869701862335, -0.06915727257728577, 0.004982879851013422, -0.0038087377324700356, -0.003482842119410634, 0.0591268427670002, -0.005334002897143364, 0.01969761587679386, -0.0054740095511078835, -0.019747670739889145, -0.008359380066394806, 0.018410325050354004, -0.03234798088669777, -0.01290038600564003, 0.0277912225574255, -0.01602972112596035, -0.002561126137152314, 0.03570934757590294, 0.03914301469922066, 0.018582500517368317, -0.001540035125799477, -0.018778976052999496, 0.012521903030574322, 0.010122335515916348, 0.048971232026815414, 0.04402418062090874, -0.022172383964061737, 0.01395469345152378, -0.01803603768348694, -0.0023001593071967363, -0.02661055512726307, 0.005970649421215057, -0.017096523195505142, 0.014671831391751766, -0.013892431743443012, -0.053001176565885544, 0.045257531106472015, 0.013744627125561237, 0.010617946274578571, 0.044107358902692795, 0.00772992055863142, -0.005301217548549175, -0.039483699947595596, 0.045295264571905136, 0.06177356094121933, -0.06208950653672218, -0.034621983766555786, -0.011295105330646038, 0.015492001548409462, 0.009052428416907787, 0.032492611557245255, -0.07740607112646103, -0.013238303363323212, -0.024139609187841415, 0.0211163442581892, -0.03624339401721954, -0.0569407157599926, -0.004287555813789368, 0.010094566270709038, 0.007879773154854774, 0.011092756874859333, 0.02621205523610115, -0.0018623174401000142, -0.027619672939181328, -0.012655634433031082, 0.04421514645218849, -0.03284865990281105, 0.007145783863961697, -0.00034094892907887697, 0.009398597292602062, 0.0077130477875471115, -0.02265186607837677, 0.021106243133544922, 0.0036863062996417284, -0.025702588260173798, -0.0015856079990044236, -0.03598712384700775, 0.023058554157614708, -0.004760725889354944, 0.037268511950969696, -0.00898007582873106, 0.01631946861743927, -0.035532839596271515, -0.004638141021132469, -0.03703794628381729, -0.00899041909724474, 0.012973995879292488, 0.009877649135887623, 0.02262752875685692, 0.03686046600341797, 0.012409805320203304, 0.030895838513970375, -0.01670048013329506, -0.059732239693403244, 0.05954337865114212, -0.07093371450901031, -0.038151565939188004, 0.0026930109597742558, -0.05296396464109421, 0.009749403223395348, 0.023756330832839012, 0.02574305050075054, -0.0354447141289711, 0.041698258370161057, 0.057413287460803986, 0.009261331520974636, 0.015712669119238853, -0.0005996934487484396, 0.03772671893239021, -0.020246950909495354, -0.028640927746891975, -0.0686132162809372, 0.009230010211467743, 0.046198561787605286, -0.016113393008708954, 0.005352803971618414, 0.0008716310258023441, -0.03927028924226761, -0.006050123367458582, -0.051738619804382324, -0.03470972925424576, 0.04246252030134201, -0.04052356258034706, 0.0054102372378110886, -0.004773830994963646, -0.07401106506586075, 0.03195827826857567, 0.04848398268222809, -0.031320229172706604, -0.022821683436632156, -0.01585013046860695, 0.052589960396289825, -0.020786937326192856, 0.03150545433163643, -0.040885813534259796, -0.02437743917107582, 0.09515460580587387, 0.016871320083737373, 0.030857359990477562, 0.0340384840965271, -0.008322947658598423, 0.0257535632699728, 0.014972904697060585, -0.027563447132706642, 0.003149049822241068, 0.018767716363072395, -0.03752709925174713, -0.05627347528934479, 0.034900959581136703, 0.008957570418715477, -0.010003947652876377, -0.030264804139733315, 0.05000321939587593, 0.011224736459553242, -0.03665146976709366, -0.04792036488652229, 0.05769919604063034, -0.0391855426132679, -0.029488470405340195, -0.04938099533319473, 0.004844320937991142, -0.07972004264593124, 0.03611021116375923, -0.00023992106434889138, 0.011362864635884762, 0.06446349620819092, -0.0008723707287572324, -0.008356458507478237, 0.022617269307374954, 0.086079902946949, 0.10156668722629547, 0.022018685936927795, 0.027758507058024406, 0.060233939439058304, -0.016303058713674545, -0.02167670615017414, 0.0032016977202147245, -0.025114279240369797, -0.014450015500187874, -0.005162240006029606, -0.00043676450150087476, 0.0695531964302063, -0.032938916236162186, 0.062103021889925, -0.009811286814510822, 0.0024991831742227077, -0.02194325439631939, 0.0014240153832361102, 0.023908937349915504, 0.03623364865779877, 0.028218697756528854, 0.048669978976249695, -0.02319890446960926, -0.04093099758028984, 0.022477660328149796, -0.017418622970581055, -0.01968027651309967, 0.027499381452798843, -0.01744966395199299, -0.001989642856642604, 0.031073052436113358, 0.04818778485059738, 0.08170783519744873, -0.019056346267461777, -0.006288446951657534, 0.01867556758224964, 0.033327702432870865, 0.006294630002230406, 0.02594119869172573, -0.01956179179251194, -0.019774435088038445, -0.002974379574880004, -0.025235068053007126, -0.0009961120085790753, -0.01165646780282259, -0.038496751338243484, 0.014425840228796005, -0.009665654972195625, 0.0012672269949689507, 0.007843569852411747, -0.028726080432534218, -0.004027757793664932, -0.0404701828956604, -0.042178355157375336, -0.0641353577375412, -0.07410181313753128, 0.0076750717125833035, 0.001724954228848219, 0.012298066169023514, -0.01165483333170414, -0.01029545534402132, -0.007324161008000374, -0.018054809421300888, 0.06158855929970741, -0.05933815613389015, 0.008096838369965553, -0.0010515390895307064, 0.017208656296133995, -0.0038295055273920298, 0.007460114546120167, 0.0707508996129036, 0.030076853930950165, 0.009639997035264969, -0.02590109594166279, 0.038650378584861755, 0.04726044088602066, -0.011582900770008564, -0.0026719458401203156, -0.08030791580677032, 0.009711538441479206, 0.04131711646914482, 0.004149835556745529, -0.0731215626001358, 0.004341797437518835, 0.04178452119231224, 0.0010299086570739746, 0.0229816734790802, -0.02878504991531372, -0.005757828708738089, -0.027011599391698837, -0.004029642790555954, -0.0030695542227476835, -0.014508324675261974, 0.028078529983758926, -0.018051238730549812, 0.069968581199646, 0.047379765659570694, -0.020027749240398407, -0.022967137396335602, -0.030583953484892845, 0.0036929987836629152, 0.022850248962640762, -0.033754415810108185, -0.02093186415731907, -0.03572056069970131, -0.09885819256305695, -0.035058919340372086, -0.012852766551077366, -0.022404761984944344, -0.036799460649490356, 0.020585019141435623, 0.018936624750494957, -0.02277780883014202, 0.003253519767895341, -0.030275871977210045, -0.005171823315322399, -0.022743139415979385, -0.0141519820317626, -0.0070204781368374825, 0.0033301743678748608, 0.015342343598604202, -0.0068136719055473804, 0.03292524442076683, -0.04242215305566788, -0.015318991616368294, -0.04239740967750549, 0.04097369313240051, 0.05248839035630226, 0.031203530728816986, 0.013056037947535515 ]
[ -0.04525832086801529, -0.05431686341762543, -0.014406724832952023, -0.04488295689225197, 0.07624845206737518, -0.052963223308324814, -0.04371781647205353, 0.0019310270436108112, -0.01850539818406105, -0.01599493809044361, 0.02270261012017727, -0.02403062954545021, -0.004142724443227053, -0.007818893529474735, 0.053336672484874725, 0.018853047862648964, -0.02588767185807228, -0.05408930405974388, -0.0029857454355806112, 0.04633108898997307, -0.045933861285448074, -0.03461449593305588, -0.02336537092924118, -0.06400682032108307, -0.036257509142160416, 0.05032438784837723, 0.019142325967550278, -0.028830306604504585, -0.024491436779499054, -0.2011159509420395, 0.001204842934384942, 0.011629442684352398, -0.014705972746014595, -0.027091171592473984, 0.04790410026907921, 0.02691962756216526, 0.04198836162686348, -0.023100167512893677, 0.0073790838941931725, 0.032910946756601334, 0.04382214695215225, 0.008470185101032257, -0.0656609833240509, 0.014034620486199856, 0.031512126326560974, 0.004195983987301588, -0.007282967679202557, -0.03805522993206978, 0.032395053654909134, -0.0026573713403195143, -0.02388853207230568, 0.016235705465078354, -0.0003162313951179385, -0.0297101903706789, -0.00500132143497467, 0.0218544639647007, 0.06655747443437576, 0.05507988855242729, 0.014081141911447048, 0.015152521431446075, 0.034425292164087296, -0.004963535349816084, -0.1309462934732437, 0.09445809572935104, 0.04983341321349144, 0.006093317177146673, -0.05429554358124733, -0.014986828900873661, -0.009503037668764591, 0.06490856409072876, 0.00613247649744153, -0.01341380923986435, -0.05912330746650696, 0.08374898880720139, -0.012697639875113964, 0.006291914731264114, 0.0077537004835903645, 0.04035253822803497, 0.03785986080765724, -0.039743538945913315, -0.03543388471007347, 0.023382943123579025, -0.0403934009373188, -0.006096467841416597, -0.06691963970661163, 0.028699951246380806, -0.04724623262882233, 0.060534145683050156, -0.013788181357085705, 0.04238329827785492, 0.012812311761081219, 0.008304744958877563, 0.10357306897640228, 0.03759091719985008, -0.09061487764120102, 0.008681570179760456, 0.00306261726655066, 0.021297551691532135, -0.002832913538441062, 0.3776947855949402, 0.02676960825920105, -0.003049504477530718, 0.028395697474479675, 0.030565578490495682, -0.0005791014991700649, -0.018311388790607452, -0.018326450139284134, -0.05184183642268181, 0.0453975684940815, 0.002081109443679452, 0.011406119912862778, -0.025587841868400574, 0.07800699770450592, -0.07360534369945526, 0.011994610540568829, -0.004764969926327467, 0.017661791294813156, 0.023522216826677322, -0.05046191066503525, 0.007004759274423122, -0.013739227317273617, 0.00691263796761632, 0.05370502173900604, 0.03368834778666496, 0.05386023968458176, -0.0011318918550387025, 0.017509888857603073, 0.017037734389305115, -0.0029892846941947937, 0.03229016810655594, 0.039300210773944855, 0.0017488652374595404, -0.055028337985277176, 0.018626516684889793, 0.010055804625153542, -0.01139092817902565, 0.03702797740697861, -0.046037089079618454, -0.027284063398838043, 0.025583438575267792, -0.04366448521614075, -0.04547243192791939, 0.019886896014213562, -0.013380306772887707, -0.045918770134449005, 0.11011241376399994, -0.0045970589853823185, -0.04316216707229614, -0.02345588058233261, -0.05327146500349045, -0.001205381122417748, 0.06721308082342148, 0.014557170681655407, -0.06617119163274765, -0.007580216508358717, -0.0028053834103047848, 0.08319877088069916, -0.0011824751272797585, -0.10524657368659973, 0.007538871373981237, -0.02434428222477436, -0.03197348862886429, -0.02160520851612091, 0.07426609098911285, 0.030196662992239, -0.09305417537689209, -0.022006694227457047, 0.01929788663983345, 0.037100642919540405, -0.04241308942437172, -0.029752423986792564, 0.009751344099640846, -0.02182549238204956, -0.045697279274463654, 0.06748174130916595, -0.0359964445233345, 0.02678288146853447, -0.0018873853841796517, 0.04572958126664162, 0.0038189261686056852, -0.014954070560634136, -0.013157541863620281, -0.04173613339662552, -0.0038113088812679052, -0.03637666255235672, -0.07512041926383972, -0.08392161130905151, 0.028971778228878975, -0.02464728243649006, -0.025644319131970406, -0.04812824726104736, -0.013937078416347504, -0.03472581505775452, 0.10487443953752518, -0.02023385278880596, -0.04670444503426552, -0.01950729824602604, 0.012162010185420513, -0.007679096423089504, -0.04493634030222893, 0.06652538478374481, 0.022091364488005638, 0.007357483264058828, 0.04773067310452461, -0.06833973526954651, 0.03278762847185135, 0.06582740694284439, -0.018603689968585968, 0.05125439167022705, 0.031740374863147736, -0.06852301955223083, 0.015535176731646061, 0.004271309357136488, 0.03778417780995369, -0.01883942075073719, -0.014379492960870266, 0.012346141040325165, -0.0013460633344948292, 0.01598823443055153, 0.025365594774484634, -0.03780732303857803, -0.017951935529708862, -0.03522526100277901, -0.33844953775405884, -0.022860798984766006, -0.030172983184456825, 0.010314402170479298, 0.021435854956507683, -0.034339457750320435, 0.030125124379992485, -0.01587103120982647, 0.003691843245178461, -0.011325573548674583, 0.06706209480762482, -0.05592707172036171, 0.02466522343456745, -0.08052652329206467, 0.00362171558663249, 0.047264911234378815, 0.012446499429643154, 0.009782550856471062, -0.01886069029569626, -0.010231086052954197, 0.00735781854018569, -0.07919128239154816, -0.04647265747189522, -0.023219700902700424, 0.013707557693123817, -0.01765609346330166, 0.11871083080768585, -0.010018743574619293, 0.052553657442331314, -0.024987107142806053, 0.04584250971674919, 0.029227761551737785, -0.004898672923445702, -0.11266803741455078, -0.007937878370285034, -0.025876766070723534, 0.019522514194250107, 0.03317860886454582, -0.010228071361780167, 0.028691519051790237, -0.04876769706606865, -0.009255453012883663, -0.04888518899679184, -0.07154088467359543, 0.0032072532922029495, -0.002595416968688369, -0.03871874883770943, 0.0005336030153557658, -0.011684049852192402, 0.04358937591314316, 0.013109829276800156, 0.021140124648809433, -0.012325462885200977, 0.019159654155373573, 0.019442059099674225, -0.008282399736344814, -0.03616512939333916, -0.03167548403143883, 0.042059436440467834, 0.04598194360733032, 0.018152901902794838, 0.0760558545589447, 0.006967974826693535, -0.0855598971247673, 0.00554876821115613, 0.003688943339511752, -0.026354040950536728, 0.010818547569215298, 0.04469416290521622, -0.06102224811911583, -0.015564992092549801, 0.11764124035835266, 0.009783260524272919, 0.030118225142359734, 0.049859464168548584, 0.04369291663169861, -0.020394030958414078, 0.021607808768749237, 0.030150072649121284, -0.009678645990788937, 0.02511557936668396, -0.03406728059053421, 0.07766197621822357, -0.028965305536985397, -0.00641782209277153, 0.07716367393732071, 0.001268155057914555, -0.05003588646650314, 0.050301481038331985, 0.02222367189824581, -0.045017894357442856, -0.0020177369005978107, -0.009198197163641453, -0.05990678444504738, 0.0789446085691452, 0.001609165221452713, -0.25457432866096497, 0.044587600976228714, 0.044675324112176895, 0.05215802043676376, 0.0075895776972174644, 0.010060996748507023, 0.03464675322175026, -0.016957798972725868, 0.02254173345863819, 0.03042416460812092, 0.024015091359615326, 0.03573358431458473, -0.013740692287683487, -0.007849239744246006, 0.009920100681483746, 0.003168134717270732, 0.04081444814801216, 0.008996265940368176, 0.029020387679338455, -0.013904549181461334, 0.013854552060365677, -0.0233591478317976, 0.16318891942501068, 0.03855203464627266, -0.003756270743906498, 0.04942053183913231, -0.02132452093064785, 0.01748477853834629, 0.022719981148838997, 0.005431175697594881, -0.0280227642506361, 0.04185998812317848, -0.010120134800672531, -0.008072182536125183, 0.012976090423762798, -0.032227836549282074, -0.022885609418153763, 0.05941888317465782, 0.0355340950191021, -0.03860018402338028, -0.01765481010079384, 0.009862245060503483, -0.018855605274438858, 0.022025348618626595, 0.0545269250869751, -0.043765705078840256, 0.004599809646606445, -0.03805668652057648, -0.0753447487950325, -0.018269266933202744, -0.03541979938745499, -0.05973377823829651, -0.00992455892264843, -0.034304454922676086, 0.013420410454273224, 0.09861645847558975, 0.0006522538606077433, -0.03754205256700516, 0.04134516790509224, 0.013871475122869015, -0.005453682504594326, -0.05549737438559532, 0.14341868460178375, -0.012052616104483604, 0.03767944872379303 ]
[ 0.06500013172626495, 0.06301210820674896, 0.005119395442306995, 0.01692184992134571, -0.001849132007919252, -0.01317422091960907, 0.009908242151141167, -0.025630898773670197, -0.020397162064909935, -0.0037817268166691065, -0.030431360006332397, 0.017219169065356255, 0.060899943113327026, 0.028415219858288765, -0.027377046644687653, 0.002952897222712636, -0.0054180556908249855, 0.03983466699719429, 0.01724354736506939, 0.025226321071386337, -0.06582378596067429, -0.033339984714984894, 0.02259914018213749, -0.023001298308372498, -0.029727110639214516, 0.019771860912442207, -0.03639913350343704, -0.01629750244319439, 0.006828366778790951, -0.11913658678531647, -0.010724062100052834, 0.009575228206813335, -0.0027175480499863625, -0.017585521563887596, -0.002557784551754594, 0.018842721357941628, 0.07272563129663467, 0.011473007500171661, -0.008379552513360977, 0.0383879728615284, 0.044177256524562836, -0.02993171103298664, -0.010622573085129261, 0.018690958619117737, -0.007844732142984867, -0.021866554394364357, -0.047642260789871216, -0.05451323464512825, 0.04665810242295265, -0.0073243360966444016, -0.05488995462656021, -0.0025215158239006996, -0.028914915397763252, -0.012026246637105942, -0.006268445402383804, 0.01172183733433485, -0.0014737437013536692, 0.003358276793733239, 0.027894897386431694, 0.02076949179172516, 0.03914760425686836, -0.01003188081085682, -0.04146170616149902, -0.02578851953148842, 0.01636546105146408, -0.008100192062556744, 0.0031039873138070107, 0.00855632871389389, -0.023852473124861717, 0.029897579923272133, -0.0016610592138022184, 0.06898435205221176, -0.09435095638036728, -0.04984324425458908, -0.04182321950793266, 0.029631052166223526, 0.06977953016757965, -0.026385430246591568, -0.06006699427962303, 0.022336119785904884, -0.015987969934940338, 0.025371920317411423, -0.030660495162010193, -0.02130797691643238, -0.06139109283685684, 0.0266043059527874, -0.018552107736468315, -0.03359845280647278, 0.021472321823239326, -0.011418688111007214, -0.018661677837371826, -0.0005210312665440142, -0.03300180658698082, -0.041830211877822876, -0.05997096747159958, -0.02954193949699402, -0.001301073469221592, -0.012872864492237568, 0.015759781002998352, 0.7879206538200378, 0.020665178075432777, -0.006650731433182955, -0.01791955530643463, 0.005641077645123005, 0.034273382276296616, 0.0017645710613578558, 0.02582721970975399, -0.012345739640295506, -0.0362464040517807, 0.023954840376973152, -0.026986969634890556, 0.023293467238545418, 0.00970078632235527, 0.046380285173654556, -0.005834460724145174, 0.014510715380311012, -0.00891206320375204, -0.027038678526878357, -0.02600615657866001, 0.04412667080760002, 0.0272385124117136, 0.0275377556681633, 0.016497282311320305, 0.01221477147191763, -0.0063560279086232185, -0.15208059549331665, -0.0142217380926013, -6.503944856226452e-33, 0.030279750004410744, -0.02843266725540161, 0.08332030475139618, 0.01605762355029583, 0.04345143213868141, 0.006499321199953556, -0.0031697633676230907, -0.05465078726410866, -0.027976106852293015, -0.01984141580760479, -0.05114021524786949, 0.013800160028040409, -0.013086298480629921, -0.005997079890221357, -0.0028641026001423597, -0.018682517111301422, 0.012636219151318073, 0.008098938502371311, -0.014708819799125195, 0.011861981824040413, 0.00415123300626874, 0.04241139441728592, -0.05449721962213516, 0.030947968363761902, 0.02854212373495102, 0.021423187106847763, 0.008672308176755905, 0.005874929949641228, 0.014092851430177689, -0.05151847377419472, -0.053825367242097855, -0.0005595225957222283, -0.014203530736267567, -0.01917613483965397, 0.016349930316209793, -0.08385999500751495, -0.020291849970817566, 0.03806782141327858, -0.0672774389386177, -0.03633532673120499, -0.04803529009222984, -0.017574526369571686, -0.02440626733005047, -0.013957202434539795, -0.025528309866786003, -0.02477685548365116, -0.03575906157493591, 0.02333085983991623, 0.011768200434744358, 0.016376987099647522, 0.013820674270391464, 0.00934732798486948, -0.03377702087163925, 0.026489563286304474, -0.06590591371059418, -0.029113968834280968, 0.0019734238740056753, -0.016444368287920952, -0.029030879959464073, -0.012365167029201984, 0.014499586075544357, 0.013217239640653133, -0.015639984980225563, 0.04142971709370613, 0.046977296471595764, 0.038237955421209335, 0.0033806427381932735, 0.027828102931380272, 0.0045670149847865105, 0.06843657046556473, -0.0408395491540432, 0.0408993624150753, -0.008106640540063381, -0.02681913785636425, 0.04436971992254257, -0.054350681602954865, -0.002221643226221204, -0.016840921714901924, 0.0015007888432592154, 0.06050317361950874, -0.0261058509349823, -0.0024401589762419462, -0.01217891275882721, -0.019819743931293488, -0.016630059108138084, -0.03288838267326355, 0.038479771465063095, 0.041209086775779724, 0.03578253462910652, 0.026862647384405136, 0.03295274078845978, 0.04237526282668114, -0.015489616431295872, -0.03728334233164787, -0.033368151634931564, 5.86533734633309e-33, 0.0055249398574233055, -0.014856678433716297, -0.023131761699914932, 0.01566856913268566, 0.030175212770700455, 0.029466863721609116, 0.044316940009593964, 0.013258060440421104, -0.03858523815870285, 0.019930966198444366, -0.006040734238922596, 0.02609567530453205, -0.008684328757226467, 0.05240348353981972, 0.03876131772994995, 0.01992121897637844, 0.01970040053129196, -0.06297533959150314, -0.011871850118041039, 0.02754315733909607, -0.014846413396298885, 0.006239073351025581, 0.00346536748111248, 0.040454063564538956, 0.02875337190926075, 0.004867449402809143, 0.02631324529647827, 0.00454825209453702, -0.041794296354055405, -0.002043508691713214, -0.014938545413315296, -0.0464799664914608, 0.0017967653693631291, 0.030279193073511124, -0.002552462974563241, 0.0057524205185472965, -0.017630215734243393, 0.038973767310380936, -0.014289509505033493, 0.004614288918673992, 0.015850385650992393, -0.007953403517603874, -0.03700786083936691, 0.07437837868928909, -0.007562953047454357, 0.009988491423428059, 0.001962932525202632, 0.016321225091814995, -0.004357419442385435, 0.027711940929293633, -0.013703704811632633, 0.015271536074578762, 0.01191027369350195, 0.022098934277892113, 0.03877481818199158, -0.057205263525247574, -0.01734633557498455, 0.023581333458423615, -0.0013901825295761228, 0.04837750643491745, 0.01031089574098587, -0.01593317650258541, -0.014366785995662212, 0.029416754841804504, -0.014977448619902134, -0.016657141968607903, -0.02320772036910057, 0.0010823969496414065, -0.023501159623265266, -0.012682078406214714, 0.05279764533042908, 0.016609713435173035, 0.00367960543371737, 0.04492960125207901, 0.040566105395555496, -0.016263438388705254, -0.041475456207990646, -0.004104260820895433, -0.03419901803135872, 0.039204128086566925, -0.01680220663547516, 0.030838456004858017, 0.0086751664057374, -0.033554557710886, -0.005719679407775402, -0.011480252258479595, -0.011613858863711357, 0.016255652531981468, -0.0051733567379415035, -0.026081936433911324, 0.04284004122018814, -0.03197546675801277, -0.03576011210680008, 0.04704493656754494, -0.042171411216259, -1.1923038556460597e-8, -0.003136487677693367, -0.0056952559389173985, 0.0050841039046645164, 0.019726701080799103, -0.024313433095812798, 0.008941463194787502, -0.005542677827179432, 0.018308540806174278, -0.022596091032028198, 0.026406243443489075, -0.0028881807811558247, -0.03406579792499542, -0.002927057910710573, -0.006391532719135284, 0.03337765112519264, -0.019572783261537552, 0.023991456255316734, -0.02021123096346855, 0.03263569250702858, -0.004598579835146666, 0.003995577339082956, 0.03740027919411659, -0.016365982592105865, 0.012931008823215961, -0.03389308974146843, -0.010666410438716412, 0.03775761276483536, -0.05991697311401367, -0.024964123964309692, -0.04012885317206383, 0.009881611913442612, -0.017605161294341087, -0.0500757209956646, 0.00707178795710206, -0.03742329776287079, -0.0018093632534146309, 0.022106599062681198, 0.05289193615317345, 0.027165861800312996, 0.020386304706335068, -0.04758225381374359, -0.009338295087218285, -0.05614406615495682, -0.05338166281580925, -0.03981315717101097, 0.015893222764134407, -0.02809811197221279, -0.00701468950137496, 0.047055549919605255, -0.017444713041186333, 0.020894447341561317, 0.007469743024557829, 0.042695291340351105, 0.035759881138801575, 0.047619324177503586, 0.029433440417051315, 0.021190734580159187, -0.018790915608406067, -0.020137757062911987, -0.02281356416642666, 0.027996491640806198, 0.035533271729946136, -0.007206766400486231, 0.001752796582877636 ]
neo4j-database-dump-docker-container
https://markhneedham.com/blog/2020/01/28/neo4j-database-dump-docker-container
false
2020-01-10 00:21:00
Python: Altair - TypeError: Object of type date is not JSON serializable
[ "python", "altair" ]
[ "Python" ]
I've been playing with the https://altair-viz.github.io/index.html[Altair statistical visualisation library^] and recently ran into an error while trying to render a DataFrame that contained dates. I was trying to render a scatterplot containing the chart position of a song on a certain date, as seen in the code below: [source,python] ---- # pip install altair pandas import altair as alt import pandas as pd import datetime df = pd.DataFrame( [ {"position": 2, "date": datetime.date(2019,1,3)}, {"position": 77, "date": datetime.date(2019,11,21)}, {"position": 59, "date": datetime.date(2019,11,28)}, {"position": 34, "date": datetime.date(2019,12,5)}, {"position": 8, "date": datetime.date(2019,12,12)}, {"position": 6, "date": datetime.date(2019,12,19)}, {"position": 8, "date": datetime.date(2019,12,26)}, ]) chart = alt.Chart(df).mark_point(color="red").encode(x='date', y='position') chart.save("chart.html") ---- If we run this script, we'll see the following error message: [source,cypher] ---- Traceback (most recent call last): File "scripts/blog.py", line 22, in <module> chart.save("chart.html") File "/home/markhneedham/.local/share/virtualenvs/uk-charts-gqTVV0T1/lib/python3.7/site-packages/altair/vegalite/v4/api.py", line 447, in save result = save(**kwds) File "/home/markhneedham/.local/share/virtualenvs/uk-charts-gqTVV0T1/lib/python3.7/site-packages/altair/utils/save.py", line 68, in save spec = chart.to_dict() File "/home/markhneedham/.local/share/virtualenvs/uk-charts-gqTVV0T1/lib/python3.7/site-packages/altair/vegalite/v4/api.py", line 355, in to_dict copy.data = _prepare_data(original_data, context) File "/home/markhneedham/.local/share/virtualenvs/uk-charts-gqTVV0T1/lib/python3.7/site-packages/altair/vegalite/v4/api.py", line 92, in _prepare_data data = _consolidate_data(data, context) File "/home/markhneedham/.local/share/virtualenvs/uk-charts-gqTVV0T1/lib/python3.7/site-packages/altair/vegalite/v4/api.py", line 59, in _consolidate_data name = _dataset_name(values) File "/home/markhneedham/.local/share/virtualenvs/uk-charts-gqTVV0T1/lib/python3.7/site-packages/altair/vegalite/v4/api.py", line 35, in _dataset_name values_json = json.dumps(values, sort_keys=True) File "/home/markhneedham/anaconda3/lib/python3.7/json/__init__.py", line 238, in dumps **kw).encode(obj) File "/home/markhneedham/anaconda3/lib/python3.7/json/encoder.py", line 199, in encode chunks = self.iterencode(o, _one_shot=True) File "/home/markhneedham/anaconda3/lib/python3.7/json/encoder.py", line 257, in iterencode return _iterencode(o, 0) File "/home/markhneedham/anaconda3/lib/python3.7/json/encoder.py", line 179, in default raise TypeError(f'Object of type {o.__class__.__name__} ' TypeError: Object of type date is not JSON serializable ---- On a GitHub issue for a similar problem, Jake Vanderplas suggested that the issue might be that the column type was object. We can check this by calling the following function on our DataFrame: [source,python] ---- print(df.dtypes) ---- We can see the output of executing this function below: [source,text] ---- position int64 date object dtype: object ---- As Jake predicted, our `date` column has the type `object`, despite only containing dates. We can fix that by coercing that column to the type `datetime` using the https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.to_datetime.html[`pd.to_datetime` function^]: [source, python] ---- df["date"] = pd.to_datetime(df["date"]) ---- If we output the types of our DataFrame now, we'll see the following output: [source,text] ---- position int64 date datetime64[ns] dtype: object ---- We now have the following script: [source,python] ---- df = pd.DataFrame( [ {"position": 2, "date": datetime.date(2019,1,3)}, {"position": 77, "date": datetime.date(2019,11,21)}, {"position": 59, "date": datetime.date(2019,11,28)}, {"position": 34, "date": datetime.date(2019,12,5)}, {"position": 8, "date": datetime.date(2019,12,12)}, {"position": 6, "date": datetime.date(2019,12,19)}, {"position": 8, "date": datetime.date(2019,12,26)}, ]) df["date"] = pd.to_datetime(df["date"]) chart = alt.Chart(df).mark_point(color="red").encode( x='date', y='position') print(df.dtypes) chart.save("chart.html") ---- And if we run that script, we'll have the following chart in the file `chart.html`: image::{{<siteurl>}}/uploads/2020/01/altair-chart.png[title="Chart showing chart positions"]
Learn how to solve the TypeError: Object of type date is not JSON serializable error when rendering Altair charts.
uploads/2020/01/altair-chart.png
[ -0.011325965635478497, -0.00395604781806469, -0.017070915549993515, 0.04481371492147446, 0.05581744760274887, 0.022494077682495117, 0.010001691989600658, 0.03374195471405983, 0.031002217903733253, -0.03909347951412201, -0.016388652846217155, -0.028104469180107117, -0.06713899970054626, 0.032631270587444305, -0.016268419101834297, 0.08592896163463593, 0.055038582533597946, -0.02257538214325905, 0.00516252126544714, 0.00814874842762947, 0.055268872529268265, 0.03191676735877991, -0.05574854835867882, 0.0418221578001976, -0.003706729970872402, -0.016456346958875656, 0.0010710684582591057, 0.006106249522417784, -0.058911025524139404, -0.011280801147222519, 0.0010897465981543064, 0.02652493491768837, 0.0074105653911828995, 0.0025825861375778913, 0.007208007387816906, 0.007799134589731693, -0.005879777949303389, 0.024909989908337593, 0.00021810679754707962, 0.01785927638411522, -0.07034517079591751, 0.017031216993927956, -0.0013807150535285473, 0.024256138131022453, -0.031909212470054626, 0.004832770675420761, -0.006663139909505844, 0.04659772291779518, 0.00781628955155611, 0.025203222408890724, -0.040459904819726944, 0.05362400412559509, -0.000025203748009516858, -0.05768730863928795, -0.014847513288259506, 0.05893351510167122, 0.03832428157329559, -0.08059654384851456, -0.0006347410380840302, -0.031545039266347885, 0.030146686360239983, 0.00426027225330472, -0.0113120311871171, 0.011127179488539696, 0.02999992109835148, -0.005314132198691368, -0.027783816680312157, 0.06526221334934235, -0.03870648145675659, -0.04423563927412033, -0.010731803253293037, 0.04338386654853821, -0.03613773360848427, -0.015135354362428188, -0.03198610246181488, -0.02471315674483776, -0.022481534630060196, 0.0560404509305954, 0.01065155304968357, 0.03197360783815384, 0.015316961333155632, -0.00007683342846576124, 0.015479141846299171, 0.020112447440624237, -0.01809978298842907, -0.017461100593209267, -0.06987401098012924, -0.038956306874752045, -0.07165103405714035, 0.05555488541722298, 0.006556268781423569, -0.06754771620035172, 0.06357531994581223, 0.01024637371301651, -0.026706060394644737, 0.009367890655994415, -0.002982305595651269, 0.009930429048836231, 0.041040826588869095, -0.02841886691749096, -0.056874312460422516, -0.010786055587232113, 0.03948233276605606, 0.014669060707092285, -0.06581607460975647, -0.0306088924407959, -0.014105196110904217, -0.007918637245893478, -0.0025143905077129602, 0.0029199360869824886, -0.0358194001019001, 0.00796481128782034, -0.016061978414654732, -0.02722317725419998, -0.0477914921939373, 0.07979027181863785, 0.024388151243329048, -0.0566934198141098, 0.0003013172827195376, -0.006996049080044031, 0.05598834156990051, 0.014737213961780071, -0.04981200397014618, 0.09134853631258011, 0.0013599391095340252, 0.09780674427747726, -0.010507827624678612, 0.04611356556415558, -0.014107054099440575, -0.03348611295223236, -0.008975803852081299, 0.06455579400062561, -0.042288295924663544, -0.011618235148489475, 0.0250092763453722, -0.006839235778898001, -0.01891782321035862, -0.0026065807323902845, 0.08132196217775345, 0.03825007751584053, 0.00045145791955292225, -0.020257212221622467, 0.007057408336549997, 0.008111831732094288, 0.0252685509622097, 0.05388040095567703, -0.004135387483984232, -0.05367431789636612, -0.022539682686328888, -0.008730781264603138, 0.03351065143942833, 0.012945611961185932, 0.06004173308610916, -0.0008113175281323493, 0.0006895042606629431, 0.05266840383410454, 0.03284594789147377, 0.02784593403339386, -0.0329083651304245, 0.005899087060242891, 0.043917909264564514, 0.026269078254699707, -0.005282712168991566, 0.05893431603908539, 0.0015348943416029215, -0.020623667165637016, -0.016745196655392647, 0.040041133761405945, -0.01881873421370983, -0.02716163918375969, -0.04508264735341072, -0.05670623108744621, 0.05715577304363251, -0.023109467700123787, 0.024481981992721558, 0.06361779570579529, 0.0776718407869339, 0.035616181790828705, 0.041158512234687805, -0.004695655312389135, -0.06939631700515747, 0.052380457520484924, 0.010000974871218204, 0.018388058990240097, 0.05604014918208122, 0.014619068242609501, 0.08743288367986679, 0.01946285367012024, 0.05255821347236633, 0.055719513446092606, -0.054032113403081894, -0.03465510904788971, -0.047142695635557175, -0.04239727929234505, 0.03521328791975975, -0.051090363413095474, -0.03558849170804024, 0.05103985592722893, 0.029815513640642166, 0.052246175706386566, -0.0044412086717784405, 0.02596272900700569, 0.0027896964456886053, -0.0368257537484169, -0.025265250355005264, -0.004703023936599493, 0.04806489497423172, -0.007726073730736971, -0.007748742587864399, 0.021072417497634888, -0.010986220091581345, 0.019291389733552933, 0.0625520646572113, 0.00991435069590807, 0.06509522348642349, 0.04702317342162132, 0.06410352885723114, -0.008673620410263538, 0.012359230779111385, -0.056337449699640274, 0.046837348490953445, -0.008289235644042492, -0.026994116604328156, -0.06569941341876984, -0.013919597491621971, 0.12541034817695618, 0.05548253282904625, -0.02918434888124466, -0.0486249104142189, -0.011376850306987762, -0.03476357460021973, -0.03752293437719345, 0.007207255810499191, -0.016817746683955193, -0.005685644689947367, 0.017663218080997467, -0.03827735409140587, -0.01343313418328762, 0.008956634439527988, -0.016891108825802803, -0.005557181779295206, 0.05217108875513077, 0.0003072379622608423, 0.056600987911224365, -0.01604601927101612, -0.008457391522824764, -0.02206575684249401, -0.01862162910401821, -0.06324717402458191, 0.0033688184339553118, 0.004284748341888189, -0.018053153529763222, 0.012677976861596107, -0.011698919348418713, -0.06788346916437149, -0.008066557347774506, -0.06613390892744064, 0.02855927124619484, 0.07229648530483246, 0.0396529883146286, 0.0067469351924955845, -0.01559961587190628, -0.007439158391207457, 0.0016150675946846604, -0.010550749488174915, -0.054728034883737564, -0.04975438490509987, -0.01904546655714512, 0.021300258114933968, 0.027401519939303398, 0.05513102561235428, 0.014528638683259487, 0.010694990865886211, -0.007613280788064003, -0.007365229073911905, -0.02246057614684105, 0.035399578511714935, -0.002986406208947301, -0.011095657013356686, -0.017426254227757454, 0.03592856973409653, 0.036846403032541275, -0.044082339853048325, -0.029233502224087715, 0.016674675047397614, -0.04244520887732506, 0.04394926875829697, -0.04014868661761284, -0.026961779221892357, -0.01038998644798994, 0.0171012282371521, 0.060543354600667953, 0.011216646060347557, 0.004364036489278078, 0.023712188005447388, -0.004806201439350843, 0.018805110827088356, 0.0035529443994164467, -0.0038434911984950304, 0.047542963176965714, 0.018656989559531212, 0.004524626769125462, 0.06783326715230942, -0.023578515276312828, -0.023515908047556877, -0.03724358603358269, -0.016686031594872475, -0.04594191536307335, -0.25800636410713196, 0.02136327140033245, -0.004453796893358231, -0.07138104736804962, -0.0032740619499236345, -0.0224424060434103, 0.030702855437994003, -0.023815590888261795, -0.017615430057048798, -0.033651527017354965, -0.0052658491767942905, -0.05945174768567085, -0.015654882416129112, 0.057284947484731674, -0.0036054328083992004, 0.0076520685106515884, -0.009852188639342785, -0.026716817170381546, 0.018437460064888, 0.01285944040864706, 0.0015500554582104087, -0.04879864677786827, -0.021648269146680832, 0.04510023444890976, 0.010424377396702766, 0.048302844166755676, -0.0475553460419178, 0.019470950588583946, -0.06606785207986832, -0.043450672179460526, 0.042673174291849136, -0.03709805756807327, -0.0005693981074728072, 0.0016970217693597078, -0.013622293248772621, -0.018238749355077744, 0.005316251888871193, -0.0008055506041273475, 0.021230164915323257, 0.012083692476153374, -0.026952331885695457, -0.048508450388908386, 0.01822070963680744, -0.0030298936180770397, 0.0605962835252285, -0.024519622325897217, -0.05946485698223114, 0.032003507018089294, -0.010999558493494987, 0.061560459434986115, -0.0026327192317694426, -0.009395178407430649, -0.001117232022807002, -0.014925369061529636, -0.061695948243141174, 0.019823554903268814, -0.028431568294763565, -0.009182923473417759, -0.03714615851640701, -0.023771017789840698, 0.005531090311706066, -0.01835554651916027, -0.015811478719115257, -0.06717301905155182, -0.0360863134264946, -0.048369619995355606, -0.015966881066560745, -0.03561505675315857, 0.0430191345512867, 0.045269522815942764, -0.05258439853787422, -0.005233186297118664, -0.0017087740125134587, -0.08850893378257751, 0.025688055902719498, -0.026601769030094147, -0.0031405945774167776, -0.02071434259414673, -0.014803225174546242, 0.013622420839965343, -0.05290687084197998, -0.08906857669353485, 0.06945385783910751, 0.002591542201116681, -0.019212324172258377, -0.0027387726586312056, 0.01923246867954731, 0.006504030432552099, -0.011431792750954628, -0.019115561619400978, 0.04056559503078461, -0.016507407650351524, 0.005375087261199951, 0.03480222448706627, -0.0586719736456871, 0.05711357295513153, 0.03506433963775635, 0.0006990354158915579, 0.023829275742173195, 0.04397070035338402, -0.009653972461819649, -0.0705723762512207, -0.0027534705586731434, -0.049260299652814865, -0.02616995945572853, -0.008698227815330029, -0.04801420494914055, 0.0236053504049778, 0.015250945463776588, 0.012757989577949047, 0.023745525628328323, -0.020274300128221512, 0.03316967934370041, -0.049196671694517136, -0.0161034744232893, -0.02613268978893757, 0.0344853401184082, 0.024507535621523857, 0.00009724095434648916, 0.007518586702644825, -0.07129484415054321, -0.0021989252418279648, -0.01938137598335743, 0.0026473926845937967, -0.03697565943002701, -0.021276740357279778, 0.009076938964426517, 0.030295060947537422, 0.01425028033554554, 0.0007391655235551298, -0.0035472833551466465, 0.020722469314932823, 0.04060742259025574, -0.035768698900938034, 0.014589141122996807, -0.027797741815447807, -0.023702658712863922, -0.03918509557843208, 0.036703355610370636, 0.02914823777973652, 0.015511942096054554, 0.026060445234179497, -0.03424215689301491, -0.009672804735600948, 0.030574429780244827, 0.0025047429371625185, 0.03847428411245346, -0.0013630546163767576, 0.014189605601131916, 0.01953207515180111, 0.006429080851376057, 0.0075547704473137856, -0.00032559834653511643, -0.02565009519457817, -0.061678867787122726, 0.01596014015376568, 0.021979205310344696, -0.025051916018128395, -0.02319803647696972, -0.02763928286731243, 0.012896624393761158, -0.06331028044223785, -0.035502973943948746, -0.0067633348517119884, 0.0228072851896286, 0.03958631306886673, 0.02234606072306633, 0.00015447741316165775, 0.045035094022750854, -0.012808175757527351, -0.020625298842787743, 0.029305119067430496, 0.008143045008182526, 0.007345731370151043, -0.0018078875727951527, -0.02433747798204422, 0.025867165997624397, 0.016557475551962852, 0.01341486256569624, 0.024595225229859352, -0.024835331365466118, 0.003040726762264967, 0.017123430967330933, 0.018236560747027397, 0.0060401782393455505, 0.03128378838300705, -0.05027323216199875, 0.019601300358772278, -0.023760147392749786, -0.04763657972216606, -0.022192690521478653, -0.025392452254891396, -0.03550361096858978, -0.007262581959366798, -0.012525025755167007, -0.07633663713932037, -0.008684840053319931, -0.0054642874747514725, 0.0317879393696785, -0.015991294756531715, -0.04711392521858215, 0.017700033262372017, -0.06526584923267365, 0.01587928645312786, 0.054878756403923035, -0.06701383739709854, -0.009108955971896648, -0.016306322067975998, -0.01654941961169243, 0.012285110540688038, 0.02155667170882225, -0.09225435554981232, -0.007810171227902174, -0.002975646872073412, 0.010009940713644028, 0.002442306140437722, -0.045553434640169144, -0.045002929866313934, 0.017167996615171432, 0.009104290045797825, 0.02750004455447197, 0.011883104220032692, 0.007657894864678383, -0.030897097662091255, 0.0065509057603776455, 0.006273509934544563, 0.012276792898774147, 0.00510442815721035, 0.025872621685266495, 0.007095057517290115, 0.021537279710173607, 0.0010784099576994777, 0.009852995164692402, 0.019956741482019424, -0.00895786378532648, -0.007559563033282757, -0.04470880329608917, -0.03366627171635628, 0.03875264525413513, 0.03717854246497154, -0.009987648576498032, 0.014778690412640572, -0.007168139331042767, -0.003956991713494062, 0.04032282531261444, 0.0008418155484832823, 0.0019069858826696873, -0.049514103680849075, 0.021787716075778008, 0.036235351115465164, 0.025432098656892776, -0.013327760621905327, 0.01943834125995636, -0.052542686462402344, 0.04544566199183464, -0.04517209529876709, -0.041788093745708466, 0.008254987187683582, -0.05615830793976784, 0.02959110029041767, 0.012834878638386726, 0.017841191962361336, -0.049824219197034836, 0.04621148109436035, 0.021799808368086815, 0.058197472244501114, 0.08513426035642624, 0.02250603958964348, 0.02508748695254326, -0.027120092883706093, 0.002427176106721163, -0.10235999524593353, -0.0028279752004891634, 0.018101993948221207, 0.004634893499314785, -0.04183667525649071, 0.00004890401032753289, -0.015601757913827896, 0.01517191156744957, -0.058116815984249115, -0.03102739341557026, 0.04197453707456589, 0.003316322574391961, 0.00176138780079782, 0.00961595680564642, -0.04293639585375786, 0.049339886754751205, 0.04989847168326378, -0.058038681745529175, -0.013756528496742249, 0.0016563028329983354, 0.07283751666545868, -0.03734397143125534, 0.02020077034831047, -0.026993289589881897, -0.0065067000687122345, 0.05696007236838341, 0.028883563354611397, 0.020715370774269104, 0.00874208752065897, -0.006870080716907978, 0.06002887710928917, 0.022588172927498817, 0.01627238094806671, 0.01841789484024048, 0.02172977104783058, 0.03201537951827049, -0.054760225117206573, 0.015548466704785824, 0.028010938316583633, -0.0008214531117118895, -0.03585473820567131, 0.06772837042808533, 0.01255724299699068, -0.012031782418489456, 0.007365342695266008, -0.03891611471772194, -0.033941831439733505, 0.014787240885198116, -0.009193438105285168, 0.01373851764947176, -0.03157533332705498, 0.056796737015247345, -0.017339566722512245, 0.009114488027989864, 0.060549747198820114, -0.006722746882587671, 0.0242618378251791, 0.02605333924293518, 0.07705879211425781, 0.06681481748819351, 0.03482380509376526, 0.019888468086719513, 0.060333479195833206, -0.06800569593906403, -0.04791408032178879, 0.006120475474745035, -0.0652218610048294, 0.0012895568506792188, -0.0574810616672039, -0.004768213722854853, 0.04961983487010002, -0.0023222831077873707, 0.03331679850816727, 0.004446301143616438, 0.01824191026389599, -0.026553135365247726, 0.024414118379354477, 0.0196984950453043, 0.0012352229095995426, 0.021875884383916855, 0.03261395916342735, -0.009578589349985123, -0.03726285696029663, 0.03269955888390541, -0.0012025786563754082, -0.02047090232372284, 0.03348681330680847, 0.04240455478429794, -0.004320970736443996, 0.011691253632307053, 0.026144398376345634, 0.06133343279361725, -0.04477498680353165, -0.042399439960718155, 0.011053861118853092, 0.050220977514982224, 0.011234337463974953, 0.023839043453335762, -0.02658289112150669, 0.005356307607144117, -0.02143748663365841, -0.06482706218957901, 0.013076533563435078, -0.011504356749355793, -0.037572719156742096, 0.05438365414738655, -0.05910148099064827, 0.01831056736409664, 0.03846115618944168, -0.04795924201607704, -0.055362917482852936, -0.04514673724770546, -0.04648641496896744, -0.02032586559653282, -0.0590825229883194, -0.0003943451738450676, 0.03318043798208237, -0.031714580953121185, -0.03464997932314873, -0.052385006099939346, 0.027742115780711174, 0.009691307321190834, -0.0015560591127723455, -0.0368761345744133, -0.05531129613518715, 0.020250828936696053, 0.015721410512924194, -0.0052122268825769424, 0.03442928567528725, 0.05934020131826401, -0.014422118663787842, -0.03245067968964577, -0.018198974430561066, 0.011109820567071438, 0.036485183984041214, 0.014411468990147114, 0.02754846401512623, -0.06880199164152145, 0.010203681886196136, 0.021674279123544693, 0.0024802677799016237, -0.06736604869365692, 0.04106014221906662, 0.026582397520542145, -0.04178985580801964, 0.021075427532196045, -0.01634160615503788, 0.012466169893741608, -0.03362104669213295, -0.03635568544268608, -0.011028393171727657, 0.02854049764573574, 0.03151090443134308, -0.04594160243868828, 0.07036063075065613, 0.0702093243598938, 0.0258552934974432, -0.0009097367874346673, 0.0015110996318981051, -0.02692231722176075, -0.015847662463784218, -0.05731246992945671, -0.03559931367635727, -0.09623967856168747, -0.06405358016490936, -0.03322021663188934, -0.005627259612083435, -0.02744261547923088, -0.023817844688892365, 0.015567764639854431, 0.01803150400519371, -0.026867367327213287, 0.014924600720405579, -0.05225173756480217, -0.009158438071608543, -0.0399763397872448, -0.005232286639511585, -0.0025653094053268433, 0.053897883743047714, 0.01311697717756033, -0.00950365886092186, -0.009503587149083614, -0.033520471304655075, 0.014506207779049873, -0.026578733697533607, 0.02749137580394745, 0.035446517169475555, -0.004895027726888657, 0.006983062252402306 ]
[ -0.0616023875772953, -0.041222840547561646, -0.014621523208916187, 0.008157983422279358, 0.07616550475358963, -0.06325249373912811, -0.05857156217098236, -0.0012256959453225136, 0.02044150047004223, 0.024871526286005974, 0.047504082322120667, -0.1034252867102623, 0.01659296080470085, 0.009031585417687893, 0.03132184222340584, 0.0031635817140340805, -0.05195144563913345, -0.05269153416156769, -0.030575303360819817, 0.025988394394516945, 0.02016163244843483, -0.019593970850110054, -0.060846101492643356, -0.05945122614502907, 0.034318458288908005, 0.05293140560388565, -0.012927034869790077, -0.06643207371234894, -0.009278066456317902, -0.19514256715774536, -0.007828474044799805, -0.029278023168444633, 0.007449057884514332, 0.0027668033726513386, 0.014940718188881874, 0.006864666473120451, 0.025318743661046028, 0.02843487821519375, 0.03530355170369148, 0.026154620572924614, 0.012891045771539211, 0.0013872348936274648, -0.08717112988233566, -0.043136291205883026, 0.016479194164276123, 0.01824914664030075, -0.05123858153820038, 0.00648883543908596, 0.0016901110066100955, 0.026126615703105927, -0.045094165951013565, -0.020286856219172478, -0.0223464947193861, 0.0022041311021894217, 0.022617610171437263, 0.0386238619685173, 0.052030548453330994, 0.03513266518712044, 0.007144620642066002, 0.03439295291900635, 0.01255034189671278, -0.006738200318068266, -0.15006665885448456, 0.10033754259347916, -0.026350071653723717, 0.03735373169183731, -0.030415086075663567, -0.01338344905525446, -0.04567115753889084, 0.06072084978222847, -0.00005261222395347431, -0.04415297880768776, -0.022009583190083504, 0.053297970443964005, 0.028752250596880913, -0.025456618517637253, 0.007495042402297258, 0.0006549436366185546, 0.04047606885433197, -0.026135707274079323, -0.024992283433675766, 0.01746661402285099, -0.012699316255748272, -0.02586720511317253, 0.04709861800074577, 0.019930940121412277, -0.0005526687600649893, 0.04232657328248024, 0.02647978439927101, 0.011483856476843357, 0.029194986447691917, -0.013576117344200611, 0.0017012027092278004, 0.045847825706005096, -0.08886697888374329, -0.024451635777950287, 0.029451655223965645, 0.02661643549799919, -0.024473674595355988, 0.3836138844490051, -0.031258951872587204, 0.010399183258414268, -0.006807589437812567, 0.08272597938776016, -0.008322685025632381, -0.046327073127031326, -0.014640812762081623, -0.0339658260345459, -0.003569984808564186, -0.04563041776418686, -0.004948600195348263, -0.04588433355093002, 0.03538618981838226, -0.10598926246166229, 0.0024606124497950077, 0.003785377833992243, -0.00992603786289692, 0.02124819904565811, -0.002534948056563735, 0.03440433368086815, 0.01858864165842533, 0.008099865168333054, 0.030043160542845726, 0.040974877774715424, -0.004034668672829866, 0.030220607295632362, 0.05910161882638931, 0.04101443290710449, 0.029434170573949814, -0.011224627494812012, 0.04068441689014435, -0.0316951721906662, -0.07387220114469528, 0.02341625466942787, -0.018335767090320587, 0.009083651937544346, 0.011688873171806335, -0.02541389875113964, 0.027246957644820213, 0.01112856063991785, -0.030401455238461494, -0.06890161335468292, 0.01251969113945961, 0.03611854463815689, -0.00962979719042778, 0.12260472774505615, -0.011047513224184513, -0.00968723464757204, -0.03639023005962372, -0.01606788858771324, -0.060467466711997986, 0.012431829236447811, 0.02803722582757473, -0.024742521345615387, 0.018359020352363586, 0.030554844066500664, 0.04653353989124298, -0.005781997926533222, -0.07957958430051804, -0.004137231968343258, -0.0015661369543522596, -0.04480960592627525, -0.02855166420340538, 0.008815356530249119, 0.011153001338243484, -0.11888351291418076, -0.04410510137677193, 0.06847555190324783, -0.008501535281538963, -0.04220537468791008, 0.0003559881297405809, 0.04040266573429108, -0.03589988499879837, -0.014608366414904594, 0.10172533988952637, 0.006401174236088991, -0.006335775833576918, 0.013319363817572594, 0.03806872293353081, 0.024338431656360626, -0.002950239460915327, 0.0006080324528738856, -0.042664606124162674, 0.01696654222905636, -0.04926672577857971, -0.08636374771595001, -0.03664461895823479, -0.02323838323354721, -0.007819080725312233, -0.05211060494184494, 0.029516205191612244, -0.030265331268310547, -0.045480724424123764, 0.05020155757665634, -0.016459176316857338, -0.030424442142248154, -0.004245132673531771, 0.011937021277844906, -0.004143095575273037, -0.034303199499845505, 0.043671317398548126, -0.0018304390832781792, 0.005406201351433992, 0.050959598273038864, -0.038736216723918915, 0.006072879768908024, 0.0499626100063324, -0.028685254976153374, 0.04306633397936821, 0.0011786437826231122, -0.0013364256592467427, 0.025951288640499115, 0.0032511057797819376, -0.0007716105319559574, 0.005459914915263653, 0.024894954636693, -0.018115662038326263, 0.0033929951023310423, 0.033129021525382996, 0.01333815511316061, 0.0005820473306812346, -0.04014390707015991, -0.04976343736052513, -0.3755154013633728, -0.0041394527070224285, 0.0025953208096325397, 0.0019370446680113673, 0.021262915804982185, -0.010320470668375492, -0.04644620791077614, 0.009213198907673359, 0.013399419374763966, 0.06232263147830963, 0.08341220021247864, 0.024419723078608513, 0.012967713177204132, -0.14902153611183167, -0.01079617626965046, -0.014164682477712631, -0.04904164373874664, -0.040999073535203934, -0.02142566628754139, 0.01553286612033844, -0.03710857778787613, -0.0444783978164196, -0.04902084171772003, -0.02949243225157261, 0.010410869494080544, -0.01773231290280819, 0.14481373131275177, 0.0412302166223526, 0.06845833361148834, -0.05233222618699074, 0.02202535606920719, 0.005996282212436199, -0.020514043048024178, -0.04566066339612007, 0.02883842960000038, -0.03979068249464035, 0.002167490078136325, 0.013059093616902828, -0.012063873000442982, -0.05751830339431763, -0.026169495657086372, 0.0012787559535354376, -0.008064189925789833, 0.022938130423426628, -0.023852739483118057, 0.020192915573716164, 0.02410002052783966, 0.003233113791793585, -0.028457753360271454, 0.09234491735696793, 0.04208091273903847, 0.0462554432451725, 0.04033685475587845, 0.0676245465874672, 0.031861480325460434, 0.00796170812100172, -0.08854665607213974, 0.006217691116034985, 0.0328616201877594, -0.044338032603263855, 0.03797426447272301, 0.01429454144090414, 0.06283863633871078, -0.0591849610209465, -0.023796463385224342, -0.0008668824448250234, 0.029766499996185303, -0.014869589358568192, 0.008123194798827171, 0.039112769067287445, -0.016197098419070244, 0.10379879176616669, -0.017407558858394623, 0.002710511675104499, 0.02634478732943535, 0.05912507325410843, -0.029395943507552147, 0.006790033541619778, 0.03794890642166138, 0.01838286593556404, 0.030564509332180023, -0.011886360123753548, 0.06012003496289253, 0.0029212438967078924, 0.018474847078323364, 0.013608061708509922, -0.009466446936130524, -0.029324479401111603, 0.04553326964378357, 0.004820969421416521, -0.006005790550261736, -0.019480634480714798, -0.03154744952917099, -0.024551289156079292, 0.08469430357217789, 0.02516513131558895, -0.2771046459674835, 0.04295573756098747, 0.0800640732049942, 0.023578360676765442, -0.01598338969051838, 0.0001750381925376132, -0.031067846342921257, -0.031070055440068245, -0.029272645711898804, -0.0027271616272628307, -0.03516949713230133, 0.03769451752305031, 0.009614878334105015, -0.030210169032216072, -0.012226912193000317, -0.01114363968372345, 0.05678165704011917, 0.004502942319959402, 0.01907709799706936, 0.03077227808535099, 0.037430908530950546, -0.0023851075675338507, 0.13681693375110626, 0.051213186234235764, 0.002442262601107359, -0.003304147394374013, -0.013371746055781841, -0.05691305547952652, 0.07565034180879593, 0.011850530281662941, -0.006403421051800251, -0.0051688821986317635, 0.025106051936745644, 0.0254153311252594, 0.023073729127645493, -0.012737629003822803, -0.020727578550577164, 0.04323641583323479, 0.03752889856696129, -0.03504941985011101, -0.01536093931645155, 0.031279318034648895, -0.05425773933529854, 0.03179990500211716, 0.07321740686893463, 0.018095264211297035, -0.002028603572398424, -0.007064665202051401, -0.037937432527542114, -0.008744976483285427, -0.005651423241943121, -0.014977415092289448, -0.04475592449307442, 0.017983658239245415, 0.010906396433711052, 0.06971359997987747, 0.04939485713839531, -0.007085506804287434, -0.0002250890393042937, -0.02949925884604454, 0.024547122418880463, -0.06468817591667175, 0.06500376760959625, -0.00999290868639946, 0.02463134378194809 ]
[ 0.04377788305282593, -0.01328188180923462, 0.044892098754644394, 0.03197624534368515, 0.029003622010350227, 0.03131019324064255, -0.030889742076396942, 0.015596121549606323, 0.003300383221358061, -0.03500913828611374, -0.00020807304827030748, 0.021089250221848488, 0.011425947770476341, -0.04643549025058746, 0.021697204560041428, 0.004501908086240292, -0.011656517162919044, -0.024592990055680275, 0.06296921521425247, 0.008172424510121346, -0.03258683159947395, 0.018765144050121307, -0.007475727237761021, 0.03557401895523071, 0.00203823228366673, -0.02362431026995182, -0.045664720237255096, 0.01391296274960041, 0.023120969533920288, -0.10886043310165405, -0.018712792545557022, -0.041580311954021454, -0.015795689076185226, 0.010376106947660446, -0.022968551144003868, 0.02166077308356762, -0.020494109019637108, -0.02736273594200611, -0.04217970371246338, 0.02798314392566681, -0.013131252489984035, -0.014687102288007736, -0.01433180645108223, -0.02286645770072937, 0.00842825323343277, 0.009462106041610241, -0.01896050199866295, -0.04248327016830444, -0.06017709895968437, 0.023260580375790596, -0.04411129653453827, 0.0003015503170900047, -0.02591973915696144, -0.003750576637685299, 0.007880968041718006, 0.010315376333892345, -0.020939461886882782, -0.04323088377714157, 0.05175366997718811, -0.010409533977508545, -0.01934945397078991, 0.028909314423799515, -0.02214016579091549, -0.035074926912784576, -0.0016444461653009057, -0.021267058327794075, 0.001237955642864108, 0.011477266438305378, 0.0027065903414040804, 0.044718850404024124, -0.004773370455950499, 0.023105870932340622, -0.042359475046396255, 0.0004529944562818855, -0.031062889844179153, 0.006948575843125582, 0.01112873200327158, -0.039695195853710175, 0.007773519493639469, -0.03223176673054695, -0.0436878502368927, 0.0063044303096830845, -0.015694575384259224, 0.05086074396967888, 0.030004192143678665, -0.05133434385061264, -0.005424455273896456, 0.027412744238972664, -0.004521312192082405, -0.0736001506447792, -0.02577999234199524, -0.029856357723474503, 0.016330773010849953, 0.050492383539676666, -0.0722181648015976, 0.008069679141044617, 0.028407977893948555, -0.006303341127932072, 0.017268849536776543, 0.806019127368927, 0.004364192485809326, 0.008927136659622192, -0.034153543412685394, 0.020622629672288895, 0.024817073717713356, 0.006825493182986975, 0.004726575221866369, -0.010699434205889702, -0.0590939000248909, -0.017681576311588287, 0.004328269045799971, -0.014625330455601215, 0.02170674316585064, 0.03489425778388977, 0.03670806065201759, 0.040066126734018326, -0.011406528763473034, 0.010830588638782501, -0.010389775969088078, 0.03270527720451355, 0.037801504135131836, -0.0016841520555317402, 0.0049206968396902084, -0.007543501444160938, 0.0012288771104067564, -0.15087613463401794, 0.06443702429533005, -6.949753292827713e-33, 0.033963412046432495, -0.02565612457692623, 0.03807031735777855, -0.01233899500221014, 0.02287626825273037, 0.02946890890598297, -0.046971097588539124, -0.022294266149401665, -0.008641185238957405, -0.02133925072848797, -0.016163840889930725, -0.0032686335034668446, -0.020955031737685204, 0.01213840488344431, 0.030454708263278008, 0.022413939237594604, 0.02232346311211586, 0.033399250358343124, -0.0013169986195862293, 0.017246901988983154, 0.009746317751705647, 0.006954503711313009, 0.010747275315225124, 0.016618745401501656, -0.013219081796705723, 0.02706925943493843, -0.004168127663433552, 0.014426371082663536, -0.041610222309827805, -0.05044360086321831, -0.054279010742902756, 0.005990440025925636, -0.009740502573549747, -0.02858736924827099, 0.0453655868768692, -0.061448048800230026, -0.03526199236512184, 0.021219423040747643, -0.03366565704345703, 0.02406027913093567, -0.022526079788804054, 0.008307834155857563, -0.01772155612707138, -0.03950756415724754, -0.028160862624645233, 0.06337077915668488, 0.001657963963225484, 0.04573134705424309, 0.0114867789670825, 0.03633611276745796, -0.039429351687431335, 0.0365414097905159, 0.0057840896770358086, -0.016126904636621475, -0.002160134492442012, 0.0075789145193994045, 0.02023211494088173, -0.009027570486068726, 0.016558416187763214, -0.042064107954502106, 0.03389129415154457, -0.013333123177289963, 0.030069274827837944, -0.0038861450739204884, -0.017611198127269745, -0.028752174228429794, 0.07020734250545502, 0.008180019445717335, -0.005213656462728977, -0.005429343786090612, -0.0753316730260849, 0.04445473849773407, -0.003772883675992489, -0.014158847741782665, 0.029890336096286774, -0.03160615637898445, 0.03171342611312866, -0.014064954593777657, 0.03776202350854874, 0.017587121576070786, -0.0031529031693935394, -0.04846138507127762, 0.00989870447665453, -0.03635052964091301, -0.0055835675448179245, -0.04351551830768585, 0.01246260292828083, 0.05316288396716118, -0.023619364947080612, -0.0031277118250727654, 0.026736777275800705, 0.017720719799399376, -0.009363453835248947, -0.026518991217017174, -0.00521023478358984, 7.220263930310692e-33, 0.006749476306140423, 0.02429039217531681, 0.0069975899532437325, 0.02553740330040455, 0.03198016807436943, -0.025578470900654793, 0.02418319694697857, 0.047716159373521805, -0.01979636587202549, 0.05230673402547836, 0.008247599937021732, -0.060081157833337784, -0.013618117198348045, 0.021948587149381638, 0.04281824454665184, 0.02561747096478939, 0.0052306861616671085, 0.007558864541351795, -0.0154282096773386, -0.0415513701736927, -0.04994270205497742, 0.0166611410677433, 0.011620461009442806, 0.003633039304986596, 0.058637700974941254, 0.06644998490810394, 0.021821461617946625, -0.010724560357630253, -0.01813361793756485, -0.006565792020410299, -0.005466745235025883, -0.037057917565107346, -0.006371912080794573, -0.07706869393587112, 0.011211738921701908, 0.04584508389234543, 0.02579352632164955, -0.054373033344745636, -0.015385541133582592, 0.013356045819818974, 0.007073196582496166, 0.018774960190057755, -0.007282230071723461, 0.010160358622670174, 0.019235219806432724, 0.04134642332792282, 0.019446462392807007, 0.03466619551181793, 0.014443100430071354, 0.012318289838731289, 0.007399856112897396, 0.009767466224730015, 0.01586545817553997, 0.0196972768753767, 0.02161461114883423, -0.023908663541078568, 0.009909635409712791, 0.04387715458869934, -0.0693402960896492, -0.020591937005519867, -0.02639334462583065, -0.010783985257148743, -0.04328898340463638, -0.014403068460524082, -0.047192953526973724, -0.006168621592223644, -0.029502933844923973, -0.018587281927466393, 0.005935440305620432, -0.02794053964316845, 0.010572142899036407, -0.03131825104355812, -0.0072112735360860825, 0.017726000398397446, -0.013036752119660378, 0.010680350475013256, 0.005184517707675695, 0.02029075287282467, -0.02505096048116684, 0.00794211309403181, 0.030532825738191605, -0.011054442264139652, 0.05563901364803314, 0.026123447343707085, -0.021508868783712387, 0.050702013075351715, -0.056041255593299866, -0.0006087294896133244, 0.014922882430255413, -0.0420161597430706, -0.01895042322576046, -0.04206182062625885, -0.03380558639764786, 0.06479573994874954, 0.022538060322403908, -1.2578653674211182e-8, -0.027027394622564316, 0.024535058066248894, -0.0020472928881645203, -0.0022629748564213514, -0.012155775912106037, -0.02498341165482998, 0.008419890888035297, -0.004415951203554869, 0.01131581049412489, 0.033586420118808746, 0.08302941173315048, -0.015864400193095207, 0.008477517403662205, -0.003975370898842812, 0.00684250146150589, 0.010169045999646187, -0.01371914241462946, 0.015608642250299454, 0.0202657338231802, -0.009931797161698341, 0.04613468796014786, 0.012314623221755028, 0.029635272920131683, -0.028539950028061867, -0.010000132024288177, 0.008344951085746288, 0.019748322665691376, -0.03650171309709549, 0.00935286097228527, -0.03196340799331665, 0.04157457873225212, -0.06291446089744568, -0.026054341346025467, 0.01238388754427433, -0.030090905725955963, -0.036660801619291306, -0.03329816088080406, -0.008800419047474861, 0.014328056946396828, 0.030814358964562416, 0.0011383751407265663, 0.018329394981265068, -0.034001078456640244, -0.0153781957924366, -0.0027003230061382055, 0.03692368045449257, -0.03725535050034523, -0.011382431723177433, 0.007146080955862999, 0.0004030499840155244, -0.03165323659777641, -0.02763964794576168, 0.046897925436496735, 0.04310304671525955, 0.03855384886264801, -0.014870352111756802, 0.03865446522831917, 0.0006204165401868522, -0.015401707030832767, -0.035982634872198105, 0.0020134770311415195, 0.024174457415938377, -0.015627581626176834, -0.015774741768836975 ]
altair-typeerror-object-type-date-not-json-serializable
https://markhneedham.com/blog/2020/01/10/altair-typeerror-object-type-date-not-json-serializable
false
2020-01-23 00:21:00
QuickGraph #5: Australian Open
[ "quickgraph", "neo4j", "apoc" ]
[ "QuickGraph" ]
It's time for another QuickGraph, this one based on data from the Australian Open tennis tournament. We're going to use data curated by Jeff Sackmann in the https://github.com/JeffSackmann/tennis_wta/[tennis_wta^] and https://github.com/JeffSackmann/tennis_atp/[tennis_atp^] repositories. image::{{<siteurl>}}/uploads/2020/01/aus-open-banner.png[title="Australian Open Graph (Background from https://www.freepik.com/free-photo/3d-network-background-with-connecting-lines-dots_3961382.htm)"] == Setting up Neo4j We're going to use the following Docker Compose configuration in this blog post: .docker-compose.yml [source,yaml] ---- version: '3.7' services: neo4j: image: neo4j:4.0.0-enterprise container_name: "quickgraph-aus-open" volumes: - ./plugins:/plugins - ./data:/data - ./import:/import ports: - "7474:7474" - "7687:7687" environment: - "NEO4J_ACCEPT_LICENSE_AGREEMENT=yes" - "NEO4J_AUTH=neo4j/neo" - NEO4J_apoc_import_file_use__neo4j__config=true - NEO4J_apoc_import_file_enabled=true - NEO4JLABS_PLUGINS=["apoc"] ---- We'll then run the following command to spin up Neo4j: [source,bash] ---- docker-compose up ---- If we run that command, we'll see the following output: [source,text] ---- Started quickgraph-aus-open ... done Attaching to quickgraph-aus-open quickgraph-aus-open | Changed password for user 'neo4j'. quickgraph-aus-open | Fetching versions.json for Plugin 'apoc' from https://neo4j-contrib.github.io/neo4j-apoc-procedures/versions.json quickgraph-aus-open | Installing Plugin 'apoc' from https://github.com/neo4j-contrib/neo4j-apoc-procedures/releases/download/4.0.0.0/apoc-4.0.0.0-all.jar to /plugins/apoc.jar quickgraph-aus-open | Applying default values for plugin apoc to neo4j.conf quickgraph-aus-open | Directories in use: quickgraph-aus-open | home: /var/lib/neo4j quickgraph-aus-open | config: /var/lib/neo4j/conf quickgraph-aus-open | logs: /logs quickgraph-aus-open | plugins: /plugins quickgraph-aus-open | import: /import quickgraph-aus-open | data: /var/lib/neo4j/data quickgraph-aus-open | certificates: /var/lib/neo4j/certificates quickgraph-aus-open | run: /var/lib/neo4j/run quickgraph-aus-open | Starting Neo4j. quickgraph-aus-open | 2020-01-21 22:24:29.976+0000 INFO ======== Neo4j 4.0.0 ======== quickgraph-aus-open | 2020-01-21 22:24:29.982+0000 INFO Starting... quickgraph-aus-open | 2020-01-21 22:24:35.656+0000 INFO Called db.clearQueryCaches(): Query cache already empty. quickgraph-aus-open | 2020-01-21 22:24:35.656+0000 INFO Called db.clearQueryCaches(): Query cache already empty. quickgraph-aus-open | 2020-01-21 22:24:35.656+0000 INFO Called db.clearQueryCaches(): Query cache already empty. quickgraph-aus-open | 2020-01-21 22:24:40.765+0000 INFO Sending metrics to CSV file at /var/lib/neo4j/metrics quickgraph-aus-open | 2020-01-21 22:24:40.790+0000 INFO Bolt enabled on 0.0.0.0:7687. quickgraph-aus-open | 2020-01-21 22:24:40.791+0000 INFO Started. quickgraph-aus-open | 2020-01-21 22:24:40.879+0000 INFO Server thread metrics have been registered successfully quickgraph-aus-open | 2020-01-21 22:24:41.723+0000 INFO Remote interface available at http://0.0.0.0:7474/ ---- Once we see that last line we're ready to roll. == Exploring the data Jeff's repositories includes CSV files containing all the matches on the Women's WTA tour and Men's ATP tour. We won't be interested in most of the data in these files, but let's have a look at the 2019 version. We'll use the https://neo4j.com/docs/cypher-manual/current/clauses/load-csv/[`LOAD CSV`^] command to do this: [source,cypher] ---- LOAD CSV WITH HEADERS FROM 'https://raw.githubusercontent.com/JeffSackmann/tennis_wta/master/wta_matches_2019.csv' AS row RETURN row LIMIT 1; ---- .Exploring the data [opts="header"] |=== | row a| [source,json] ---- { "l_1stWon": null, "loser_ioc": "USA", "w_ace": null, "loser_age": "32.2737850787", "l_df": null, "winner_id": "211901", "winner_hand": "R", "score": "6-3 6-3", "l_bpFaced": null, "winner_rank_points": "350", "match_num": "001", "winner_seed": null, "best_of": "3", "loser_name": "Jennifer Elie", "w_bpFaced": null, "winner_ht": null, "l_1stIn": null, "tourney_level": "S", "draw_size": "32", "surface": "Hard", "l_svpt": null, "minutes": null, "tourney_date": "20181231", "l_ace": null, "loser_rank": "450", "l_SvGms": null, "l_2ndWon": null, "w_1stIn": null, "loser_id": "202495", "winner_rank": "168", "winner_ioc": "MDA", "winner_age": "21.1498973306", "tourney_id": "2019-W-ITF-AUS-01A-2019", "tourney_name": "W25 Playford", "loser_rank_points": "59", "loser_ht": null, "winner_entry": null, "winner_name": "Aliona Bolsova", "w_SvGms": null, "loser_hand": "R", "l_bpSaved": null, "w_svpt": null, "loser_seed": null, "w_1stWon": null, "w_bpSaved": null, "round": "R32", "w_df": null, "w_2ndWon": null, "loser_entry": "Q" } ---- |=== We've got lots of information to work with here. We'll filter the data using the `tourney_name` so that we only have matches from the Australian Open. `winner_id` and `loser_id` will act as the primary keys for our players and we can combine `match_num` and `tourney_date` as the primary key for matches. `winner_name` and `loser_name` give us the human readable version of the players and the `score` property tells us the result of the match. == Configuring our databases We're going to create one database for the men's matches and one for the women's matches, with a bit of help from https://neo4j.com/release-notes/neo4j-4-0-0/[Neo4j 4.0^]'s https://neo4j.com/developer/manage-multiple-databases/[multi database feature^]. [source,cypher] ---- :use system ---- image::{{<siteurl>}}/uploads/2020/01/aus-open-neo4j-4-use-system.png[title="Neo4j 4.0: System Database"] We can then run the following commands to create our databases: [source,cypher] ---- CREATE DATABASE womens; CREATE DATABASE mens; ---- Once we've done that, let's return a list of our databases: [source,cypher] ---- SHOW DATABASES; ---- .SHOW DATABASES [opts="header"] |=== | name | address | role | requestedStatus | currentStatus | error | default | "neo4j" | "0.0.0.0:7687" | "standalone" | "online" | "online" | "" | TRUE | "system" | "0.0.0.0:7687" | "standalone" | "online" | "online" | "" | FALSE | "womens" | "0.0.0.0:7687" | "standalone" | "online" | "online" | "" | FALSE | "mens" | "0.0.0.0:7687" | "standalone" | "online" | "online" | "" | FALSE |=== Everything's looking good, we're ready to start importing the data! Before we do that let's change from the `system` database to the `womens` database, using the following command: [source,cypher] ---- :use womens ---- == Importing the data We're going to import the data into the following graph model: image::{{<siteurl>}}/uploads/2020/01/aus-open-graph-model.png[title="Our Graph Model"] Now let's set up https://neo4j.com/docs/cypher-manual/current/administration/constraints/[constraints^] for our graph. We're going to create: * a unique node property constraint on the `Player` label, `id` property and `Match` label, `id` property. * a node key constraint on the `Tournament` label `name` and `year` properties Those constraints will ensure that we don't accidentally create duplicate nodes when we import our data. When we create a constraint we also get an index on the label and properties, which will help reduce our import time. Let's run the following statements: [source, cypher] ---- CREATE CONSTRAINT ON (p:Player) ASSERT p.id IS UNIQUE; CREATE CONSTRAINT ON (m:Match) ASSERT m.id IS UNIQUE; CREATE CONSTRAINT ON (t:Tournament) ASSERT (t.name, t.year) IS NODE KEY; ---- And now we'll import the data for the 2019 tournament: [source,cypher] ---- // Only keep Australian open matches LOAD CSV WITH HEADERS FROM 'https://raw.githubusercontent.com/JeffSackmann/tennis_wta/master/wta_matches_2019.csv' AS row WITH row, split(row.score, ' ') AS rawSets WHERE row.tourney_name = 'Australian Open' WITH row, row.tourney_date + '_' + row.match_num AS matchId // Create nodes for Tournaments, Matches, and Players MERGE (t:Tournament {name: row.tourney_name, year: date(row.tourney_date).year}) MERGE (m:Match {id: matchId}) SET m.round = row.round, m.score = row.score MERGE (p1:Player {id: row.winner_id}) SET p1.name = row.winner_name MERGE (p2:Player {id: row.loser_id}) SET p2.name = row.loser_name // Create relationships between nodes MERGE (p1)-[:WINNER]->(m) MERGE (p2)-[:LOSER]->(m) MERGE (m)-[:IN_TOURNAMENT]->(t) ---- .Results |=== a| 0 rows available after 1218 ms, consumed after another 0 ms Added 256 nodes, Created 381 relationships, Set 765 properties, Added 256 labels |=== We can see a sample of the imported graph in the Neo4j Browser visualisation below: image::{{<siteurl>}}/uploads/2020/01/aus-open-preview.png[title="Sample of the Australian Open Graph"] Let's now load in the data for some of the other years. Jeff Sackmann has curated data going back to 1968, but we'll only load data from the year 2000 onwards. We could import all the tournaments in one transaction, but our import will be much quicker if we use the `apoc.periodic.iterate` procedure from https://neo4j.com/docs/labs/apoc/3.5/[APOC^], Neo4j's standard library. [source,cypher] ---- CALL apoc.periodic.iterate( "UNWIND range(2000, 2019) AS year RETURN year", "WITH 'https://raw.githubusercontent.com/JeffSackmann/tennis_wta/master/wta_matches_' AS base, year LOAD CSV WITH HEADERS FROM base + year + '.csv' AS row WITH row, split(row.score, ' ') AS rawSets WHERE row.tourney_name = 'Australian Open' WITH row, row.tourney_date + '_' + row.match_num AS matchId MERGE (t:Tournament {name: row.tourney_name, year: date(row.tourney_date).year}) MERGE (m:Match {id: matchId}) SET m.round = row.round, m.score = row.score MERGE (p1:Player {id: row.winner_id}) SET p1.name = row.winner_name MERGE (p2:Player {id: row.loser_id}) SET p2.name = row.loser_name MERGE (p1)-[:WINNER]->(m) MERGE (p2)-[:LOSER]->(m) MERGE (m)-[:IN_TOURNAMENT]->(t) ", {}) ---- .Results [opts="header"] |=== | batches | total | timeTaken | committedOperations | failedOperations | failedBatches | retries | errorMessages | batch | operations | wasTerminated | failedParams | 1 | 20 | 13 | 20 | 0 | 0 | 0 | {} | {total: 1, committed: 1, failed: 0, errors: {}} | {total: 20, committed: 20, failed: 0, errors: {}} | FALSE | {} |=== One interesting thing about this dataset is that it has implicit relationships between tournaments and between matches. For example, the 2019 tournament is the `NEXT_TOURNAMENT` after the 2018 tournament and if a player wins their 1st round match, there could be a `NEXT_MATCH` relationship to their 2nd round match. I think having these explicit relationships will enable some cool path based queries. We'll need to write a query that collects these nodes in order and uses the https://neo4j.com/docs/labs/apoc/current/graph-updates/data-creation/#linked-lists[`apoc.nodes.link`^] procedure to create the new relationships. The following Cypher statements create the relationships: [source, cypher] ---- // Store the rounds in a list that will be used to sort matches :params rounds: ["R128", "R64", "R32", "R16", "QF", "SF", "F"]; // Build a map from that list WITH apoc.map.fromLists( $rounds, range(0, size($rounds)-1)) AS rounds // Collect matches grouped by player and tournament, ordered by round MATCH (t:Tournament)<-[:IN_TOURNAMENT]-(m:Match)<--(player) WITH player, m, t ORDER BY player, rounds[m.round] WITH player, t, collect(m) AS matches WHERE size(matches) > 1 // Add NEXT_MATCH relationship between adjacent matches CALL apoc.nodes.link(matches, "NEXT_MATCH") RETURN count(*); // Collect tournaments ordered by year MATCH (t:Tournament) WITH t ORDER BY t.year WITH collect(t) AS tournaments // Add NEXT_TOURNAMENT between adjacent matches CALL apoc.nodes.link(tournaments, "NEXT_TOURNAMENT") RETURN count(*); ---- image::{{<siteurl>}}/uploads/2020/01/aus-open-linked-lists.png[title="Linked Lists in the Australian Open Graph"] The full import script for the women's tournament is available in the https://github.com/mneedham/australian-open-neo4j/blob/master/scripts/import_womens.cypher[import_womens.cypher^] file. And there is an equivalent import script for the men's tournament in the https://github.com/mneedham/australian-open-neo4j/blob/master/scripts/import_mens.cypher[import_mens.cypher^] file. == Querying the graph Alright, it's time to start writing some queries! == Who won each of the tournaments? Let's start with a simple query to find out the finalists in each tournament and the result of the final match: [source,cypher] ---- MATCH (winner:Player)-[:WINNER]->(match:Match {round: "F"})<-[:LOSER]-(loser), (match)-[:IN_TOURNAMENT]->(tournament) RETURN tournament.year AS year, winner.name AS winner, loser.name AS loser, match.score AS score ORDER BY tournament.year ---- .Who won each of the tournaments? [opts="header"] |=== | year | winner | loser | score | 2000 | "Lindsay Davenport" | "Martina Hingis" | "6-1 7-5" | 2001 | "Jennifer Capriati" | "Martina Hingis" | "6-4 6-3" | 2002 | "Jennifer Capriati" | "Martina Hingis" | "4-6 7-6(7) 6-2" | 2003 | "Serena Williams" | "Venus Williams" | "7-6(4) 3-6 6-4" | 2004 | "Justine Henin" | "Kim Clijsters" | "6-3 4-6 6-3" | 2005 | "Serena Williams" | "Lindsay Davenport" | "2-6 6-3 6-0" | 2006 | "Amelie Mauresmo" | "Justine Henin" | "6-1 2-0 RET" | 2007 | "Serena Williams" | "Maria Sharapova" | "6-1 6-2" | 2008 | "Maria Sharapova" | "Ana Ivanovic" | "7-5 6-3" | 2009 | "Serena Williams" | "Dinara Safina" | "6-0 6-3" | 2010 | "Serena Williams" | "Justine Henin" | "6-4 3-6 6-2" | 2011 | "Kim Clijsters" | "Na Li" | "3-6 6-3 6-3" | 2012 | "Victoria Azarenka" | "Maria Sharapova" | "6-3 6-0" | 2013 | "Victoria Azarenka" | "Na Li" | "4-6 6-4 6-3" | 2014 | "Na Li" | "Dominika Cibulkova" | "7-6(3) 6-0" | 2015 | "Serena Williams" | "Maria Sharapova" | "6-3 7-6(5)" | 2016 | "Angelique Kerber" | "Serena Williams" | "6-4 3-6 6-4" | 2017 | "Serena Williams" | "Venus Williams" | "6-4 6-4" | 2018 | "Caroline Wozniacki" | "Simona Halep" | "7-6(2) 3-6 6-4" | 2019 | "Naomi Osaka" | "Petra Kvitova" | "7-6(2) 5-7 6-4" |=== We've got lots of different winners here and a few players who have won the tournament multiple times. Serena Williams has won the tournament an incredible 7 times in 20 years! == What was Osaka's route to the 2019 final? The final is the most important match, but what route did the winner take to get there? Let's have a look at Naomi Osaka's journey to the 2019 final: [source,cypher] ---- // Find all the matches that the winner of the tournament played MATCH path = (p:Player)-[:WINNER]->(match:Match {round: "F"})<-[:NEXT_MATCH*]-(m)<-[:WINNER]-(p) // Only get the winner of the 2019 tournament // Only get the longest path of NEXT_MATCH relationships that includes all matches // played by the winner WHERE not((m)<-[:NEXT_MATCH]-()) AND (match)-[:IN_TOURNAMENT]-(:Tournament {year: 2019}) // Find the winners and losers of all the matches in which the winner participated RETURN path, [node in nodes(path) WHERE node:Match | [p = (p1)-[:WINNER]->(node)<-[:LOSER]-(p2) | p]]; ---- image::{{<siteurl>}}/uploads/2020/01/aus-open-osaka.png[title="Naomi Osaka's path to the 2019 final"] == Who lost the final, but won it the next year? In this query we're going to try and find players that lost the final, but then won the tournament the following year: [source,cypher] ---- MATCH (player)-[:LOSER]->(:Match {round: "F"})-[:IN_TOURNAMENT]->(t)-[:NEXT_TOURNAMENT]->(t2), (player)-[:WINNER]->(:Match {round: "F"})-[:IN_TOURNAMENT]->(t2) RETURN player.name AS player, t.year, t2.year ---- .Who lost the final, but won it the next year? [opts="header"] |=== | player | t.year | t2.year | "Maria Sharapova" | 2007 | 2008 | "Na Li" | 2013 | 2014 | "Serena Williams" | 2016 | 2017 |=== Just the three players fixed their heart break at losing the final as quickly as possible. == Who lost the final, but subsequently won the tournament? Are there any players who lost the final but won it at some future tournament even if it wasn't the next year? To do that we'll add a `*` to the `NEXT_TOURNAMENT` part of the query, which will cause the Cypher engine to look at all future tournaments rather than just the following year: [source,cypher] ---- MATCH (player)-[:LOSER]->(:Match {round: "F"})-[:IN_TOURNAMENT]->(t)-[:NEXT_TOURNAMENT*]->(t2), (player)-[:WINNER]->(:Match {round: "F"})-[:IN_TOURNAMENT]->(t2) RETURN player.name, t.year, t2.year ---- .Who lost the final, but subsequently won it? [opts="header"] |=== | player | t.year | t2.year | "Maria Sharapova" | 2007 | 2008 | "Kim Clijsters" | 2004 | 2011 | "Na Li" | 2013 | 2014 | "Na Li" | 2011 | 2014 | "Serena Williams" | 2016 | 2017 |=== We get the 3 players from the previous query as well as Kim Clijsters and Li Na. Li Na actually lost the final twice before winning it in 2014. == How long did players wait from their first final defeat until their first win? We could tweak this query slightly to find the number of years that passed between a player losing their first final and winning their first final. We'll also add an additional filter so that we exclude players who have already won the tournament before they lost in the final. [source,cypher] ---- // Find the first year that a player lost the final MATCH (player)-[:LOSER]->(:Match {round: "F"})-[:IN_TOURNAMENT]->(t) // Where they haven't previously won the tournament WHERE not((player)-[:WINNER]->(:Match {round: "F"})-[:IN_TOURNAMENT]->()-[:NEXT_TOURNAMENT*]->(t)) WITH player, t ORDER BY player, t.year WITH player, collect(t)[0] AS firstLoss // Find the first year that a player won the final after that loss MATCH (firstLoss)-[:NEXT_TOURNAMENT*]->(t2), (player)-[:WINNER]->(:Match {round: "F"})-[:IN_TOURNAMENT]->(t2) WITH player, firstLoss, t2 ORDER BY player, t2.year WITH player, firstLoss, collect(t2)[0] AS firstWin RETURN player.name, firstLoss.year, firstWin.year, firstWin.year - firstLoss.year AS theWait ORDER BY theWait DESC ---- .How long did players wait from their first final defeat until their first win? [opts="header"] |=== | player.name | firstLoss.year | firstWin.year | theWait | "Kim Clijsters" | 2004 | 2011 | 7 | "Na Li" | 2011 | 2014 | 3 | "Maria Sharapova" | 2007 | 2008 | 1 |=== Clijsters had to wait the longest and Serena had in fact previously won the tournament, so she isn't returned in the results anymore. We can run this query against the Men's database as well by switching to that database using the command `:use mens` and re-running the query. .How long did players wait from their first final defeat until their first win? [opts="header"] |=== | player.name | firstLoss.year | firstWin.year | theWait | "Marat Safin" | 2002 | 2005 | 3 |=== Marat Safin is the only one, and he didn't have to wait too long to win the tournament. == What about sets? Tennis commentators often talk about the number of sets that the winner of the tournament lost along the way, so that's what we're going to explore next. At the moment the sets won is hidden inside the `score` property on the `Match` nodes. We're going to create one node per set played and connect those sets to the existing graph, as shown in the diagram below: image::{{<siteurl>}}/uploads/2020/01/aus-open-graph-model-sets.png[title="Our Graph Model including sets"] We can update the graph with the following Cypher statement: [source,cypher] ---- CALL apoc.periodic.iterate( "UNWIND range(2000, 2019) AS year RETURN year", "WITH 'https://raw.githubusercontent.com/JeffSackmann/tennis_wta/master/wta_matches_' AS base, year LOAD CSV WITH HEADERS FROM base + year + '.csv' AS row WITH row, split(row.score, ' ') AS rawSets WHERE row.tourney_name = 'Australian Open' WITH row, rawSets, [set in rawSets | apoc.text.regexGroups(set, \"(\\\\d{1,2})-(\\\\d{1,2})\")[0][1..]] AS sets, row.tourney_date + '_' + row.match_num AS matchId MATCH (m:Match {id: matchId}) MATCH (p1:Player {id: row.winner_id}) MATCH (p2:Player {id: row.loser_id}) WITH m, sets, rawSets, matchId, p1, p2 UNWIND range(0, size(sets)-1) AS setNumber MERGE (s:Set {id: matchId + '_' + setNumber}) SET s.matchWinnerScore = toInteger(sets[setNumber][0]), s.matchLoserScore = toInteger(sets[setNumber][1]), s.score = rawSets[setNumber], s.number = setNumber +1 MERGE (s)-[:IN_MATCH]->(m) FOREACH(ignoreMe IN CASE WHEN s.matchWinnerScore >= s.matchLoserScore THEN [1] ELSE [] END | MERGE (p1)-[:WINNER]->(s) MERGE (p2)-[:LOSER]->(s)) FOREACH(ignoreMe IN CASE WHEN s.matchWinnerScore < s.matchLoserScore THEN [1] ELSE [] END | MERGE (p1)-[:LOSER]->(s) MERGE (p2)-[:WINNER]->(s)) ", {}); ---- We can see a sample of the graph with sets included in the Neo4j Browser visualisation below: image::{{<siteurl>}}/uploads/2020/01/aus-open-sets.png[title="Sample of the Graph with sets added"] Now let's write some queries against the updated model. == Querying the graph: Sets Edition == Did anyone win the tournament without losing a set? Let's start by finding out if any players had a perfect tournament i.e. they won it without losing a set. The following query reveals all: [source,cypher] ---- MATCH (winner:Player)-[:WINNER]->(:Match {round: "F"})-[:IN_TOURNAMENT]->(t) MATCH (winner)-[:WINNER]->(match)-[:IN_TOURNAMENT]->(t) WITH winner, match, t ORDER BY t.year WITH winner, t, collect([(match)<-[:IN_MATCH]-(set:Set) WHERE (winner)-[:LOSER]->(set) | set ][0]) AS setDropped WHERE size(setDropped) = 0 RETURN winner.name AS winner, t.year AS year ---- .Did anyone win the tournament without losing a set? [opts="header"] |=== | winner | year | "Roger Federer" | 2007 |=== Just the one on the men's side. What about the women's? .Did anyone win the tournament without losing a set? [opts="header"] |=== | winner | year | "Lindsay Davenport" | 2000 | "Maria Sharapova" | 2008 | "Serena Williams" | 2017 |=== Only three players here. So that means in most tournaments the winner loses a set somewhere along the way. == Did the winner drop any sets? Let's tweak that previous query a bit to return the number of matches in which the winner lost a set and the total number of sets lost: [source,cypher] ---- WITH apoc.map.fromLists( $rounds, range(0, size($rounds)-1)) AS rounds MATCH (winner:Player)-[:WINNER]->(:Match {round: "F"})-[:IN_TOURNAMENT]->(t) MATCH (winner)-[:WINNER]->(match)-[:IN_TOURNAMENT]->(t), (match)<-[:LOSER]-(opponent) WHERE (winner)-[:LOSER]->(:Set)-[:IN_MATCH]->(match) WITH * ORDER BY rounds[match.round] WITH winner, t, collect({round: match.round, opponent: opponent.name, score: match.score }) AS matches, collect([(match)<-[:IN_MATCH]-(set)<-[:LOSER]-(winner) | set]) AS sets RETURN winner.name AS winner, t.year AS year, size(matches) AS count, size(apoc.coll.flatten(sets)) AS sets, matches ORDER BY count DESC LIMIT 5 ---- .Did the winner drop any sets? [opts="header", cols="2,1,1,1,5"] |=== | winner | year | count | sets | matches | "Thomas Johansson" | 2002 | 6 | 7 | [{score: "6-1 3-6 7-6(2) 6-4", round: "R128", opponent: "Jacobo Diaz"}, {score: "5-7 6-2 6-2 6-4", round: "R32", opponent: "Younes El Aynaoui"}, {score: "6-7(8) 6-2 6-0 6-4", round: "R16", opponent: "Adrian Voinea"}, {score: "6-0 2-6 6-3 6-4", round: "QF", opponent: "Jonas Bjorkman"}, {score: "7-6(5) 0-6 4-6 6-3 6-4", round: "SF", opponent: "Jiri Novak"}, {score: "3-6 6-4 6-4 7-6(4)", round: "F", opponent: "Marat Safin"}] | "Roger Federer" | 2017 | 4 | 7 | [{score: "7-5 3-6 6-2 6-2", round: "R128", opponent: "Jurgen Melzer"}, {score: "6-7(4) 6-4 6-1 4-6 6-3", round: "R16", opponent: "Kei Nishikori"}, {score: "7-5 6-3 1-6 4-6 6-3", round: "SF", opponent: "Stanislas Wawrinka"}, {score: "6-4 3-6 6-1 3-6 6-3", round: "F", opponent: "Rafael Nadal"}] | "Marat Safin" | 2005 | 4 | 5 | [{score: "6-4 3-6 6-3 6-4", round: "R32", opponent: "Mario Ancic"}, {score: "4-6 7-6(1) 7-6(5) 7-6(2)", round: "R16", opponent: "Olivier Rochus"}, {score: "5-7 6-4 5-7 7-6(6) 9-7", round: "SF", opponent: "Roger Federer"}, {score: "1-6 6-3 6-4 6-4", round: "F", opponent: "Lleyton Hewitt"}] | "Roger Federer" | 2006 | 4 | 5 | [{score: "6-4 6-0 3-6 4-6 6-2", round: "R16", opponent: "Tommy Haas"}, {score: "6-4 3-6 7-6(7) 7-6(5)", round: "QF", opponent: "Nikolay Davydenko"}, {score: "6-3 5-7 6-0 6-2", round: "SF", opponent: "Nicolas Kiefer"}, {score: "5-7 7-5 6-0 6-2", round: "F", opponent: "Marcos Baghdatis"}] | "Stanislas Wawrinka" | 2014 | 4 | 5 | [{score: "6-3 6-3 6-7(4) 6-4", round: "R64", opponent: "Alejandro Falla"}, {score: "2-6 6-4 6-2 3-6 9-7", round: "QF", opponent: "Novak Djokovic"}, {score: "6-3 6-7(1) 7-6(3) 7-6(4)", round: "SF", opponent: "Tomas Berdych"}, {score: "6-3 6-2 3-6 6-3", round: "F", opponent: "Rafael Nadal"}] |=== So Thomas Johansson had the toughest route to the title, dropping a set in every match except for the 2nd round (R64). We could probably think of some other set based queries to execute against this dataset, but this blog post has already got much longer than I expected so I think we'll leave it there for now. == What’s interesting about this QuickGraph? I've always wanted to put tennis matches into a graph, but I was always struggling to think what type of graphy queries could be run against such a dataset. And for most of this blog post I wasn't really convinced that a graph was allowing us to write very interesting queries. Things got more interesting in the last section where we did set analysis. I found having the data in a graph structure made was helpful for answering these questions, especially when we were looking for the non existence of a relationship. I do still wonder if there's a cleaner way to write those queries. Thanks against to Jeff Sackmann for curating the datasets. You saved me a lot of work preparing the data!
Learn how to build a graph of the Australian Open tennis tournament
uploads/2020/01/aus-open-banner.png
[ -0.0065102227963507175, -0.020331785082817078, 0.008794869296252728, 0.052833378314971924, 0.08786327391862869, 0.008732610382139683, 0.022851988673210144, 0.040091622620821, 0.003341805888339877, -0.04116960987448692, -0.004352612420916557, -0.01889088936150074, -0.061163194477558136, -0.0034803918097168207, 0.015638330951333046, 0.0728221908211708, 0.05823850631713867, 0.03483620285987854, -0.003537364536896348, -0.011204574257135391, 0.02836785279214382, 0.030187036842107773, 0.012588202022016048, 0.026154570281505585, 0.027273084968328476, 0.003727927105501294, 0.021869992837309837, 0.003032681066542864, -0.062363751232624054, -0.010479697026312351, 0.04957202821969986, -0.01971103623509407, 0.017026783898472786, -0.001968443626537919, 0.030734797939658165, 0.0031513047870248556, -0.03791268542408943, 0.017479706555604935, -0.004958856385201216, 0.009971654042601585, -0.08813939243555069, 0.03894893825054169, -0.010457811877131462, 0.011230770498514175, -0.017212767153978348, 0.012135381810367107, -0.048727601766586304, 0.04399769380688667, 0.0003953706764150411, -0.0060120997950434685, -0.09355902671813965, 0.02770494483411312, -0.024174677208065987, 0.02762361615896225, -0.00967219565063715, 0.04484908655285835, 0.0039323172532022, -0.04882204905152321, 0.031473129987716675, -0.04920121282339096, -0.01741153560578823, -0.006688895635306835, 0.021959243342280388, 0.02727019041776657, 0.014191863127052784, -0.04720025882124901, 0.002509313402697444, 0.06191029027104378, -0.03606502339243889, -0.00028193939942866564, 0.013808922842144966, 0.012911463156342506, -0.025308052077889442, -0.02310873381793499, 0.006705859676003456, -0.06338999420404434, 0.0006794697837904096, 0.07279122620820999, 0.031203672289848328, 0.04988722875714302, -0.016650935634970665, 0.02297121286392212, -0.016518374904990196, 0.03452949598431587, -0.015042777173221111, -0.06772612780332565, -0.03131020814180374, -0.020325055345892906, -0.06433990597724915, 0.06002947688102722, 0.009064019657671452, -0.05421772599220276, 0.002906323876231909, 0.007614081259816885, -0.014741652645170689, 0.03134584054350853, 0.007212446071207523, 0.020778795704245567, 0.01965874619781971, -0.011612833477556705, -0.03638249635696411, -0.02453841269016266, 0.022130347788333893, 0.02490546554327011, -0.07833230495452881, -0.03420480340719223, -0.0066363918595016, -0.027122193947434425, -0.002681325189769268, 0.0032855046447366476, -0.010602760128676891, 0.006412021815776825, 0.005731042008846998, 0.01670689880847931, -0.0902741327881813, 0.08287186175584793, 0.02604883536696434, -0.03048693574965, -0.018269706517457962, 0.004290016833692789, 0.04618552327156067, 0.025401677936315536, 0.004398666322231293, 0.08154161274433136, -0.007001704536378384, 0.020086556673049927, -0.002097924007102847, 0.04164674133062363, -0.018786832690238953, -0.05565958470106125, -0.018239114433526993, 0.07326175272464752, -0.002296088496223092, 0.001339173293672502, -0.0008260326576419175, -0.01813669502735138, -0.004524304065853357, 0.01926995813846588, 0.04819829389452934, 0.029962996020913124, 0.024359848350286484, -0.054292961955070496, 0.011439123190939426, 0.008511628024280071, 0.02996532991528511, 0.008812897838652134, 0.0006059322040528059, -0.04636452719569206, -0.02712969295680523, -0.006868356838822365, 0.0025906602386385202, -0.0033438068348914385, 0.05564901977777481, -0.04516041278839111, 0.018300222232937813, 0.12116386741399765, 0.06924468278884888, 0.012816740199923515, -0.02271292544901371, 0.01747574843466282, 0.04567969590425491, 0.03824760392308235, -0.0026524304412305355, 0.04027028754353523, 0.005205828230828047, -0.035502489656209946, -0.029991379007697105, 0.06391796469688416, -0.005550395231693983, 0.001917616929858923, -0.05453343689441681, -0.06646367162466049, 0.07957689464092255, -0.04494551196694374, -0.019108789041638374, 0.05662199482321739, 0.07545068860054016, 0.014956256374716759, 0.003733319928869605, 0.002313426695764065, -0.08764798194169998, 0.045780766755342484, 0.0052311355248093605, 0.011090636253356934, 0.01161231566220522, -0.017652567476034164, 0.07731422781944275, 0.04421740397810936, 0.028223594650626183, 0.05114799737930298, -0.07274399697780609, -0.0680924579501152, -0.02796187251806259, -0.01848372258245945, 0.06401477754116058, -0.01554629672318697, 0.002901962026953697, 0.050293684005737305, 0.003509761532768607, 0.037507615983486176, 0.008004886098206043, 0.012975629419088364, 0.02574010193347931, -0.0484953410923481, -0.08022643625736237, 0.05174779146909714, 0.023222167044878006, -0.06338463723659515, -0.04686767980456352, 0.01219378411769867, -0.039665307849645615, -0.018409181386232376, 0.028713934123516083, -0.035004813224077225, 0.026744989678263664, 0.016273580491542816, 0.04637080058455467, -0.02583286724984646, 0.02619585022330284, -0.050151288509368896, 0.03594117984175682, 0.008588542230427265, -0.016952523961663246, 0.011193820275366306, -0.01088759209960699, 0.11389550566673279, 0.0662919282913208, -0.025305312126874924, -0.05659247189760208, 0.031847886741161346, 0.025860419496893883, -0.024888845160603523, 0.008239512331783772, -0.031390633434057236, 0.00044038021587766707, -0.033741530030965805, -0.033086709678173065, -0.02474030666053295, -0.006507699377834797, -0.022094039246439934, 0.018003620207309723, 0.060162171721458435, -0.018152736127376556, 0.06369712948799133, 0.014325129799544811, -0.006062519736588001, -0.02109023742377758, -0.039457205682992935, -0.06439943611621857, 0.013294327072799206, 0.04339722543954849, 0.000762586947530508, 0.037453532218933105, -0.03680945560336113, -0.01038690097630024, -0.04517074674367905, -0.021347643807530403, 0.021112410351634026, 0.043400801718235016, 0.04412051662802696, 0.0038089051377028227, 0.040092114359140396, -0.042184218764305115, 0.026125846430659294, -0.0014612345257773995, -0.06230086833238602, -0.048743486404418945, -0.024931229650974274, 0.01254979893565178, -0.0015528637450188398, 0.03719447925686836, 0.0007418422610498965, -0.00003127498348476365, -0.01089046336710453, 0.03424329310655594, 0.011737936176359653, 0.014444281347095966, 0.02487647533416748, -0.00344648864120245, -0.016821688041090965, -0.02186615765094757, 0.0654093399643898, -0.05187467485666275, -0.015457721427083015, 0.002746426733210683, -0.06726687401533127, 0.04402407258749008, -0.03235737979412079, -0.02728026546537876, -0.005476523656398058, 0.023239780217409134, 0.044962525367736816, 0.01945512555539608, 0.00007224144064821303, 0.05070684105157852, 0.0017317431047558784, 0.014444791711866856, 0.002186848083510995, -0.010541160590946674, 0.04935234412550926, -0.014343831688165665, 0.03676386550068855, 0.03907639905810356, -0.028996556997299194, 0.004096006974577904, -0.031330909579992294, 0.01564287580549717, -0.03774774819612503, -0.2882743179798126, 0.04278729110956192, -0.013395357877016068, -0.041296083480119705, 0.011478565633296967, -0.009520841762423515, 0.002989970613270998, -0.02361201122403145, -0.02202419377863407, -0.012079793959856033, -0.00907356571406126, -0.049246594309806824, -0.009632453322410583, 0.03130901977419853, 0.020891448482871056, 0.03358502686023712, -0.0038058790378272533, -0.06124771758913994, 0.019259318709373474, 0.015351821668446064, -0.01954648457467556, -0.040640462189912796, 0.004918092396110296, 0.0149920042604208, 0.013923659920692444, 0.02662704885005951, -0.0866675078868866, 0.013521777465939522, -0.03912527114152908, -0.027538277208805084, -0.000734530040062964, -0.018820660188794136, 0.008438199758529663, 0.014942655339837074, -0.010611615143716335, -0.03397717326879501, 0.03271897882223129, -0.009618892334401608, -0.01808970980346203, 0.004457154311239719, -0.02997511625289917, -0.014237537980079651, -0.01682189106941223, 0.009795372374355793, 0.0755709707736969, 0.011487399227917194, -0.06439230591058731, 0.0035687636118382215, -0.025003904476761818, 0.09032964706420898, -0.026606254279613495, -0.0328681543469429, -0.036206282675266266, 0.01643899828195572, -0.0022588977590203285, -0.017995748668909073, -0.0061106509529054165, -0.01608494110405445, -0.05146504193544388, -0.023142585530877113, -0.010068048723042011, -0.03465580940246582, 0.006392715033143759, -0.056962329894304276, -0.034524790942668915, -0.06269127130508423, -0.07417749613523483, -0.021129926666617393, 0.07491501420736313, 0.030346643179655075, -0.027256716042757034, 0.044451627880334854, -0.013200144283473492, -0.09401348233222961, -0.034942127764225006, -0.01938452385365963, -0.018300576135516167, 0.01588522456586361, 0.0018843815196305513, 0.05419526249170303, -0.03337402641773224, -0.059430081397295, 0.0031719820108264685, 0.019118210300803185, 0.028123704716563225, -0.01049884408712387, 0.025647835806012154, 0.0048900023102760315, -0.005520124454051256, 0.012475832365453243, 0.05401970073580742, -0.02785576693713665, -0.025292590260505676, -0.032435256987810135, -0.01708451472222805, 0.017841709777712822, -0.006898453924804926, -0.0053103272803127766, 0.006791464518755674, 0.0786910280585289, 0.023249944671988487, -0.03863542154431343, 0.007479110732674599, -0.010947976261377335, -0.028746183961629868, -0.018512705340981483, -0.0384339913725853, 0.004238311201334, 0.03346840292215347, 0.02265612594783306, 0.007174699101597071, -0.02698926255106926, 0.04190831631422043, -0.05679399520158768, -0.03222128003835678, -0.0038475191686302423, 0.016676319763064384, 0.01810847409069538, 0.036993131041526794, -0.03267177939414978, -0.05056161805987358, 0.024620700627565384, 0.02466970682144165, -0.002493352396413684, -0.047863926738500595, -0.014826147817075253, -0.0062330798245966434, -0.026354793459177017, 0.00867440551519394, 0.022152535617351532, -0.01287601888179779, 0.027309682220220566, 0.030522262677550316, -0.028663160279393196, 0.035941965878009796, -0.011542227119207382, -0.05138106644153595, -0.04276416078209877, 0.04156378284096718, -0.0004033345903735608, -0.017490863800048828, 0.02980189584195614, -0.0082990238443017, 0.024502746760845184, 0.054309483617544174, -0.008819694630801678, -0.0009913841495290399, 0.0036310311406850815, 0.03919930383563042, -0.02122659422457218, -0.010435628704726696, -0.03542328625917435, 0.012922576628625393, -0.04187894985079765, -0.019191652536392212, -0.005590750835835934, 0.045842595398426056, -0.0344882495701313, -0.03244080767035484, -0.040138453245162964, 0.009916109964251518, -0.05337250232696533, -0.016946988180279732, 0.001229089335538447, 0.001381422276608646, 0.05361437797546387, 0.007937411777675152, 0.008834172040224075, -0.009765972383320332, -0.028893260285258293, 0.029750199988484383, 0.002382488688454032, -0.024378983303904533, -0.024011172354221344, -0.0028566739056259394, 0.0045595355331897736, -0.004653099458664656, 0.024740446358919144, 0.05261998996138573, 0.031129829585552216, -0.012129995040595531, -0.035662371665239334, -0.0014773581642657518, 0.01605048030614853, 0.051324132829904556, 0.04157797992229462, -0.02302570454776287, 0.01186431385576725, -0.009344925172626972, 0.0014947288436815143, -0.018417837098240852, 0.03538399934768677, -0.02163597382605076, 0.011295081116259098, -0.023820508271455765, -0.0639832615852356, 0.04453594237565994, 0.015377483330667019, 0.00702259037643671, 0.035051681101322174, -0.010720697231590748, 0.00899924710392952, -0.03393319621682167, 0.036408498883247375, 0.05737300589680672, -0.07518783956766129, -0.04089775308966637, 0.0009695462649688125, 0.009919977746903896, -0.014056172221899033, -0.0017950671026483178, -0.06625396758317947, -0.010806182399392128, -0.0030378622468560934, 0.028955506160855293, -0.03646731376647949, -0.04806653782725334, -0.0008696930599398911, -0.002284443471580744, 0.011643584817647934, 0.018346469849348068, 0.017248449847102165, 0.005366443656384945, -0.006991791073232889, -0.027234531939029694, 0.04374195262789726, -0.03135894238948822, -0.005897375289350748, 0.0014133008662611246, -0.01248210109770298, 0.010469652712345123, -0.03703965246677399, 0.023678358644247055, 0.014716927893459797, -0.017704319208860397, 0.025869330391287804, -0.05708606168627739, 0.017597848549485207, -0.0003240060177631676, 0.033490315079689026, -0.012377551756799221, 0.0047242664732038975, -0.052678924053907394, 0.003172234632074833, -0.04484890028834343, -0.014341350644826889, -0.007981475442647934, 0.008815241046249866, 0.014524952508509159, 0.03217174485325813, -0.0023500388488173485, 0.04429643601179123, -0.013702193275094032, -0.02794768661260605, 0.03687611594796181, -0.0507715679705143, -0.047586407512426376, 0.00978704635053873, -0.06537675857543945, 0.013490223325788975, 0.012212265282869339, 0.011357661336660385, -0.038128603249788284, 0.05734996870160103, 0.037992898374795914, 0.013694261200726032, 0.02451338618993759, -0.008919253945350647, 0.025393538177013397, -0.013826604001224041, -0.012197311036288738, -0.08785072714090347, 0.004007610026746988, 0.03186311200261116, -0.015336312353610992, 0.013613281771540642, 0.008678466081619263, -0.02193533442914486, 0.007870247587561607, -0.06676577776670456, -0.03302738070487976, 0.040268510580062866, -0.024793297052383423, 0.009681166149675846, -0.0006674961186945438, -0.06688953191041946, 0.01631293259561062, 0.04017578810453415, -0.06592077761888504, -0.006984243169426918, -0.014046701602637768, 0.0594094954431057, -0.01411652285605669, 0.04937322065234184, -0.02581062540411949, -0.027280235663056374, 0.07886381447315216, 0.010839344002306461, 0.007017017342150211, 0.04558679088950157, 0.007916827686131, 0.040590766817331314, 0.036471765488386154, -0.016672391444444656, 0.010343429632484913, 0.029595138505101204, -0.02402140386402607, -0.06003611162304878, 0.038380082696676254, 0.01104850322008133, -0.030261201784014702, -0.05010630190372467, 0.05747859552502632, 0.009463976137340069, -0.04347553476691246, -0.04040606692433357, 0.034357473254203796, -0.043093807995319366, 0.002924972213804722, -0.02790207415819168, 0.006271731108427048, -0.04066590592265129, 0.04978864639997482, -0.011005105450749397, -0.00402070302516222, 0.06490596383810043, 0.01919661834836006, -0.012438490986824036, 0.009869717061519623, 0.09774339199066162, 0.07557138055562973, 0.036072563380002975, 0.009584636427462101, 0.06726032495498657, -0.008322089910507202, -0.03126835823059082, -0.012348907068371773, -0.0023919909726828337, -0.02870476059615612, -0.007189629599452019, 0.027307208627462387, 0.06317245215177536, -0.030009416863322258, 0.05272809788584709, 0.002727355808019638, -0.020875561982393265, -0.02075282856822014, -0.0016772809904068708, 0.019765067845582962, 0.036531005054712296, 0.02704722061753273, 0.06224678456783295, -0.042797982692718506, -0.03829198703169823, 0.03581756725907326, -0.0000036568228551914217, -0.01843726448714733, 0.035511359572410583, -0.024368036538362503, 0.009642344899475574, 0.01731395535171032, 0.028124401345849037, 0.0913008525967598, -0.05405254662036896, -0.013344182632863522, -0.006297946907579899, 0.02499450370669365, 0.044468481093645096, 0.01282720547169447, -0.0211208276450634, -0.02292790077626705, -0.01590242236852646, -0.02884817123413086, -0.012481321580708027, -0.022054273635149002, -0.023154282942414284, 0.014426815323531628, -0.01271654013544321, -0.0013505633687600493, 0.0235186405479908, -0.024760417640209198, -0.00885079801082611, -0.0475643128156662, -0.03477850183844566, -0.06191735342144966, -0.06920094788074493, 0.0036700463388115168, 0.003835521172732115, 0.003381923772394657, -0.00925777480006218, -0.022993195801973343, -0.02052445150911808, -0.00025948346592485905, 0.04663388803601265, -0.05772720277309418, -0.00938386470079422, 0.0005871665780432522, 0.024078547954559326, 0.008357132785022259, -0.006547240540385246, 0.07342356443405151, 0.012940339744091034, 0.017074616625905037, -0.0186807531863451, 0.039316337555646896, 0.03148633614182472, 0.016846805810928345, 0.000984239624813199, -0.08292615413665771, 0.007549641653895378, 0.01776139810681343, -0.025115080177783966, -0.07774442434310913, 0.018490202724933624, 0.05299336463212967, 0.010152911767363548, 0.05176258832216263, 0.00631640525534749, -0.008528385311365128, -0.05475015193223953, 0.0024029314517974854, -0.011701012961566448, -0.004008940886706114, 0.03360122814774513, -0.020864125341176987, 0.08895430713891983, 0.04558253288269043, -0.014491106383502483, -0.01831785961985588, -0.02779032289981842, 0.007602180354297161, 0.010696370154619217, -0.030686862766742706, -0.02096022665500641, -0.04255925118923187, -0.10084999352693558, -0.043173450976610184, -0.001391098601743579, -0.035390909761190414, -0.03285578265786171, 0.005072534084320068, 0.024690046906471252, -0.002373320050537586, 0.006738315802067518, -0.044306930154561996, 0.013836252503097057, -0.018810218200087547, 0.00035983609268441796, -0.031165068969130516, 0.0028635947965085506, 0.0048253475688397884, 0.002026683883741498, 0.03161924332380295, -0.04837942123413086, 0.0047224280424416065, -0.025067690759897232, 0.014683248475193977, 0.030082467943429947, 0.02695789560675621, -0.011075325310230255 ]
[ -0.05418345704674721, -0.02952003851532936, -0.03800373896956444, -0.03368860110640526, 0.07690846920013428, -0.008916913531720638, -0.028633059933781624, 0.009510749951004982, 0.01353797409683466, 0.0008368989219889045, 0.019096648320555687, -0.06306876242160797, -0.0030060552526265383, 0.027348455041646957, 0.03605971112847328, -0.0024400590918958187, -0.026190653443336487, -0.06230945140123367, -0.004606280010193586, 0.049585483968257904, -0.050775185227394104, -0.02301676757633686, -0.031694211065769196, -0.05865919589996338, -0.013710039667785168, 0.04677250236272812, 0.050106313079595566, -0.030034303665161133, -0.017198657616972923, -0.20347711443901062, -0.01482075359672308, 0.005910194478929043, 0.000499600253533572, 0.009281161241233349, 0.0008329371339641511, 0.0006474375841207802, 0.010234071873128414, -0.011133179068565369, 0.011472703889012337, 0.029397791251540184, 0.022411471232771873, 0.020411644130945206, -0.04773703217506409, 0.022179678082466125, 0.05572958663105965, 0.017422933131456375, -0.008717512711882591, -0.004484205506742001, -0.005520080681890249, 0.017371533438563347, -0.022184567525982857, 0.014025409705936909, 0.018316246569156647, -0.01859690435230732, 0.011839824728667736, 0.04400238022208214, 0.07069950550794601, 0.02321232669055462, -0.0004548657452687621, 0.0332784578204155, 0.0543355867266655, 0.01621175743639469, -0.1468256413936615, 0.07836128771305084, 0.005755829159170389, 0.018642719835042953, -0.05377749353647232, 0.021637829020619392, -0.011945722624659538, 0.08777306228876114, 0.026589950546622276, -0.028126880526542664, -0.03399879112839699, 0.03780120238661766, 0.010400623083114624, 0.023548578843474388, -0.011498824693262577, 0.03926457092165947, 0.014999686740338802, -0.03482884541153908, -0.024253305047750473, 0.011524212546646595, -0.0668676570057869, -0.02145012840628624, -0.050724878907203674, 0.03958391398191452, -0.035312168300151825, 0.027679352089762688, -0.01825379952788353, 0.02731127291917801, 0.0334010124206543, 0.02240012399852276, 0.07043812423944473, 0.031178219243884087, -0.11787988245487213, -0.020864397287368774, 0.0059743779711425304, 0.02955620549619198, -0.011030402965843678, 0.4284175932407379, 0.025959162041544914, 0.0027507825288921595, 0.04884031042456627, 0.05458100885152817, 0.005649701226502657, -0.022161006927490234, 0.0030002419371157885, -0.05792449787259102, 0.022987324744462967, -0.0037533871363848448, 0.026893509551882744, -0.029951294884085655, 0.07326923310756683, -0.04921100288629532, 0.02295868843793869, 0.01476782001554966, 0.024372588843107224, 0.05310732126235962, -0.036858752369880676, 0.0172266885638237, -0.04933561384677887, -0.02022623084485531, 0.013415882363915443, 0.015514549799263477, 0.014237933792173862, 0.0064415051601827145, 0.010970810428261757, 0.03735506907105446, 0.0275132954120636, 0.0010576159693300724, 0.06471208482980728, 0.006238678935915232, -0.06374491751194, 0.032445766031742096, 0.0064515904523432255, -0.026401720941066742, 0.04171142354607582, -0.039957571774721146, -0.014287689700722694, 0.029970280826091766, -0.010595527477562428, -0.028751190751791, 0.04131881147623062, 0.0130451750010252, -0.040824007242918015, 0.1370563805103302, 0.0005687292432412505, -0.06342720240354538, 0.00956608448177576, -0.052214428782463074, 0.014603011310100555, 0.04142243042588234, 0.010379980318248272, -0.04487815499305725, -0.004306401591747999, -0.0026534711942076683, 0.08468364179134369, -0.020410219207406044, -0.08251015096902847, -0.007988275028765202, -0.027537018060684204, -0.0455242358148098, -0.03963588550686836, 0.06227830797433853, 0.07321444898843765, -0.1300572156906128, -0.008562754839658737, -0.0043656365014612675, -0.003134294645860791, -0.0646381676197052, 0.011598292738199234, 0.011609140783548355, -0.013399316929280758, -0.0059794532135128975, 0.06489762663841248, -0.009697029367089272, 0.004160246346145868, -0.002419868716970086, 0.04338528960943222, -0.007819846272468567, -0.013202514499425888, -0.021779173985123634, -0.05961009860038757, -0.015621282160282135, -0.08555182814598083, -0.04544935002923012, -0.09110864996910095, 0.018347617238759995, -0.019111113622784615, -0.031242717057466507, -0.03927526995539665, 0.001340470276772976, -0.08608648926019669, 0.11340799927711487, -0.050543542951345444, -0.041727326810359955, -0.02824750915169716, -0.023867877200245857, -0.00633634626865387, -0.0473945215344429, -0.012039660476148129, 0.008281504735350609, 0.008753163740038872, 0.02163550816476345, -0.03925241902470589, 0.03752221539616585, 0.0486423522233963, -0.02439034916460514, 0.06736179441213608, 0.013828689232468605, -0.039872653782367706, -0.01503853127360344, -0.021939188241958618, 0.016840994358062744, -0.01766195520758629, -0.02235933393239975, 0.0097358925268054, -0.01607106439769268, 0.01283173356205225, 0.03134925290942192, -0.023183580487966537, 0.0095957787707448, -0.023401552811264992, -0.346611887216568, -0.03245740756392479, -0.03643295541405678, 0.015540107153356075, 0.045004550367593765, -0.024354606866836548, 0.006199492607265711, 0.0013516780454665422, 0.05506929010152817, 0.020321909338235855, 0.06449060142040253, -0.021704494953155518, 0.007852306589484215, -0.06849490851163864, 0.008244290947914124, 0.027428729459643364, -0.019354907795786858, 0.02501186542212963, -0.004667374305427074, -0.0018931475933641195, 0.015531073324382305, -0.03241654112935066, -0.03393262252211571, -0.033577680587768555, 0.0037760622799396515, -0.017524395138025284, 0.1332685798406601, 0.03365202620625496, 0.0263627078384161, -0.051657579839229584, 0.027059998363256454, 0.0011216398561373353, -0.010155577212572098, -0.09890575706958771, 0.011212559416890144, -0.007164721377193928, 0.04202742874622345, 0.010674473829567432, -0.0034339900594204664, -0.031084096059203148, -0.029944777488708496, -0.01664857007563114, -0.028109202161431313, -0.045227061957120895, -0.016110384836792946, 0.013840563595294952, -0.03162914887070656, -0.024233432486653328, -0.011478683911263943, 0.06796350330114365, 0.04301156848669052, 0.0038319232407957315, 0.01114819198846817, 0.022828154265880585, 0.0158079843968153, -0.03063272126019001, -0.062739297747612, -0.013274133205413818, 0.015544028021395206, 0.017918935045599937, 0.037986062467098236, 0.019985012710094452, 0.041402582079172134, -0.08475326746702194, -0.0010798433795571327, 0.019014902412891388, -0.011155554093420506, -0.0002997477422468364, 0.042618926614522934, -0.03210205212235451, -0.022214025259017944, 0.07921338826417923, 0.024904971942305565, 0.021158326417207718, 0.03515215218067169, 0.024979425594210625, 0.012830158695578575, 0.02255209907889366, 0.03828270733356476, 0.02972348965704441, 0.03997176140546799, -0.045914918184280396, 0.04792357608675957, -0.026537803933024406, -0.01525306235998869, 0.05871374160051346, 0.03651335462927818, -0.03802672401070595, 0.0648147389292717, 0.015255809761583805, -0.026325123384594917, 0.025440165773034096, -0.01705506630241871, -0.045333266258239746, 0.03434653580188751, -0.028018679469823837, -0.2742747366428375, 0.03565625846385956, 0.06435732543468475, 0.04392508044838905, 0.009920645505189896, -0.006410409230738878, 0.04503559693694115, -0.016672082245349884, -0.0005382135277613997, 0.009561692364513874, -0.00324063329026103, 0.034200556576251984, -0.015097495168447495, 0.006994476541876793, -0.024774109944701195, 0.01262303814291954, 0.030136046931147575, 0.025319423526525497, 0.02596018835902214, -0.00534055707976222, 0.04239040985703468, -0.007843711413443089, 0.16532175242900848, 0.02408040314912796, 0.029356764629483223, 0.051692232489585876, -0.015588823705911636, -0.013559951446950436, 0.03516412526369095, -0.019740352407097816, -0.0029712780378758907, 0.017255648970603943, -0.014719563536345959, 0.004855011589825153, 0.04403098672628403, -0.05693872645497322, -0.03403426706790924, 0.044033877551555634, 0.005621821153908968, -0.026921970769762993, 0.0018787514418363571, 0.006707593332976103, -0.049309857189655304, 0.017980434000492096, 0.06058826297521591, -0.008565777912735939, -0.005121746100485325, -0.0055674901232123375, -0.08124005049467087, -0.004740455653518438, -0.032724086195230484, -0.07874023169279099, -0.025468967854976654, -0.0337209552526474, -0.0021158233284950256, 0.04588618129491806, 0.03876436501741409, -0.03333161771297455, 0.034748390316963196, -0.0045064217410981655, 0.007524758577346802, -0.04779265820980072, 0.08374664932489395, -0.015537427738308907, 0.019802654162049294 ]
[ 0.04079539328813553, 0.04194914922118187, -0.007306709419935942, -0.010893366299569607, -0.007691996172070503, 0.03211483359336853, 0.0038497494533658028, -0.005550979636609554, -0.019859177991747856, 0.01609826274216175, -0.005848281551152468, 0.013204840011894703, 0.006530729588121176, 0.045237619429826736, 0.03132035955786705, -0.026373986154794693, 0.009063009172677994, -0.003313222201541066, 0.04677804186940193, 0.031940050423145294, -0.038129907101392746, -0.040977947413921356, 0.010429528541862965, -0.011278636753559113, -0.01025494746863842, 0.020410660654306412, -0.048391785472631454, 0.04116379842162132, 0.01877596601843834, -0.11405967175960541, -0.02043324150145054, -0.009642576798796654, 0.004326310008764267, -0.010111219249665737, -0.006577194202691317, -0.002414172049611807, -0.00291758356615901, -0.0049250866286456585, -0.02256659045815468, 0.018843254074454308, 0.04061919450759888, -0.03046964481472969, -0.025973567739129066, 0.06786289066076279, -0.025016948580741882, -0.03863026946783066, -0.02285662665963173, 0.013483170419931412, 0.0273774191737175, 0.01584877073764801, -0.060978472232818604, -0.026104290038347244, -0.010003456845879555, -0.043085888028144836, 0.02623913437128067, -0.0030549862422049046, -0.029236353933811188, 0.0073602814227342606, 0.022397784516215324, -0.007560815196484327, 0.03790808841586113, -0.02708287350833416, -0.062852643430233, -0.023414282128214836, -0.008052356541156769, -0.02136891707777977, -0.03975731506943703, 0.021391384303569794, -0.020523926243185997, 0.02510433830320835, 0.01947483979165554, 0.055978357791900635, -0.0579853318631649, -0.03223145008087158, -0.004198999609798193, 0.022096246480941772, 0.0079275481402874, -0.012714139185845852, -0.051155127584934235, -0.027451906353235245, -0.0014774597948417068, 0.013735819607973099, -0.030034886673092842, 0.0026203799061477184, 0.0022682631388306618, 0.002383980667218566, 0.003928748890757561, -0.01872830092906952, -0.0029225230682641268, -0.01555852871388197, -0.018218597397208214, 0.009015417657792568, -0.004630331415683031, 0.00317594432272017, -0.07937955856323242, 0.0033067837357521057, -0.00709051638841629, -0.0012372923083603382, -0.015096105635166168, 0.8092054724693298, 0.026647446677088737, -0.009644335135817528, 0.00841558538377285, 0.017579440027475357, 0.01981627196073532, 0.01738344505429268, -0.002889181487262249, 0.003552692010998726, -0.004175716079771519, 0.00953681394457817, -0.02991027943789959, 0.05107850208878517, 0.013754800893366337, 0.04013067111372948, -0.03563399985432625, 0.04465333744883537, 0.0029840110801160336, -0.004772646352648735, -0.03006093017756939, 0.044142063707113266, -0.014860734343528748, 0.002874910831451416, -0.013163783587515354, -0.0018156490987166762, -0.006207963917404413, -0.16581296920776367, -0.009378820657730103, -6.43221251751943e-33, 0.027666913345456123, -0.04096671938896179, 0.049650151282548904, -0.002868037670850754, 0.013360035605728626, 0.008383764885365963, -0.028528885915875435, -0.05624587833881378, -0.04381678253412247, -0.02512519434094429, -0.01075885072350502, 0.011125302873551846, 0.014605394564568996, -0.005151787307113409, 0.020518111065030098, -0.01871356926858425, 0.021742671728134155, 0.0212494395673275, -0.008138492703437805, -0.0005757688777521253, -0.007584408391267061, 0.019370542839169502, -0.007248762063682079, 0.03331292048096657, 0.003446552436798811, 0.07194845378398895, 0.023161889985203743, -0.006194299552589655, 0.002540930872783065, -0.037698470056056976, -0.0655209869146347, -0.011215372942388058, -0.0022641513496637344, -0.017313726246356964, 0.003922211471945047, -0.07095251977443695, -0.01188594289124012, 0.002905936213210225, -0.03894159942865372, -0.05436527356505394, -0.06110516935586929, -0.012108178809285164, -0.007385193835943937, -0.025528598576784134, -0.06984645128250122, -0.025390246883034706, -0.024570835754275322, 0.03793710470199585, 0.007333754561841488, 0.03720085322856903, 0.021075820550322533, 0.0003874074900522828, -0.028276273980736732, 0.01906471885740757, -0.04394754022359848, 0.0030527859926223755, -0.010307176038622856, 0.02362157218158245, -0.02971755526959896, -0.02519124187529087, 0.05168306455016136, 0.00015108066145330667, -0.002756203757598996, 0.049112558364868164, 0.006957897916436195, 0.04697103798389435, -0.020899679511785507, -0.012561770156025887, 0.014989582821726799, 0.04933350160717964, -0.05672347918152809, 0.06670628488063812, -0.02663348987698555, -0.025167090818285942, 0.03381999954581261, -0.028071846812963486, 0.024663696065545082, -0.038404352962970734, -0.0005355074536055326, 0.06239015609025955, -0.006631129886955023, -0.016663962975144386, -0.024730606004595757, -0.019643940031528473, -0.06318679451942444, -0.016987251117825508, 0.03957343474030495, 0.031689539551734924, 0.023228736594319344, 0.021326104179024696, 0.033158738166093826, 0.02802489884197712, -0.031937018036842346, -0.022840457037091255, -0.048568349331617355, 6.212076955756971e-33, 0.02147027663886547, -0.016675181686878204, 0.005459667649120092, -0.013690023683011532, 0.06563965231180191, 0.0037453267723321915, 0.03742419555783272, 0.03800041973590851, -0.03530948609113693, 0.03341592103242874, -0.019915902987122536, -0.005549560766667128, -0.032636918127536774, 0.01205402985215187, 0.050927016884088516, 0.0014125683810561895, 0.020769543945789337, -0.01979963108897209, -0.005297627300024033, 0.006557988002896309, -0.012142068706452847, 0.006066460162401199, 0.02377791330218315, 0.014741649851202965, 0.013472083956003189, 0.016837140545248985, 0.006451419088989496, -0.000018559487216407433, -0.03572487458586693, 0.02357449196279049, -0.00568718696013093, -0.02246672660112381, -0.026787342503666878, 0.002979347947984934, 0.004114395938813686, 0.02716102823615074, -0.008657984435558319, 0.013194248080253601, -0.018975401297211647, -0.0018662235233932734, 0.01693599484860897, -0.00004269045530236326, -0.05419466271996498, 0.04908754676580429, 0.013123078271746635, 0.015130199491977692, -0.018004007637500763, 0.030592190101742744, -0.00792704988270998, 0.01828361488878727, -0.02200155146420002, 0.018628478050231934, 0.03626994416117668, 0.02819383330643177, 0.031085088849067688, -0.062058329582214355, 0.014674211852252483, 0.03570147603750229, -0.012159978970885277, 0.010216467082500458, -0.01053702738136053, -0.016773056238889694, -0.06491675972938538, 0.01493026316165924, -0.0023375924210995436, -0.006987610831856728, -0.03609102591872215, -0.023179279640316963, -0.013743911869823933, 0.03587082400918007, 0.03122306615114212, 0.014938401989638805, -0.008995188400149345, 0.04802951589226723, 0.05735865980386734, 0.02449391409754753, -0.018041905015707016, 0.03933577612042427, -0.035567402839660645, 0.03294822573661804, 0.00634415540844202, 0.025923263281583786, 0.011637245304882526, -0.0019311032956466079, -0.005209504626691341, 0.020167741924524307, -0.009231708943843842, 0.008334978483617306, 0.007054666057229042, 0.010028948076069355, 0.04527636244893074, -0.03652099147439003, -0.005478064529597759, 0.04799606651067734, -0.009008689783513546, -1.2270886529108793e-8, -0.05428455024957657, -0.010454538278281689, 0.002060582861304283, -0.005352318752557039, -0.035848505795001984, 0.03962300717830658, 0.00957522913813591, 0.015262296423316002, 0.024675048887729645, 0.04018894582986832, 0.033551670610904694, -0.020937031134963036, 0.021147102117538452, -0.0020494982600212097, 0.01726837269961834, -0.013031684793531895, 0.016673961654305458, 0.0014764959923923016, 0.029134461656212807, 0.008866505697369576, 0.0070636277087032795, 0.040253326296806335, 0.013700801879167557, 0.02368016354739666, -0.041223861277103424, -0.029519082978367805, 0.004316895734518766, -0.07221940904855728, -0.05640561506152153, -0.017798012122511864, 0.015742598101496696, -0.011091184802353382, -0.01165301539003849, 0.0020149678457528353, -0.04373067617416382, 0.010302891954779625, 0.009116352535784245, 0.054127972573041916, 0.017473891377449036, 0.035547882318496704, -0.04979732632637024, 0.032607126981019974, -0.05362134054303169, -0.04871441051363945, -0.03900493308901787, 0.014605716802179813, 0.0014577837428078055, 0.010004897601902485, 0.03501857444643974, -0.04398634284734726, -0.0020832789596170187, 0.004427652340382338, 0.017080606892704964, -0.022279318422079086, 0.003259507240727544, 0.03276307135820389, -0.00035781876067630947, -0.02373856119811535, -0.013594082556664944, -0.027079107239842415, 0.028163133189082146, -0.010668328031897545, -0.018708134070038795, -0.023128783330321312 ]
quick-graph-australian-open
https://markhneedham.com/blog/2020/01/23/quick-graph-australian-open
false
2020-01-14 00:21:00
Python: Altair - Setting the range of Date values for an axis
[ "python", "altair" ]
[ "Python" ]
In my continued experiments with the https://altair-viz.github.io/index.html[Altair visualisation library], I wanted to set a custom range of data values on the x axis of a chart. In this blog post we'll learn how to do that. We'll start where we left off in the https://markhneedham.com/blog/2020/01/10/altair-typeerror-object-type-date-not-json-serializable/[last blog post^], with the following code that renders a scatterplot containing the chart position of a song on a certain date: [source,python] ---- import altair as alt import pandas as pd import datetime df = pd.DataFrame( [ {"position": 40, "date": datetime.date(2019,9,5)}, {"position": 31, "date": datetime.date(2019,9,12)}, {"position": 19, "date": datetime.date(2019,9,19)}, {"position": 14, "date": datetime.date(2019,9,26)}, {"position": 7, "date": datetime.date(2019,10,3)}, {"position": 1, "date": datetime.date(2019,10,10)}, {"position": 1, "date": datetime.date(2019,10,17)}, {"position": 1, "date": datetime.date(2019,10,24)}, ]) df["date"] = pd.to_datetime(df["date"]) chart = alt.Chart(df).mark_point(color="red").encode( x='date', y='position') chart.save("chart.html") ---- If we run this script, we'll have the following chart in `chart.html`: image::{{<siteurl>}}/uploads/2020/01/altair-dance-monkey.png[title="Chart showing chart positions"] At the moment the x axis of our chart covers the range of dates included in our DataFrame. I wanted to have that axis start from 1st January 2019 and end on 31st December 2019, and came across https://github.com/altair-viz/altair/issues/1005[a GitHub issue^] describing how to do this. One way to do this is to create a Pandas index and then define a custom domain for the `scale` of the x axis. The code below does this: [source,python] ---- domain_pd = pd.to_datetime(['2019-01-01', '2019-12-31']).astype(int) / 10 ** 6 chart = alt.Chart(df).mark_point(color="red").encode( x=alt.X('date:T', timeUnit='yearmonthdate', scale=alt.Scale(domain=list(domain_pd))), y='position') chart.save("chart.html") ---- If we run this script, we'll have the following chart in `chart.html`: image::{{<siteurl>}}/uploads/2020/01/altair-dance-monkey-full-year.png[title="Chart showing chart positions"] Another, simpler way, is to pass in a list containing the start and end dates, as shown below: [source,python] ---- domain = ["2019-01-01", "2019-12-31"] chart = alt.Chart(df).mark_point(color="red").encode( x=alt.X('date:T', timeUnit='yearmonthdate', scale=alt.Scale(domain=domain)), y='position') chart.save("chart.html") ---- All the code from this blog post is available in a https://gist.github.com/mneedham/e5d347cbffe0b04584a267c0d961e1a1[GitHub Gist^].
Learn how to set the range of date values on the x axis of an Altair chart
uploads/2020/01/altair-dance-monkey-full-year.png
[ -0.01641402393579483, 0.0007321378216147423, 0.00866731721907854, 0.04276707395911217, 0.05386663228273392, 0.014158591628074646, 0.011838380247354507, 0.047181084752082825, 0.037976447492837906, -0.03892285004258156, -0.022872867062687874, -0.015428400598466396, -0.07502775639295578, 0.028788138180971146, -0.009909812361001968, 0.08266820758581161, 0.06348761916160583, -0.015758149325847626, 0.014775041490793228, -0.0006156337913125753, 0.04845039173960686, 0.020865239202976227, -0.04656267166137695, 0.04522235319018364, 0.002903492422774434, -0.01657433621585369, -0.004528008867055178, 0.012234186753630638, -0.052991412580013275, -0.018053743988275528, -0.003729218151420355, 0.0051543228328228, -0.0051791369915008545, 0.008660986088216305, 0.0118687953799963, 0.011885697022080421, -0.009573349729180336, 0.02520805411040783, 0.00008804319804767147, 0.01657809503376484, -0.08109700679779053, 0.029442334547638893, 0.016637064516544342, 0.03486595302820206, -0.03365282341837883, 0.001051323488354683, -0.00974450446665287, 0.0338900126516819, 0.00857990700751543, 0.03308792784810066, -0.050015926361083984, 0.05602266639471054, -0.009401276707649231, -0.041940800845623016, -0.027100877836346626, 0.06523679196834564, 0.04128238186240196, -0.05658934637904167, -0.003425191855058074, -0.014492273330688477, 0.03740698844194412, 0.02209675870835781, -0.0020341509953141212, 0.008053877390921116, 0.027827465906739235, -0.01286984421312809, -0.018929695710539818, 0.05032660439610481, -0.037996724247932434, -0.02149135060608387, -0.017641235142946243, 0.03716934472322464, -0.023016534745693207, -0.008624738082289696, -0.03036690503358841, -0.03257083147764206, -0.02833409234881401, 0.06960379332304001, 0.018437925726175308, 0.02463793382048607, 0.017017530277371407, 0.01104419119656086, 0.02164624072611332, 0.018389374017715454, -0.0305781327188015, -0.02242918126285076, -0.06200029328465462, -0.031721096485853195, -0.08817306905984879, 0.051329355686903, 0.002453736960887909, -0.06983880698680878, 0.06212707981467247, 0.014960980974137783, -0.012547248043119907, 0.006065944209694862, -0.014043048955500126, 0.001279901247471571, 0.018094154074788094, -0.03911946341395378, -0.048080410808324814, -0.001204578671604395, 0.0292433500289917, 0.0023808840196579695, -0.057755086570978165, -0.056153178215026855, -0.009312419220805168, -0.006641327869147062, 0.007703531999140978, 0.0036198075395077467, -0.047625020146369934, -0.000822041358333081, -0.00993959791958332, -0.006074056960642338, -0.04592335596680641, 0.05952209234237671, 0.007575105410069227, -0.04230113700032234, 0.0007712492370046675, 0.005866774823516607, 0.05234389379620552, 0.012373763136565685, -0.04142537713050842, 0.08222558349370956, -0.00053879659390077, 0.06728281080722809, -0.000979126081801951, 0.05376756936311722, -0.018625948578119278, -0.038060955703258514, -0.011768038384616375, 0.05204490199685097, -0.04426087066531181, -0.013993479311466217, 0.013987341895699501, -0.01186374668031931, -0.005580244120210409, -0.0024801178369671106, 0.08857116848230362, 0.06300380825996399, 0.019045474007725716, -0.03368915989995003, 0.006823799107223749, -0.004626606125384569, 0.007197599858045578, 0.04919950291514397, -0.01930965855717659, -0.06204865127801895, -0.04464230686426163, 0.0015633885050192475, 0.028821676969528198, 0.007068125996738672, 0.04609701409935951, -0.01779702492058277, 0.0068801399320364, 0.047357652336359024, 0.034879401326179504, 0.04030368849635124, -0.030251920223236084, 0.0062128230929374695, 0.046705521643161774, 0.04922960698604584, 0.00480479234829545, 0.049362316727638245, 0.010952072218060493, -0.02538181282579899, -0.015578496269881725, 0.061946719884872437, -0.025624794885516167, -0.03663560003042221, -0.04598609358072281, -0.026257503777742386, 0.045633990317583084, -0.010464288294315338, 0.007107071578502655, 0.08398312330245972, 0.06731684505939484, 0.04516599327325821, 0.041966065764427185, 0.00005872775363968685, -0.07578263431787491, 0.055764906108379364, 0.03268826752901077, 0.009893600828945637, 0.06648758798837662, 0.012609243392944336, 0.08451869338750839, 0.022780664265155792, 0.03549006208777428, 0.048460543155670166, -0.04220079630613327, -0.03538386523723602, -0.039076998829841614, -0.03650271147489548, 0.04346464201807976, -0.06170926243066788, -0.02154957316815853, 0.0728551372885704, 0.049132365733385086, 0.06253022700548172, 0.011286693625152111, -0.0002796842891257256, 0.012257480062544346, -0.030257780104875565, -0.03672172501683235, 0.002911180956289172, 0.027001937851309776, -0.01815737597644329, -0.0035056346096098423, 0.02249826490879059, -0.014470165595412254, 0.0034407256171107292, 0.05228004977107048, 0.017191706225275993, 0.03332604095339775, 0.046968232840299606, 0.051229752600193024, -0.011022062972187996, 0.022169947624206543, -0.06355109810829163, 0.03031221404671669, -0.00158910162281245, -0.03042827919125557, -0.05570812523365021, -0.01674075797200203, 0.14089836180210114, 0.050674255937337875, -0.030361976474523544, -0.05839997157454491, -0.005592340603470802, -0.025820689275860786, -0.0445827953517437, 0.014903027564287186, -0.021339260041713715, -0.016168303787708282, 0.012418398633599281, -0.038803815841674805, -0.028298353776335716, 0.006933955010026693, -0.011164077557623386, 0.0010092786978930235, 0.06090163439512253, 0.0029197761323302984, 0.060154471546411514, -0.016734985634684563, -0.007078469730913639, -0.02199261263012886, -0.010652236640453339, -0.07074570655822754, 0.004460214637219906, -0.012936417944729328, -0.017937473952770233, 0.011909207329154015, -0.02073322795331478, -0.06503686308860779, 0.0009705545380711555, -0.06282353401184082, 0.0333683155477047, 0.05178998038172722, 0.04372169077396393, 0.016781924292445183, 0.00022830085072200745, 0.01550355739891529, 0.016163602471351624, -0.004653353244066238, -0.07690916210412979, -0.03719504922628403, -0.0158027783036232, 0.020239556208252907, 0.014443148858845234, 0.05157400667667389, 0.02765250951051712, 0.03777264058589935, 0.0014627819182351232, -0.02555087022483349, -0.021291783079504967, 0.023700758814811707, 0.0030500704888254404, -0.01302195992320776, -0.026440244168043137, 0.01692095771431923, 0.03295351564884186, -0.03690573573112488, -0.01434462983161211, 0.012411889620125294, -0.0678342655301094, 0.031995989382267, -0.05661603435873985, -0.03140092268586159, -0.005884791258722544, 0.010419659316539764, 0.05007103830575943, 0.011356957256793976, 0.01514472346752882, 0.024459108710289, -0.0007268665358424187, 0.01942072995007038, 0.013562295585870743, -0.023421723395586014, 0.03981708362698555, -0.009373587556183338, -0.0006677901255898178, 0.08831663429737091, -0.021387135609984398, -0.016667280346155167, -0.04157000035047531, -0.01359656173735857, -0.043672945350408554, -0.26600179076194763, 0.021394865587353706, -0.019458165392279625, -0.0587918795645237, -0.013560885563492775, -0.011981809511780739, 0.034760236740112305, -0.041668087244033813, -0.02097288891673088, -0.012290074490010738, -0.020032955333590508, -0.07588955760002136, -0.023261789232492447, 0.06191989406943321, -0.003711342578753829, 0.008363568224012852, -0.0001417330640833825, -0.013293243013322353, 0.020886797457933426, 0.014140398241579533, -0.012152235023677349, -0.07281459867954254, 0.002119154203683138, 0.04452480375766754, 0.009360741823911667, 0.06062696501612663, -0.06650771200656891, 0.027857322245836258, -0.057743728160858154, -0.025505222380161285, 0.03129692003130913, -0.033592961728572845, 0.002954872790724039, -0.0068889702670276165, -0.0022557340562343597, -0.04558725282549858, 0.02387944422662258, -0.00585333164781332, 0.01874801330268383, 0.0024151899851858616, -0.04043920710682869, -0.02523667924106121, 0.009473104029893875, 0.017160015180706978, 0.07024829834699631, -0.02825356274843216, -0.05797208845615387, 0.039558734744787216, -0.016978785395622253, 0.0706692561507225, -0.001424468937329948, -0.017546968534588814, -0.007491403259336948, -0.021685998886823654, -0.06223372370004654, -0.007636639755219221, -0.009385052137076855, -0.000037455294659594074, -0.04829905182123184, -0.044114839285612106, 0.02538992092013359, -0.008831876330077648, -0.013004366308450699, -0.06482572108507156, -0.015049371868371964, -0.04981301352381706, -0.030339131131768227, -0.03366637974977493, 0.06009509041905403, 0.048205841332674026, -0.05589240789413452, -0.010868997313082218, -0.006712966598570347, -0.09726420789957047, -0.004535345826297998, -0.01903674751520157, -0.0006940704770386219, -0.008167417719960213, -0.006247595883905888, 0.02263549156486988, -0.0503779798746109, -0.06687439978122711, 0.06798950582742691, 0.0176249910145998, -0.016332143917679787, -0.01582176983356476, 0.028126217424869537, 0.0017294281860813498, -0.013284933753311634, -0.008563241921365261, 0.05259469524025917, -0.03328137844800949, 0.004743756260722876, 0.024645589292049408, -0.03784788399934769, 0.02535020187497139, 0.04279651120305061, -0.0022386028431355953, 0.027037547901272774, 0.02542586252093315, -0.017289523035287857, -0.07750121504068375, 0.022884128615260124, -0.03224344551563263, -0.019090088084340096, -0.02811751700937748, -0.03184445574879646, 0.03139238804578781, 0.028087224811315536, 0.008160479366779327, 0.002057380508631468, -0.020816978067159653, 0.033379118889570236, -0.061872683465480804, -0.02924126386642456, -0.04366477578878403, 0.024041535332798958, 0.02685382030904293, 0.005965127144008875, -0.009348542429506779, -0.06253113597631454, -0.006628150586038828, -0.01730041578412056, 0.0037180623039603233, -0.043849311769008636, -0.026184631511569023, 0.008230548352003098, 0.03332764655351639, 0.04417165368795395, 0.013782010413706303, -0.010074831545352936, 0.031821783632040024, 0.0333591029047966, -0.02252427116036415, 0.013588284142315388, -0.021526549011468887, -0.012289732694625854, -0.05001227557659149, 0.04224950820207596, 0.01403006911277771, 0.006737439427524805, 0.03232777863740921, -0.006899465341120958, 0.014685866422951221, 0.03200094401836395, 0.018860822543501854, 0.04804101586341858, -0.00019701420387718827, 0.020393263548612595, 0.012926225550472736, -0.0043618022464215755, -0.004622001200914383, 0.0029152636416256428, -0.01733623817563057, -0.03077484481036663, 0.008538906462490559, 0.022867539897561073, -0.01817929930984974, -0.031870633363723755, -0.03371600806713104, 0.02083732932806015, -0.08106812834739685, -0.05864720419049263, -0.022376907989382744, 0.03391376882791519, 0.03810274600982666, -0.0004406027146615088, 0.02607104927301407, 0.018186504021286964, -0.013536423444747925, -0.004301156848669052, 0.01460204366594553, 0.007664720062166452, 0.0018184192012995481, -0.009247544221580029, -0.029036812484264374, 0.03210459277033806, 0.028283264487981796, 0.03330144286155701, 0.031994450837373734, -0.004074655938893557, -0.0006975017604418099, -0.0016045530792325735, 0.02014850825071335, 0.0022203163243830204, 0.03879664093255997, -0.03997206315398216, 0.0003343136631883681, -0.011171001940965652, -0.030774224549531937, -0.03512944281101227, -0.011272013187408447, -0.05717267841100693, -0.01162605732679367, -0.005030578002333641, -0.07407724112272263, -0.006795334164053202, -0.007598708849400282, 0.023753326386213303, 0.007209728937596083, -0.0383782722055912, 0.009587734006345272, -0.043774135410785675, 0.028979673981666565, 0.07139113545417786, -0.049686383455991745, -0.0056294589303433895, -0.007923442870378494, -0.00423726812005043, -0.01474903617054224, 0.021569792181253433, -0.0969310775399208, 0.010424835607409477, -0.007983882911503315, 0.01879923604428768, -0.016038892790675163, -0.048346344381570816, -0.04789518937468529, 0.010564018040895462, -0.00297488272190094, 0.029782790690660477, 0.009320301935076714, -0.002263911534100771, -0.008765865117311478, 0.00045580402365885675, 0.014340745285153389, 0.008806333877146244, 0.0032999312970787287, 0.022074507549405098, -0.007060942705720663, 0.023059440776705742, 0.006773904897272587, 0.002704731887206435, 0.024698534980416298, -0.007397834677249193, 0.002545375842601061, -0.06517945230007172, -0.00727056572213769, 0.032499995082616806, 0.04431550204753876, -0.00911729410290718, -0.012652733363211155, -0.016952218487858772, 0.004923670552670956, 0.026298969984054565, 0.0049176630564033985, -0.003870453452691436, -0.03194635733962059, 0.038356658071279526, 0.02649570070207119, 0.01947927288711071, -0.02312845177948475, 0.015570445917546749, -0.05505100265145302, 0.044824641197919846, -0.04495169222354889, -0.024505123496055603, 0.012092852964997292, -0.056257735937833786, 0.028284158557653427, 0.0009135063737630844, 0.02408389002084732, -0.059414803981781006, 0.06017191335558891, 0.030993523076176643, 0.07157406955957413, 0.06638751924037933, 0.01812192238867283, 0.014833743683993816, -0.02344885841012001, 0.019016895443201065, -0.1092640832066536, -0.005104267969727516, 0.0020918617956340313, 0.03278476372361183, -0.03910387307405472, 0.006420928053557873, -0.017227934673428535, 0.035489730536937714, -0.0648270919919014, -0.039103128015995026, 0.05971792712807655, 0.01373395137488842, -0.014671290293335915, -0.0009939271258190274, -0.05436152592301369, 0.04849595949053764, 0.04676758125424385, -0.05989189073443413, -0.020170995965600014, -0.006851958576589823, 0.06772515177726746, -0.020105119794607162, 0.022683266550302505, -0.027389593422412872, -0.017619481310248375, 0.07268643379211426, 0.027994774281978607, 0.02559071034193039, 0.024368679150938988, -0.008932100608944893, 0.053230054676532745, 0.014634693041443825, 0.006407547742128372, 0.007581127807497978, 0.012765157036483288, 0.043289341032505035, -0.05116129294037819, 0.028141668066382408, 0.017168940976262093, -0.026164567098021507, -0.04233263060450554, 0.06321769207715988, 0.008144301362335682, -0.015725672245025635, -0.010104815475642681, -0.026043066754937172, -0.010909982025623322, -0.0015895689139142632, 0.0062574902549386024, 0.0018675323808565736, -0.03532489389181137, 0.05018138885498047, -0.020185397937893867, -0.0031787201296538115, 0.06111118942499161, 0.0016513653099536896, 0.019285695627331734, 0.018845155835151672, 0.09801527857780457, 0.06217796728014946, 0.047867484390735626, 0.018096931278705597, 0.05919751524925232, -0.07019538432359695, -0.04597930982708931, 0.0024972620885819197, -0.046250972896814346, 0.008166967891156673, -0.04079842194914818, -0.0003496874123811722, 0.05217881128191948, -0.038099922239780426, 0.0272308811545372, -0.018653132021427155, -0.017847003415226936, -0.025324629619717598, 0.023184219375252724, 0.023708948865532875, 0.0020304361823946238, 0.005022394936531782, 0.03674609586596489, -0.021861262619495392, -0.045025330036878586, 0.04721932113170624, 0.002707262057811022, -0.024039240553975105, 0.032798584550619125, 0.03625032305717468, 0.0014688767259940505, -0.00781392864882946, 0.017027031630277634, 0.06029127910733223, -0.04464316368103027, -0.02855500765144825, 0.020725630223751068, 0.032943595200777054, 0.007313903886824846, 0.011626810766756535, -0.03134812414646149, 0.02796032838523388, -0.019958674907684326, -0.03957750275731087, 0.01610715314745903, -0.011931892484426498, -0.024954598397016525, 0.05216505751013756, -0.03720337897539139, 0.018783286213874817, 0.013921818695962429, -0.0267760269343853, -0.06457986682653427, -0.029250768944621086, -0.053333066403865814, -0.01129387877881527, -0.060658738017082214, 0.003093241946771741, 0.03390662744641304, -0.017350701615214348, -0.007170474156737328, -0.04908595606684685, 0.010859006084501743, 0.009575123898684978, -0.00940687209367752, -0.02620949037373066, -0.04732096940279007, 0.015122375451028347, 0.024001391604542732, 0.005713385064154863, 0.035757992416620255, 0.05731021612882614, -0.017202556133270264, -0.030600083991885185, -0.028769681230187416, 0.019553299993276596, 0.039280638098716736, 0.02609362080693245, 0.0003842824080493301, -0.06396986544132233, 0.0052707805298268795, 0.015987813472747803, -0.007482390385121107, -0.07169800996780396, 0.03543046489357948, 0.01713564805686474, -0.031012991443276405, 0.03267643228173256, -0.016325946897268295, -0.009724334813654423, -0.031673356890678406, -0.03971555083990097, -0.008999833837151527, 0.0021937713027000427, 0.03785504400730133, -0.03981554135680199, 0.08081289380788803, 0.051204610615968704, 0.006254822481423616, -0.0027144206687808037, 0.0018075555562973022, -0.03605905547738075, -0.008590927347540855, -0.05519980192184448, -0.033571336418390274, -0.061560265719890594, -0.057293038815259933, -0.04772535338997841, 0.013301010243594646, -0.01737070456147194, -0.027205940335989, 0.01822064071893692, 0.03576647862792015, -0.0319676473736763, 0.024175327271223068, -0.05047989636659622, -0.001980347093194723, -0.0362955741584301, -0.014092713594436646, -0.007815484888851643, 0.02626856043934822, -0.005698468070477247, -0.007647267077118158, -0.016123130917549133, -0.052624497562646866, 0.008947384543716908, -0.028915265575051308, 0.02897314354777336, 0.04367581009864807, -0.008219815790653229, -0.0005572238587774336 ]
[ -0.07353225350379944, -0.02698661759495735, 0.004814473446458578, -0.02096197009086609, 0.08657912909984589, -0.04387601837515831, -0.03363148868083954, 0.002393192145973444, 0.008682120591402054, 0.009228142909705639, 0.03461894020438194, -0.06230359524488449, 0.011032208800315857, 0.01554948277771473, 0.05231168121099472, -0.0074174911715090275, -0.039646148681640625, -0.04721304774284363, -0.05595088377594948, 0.026036037132143974, 0.01728283427655697, -0.014376689679920673, -0.0666869506239891, -0.046276796609163284, 0.04118525609374046, 0.04281240329146385, 0.005506257992237806, -0.06249455735087395, -0.00719116535037756, -0.19552287459373474, 0.019718578085303307, -0.033683519810438156, 0.014719648286700249, -0.0010836577275767922, -0.01509130746126175, 0.012605573050677776, 0.0058016059920191765, 0.0323447659611702, 0.03827151283621788, 0.02432931773364544, 0.013147798366844654, 0.006777095142751932, -0.07414291799068451, -0.0403454452753067, 0.015494294464588165, 0.0020179012790322304, -0.03247988224029541, 0.016873333603143692, -0.01073050033301115, 0.03639678657054901, -0.05670149624347687, -0.022907644510269165, -0.017870353534817696, 0.005811075679957867, 0.025191057473421097, 0.032840389758348465, 0.03637772053480148, 0.025554697960615158, 0.034934163093566895, 0.02180296741425991, 0.0035631307400763035, -0.004691949114203453, -0.14438828825950623, 0.11580599099397659, -0.023828556761145592, 0.04523085430264473, -0.035978276282548904, -0.011678624898195267, -0.0421622060239315, 0.06878944486379623, 0.019357405602931976, -0.04062627628445625, -0.0029997671954333782, 0.03437620401382446, 0.030385151505470276, -0.03887030482292175, -0.0010304522002115846, 0.009415214881300926, 0.03892135992646217, -0.03378621116280556, -0.027850322425365448, 0.011467200703918934, -0.01594647578895092, -0.02270950749516487, 0.03985347971320152, 0.015871314331889153, 0.02674856036901474, 0.027843207120895386, 0.001984458649531007, 0.014374974183738232, 0.027362389490008354, -0.01364176720380783, -0.016889648512005806, 0.02507350966334343, -0.08390817046165466, -0.03706984966993332, 0.014426046051084995, 0.04559258371591568, -0.015429995022714138, 0.3657956123352051, -0.02351880446076393, 0.003373411949723959, -0.0000025241965886380058, 0.08228407800197601, -0.014482907950878143, -0.03800565004348755, -0.002841366920620203, -0.042713966220617294, -0.0018775910139083862, -0.03058832511305809, 0.006767302751541138, -0.02116207219660282, 0.02025827392935753, -0.11869479715824127, -0.001901980140246451, 0.00045237530139274895, -0.01225014217197895, 0.021319204941391945, 0.020291879773139954, 0.025514433160424232, 0.010033064521849155, 0.0045874640345573425, 0.016735566779971123, 0.041008010506629944, 0.012014830484986305, 0.048892244696617126, 0.07246183604001999, 0.03801124170422554, 0.021920176222920418, 0.005206176545470953, 0.05907004699110985, -0.053732678294181824, -0.08562449365854263, 0.021669315174221992, -0.006422627251595259, 0.020324207842350006, 0.011699103750288486, -0.027478154748678207, 0.031955886632204056, 0.0218256376683712, -0.04633340984582901, -0.0472320131957531, 0.04102813079953194, 0.02401653490960598, -0.008850141428411007, 0.14154331386089325, -0.0032868818379938602, -0.01762457750737667, -0.022494841367006302, -0.04035576060414314, -0.06936752051115036, 0.009134898893535137, 0.036846086382865906, -0.04719714820384979, 0.018697179853916168, 0.04845499247312546, 0.05906294286251068, -0.02583749033510685, -0.07951132208108902, -0.015604224987328053, -0.02151188813149929, -0.032010260969400406, -0.005908037535846233, 0.01647302135825157, 0.012829025276005268, -0.14116759598255157, -0.04058088734745979, 0.06389272958040237, 0.007887030020356178, -0.05406181141734123, -0.003832384943962097, 0.047809191048145294, -0.04431029409170151, -0.02064233087003231, 0.1126822680234909, 0.015642978250980377, -0.017582716420292854, 0.01562141627073288, 0.03474074974656105, 0.01587025821208954, -0.02995823137462139, 0.005046346690505743, -0.04193519800901413, 0.013908712193369865, -0.06552334874868393, -0.06971700489521027, -0.029020292684435844, -0.0008862379472702742, -0.017560984939336777, -0.04754256829619408, 0.043751541525125504, -0.027535883709788322, -0.048009589314460754, 0.06241880729794502, -0.024476945400238037, -0.03444456309080124, -0.013382717967033386, 0.0246150903403759, -0.016203109174966812, -0.031382713466882706, 0.02031232789158821, 0.007863997481763363, 0.0007802257314324379, 0.04972861707210541, -0.015582911670207977, 0.024981020018458366, 0.0704551488161087, -0.022834908217191696, 0.047090500593185425, 0.011328785680234432, 0.000755655171815306, 0.013384178280830383, 0.0011777019826695323, -0.007954170927405357, -0.010102055966854095, 0.0066351802088320255, -0.034408796578645706, -0.0011543320724740624, 0.01870153471827507, 0.03479289263486862, 0.011121543124318123, -0.0517190620303154, -0.031115064397454262, -0.3758012652397156, -0.007909455336630344, -0.0035529399756342173, 0.01009633019566536, 0.030597059056162834, -0.02504866011440754, -0.03591232746839523, 0.015382302924990654, 0.034281399101018906, 0.05831019580364227, 0.09722525626420975, 0.003411301411688328, 0.014791923575103283, -0.1420654058456421, -0.022045835852622986, 0.02066875994205475, -0.053068555891513824, -0.044188082218170166, -0.012547814287245274, 0.0051504699513316154, -0.020080717280507088, -0.009312969632446766, -0.0620177686214447, -0.02780233509838581, 0.007388252764940262, -0.030064567923545837, 0.13004718720912933, 0.0018998872255906463, 0.06756032258272171, -0.05852406844496727, 0.03589592128992081, -0.01995711773633957, -0.0048027122393250465, -0.024037674069404602, 0.008665138855576515, -0.04397254437208176, 0.002954877680167556, 0.00820713210850954, -0.007070866413414478, -0.04763660952448845, -0.021160336211323738, 0.015583401545882225, -0.0005069256294518709, -0.006632586009800434, -0.0352281853556633, 0.011214522644877434, -0.000870211748406291, -0.007868465967476368, -0.017355669289827347, 0.06631173938512802, 0.026246938854455948, 0.03435711935162544, 0.0015124354977160692, 0.047896817326545715, 0.006370858754962683, -0.011107215657830238, -0.07439645379781723, -0.003318341914564371, 0.007622590288519859, -0.04723799601197243, 0.0241475161164999, 0.018018115311861038, 0.054025329649448395, -0.055097851902246475, -0.013854688964784145, 0.010969857685267925, 0.023996494710445404, -0.01055854931473732, 0.013870795257389545, 0.017433397471904755, -0.022249476984143257, 0.0804838091135025, -0.006801019888371229, 0.025253677740693092, 0.03402746841311455, 0.048266880214214325, -0.02938556671142578, 0.03678474947810173, 0.029543809592723846, 0.03489762544631958, 0.025580357760190964, 0.013279367238283157, 0.034502822905778885, -0.0062208934687078, 0.02240120805799961, 0.02171894907951355, 0.003256367053836584, -0.03953799605369568, 0.04575962945818901, 0.024885626509785652, -0.005241022910922766, -0.014153562486171722, -0.017857279628515244, -0.04609949514269829, 0.06817834824323654, 0.013580185361206532, -0.29012951254844666, 0.03248124197125435, 0.0715300440788269, 0.038083381950855255, -0.014856185764074326, -0.006273432169109583, -0.014420350082218647, -0.03703729435801506, -0.05538672208786011, 0.005866670981049538, -0.04892709106206894, 0.044643860310316086, 0.011740386486053467, -0.0285152867436409, -0.006143360398709774, -0.012392641976475716, 0.05936664342880249, 0.0016025267541408539, 0.024794818833470345, 0.004273437429219484, 0.04260759800672531, -0.010106924921274185, 0.16853323578834534, 0.06757057458162308, 0.006377412937581539, 0.01863497868180275, 0.0018214033916592598, -0.048309776932001114, 0.07304728031158447, 0.007652650587260723, 0.022428827360272408, -0.013903375715017319, 0.014692193828523159, 0.03663875162601471, 0.029547950252890587, -0.009936542250216007, -0.04340715333819389, 0.06855969876050949, 0.02001989632844925, -0.029339300468564034, -0.014180176891386509, 0.040703512728214264, -0.07385668158531189, 0.021618127822875977, 0.09511305391788483, -0.00302523304708302, -0.01694783940911293, -0.01337586808949709, -0.02257612533867359, -0.014986623078584671, -0.017769617959856987, -0.018133260309696198, -0.044914256781339645, 0.010010984726250172, 0.0164957232773304, 0.07512984424829483, 0.03352305665612221, 0.00047186334268189967, 0.02256493642926216, -0.02476414665579796, 0.01846500299870968, -0.057610828429460526, 0.061994172632694244, -0.015333853662014008, 0.034619491547346115 ]
[ 0.015275871381163597, -0.024680431932210922, 0.03424972668290138, 0.030506324023008347, 0.02400771528482437, 0.027077918872237206, -0.015126426704227924, 0.010197543539106846, 0.007818943820893764, -0.04131987318396568, -0.0007039018091745675, 0.03928372263908386, 0.0030207836534827948, -0.04002032056450844, 0.033989131450653076, 0.02980368584394455, -0.0121945571154356, -0.02836981788277626, 0.059268347918987274, 0.016495754942297935, -0.037642329931259155, 0.011006101965904236, -0.005858502350747585, 0.02801644429564476, -0.025628283619880676, -0.015955602750182152, -0.04144864156842232, 0.00191830366384238, 0.023872386664152145, -0.10727190971374512, -0.014891034923493862, -0.05907164886593819, -0.015052709728479385, 0.012311800383031368, -0.06813763827085495, 0.001097148866392672, -0.01873224973678589, -0.023971688002347946, -0.01659954898059368, 0.022559527307748795, -0.003993970807641745, 0.002407851628959179, 0.009954456239938736, -0.0158471018075943, 0.023917704820632935, 0.001923931878991425, -0.014079948887228966, -0.033747777342796326, -0.044726431369781494, 0.034343618899583817, -0.05043631047010422, -0.022382697090506554, -0.028148720040917397, -0.0009013859089463949, 0.014772099442780018, 0.003609758336097002, -0.01675592176616192, -0.03000280074775219, 0.05040348693728447, 0.0047402516938745975, 0.008322950452566147, 0.03542906045913696, -0.02868688479065895, -0.04360326752066612, 0.00310772773809731, -0.029642101377248764, -0.016912339255213737, 0.00362732564099133, -0.01066080667078495, 0.043237507343292236, 0.002092476934194565, 0.008191903121769428, -0.025536183267831802, -0.0015755603089928627, -0.032000742852687836, -0.002447322243824601, 0.0018876976100727916, -0.033195655792951584, -0.010778030380606651, -0.020798033103346825, -0.028128433972597122, 0.009660799987614155, -0.009554381482303143, 0.05769281089305878, 0.018766647204756737, -0.058189507573843, 0.018413059413433075, 0.020317479968070984, 0.00321734300814569, -0.05415092781186104, -0.0418822355568409, -0.03514336422085762, 0.0060530854389071465, 0.04781828075647354, -0.07963491231203079, 0.01637645810842514, 0.023315735161304474, -0.006693955976516008, 0.006704261060804129, 0.815784752368927, 0.005334098823368549, 0.003177178790792823, -0.008308736607432365, -0.0008110238122753799, 0.01851130649447441, -0.005430645775049925, 0.003711586119607091, -0.014617609791457653, -0.043810226023197174, -0.012061278335750103, -0.0014328210381790996, 0.0028184487018734217, 0.015366882085800171, 0.03453756123781204, 0.03318755328655243, 0.02267424575984478, -0.00385405495762825, 0.01529411319643259, -0.019000893458724022, 0.01733916625380516, 0.03509774059057236, -0.00047903365339152515, -0.001510435831733048, -0.007672028616070747, 0.001971613150089979, -0.16470745205879211, 0.049331218004226685, -7.436432198639125e-33, 0.041042719036340714, -0.023259950801730156, 0.04114914685487747, -0.026837365701794624, 0.011243215762078762, 0.011818059720098972, -0.039552684873342514, -0.02548062615096569, -0.008468830958008766, -0.012392665259540081, 0.004050619900226593, -0.0019431685796007514, -0.03336385637521744, 0.03185265138745308, 0.025364834815263748, 0.008155870251357555, 0.02491072006523609, 0.03973379358649254, 0.019185904413461685, 0.019269956275820732, 0.018028410151600838, 0.00938497669994831, -0.01182265393435955, 0.012493613176047802, -0.020686181262135506, 0.023289531469345093, -0.009775305166840553, 0.02807609923183918, -0.046241991221904755, -0.057173486799001694, -0.051506124436855316, 0.02546853758394718, -0.017549823969602585, -0.023736802861094475, 0.04798988997936249, -0.05107299983501434, -0.0251159630715847, 0.02223179303109646, -0.028776008635759354, 0.01467687077820301, -0.011288882233202457, 0.0039376807399094105, -0.04957618564367294, -0.03258505091071129, -0.0261763334274292, 0.0542663112282753, -0.004842774011194706, 0.02525407075881958, 0.021231623366475105, 0.00748549634590745, -0.04537716135382652, 0.0376756377518177, -0.000046605819079559296, -0.009413495659828186, 0.006905546877533197, 0.01277543231844902, 0.017158331349492073, -0.0020397172775119543, 0.02206624485552311, -0.03667568787932396, 0.027378803119063377, -0.041655283421278, 0.036778535693883896, -0.0031383181922137737, -0.018844978883862495, -0.018188489601016045, 0.0657246857881546, 0.0014435825869441032, 0.01770457625389099, -0.014993974938988686, -0.08027620613574982, 0.03854025900363922, -0.012221362441778183, -0.03748200461268425, 0.038271673023700714, -0.02812313288450241, 0.016702869907021523, -0.0072577898390591145, 0.03427546098828316, 0.010976359248161316, -0.009923560544848442, -0.04741291701793671, 0.005144292954355478, -0.0074758343398571014, -0.01382104679942131, -0.020752495154738426, 0.01938280649483204, 0.05293313413858414, -0.04623550921678543, 0.0055769383907318115, 0.020821304991841316, 0.04417107254266739, -0.018242014572024345, -0.025540949776768684, 0.02214900031685829, 7.470758103051075e-33, 0.025441620498895645, 0.02448323182761669, -0.001222961232997477, 0.020780591294169426, 0.03606897220015526, -0.021793324500322342, 0.04025944322347641, 0.07278165966272354, -0.02704475447535515, 0.052861299365758896, 0.011942403391003609, -0.06909403204917908, -0.026082094758749008, 0.016449278220534325, 0.05306481942534447, 0.022794904187321663, -0.008920022286474705, 0.02023281902074814, -0.023879025131464005, -0.04680419713258743, -0.042532823979854584, 0.0338774174451828, 0.012281970120966434, 0.015900155529379845, 0.03743959590792656, 0.0693720281124115, 0.005389923229813576, 0.002868100069463253, -0.01977904886007309, -0.007276242133229971, -0.010758188553154469, -0.038453035056591034, 0.022454138845205307, -0.07074718177318573, 0.010803788900375366, 0.05510542914271355, 0.025813130661845207, -0.04539164900779724, -0.012142080813646317, 0.0180517565459013, 0.030483288690447807, 0.011146724224090576, 0.003680709283798933, 0.01975983940064907, 0.011295820586383343, 0.021538598462939262, -0.001242637517862022, 0.03430889919400215, 0.02244676649570465, 0.00968352984637022, 0.011351879686117172, 0.0024038993287831545, 0.016475064679980278, -0.000614007527474314, 0.012139426544308662, -0.028359396383166313, -0.011070789769291878, 0.021111786365509033, -0.05132853984832764, 0.008585474453866482, -0.03288166970014572, -0.0060582468286156654, -0.05046248063445091, 0.0005277137970551848, -0.035251397639513016, -0.010628174990415573, -0.0373411700129509, -0.024406321346759796, 0.0010558788198977709, -0.004839833825826645, 0.013598090037703514, -0.013767600990831852, 0.014944193884730339, 0.005973414517939091, -0.0018347505247220397, 0.0010144378757104278, -0.0005862516700290143, -0.0006488173385150731, -0.014262198470532894, 0.003793182549998164, 0.023223938420414925, -0.026978613808751106, 0.05004182085394859, 0.0091153085231781, -0.019671324640512466, 0.05320786312222481, -0.0546678863465786, -0.007821966893970966, 0.008909681811928749, -0.0437287911772728, 0.0008434549672529101, -0.04388640075922012, -0.024019625037908554, 0.03549102321267128, 0.010792636312544346, -1.2932444448665592e-8, -0.04380342364311218, 0.022773852571845055, -0.002427860628813505, 0.009036415256559849, -0.00953110121190548, -0.003861463163048029, 0.0011140587739646435, -0.011736448854207993, 0.029438970610499382, 0.028139682486653328, 0.07304378598928452, -0.013784145936369896, 0.008595895953476429, 0.007059485651552677, -0.013438469730317593, -0.030749568715691566, -0.0023593115620315075, 0.0002466109290253371, 0.026812724769115448, -0.01107553020119667, 0.03624913841485977, 0.012475501745939255, 0.017497163265943527, -0.039571624249219894, 0.003319445298984647, 0.004095447715371847, 0.013952486217021942, -0.027093997225165367, 0.0071906219236552715, -0.0154897291213274, 0.051881253719329834, -0.04930867254734039, -0.01618848368525505, 0.030038755387067795, -0.017844196408987045, -0.0410979762673378, -0.011262754909694195, -0.0060570756904780865, 0.0077982391230762005, 0.01795198768377304, 0.006241288036108017, -0.006090495269745588, -0.036489568650722504, -0.012714347802102566, -0.0036755292676389217, 0.04832680895924568, -0.028023704886436462, 0.008616325445473194, 0.010655286721885204, -0.012412487529218197, -0.024109989404678345, -0.027962999418377876, 0.05464981123805046, 0.012983481399714947, 0.04902014881372452, -0.00034752930514514446, 0.04286845773458481, 0.00829576700925827, -0.026830358430743217, -0.009335325099527836, 0.00752769922837615, 0.006600692868232727, -0.01824132725596428, -0.018386991694569588 ]
altair-range-values-dates-axis
https://markhneedham.com/blog/2020/01/14/altair-range-values-dates-axis
false
2020-12-20 00:21:00
Strava: Export all activities to JSON file
[ "strava", "python" ]
[ "Strava" ]
In my continued playing around with the http://developers.strava.com/[Strava API^], I wanted to write a script to download all of my Strava activities to a JSON file. As I mentioned in https://markhneedham.com/blog/2020/12/15/strava-authorization-error-missing-read-permission/[a previous blog post^], the approach to authenticating requests has changed in the last two years, so we first need to generate an access token via the OAuth endpoint. Luckily Odd Eirik Igland https://stackoverflow.com/questions/60873575/how-to-access-authentication-by-strava-api-using-python[shared a script^] showing how to solve most of the problem, and I've adapted it to do what I want. == Pre-requisites First we need to install the following libraries: [source,bash] ---- pip install stravalib fastapi uvicorn jsonlines ---- And the script that we're going to execute next relies on the `CLIENT_ID` and `CLIENT_SECRET` environment variables. We can get those values from the https://www.strava.com/settings/api[Strava API application page^], and set them by running the following commands: [source,bash] ---- export CLIENT_ID="client_id" export CLIENT_SECRET="client_secret" ---- == Generate access token Now we're ready to generate a Strava access token, using the following script: .https://github.com/mneedham/materialize-sandbox/blob/main/strava/authenticate.py[authenticate.py^] [source,python] ---- import os import pickle from fastapi import FastAPI from fastapi.responses import RedirectResponse from stravalib.client import Client CLIENT_ID = os.getenv("CLIENT_ID") CLIENT_SECRET = os.getenv("CLIENT_SECRET") REDIRECT_URL = 'http://localhost:8000/authorized' app = FastAPI() client = Client() def save_object(obj, filename): with open(filename, 'wb') as output: # Overwrites any existing file. pickle.dump(obj, output, pickle.HIGHEST_PROTOCOL) @app.get("/") def read_root(): authorize_url = client.authorization_url(client_id=CLIENT_ID, redirect_uri=REDIRECT_URL) return RedirectResponse(authorize_url) @app.get("/authorized/") def get_code(state=None, code=None, scope=None): token_response = client.exchange_code_for_token(client_id=CLIENT_ID, client_secret=CLIENT_SECRET, code=code) access_token = token_response['access_token'] refresh_token = token_response['refresh_token'] expires_at = token_response['expires_at'] client.access_token = access_token client.refresh_token = refresh_token client.token_expires_at = expires_at save_object(client, 'auth/client.pkl') return {"state": state, "code": code, "scope": scope} ---- If we run the following command, it will launch a web server on port 8000: [source,bash] ---- uvicorn authenticate:app --reload ---- .Output [source,text] ---- INFO: Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit) INFO: Started reloader process [850840] using statreload INFO: Started server process [850842] INFO: Waiting for application startup. INFO: Application startup complete. ---- Next we need to navigate to http://localhost:8000, from where we'll be redirected to the Strava login page: image::{{<siteurl>}}/uploads/2020/12/strava-1.png[title="Strava Authorisation"] Once we click on 'Authorize', the web browser will redirect to http://localhost:8000/authorized, and we'll see something like the following: [source,json] ---- { "state": "", "code": "<our-code>", "scope": "read,activity:read" } ---- The script will also save a Strava client containing an access token to `auth/client.pkl`. == Download Strava activities We're now ready to download our Strava activites, which we'll do using the following script: .https://github.com/mneedham/materialize-sandbox/blob/main/strava/download_activities.py[download_activities.py] [source,python] ---- import os import pickle import time import jsonlines CLIENT_ID = os.getenv("CLIENT_ID") CLIENT_SECRET = os.getenv("CLIENT_SECRET") def check_token(): if time.time() > client.token_expires_at: refresh_response = client.refresh_access_token(client_id=CLIENT_ID, client_secret=CLIENT_SECRET, refresh_token=client.refresh_token) access_token = refresh_response['access_token'] refresh_token = refresh_response['refresh_token'] expires_at = refresh_response['expires_at'] client.access_token = access_token client.refresh_token = refresh_token client.token_expires_at = expires_at def load_object(filename): with open(filename, 'rb') as input: loaded_object = pickle.load(input) return loaded_object try: client = load_object('auth/client.pkl') check_token() athlete = client.get_athlete() print("For {id}, I now have an access token {token}".format(id=athlete.id, token=client.access_token)) with jsonlines.open('data/activities-all.json', mode='w') as writer: for activity in client.get_activities(): writer.write({ "id": activity.id, "distance": activity.distance.get_num(), "moving_time": activity.moving_time.seconds, "elapsed_time": activity.elapsed_time.seconds, "total_elevation_gain": activity.total_elevation_gain.get_num(), "elev_high": activity.elev_high, "elev_low": activity.elev_low, "average_speed": activity.average_speed.get_num(), "max_speed": activity.max_speed.get_num(), "average_heartrate": activity.average_heartrate, "max_heartrate": activity.max_heartrate, "start_date": str(activity.start_date) }) except FileNotFoundError: print( "No access token stored yet, run uvicorn authenticate:app --reload and visit http://localhost:8000/ to get it") print("After visiting that url, a pickle file is stored, run this file again to download your activities") ---- This script does the following: * Loads the Strava client object from `auth/client.pkl` * Uses the refresh token to generate a new access token if the old one has expired * Iterates through all of our activities and writes them to `data/activities-all.json` We can run the script like so: [source,python] ---- python download_activities.py ---- After it's finished running, `data/activities-all.json` has the following contents: [source, bash] ---- head -n3 data/activities-all.json ---- .Output [source,json] ---- {"id": 4489569395, "distance": 13751.9, "moving_time": 4150, "elapsed_time": 4155, "total_elevation_gain": 96.9, "elev_high": 79.3, "elev_low": 25.0, "average_speed": 3.314, "max_speed": 4.6, "average_heartrate": 149.8, "max_heartrate": 176, "start_date": "2020-12-19 07:05:51+00:00"} {"id": 4485841116, "distance": 12881.6, "moving_time": 3890, "elapsed_time": 3946, "total_elevation_gain": 90.7, "elev_high": 74.3, "elev_low": 22.9, "average_speed": 3.311, "max_speed": 4.4, "average_heartrate": 155.0, "max_heartrate": 191, "start_date": "2020-12-18 05:35:08+00:00"} {"id": 4478032915, "distance": 13148.8, "moving_time": 3998, "elapsed_time": 4039, "total_elevation_gain": 100.4, "elev_high": 69.9, "elev_low": 22.9, "average_speed": 3.289, "max_speed": 5.3, "average_heartrate": 156.6, "max_heartrate": 183, "start_date": "2020-12-16 05:35:09+00:00"} ----
In this blog post we'll learn how export all activities from Strava to a JSON file
null
[ 0.013538986444473267, -0.01513736043125391, -0.017960596829652786, 0.024927867576479912, 0.07042431086301804, 0.020190678536891937, 0.015483113005757332, 0.04215575009584427, 0.0022744948510080576, 0.0008343703811988235, -0.004714655224233866, -0.011214734986424446, -0.07408662885427475, -0.01622803509235382, -0.011676955968141556, 0.04320802539587021, 0.09676138311624527, 0.0007537847850471735, 0.028921518474817276, 0.020889949053525925, 0.00824559573084116, 0.05374294891953468, 0.01775161549448967, 0.002012011129409075, 0.02889559604227543, 0.014247437007725239, 0.004463192541152239, -0.012684824876487255, -0.0640648826956749, -0.03247716650366783, 0.03002200461924076, -0.01564955525100231, -0.004956872668117285, -0.021050455048680305, 0.051241450011730194, 0.005982311442494392, -0.008297476917505264, 0.01552269235253334, -0.013921772129833698, 0.022026751190423965, -0.04490868002176285, 0.020361877977848053, -0.042891111224889755, 0.016764556989073753, -0.01909482665359974, 0.030170071870088577, -0.023388473317027092, 0.030776111409068108, -0.01139882393181324, -0.040921080857515335, -0.05126001313328743, 0.036467310041189194, -0.04290051385760307, -0.00696988869458437, 0.05710853636264801, 0.04021618515253067, -0.008809525519609451, -0.08188514411449432, 0.01647246815264225, -0.04934500530362129, 0.009542395360767841, -0.005734806414693594, 0.011280897073447704, 0.021273793652653694, 0.004604546818882227, -0.018285704776644707, 0.023723125457763672, 0.0679173693060875, -0.019421756267547607, -0.014842722564935684, 0.00895956065505743, 0.0029601436108350754, -0.03445998206734657, 0.014285015873610973, -0.0007617308874614537, -0.05983942747116089, 0.008396035991609097, 0.06054411455988884, 0.025796176865696907, 0.0032551968470215797, 0.02612008899450302, -0.01461668312549591, 0.003518083831295371, 0.04230392351746559, -0.014190949499607086, -0.03583472594618797, -0.02003917470574379, -0.013949589803814888, -0.03260884806513786, 0.034059789031744, 0.010475175455212593, -0.04106390103697777, 0.002969827502965927, -0.000008205293852370232, 0.018050089478492737, -0.020678268745541573, -0.005688912235200405, -0.0010737873381003737, 0.0010929479030892253, -0.030529560521245003, -0.06146109476685524, 0.0011963645229116082, -0.0024314173497259617, 0.00863338727504015, -0.06223439425230026, 0.0104881152510643, -0.004994682502001524, -0.015077765099704266, 0.011854609474539757, 0.01898343116044998, -0.003941367380321026, 0.012688282877206802, -0.01674768328666687, -0.0017639717552810907, -0.053131017833948135, 0.06368765234947205, -0.0031447885558009148, -0.04470456391572952, -0.05258483439683914, -0.028352126479148865, 0.06394875049591064, 0.04202565178275108, -0.02263336256146431, 0.060050126165151596, 0.012135566212236881, 0.058012161403894424, -0.012141549028456211, 0.043825872242450714, 0.015454044565558434, -0.042694803327322006, -0.04538240656256676, 0.050869591534137726, -0.02542942762374878, 0.030247457325458527, 0.013243228197097778, 0.010950902476906776, -0.022121690213680267, 0.008632263168692589, 0.05671054869890213, 0.011575997807085514, 0.001526291249319911, -0.02519354782998562, -0.008988210000097752, 0.007975813932716846, 0.03867777809500694, 0.03652682155370712, 0.016442693769931793, -0.045931171625852585, -0.06868153065443039, 0.006533797364681959, 0.017148751765489578, 0.015924084931612015, 0.07517802715301514, -0.01508985087275505, -0.0036252804566174746, 0.08942798525094986, 0.051134366542100906, 0.03274660184979439, -0.026197396218776703, 0.010520472191274166, 0.06020273268222809, 0.037601571530103683, -0.019719025120139122, 0.05733078718185425, -0.013086947612464428, -0.015269708819687366, -0.004501509480178356, 0.050318796187639236, -0.0017011770978569984, -0.005091684404760599, -0.0529780313372612, -0.07167652249336243, 0.04907643049955368, -0.03564433380961418, -0.010080680251121521, 0.053301017731428146, 0.06078222766518593, 0.032298654317855835, 0.03349550813436508, 0.03450710326433182, -0.07326028496026993, 0.06348835676908493, 0.004250597674399614, 0.01109878160059452, 0.06266956031322479, -0.0030357581563293934, 0.1001291424036026, 0.015116310678422451, -0.00885452888906002, 0.02002580836415291, -0.05181775614619255, -0.05914735421538353, -0.030180661007761955, 0.011342373676598072, 0.06245504319667816, -0.029949041083455086, -0.0010564710246399045, 0.08461367338895798, 0.031176745891571045, 0.05257827416062355, 0.0198188629001379, -0.025210987776517868, -0.007274189963936806, -0.07370158284902573, -0.0521128848195076, 0.028033191338181496, 0.054386306554079056, -0.016782712191343307, -0.014022456482052803, 0.015295545570552349, -0.04697229713201523, 0.011542580090463161, 0.017464233562350273, -0.02548726461827755, 0.04429608955979347, 0.01757168211042881, 0.03330158069729805, -0.01150481402873993, 0.042331963777542114, -0.032112687826156616, 0.034915659576654434, -0.0008829327416606247, 0.009445548057556152, -0.010255594737827778, -0.01621720939874649, 0.11235719174146652, 0.038373786956071854, -0.010984713211655617, -0.07277648150920868, -0.001123997033573687, 0.008426913991570473, -0.05278030037879944, -0.023592602461576462, -0.0031907823868095875, -0.02525230497121811, 0.002109173685312271, -0.024663027375936508, -0.027657121419906616, -0.022435244172811508, -0.037822820246219635, 0.0061258613131940365, 0.06254355609416962, -0.012754385359585285, 0.041500482708215714, 0.01143074594438076, -0.028114868327975273, -0.012522745877504349, -0.011520970612764359, -0.057730212807655334, -0.027542095631361008, -0.0015145448269322515, -0.012260697782039642, 0.04059016332030296, -0.025899074971675873, -0.054218094795942307, -0.016024911776185036, -0.028369789943099022, 0.03181290999054909, 0.061310138553380966, 0.05554799363017082, -0.019475264474749565, 0.05851028859615326, -0.014174048788845539, 0.02675909548997879, -0.039142753928899765, -0.03759799152612686, -0.0871141329407692, -0.026575185358524323, 0.006548944395035505, 0.026939641684293747, 0.030876517295837402, 0.022400349378585815, -0.00023204895842354745, -0.014053714461624622, 0.02295241504907608, 0.035278405994176865, 0.04995345696806908, 0.013185207732021809, -0.003285281825810671, -0.011864004656672478, -0.014645155519247055, 0.052901461720466614, -0.03388815373182297, -0.01519713457673788, 0.02218415029346943, -0.07948680222034454, 0.022509384900331497, -0.05558693781495094, -0.04927936568856239, -0.015838036313652992, -0.017477456480264664, 0.050098832696676254, 0.011946143582463264, 0.0073191639967262745, 0.05496806278824806, 0.023734647780656815, 0.006959692575037479, 0.00836024060845375, -0.013956398703157902, 0.04009993374347687, 0.010625449940562248, 0.011227322742342949, 0.053720615804195404, -0.04802809655666351, -0.005799506790935993, -0.029940640553832054, 0.00942704826593399, -0.06256769597530365, -0.2873690128326416, 0.05209425464272499, -0.019362375140190125, -0.019338347017765045, 0.02898973785340786, 0.020907815545797348, 0.005952676758170128, -0.04546618461608887, -0.04083043709397316, 0.04095647484064102, -0.010022200644016266, -0.050585776567459106, -0.005512448493391275, 0.042215440422296524, -0.001638617948628962, 0.04098097234964371, -0.04148038104176521, -0.06344251334667206, 0.03902289643883705, 0.03612885996699333, 0.006598806940019131, -0.055602751672267914, 0.005822730716317892, 0.032084058970212936, 0.02946200594305992, 0.051605552434921265, -0.0661953017115593, 0.05150115117430687, -0.03759452700614929, -0.037352923303842545, 0.020728450268507004, -0.012558259069919586, 0.02361764758825302, -0.007667211350053549, -0.019258027896285057, -0.034293971955776215, 0.04927076771855354, 0.0033666808158159256, 0.01878935471177101, -0.05157256871461868, -0.030384032055735588, -0.034858833998441696, -0.003975925501435995, -0.007371543440967798, 0.08375700563192368, 0.012938515283167362, -0.0811152309179306, 0.009551145136356354, -0.049291159957647324, 0.09116454422473907, -0.02631247416138649, -0.032560158520936966, -0.04880504310131073, 0.04617292061448097, -0.013012821786105633, -0.036492202430963516, -0.025683274492621422, 0.00968688540160656, -0.02577499859035015, -0.0035150630865246058, -0.0009790284093469381, -0.016637200489640236, -0.012345565482974052, -0.06616649031639099, -0.01822812855243683, -0.051536161452531815, -0.047966890037059784, -0.019137118011713028, 0.03904642537236214, 0.049391813576221466, -0.06617847830057144, 0.03683691471815109, -0.04623870551586151, -0.10851016640663147, 0.000033386651921318844, -0.054010435938835144, -0.021982379257678986, 0.0008367465925402939, -0.02357136644423008, 0.027017150074243546, -0.03335011750459671, -0.05994611233472824, -0.00623504351824522, -0.00859824102371931, 0.02377260848879814, -0.005075983703136444, 0.033957961946725845, -0.016880802810192108, -0.0018798975506797433, -0.010180743411183357, 0.07889378070831299, -0.007693687453866005, -0.0308260228484869, -0.0016210994217544794, -0.031748585402965546, -0.007729845587164164, 0.006373314186930656, -0.0065875304862856865, 0.009238099679350853, 0.016975168138742447, 0.036777857691049576, -0.03115680441260338, -0.03887496143579483, -0.07180847972631454, 0.019092388451099396, -0.03874628245830536, -0.05260148644447327, 0.009982260875403881, 0.01847299560904503, 0.015141337178647518, -0.012320551089942455, -0.03862393647432327, 0.0064970566891133785, -0.0723448246717453, -0.003998882602900267, 0.019809577614068985, 0.029655883088707924, 0.03397654742002487, 0.03357383981347084, -0.0069806561805307865, -0.05610720068216324, 0.038950640708208084, 0.03220639377832413, -0.010256186127662659, -0.03229542821645737, -0.009181955829262733, -0.005088034551590681, 0.020291704684495926, 0.0030555827543139458, 0.019745025783777237, -0.0017078635282814503, -0.004874290432780981, 0.030068840831518173, -0.039480797946453094, -0.008319335989654064, -0.039809055626392365, -0.020592402666807175, -0.019243020564317703, 0.010948151350021362, -0.010037565603852272, -0.010472141206264496, -0.009243931621313095, 0.005799063481390476, 0.027536872774362564, 0.04296106472611427, -0.019572822377085686, 0.05575002729892731, 0.003716602921485901, -0.013771189376711845, -0.026136251166462898, 0.010834402404725552, -0.04834120720624924, -0.005529066547751427, -0.008879315108060837, -0.01071566715836525, -0.02531694993376732, 0.020770186558365822, -0.008649550378322601, -0.00917416624724865, -0.032052747905254364, 0.05139399319887161, -0.05044941231608391, -0.026597965508699417, 0.021608678624033928, -0.017917180433869362, 0.03262800723314285, 0.006578732747584581, -0.010836196132004261, 0.0033741698134690523, -0.028526633977890015, 0.015572605654597282, -0.015952182933688164, 0.010231981053948402, -0.0021221942733973265, -0.03856789320707321, 0.003712219186127186, 0.0059996661730110645, 0.02138589695096016, 0.024122722446918488, -0.02450844645500183, 0.012008371762931347, -0.024210823699831963, 0.018867863342165947, 0.0026251072995364666, 0.03419464826583862, 0.018361812457442284, -0.03562700375914574, -0.013394797220826149, -0.01136890146881342, 0.004484336823225021, -0.05330222472548485, 0.019135262817144394, -0.03484753519296646, -0.002845583949238062, 0.022543881088495255, -0.07371662557125092, 0.011317786760628223, 0.043558936566114426, 0.006490512751042843, 0.03688527271151543, -0.02457946352660656, 0.013942662626504898, -0.01116932649165392, 0.04680553451180458, 0.04619048163294792, -0.02728237397968769, -0.00546039454638958, 0.018805760890245438, 0.020283127203583717, 0.009763180278241634, 0.00610948633402586, -0.05742596834897995, -0.006202410440891981, -0.014627333730459213, -0.006212776526808739, -0.008377274498343468, -0.05953247472643852, -0.020709328353405, -0.026757853105664253, -0.004613921046257019, 0.01599138230085373, 0.017864156514406204, -0.003336329013109207, -0.006003039889037609, -0.035379353910684586, -0.007971984334290028, -0.026740625500679016, -0.027369318529963493, 0.02906794659793377, 0.007439004722982645, 0.000207650096854195, -0.04535803198814392, 0.03951428085565567, 0.00646303640678525, -0.013393341563642025, -0.00188047147821635, -0.06782375276088715, -0.012821445241570473, -0.0009811503114178777, 0.05327005311846733, -0.01131451316177845, 0.006089664530009031, -0.03613191843032837, 0.02564358338713646, -0.0020280349999666214, 0.007221137639135122, -0.027222538366913795, -0.013393095694482327, 0.05229613184928894, 0.04805437847971916, 0.014250772073864937, 0.059018634259700775, 0.018322011455893517, -0.05766180530190468, 0.044761646538972855, -0.06630466133356094, -0.031270742416381836, -0.024263150990009308, -0.023844202980399132, 0.02853209152817726, 0.059457167983055115, 0.01637076586484909, -0.08785227686166763, 0.04378287121653557, 0.026089001446962357, 0.014705881476402283, 0.0734487771987915, -0.01496526226401329, 0.032397616654634476, -0.012573108077049255, 0.008958111517131329, -0.07980577647686005, 0.025748252868652344, 0.03620457649230957, -0.03412507474422455, -0.02430761232972145, 0.02396540530025959, -0.05201445892453194, 0.049860160797834396, -0.05288106948137283, -0.03366273269057274, 0.0698215663433075, -0.009914210066199303, -0.023302270099520683, -0.01117376983165741, -0.0370187908411026, 0.041382696479558945, 0.0619487389922142, -0.05819199979305267, 0.03153518959879875, -0.011121483519673347, 0.043984174728393555, -0.024226369336247444, 0.058464884757995605, -0.0003773485077545047, -0.05382755398750305, 0.07311482727527618, 0.005628653801977634, -0.023618659004569054, 0.010259504429996014, -0.029761653393507004, 0.015231805853545666, 0.01645437255501747, -0.0053499918431043625, -0.00574249355122447, 0.02001693844795227, 0.01966235414147377, -0.05985432118177414, 0.04632445052266121, 0.033522527664899826, -0.0033022533170878887, -0.06891553848981857, 0.07457787543535233, 0.015882499516010284, -0.04049071669578552, -0.03947572782635689, 0.03483026847243309, -0.05447329208254814, -0.040202513337135315, -0.009394352324306965, -0.011872045695781708, -0.027068616822361946, 0.03809790313243866, -0.01978982612490654, -0.0013976948102936149, 0.05552864819765091, -0.021290430799126625, 0.0027230186387896538, 0.0009464933536946774, 0.059029825031757355, 0.06853022426366806, 0.024090023711323738, -0.007917682640254498, 0.06168362498283386, 0.015976479277014732, -0.030636930838227272, -0.0009635168826207519, -0.03564723953604698, -0.025752786546945572, -0.021393541246652603, 0.010538211092352867, 0.03614066168665886, -0.014184633269906044, 0.0426214262843132, -0.019899699836969376, -0.00969952903687954, -0.0098884841427207, 0.02248101681470871, 0.013051989488303661, 0.017490005120635033, 0.009502243250608444, 0.05050763487815857, -0.03349748253822327, -0.033193472772836685, 0.013188912533223629, -0.010935071855783463, -0.023886356502771378, 0.047989845275878906, -0.018581772223114967, 0.022097604349255562, 0.010534148663282394, 0.006252676248550415, 0.06264206022024155, -0.027947211638092995, 0.0013727763434872031, -0.007604638580232859, 0.03797633573412895, -0.011904063634574413, 0.02693381905555725, -0.012667311355471611, -0.013654028065502644, 0.02003783918917179, -0.045274872332811356, -0.023799145594239235, 0.020387718454003334, -0.016780227422714233, 0.05383792519569397, -0.01584775000810623, 0.03806841000914574, -0.009795830585062504, -0.0009600842604413629, -0.03687914460897446, -0.04202225059270859, -0.06734982877969742, -0.06483974307775497, -0.04617440700531006, -0.01686079613864422, -0.017387161031365395, 0.013215988874435425, -0.028895298019051552, -0.03999878466129303, 0.003213452408090234, 0.021222393959760666, 0.02413393370807171, -0.028297310695052147, -0.04199583828449249, 0.030603928491473198, 0.008408571593463421, -0.01703541725873947, 0.014754436910152435, 0.04278794303536415, -0.0028496833983808756, -0.014721435494720936, -0.03544232249259949, 0.002699503907933831, 0.04883402958512306, -0.008838740177452564, -0.00232522701844573, -0.047474123537540436, 0.025258569046854973, 0.02817659266293049, 0.03399632126092911, -0.05781840160489082, -0.006632686592638493, 0.05057692155241966, 0.03299857676029205, 0.06597612053155899, -0.014331069774925709, 0.010335603728890419, -0.03451266512274742, -0.05499017611145973, 0.010496861301362514, 0.015019421465694904, 0.03784789890050888, -0.000584632798563689, 0.09333652257919312, 0.04094293713569641, -0.010069669224321842, -0.012585735879838467, -0.015098265372216702, -0.010547420009970665, -0.01387766096740961, -0.00851999968290329, -0.020837344229221344, -0.047868385910987854, -0.06049320846796036, -0.03382266312837601, 0.004860322456806898, -0.037693772464990616, -0.019185161218047142, 0.037946101278066635, 0.010568912141025066, -0.022933917120099068, 0.056574154645204544, -0.014449845999479294, 0.02775299735367298, -0.012245401740074158, -0.02204115130007267, -0.02204042114317417, 0.035325463861227036, 0.0064088208600878716, 0.010897649452090263, 0.02392646111547947, -0.05066949501633644, -0.009156701155006886, 0.026941627264022827, 0.02713308297097683, 0.056375034153461456, -0.05538154020905495, 0.01505433488637209 ]
[ -0.07710442692041397, -0.03981189429759979, -0.04761308804154396, -0.05361369252204895, 0.02837347984313965, -0.06781687587499619, -0.007847165688872337, 0.04200299084186554, -0.007007216103374958, 0.020505929365754128, -0.022157181054353714, -0.055541377514600754, -0.009528497233986855, -0.014243429526686668, 0.0636778399348259, -0.030568068847060204, -0.008204132318496704, -0.06877938657999039, -0.058972157537937164, 0.04636405035853386, -0.04200912266969681, 0.005358994007110596, -0.031672511249780655, -0.04830555245280266, -0.005793276242911816, 0.028586814180016518, 0.04156216233968735, -0.047908294945955276, -0.01793077401816845, -0.16632172465324402, -0.009414647705852985, -0.016844702884554863, -0.008560593239963055, 0.004476513247936964, 0.008490296080708504, 0.05970282852649689, 0.01533855963498354, 0.015840651467442513, -0.0011676502181217074, 0.048522382974624634, 0.020637020468711853, 0.03160611540079117, -0.062348946928977966, 0.0011374728055670857, 0.026901453733444214, -0.002273213816806674, -0.029306506738066673, 0.003823664039373398, 0.018500085920095444, -0.02386314421892166, -0.02508319728076458, 0.03358125686645508, 0.006423112470656633, 0.00016660538676660508, -0.01112471055239439, -0.03280561789870262, 0.015635553747415543, 0.10993027687072754, 0.009836540557444096, 0.02516208402812481, -0.016087166965007782, -0.013735559768974781, -0.13810674846172333, 0.10610213875770569, -0.022363409399986267, 0.04766933247447014, -0.021519361063838005, -0.003936596214771271, 0.002328799106180668, 0.03874218463897705, -0.020656133070588112, -0.01922374591231346, -0.05542614310979843, 0.04642484709620476, 0.049282994121313095, -0.01567002385854721, 0.004514889791607857, 0.049110107123851776, 0.08070734888315201, -0.009862394072115421, -0.021913515403866768, 0.01328795775771141, -0.02054477669298649, 0.006674448028206825, -0.024508045986294746, -0.005118474364280701, -0.0013421279145404696, 0.07284492254257202, 0.06566154211759567, 0.028940577059984207, 0.0156718622893095, -0.041442275047302246, 0.05140460282564163, 0.021545229479670525, -0.09501127153635025, 0.005885491147637367, 0.009208789095282555, 0.006577333435416222, -0.022441904991865158, 0.37315812706947327, -0.004853264894336462, 0.0038298782892525196, -0.0014602685114368796, 0.012252041138708591, 0.013023064471781254, -0.012437458150088787, -0.0363834910094738, -0.05463307723402977, 0.02365056797862053, -0.015907635912299156, 0.029439877718687057, 0.008447646163403988, 0.06249894201755524, -0.06593753397464752, -0.012356395833194256, 0.05120598152279854, -0.0052171871066093445, 0.0445081926882267, -0.05443166568875313, 0.0030004139989614487, -0.02015608735382557, -0.01153996679931879, 0.0416317842900753, 0.013307581655681133, 0.012974090874195099, 0.02828156389296055, 0.039224978536367416, 0.06353896111249924, 0.029244767501950264, 0.06057743355631828, 0.051870740950107574, -0.0161876417696476, -0.06683681905269623, 0.0005710229743272066, 0.0001789140369510278, -0.003823663340881467, -0.03614159673452377, -0.0443929024040699, -0.012583533301949501, 0.022381681948900223, 0.0012618852779269218, -0.05251014977693558, 0.03211384639143944, -0.014781066216528416, -0.0313836969435215, 0.10493317246437073, 0.027040593326091766, -0.007272616028785706, -0.018305758014321327, -0.06432703882455826, 0.04277203604578972, 0.044715516269207, 0.006011294201016426, -0.058681681752204895, 0.023613030090928078, 0.03739742562174797, 0.062451254576444626, 0.016370238736271858, -0.06549502164125443, -0.012848437763750553, 0.01367991790175438, -0.06711980700492859, -0.03582283481955528, 0.023311814293265343, 0.047713540494441986, -0.12651292979717255, -0.00003264144470449537, 0.03310061991214752, -0.005346295889467001, -0.06851176917552948, 0.011304214596748352, 0.012405388988554478, -0.03697485104203224, -0.00571175804361701, 0.02862800844013691, -0.02291015349328518, -0.015008797869086266, -0.019032230600714684, 0.0642586499452591, 0.033079490065574646, -0.07066746801137924, 0.0059148045256733894, -0.053898248821496964, -0.010526560246944427, -0.04159291461110115, -0.06086908280849457, -0.036662280559539795, 0.008828978054225445, -0.012439491227269173, -0.044960759580135345, -0.005675006657838821, -0.016949569806456566, -0.09209144115447998, 0.014308104291558266, 0.027208687737584114, 0.0018656315514817834, -0.011176254600286484, -0.02286992222070694, -0.003807220607995987, -0.026276955381035805, 0.0279026348143816, 0.031012635678052902, 0.014267520979046822, 0.06980711966753006, -0.050543349236249924, 0.009273635223507881, 0.052582401782274246, -0.05635486915707588, 0.06017923355102539, 0.025512905791401863, -0.03750231862068176, 0.034802570939064026, -0.011550134979188442, 0.005735242739319801, -0.007648482918739319, -0.04763670638203621, -0.031663574278354645, -0.023394407704472542, 0.017487144097685814, 0.018695201724767685, -0.02112611010670662, 0.0006862016743980348, -0.009206787683069706, -0.35874247550964355, 0.010068483650684357, -0.011489237658679485, 0.03080415166914463, -0.0052323415875434875, -0.05292750149965286, 0.0005484787398017943, -0.01946200616657734, 0.004271647427231073, -0.006731454282999039, 0.18989816308021545, 0.03195754811167717, 0.010188913904130459, -0.07049158960580826, 0.018039211630821228, 0.042631085962057114, -0.012207716703414917, -0.021721897646784782, 0.0110718859359622, 0.01269714068621397, -0.024238616228103638, -0.04444294050335884, -0.01874368265271187, -0.0110024930909276, -0.00925953034311533, -0.03660859540104866, 0.11287610977888107, 0.03453236445784569, 0.04651837795972824, -0.05719513073563576, 0.03672051057219505, 0.03613182157278061, -0.013383131474256516, -0.13395823538303375, -0.011366977356374264, 0.008731975220143795, 0.03581074997782707, 0.07402651757001877, 0.07451605051755905, -0.02170511893928051, -0.02176358550786972, 0.06099562346935272, -0.016716744750738144, -0.01804945059120655, -0.016982875764369965, -0.02437756210565567, -0.021622968837618828, 0.00038454096647910774, 0.02016916126012802, 0.06975957006216049, -0.024490801617503166, 0.06424830108880997, 0.004046956077218056, 0.05065197870135307, -0.02018658258020878, 0.009963661432266235, -0.059651948511600494, -0.02073373645544052, -0.000651890761218965, 0.02638828754425049, 0.007884401828050613, 0.034672465175390244, 0.035049356520175934, -0.07206491380929947, 0.01027161255478859, -0.0065955426543951035, 0.023607397451996803, -0.01149541325867176, 0.09457051753997803, -0.022881116718053818, -0.04095267876982689, 0.10589487105607986, -0.030971186235547066, 0.04264344647526741, 0.05221770703792572, 0.03248473256826401, 0.01776193082332611, -0.004902471788227558, 0.03345409035682678, 0.017759528011083603, -0.022546526044607162, 0.0006445851759053767, 0.011327295564115047, -0.047553591430187225, 0.030396433547139168, 0.05866750329732895, -0.04898827150464058, 0.025112658739089966, 0.023689787834882736, 0.014015554450452328, -0.042664576321840286, -0.021405113860964775, -0.015487516298890114, -0.04734322428703308, 0.027991412207484245, 0.019255993887782097, -0.2427842915058136, 0.03161592409014702, 0.030631868168711662, 0.06077791377902031, -0.0051079727709293365, -0.013987960293889046, 0.025484617799520493, -0.09586650878190994, -0.03341856598854065, 0.003602334763854742, 0.03622378781437874, 0.022795407101511955, -0.003309868508949876, 0.03314589709043503, 0.006777133792638779, 0.005755685269832611, 0.050237737596035004, 0.016190940514206886, 0.010057720355689526, 0.0011765571543946862, 0.02790328487753868, -0.013088266365230083, 0.14834074676036835, 0.0013747896300628781, -0.03889733925461769, 0.012050405144691467, 0.009035659953951836, 0.03773339465260506, 0.06150637939572334, 0.0030643660575151443, -0.010027660056948662, -0.02222268469631672, 0.05654340237379074, 0.03223780542612076, 0.03171771764755249, -0.09704334288835526, -0.01506658736616373, -0.013631336390972137, 0.008207078091800213, -0.040641434490680695, -0.020764393731951714, 0.015674928203225136, -0.015757741406559944, 0.03540468215942383, 0.07610411196947098, -0.05521254986524582, -0.01762573793530464, -0.03106459230184555, -0.04263212904334068, -0.010659814812242985, -0.04961884766817093, -0.06145503371953964, -0.03732668608427048, 0.012506243772804737, 0.03573297709226608, 0.040753331035375595, 0.025081053376197815, -0.062204740941524506, 0.01876990869641304, 0.03990928456187248, -0.022280177101492882, -0.03667018562555313, 0.10382848978042603, 0.01683485135436058, 0.03037695400416851 ]
[ 0.005394130013883114, 0.06319079548120499, -0.053488776087760925, 0.0012634361628443003, -0.03986423462629318, 0.01338758785277605, 0.0033253487199544907, -0.0024564906489104033, -0.0032960637472569942, -0.026804137974977493, -0.001432842924259603, 0.02070276439189911, 0.03340822458267212, -0.00443505123257637, 0.02263282611966133, -0.023040149360895157, -0.02556833252310753, -0.003094784216955304, 0.049583904445171356, -0.015247746370732784, -0.0075961509719491005, 0.05828598141670227, 0.0013448563404381275, 0.003028320614248514, -0.0051712519489228725, 0.00604476360604167, -0.045945800840854645, -0.02657313272356987, 0.019606390967965126, -0.11583605408668518, 0.012943793088197708, -0.03383751958608627, 0.017208293080329895, -0.021608812734484673, -0.030882611870765686, 0.019811337813735008, -0.014203979633748531, -0.025942256674170494, -0.01977578178048134, 0.02221282571554184, -0.0040349289774894714, -0.012580912560224533, -0.013234457932412624, 0.009704443626105785, -0.059151120483875275, -0.017298050224781036, 0.026328962296247482, 0.011412580497562885, -0.01222606934607029, -0.022508900612592697, -0.010944722220301628, 0.006338611710816622, -0.012526674196124077, 0.005917116533964872, -0.01351381279528141, -0.030251944437623024, -0.06297314167022705, 0.030013933777809143, 0.026717694476246834, -0.03665567561984062, 0.026641856878995895, 0.004948300309479237, 0.006484242621809244, -0.03205803781747818, -0.01026652380824089, -0.004305019974708557, 0.015301589854061604, -0.02354435995221138, -0.009285076521337032, -0.001435978221707046, 0.00006581193883903325, 0.03357008472084999, -0.041148457676172256, -0.04618307948112488, -0.031716249883174896, -0.01549800019711256, 0.0012765551218762994, 0.012506121769547462, 0.006280718836933374, 0.017193948850035667, -0.016567910090088844, -0.0022745374590158463, -0.03603735193610191, 0.0697760209441185, 0.004514957778155804, 0.05490472540259361, -0.017848826944828033, 0.0011223546462133527, 0.020703095942735672, -0.0003349725157022476, 0.0063609532080590725, -0.00564775662496686, -0.014467683620750904, -0.0057260869070887566, -0.04456406459212303, -0.016753802075982094, -0.0127421785145998, -0.014975282363593578, -0.035057466477155685, 0.8012820482254028, -0.019030530005693436, -0.004515570588409901, 0.023443521931767464, 0.03240063041448593, 0.028736328706145287, 0.0008696374716237187, 0.02283799834549427, -0.02800283022224903, 0.03946055844426155, -0.005520153325051069, -0.020927678793668747, 0.01939728669822216, 0.01592520996928215, -0.001247367705218494, 0.0374753400683403, 0.07403399050235748, 0.020335279405117035, -0.003834966802969575, -0.0018294178880751133, 0.019203104078769684, 0.03333583474159241, -0.01971365511417389, 0.028843125328421593, 0.006685366854071617, 0.01974198967218399, -0.1846836805343628, 0.013342787511646748, -7.458237618846879e-33, 0.0034107679966837168, -0.00997252482920885, 0.034017592668533325, 0.003661318216472864, 0.023193268105387688, -0.018137101083993912, 0.021608730778098106, -0.0041199009865522385, -0.003001687116920948, -0.03710654750466347, -0.0377361960709095, 0.03549302741885185, 0.024321403354406357, 0.017704516649246216, 0.03487148508429527, -0.025739165022969246, -0.005578659474849701, 0.03196931257843971, 0.028634965419769287, -0.003389880061149597, 0.03702519088983536, 0.011302052065730095, 0.041612427681684494, 0.05942120775580406, 0.0026557589881122112, 0.0011516135418787599, 0.025968408212065697, 0.00796053558588028, -0.008402342908084393, -0.041789550334215164, -0.018630292266607285, -0.008201558142900467, 0.009788280352950096, -0.07306304574012756, 0.031563080847263336, -0.03990956023335457, -0.040008675307035446, -0.011334733106195927, -0.0074399299919605255, -0.06926146894693375, -0.01619136519730091, -0.016616040840744972, -0.01652703993022442, 0.02869230881333351, -0.03945672884583473, -0.02294713445007801, -0.021699190139770508, 0.024130720645189285, 0.00469609722495079, 0.03584051504731178, -0.01283249817788601, 0.021564336493611336, -0.013157853856682777, -0.02471158094704151, -0.028444036841392517, 0.00408978434279561, -0.01165087427943945, 0.06854198127985, 0.002550926525145769, -0.0021440512500703335, 0.027254723012447357, -0.011135730892419815, 0.0009808053728193045, 0.029704241082072258, -0.007025805301964283, -0.02672060951590538, -0.007769950665533543, 0.06920840591192245, 0.04843020811676979, -0.006813838612288237, -0.05840611085295677, 0.02736533060669899, -0.03651151806116104, -0.021528664976358414, 0.017741449177265167, -0.032760847359895706, 0.045132678002119064, 0.04339448735117912, 0.06523363292217255, 0.022525951266288757, 0.04073147103190422, 0.00860804133117199, -0.012383759021759033, -0.011532201431691647, -0.04882628843188286, 0.008009609766304493, 0.035464875400066376, 0.007846411317586899, -0.04208455979824066, 0.03798678517341614, 0.0378773994743824, 0.031155632808804512, 0.036728668957948685, -0.016458017751574516, -0.020194459706544876, 6.174517707196291e-33, -0.0010414487915113568, -0.06295628845691681, 0.007182484958320856, 0.0012486337218433619, 0.059070296585559845, -0.0024788195732980967, 0.020499441772699356, 0.006134024355560541, -0.03967437148094177, 0.018478041514754295, -0.02458932064473629, 0.014436855912208557, -0.061672236770391464, 0.04483013227581978, 0.06883268803358078, -0.013785269111394882, 0.010398102924227715, 0.03469152748584747, -0.001289939391426742, -0.03551841899752617, -0.023266615346074104, 0.02481655590236187, 0.008837427012622356, 0.023263150826096535, 0.038074836134910583, 0.008085223846137524, -0.011970589868724346, -0.011845478788018227, -0.044863417744636536, -0.0063806334510445595, 0.002923382446169853, -0.011458311229944229, -0.015574373304843903, -0.008193066343665123, -0.009576044976711273, -0.007220323663204908, 0.000025552553779562004, 0.02553841471672058, 0.027940381318330765, -0.056637465953826904, 0.06451967358589172, -0.0013130336301401258, 0.012631336227059364, -0.000491164973936975, 0.021116388961672783, 0.050123151391744614, -0.022739365696907043, 0.007104764226824045, -0.04614255949854851, 0.023939037695527077, 0.009688753634691238, 0.042610928416252136, 0.018976368010044098, 0.011912832967936993, 0.03409392014145851, -0.013740487396717072, -0.005540225654840469, -0.030861979350447655, -0.024042531847953796, -0.012264606542885303, -0.0142820468172431, -0.027590645477175713, -0.0021482352167367935, 0.044808659702539444, -0.04019222408533096, -0.0697024017572403, -0.016569295898079872, -0.019852686673402786, 0.0031428069341927767, -0.008197574876248837, -0.018856486305594444, -0.07137829065322876, -0.024873431771993637, 0.026844307780265808, 0.016433395445346832, -0.033324528485536575, -0.027263130992650986, -0.006226501893252134, -0.03261091560125351, 0.014475138857960701, 0.0009424833697266877, -0.020694458857178688, 0.03206935152411461, -0.020181283354759216, 0.02493642270565033, 0.004088776186108589, -0.015576401725411415, -0.010783437639474869, 0.030856026336550713, 0.055800169706344604, -0.04893486201763153, -0.0009114573476836085, -0.010524594224989414, -0.02725900337100029, 0.025516876950860023, -1.2488388989595478e-8, 0.004970810376107693, 0.010388702154159546, 0.014906423166394234, 0.030565710738301277, 0.020559748634696007, 0.04823639243841171, -0.04578498750925064, -0.021949300542473793, 0.005023985635489225, 0.013084677048027515, 0.02410525269806385, -0.06829480081796646, 0.01822885312139988, -0.02028665691614151, -0.014937103725969791, 0.015416454523801804, -0.014125373214483261, 0.004872081335633993, 0.0438666045665741, -0.048763956874608994, -0.01129662524908781, 0.026039835065603256, 0.028688352555036545, -0.008055285550653934, 0.009081314317882061, 0.008092890493571758, 0.003973614424467087, -0.06075654551386833, -0.03535326197743416, -0.02135993167757988, -0.0031888505909591913, -0.05050373077392578, -0.04010593518614769, -0.031308747828006744, -0.05599229410290718, -0.013895959593355656, 0.02727331966161728, -0.044329047203063965, -0.002357539488002658, 0.023971011862158775, -0.00691101374104619, 0.02408662624657154, 0.02795434184372425, -0.032945066690444946, -0.033858492970466614, 0.02505282126367092, -0.006953057367354631, 0.007856917567551136, 0.0272432379424572, -0.055127810686826706, 0.03576182574033737, -0.0006107425433583558, -0.02376973070204258, 0.042949359863996506, 0.01337978895753622, 0.007848254404962063, 0.0024792440235614777, -0.04955024644732475, -0.03317596763372421, -0.030654696747660637, 0.030789583921432495, 0.034895773977041245, -0.03847220540046692, -0.020715583115816116 ]
strava-export-all-activities-json
https://markhneedham.com/blog/2020/12/20/strava-export-all-activities-json
false
2020-12-18 00:44:37
git: Ignore local changes on committed (env) file
[ "git" ]
[ "git" ]
Whenever I've writing scripts that rely on credentials defined as environment variables, I like to create a `.env` (or equivalent) file containing those variables. I then seed that file with placeholder values for each variable and make local changes that aren't checked in. I recently created the https://github.com/mneedham/materialize-sandbox/tree/main/strava[mneedham/materialize-sandbox/strava^] repository where I'm using this approach with a https://github.com/mneedham/materialize-sandbox/blob/main/strava/.envsettings[`.envsettings`^] file that has the following contents: .envsettings [source,text] ---- export CLIENT_ID="client_id" export CLIENT_SECRET="client_secret" ---- I have that file checked in so that anybody else can clone the repository and update this file with their own credentials. But I don't want local changes to that file to be tracked, as I might then accidentally commit my credentials. I'd previously achieved this by adding `.envsettings` to the `.gitignore` file, but that technique doesn't seem to work anymore! Luckily there is a way around this, using git's https://stackoverflow.com/questions/13630849/git-difference-between-assume-unchanged-and-skip-worktree#[`update-index`^] command, which I learnt about from https://stackoverflow.com/a/13631525/1093511[Borealid's answer on StackOverflow^]. So once I've committed the `.envsettings` file, I can have git ignore any changes by running the following command: [source,bash] ---- git update-index --skip-worktree strava/.envsettings ---- And now git will ignore any local changes made to this file, which is exactly what I want!
In this post we'll learn how ignore local changes to a committed (environment) file.
null
[ 0.02183292806148529, -0.004501026589423418, -0.017360571771860123, 0.04693656414747238, 0.09977807849645615, 0.04215448349714279, 0.017020199447870255, 0.02252216264605522, -0.01765581965446472, -0.022565629333257675, -0.016765238717198372, -0.0014970767078921199, -0.06822647899389267, 0.022910717874765396, -0.0476517491042614, 0.04673723876476288, 0.07036639750003815, 0.012954708188772202, 0.028265172615647316, 0.02317924052476883, 0.0012957017170265317, 0.055717650800943375, 0.000009736454558151308, 0.014671595767140388, 0.0031087244860827923, 0.02934211678802967, 0.006476094480603933, -0.0037540278863161802, -0.04583266004920006, 0.007723183836787939, 0.03146323189139366, -0.0020213972311466932, 0.012605068273842335, -0.02695070393383503, 0.027494782581925392, -0.027441350743174553, -0.032857343554496765, 0.00913436058908701, 0.007570268120616674, 0.006057111080735922, -0.04499419033527374, 0.022165818139910698, -0.012274020351469517, -0.016616085544228554, -0.029904423281550407, 0.015048368833959103, -0.04793214797973633, 0.04422146454453468, -0.017772816121578217, 0.0068484158255159855, -0.05745489150285721, 0.03188694268465042, -0.039885472506284714, -0.045239660888910294, 0.021072395145893097, 0.03706648573279381, 0.043781545013189316, -0.07804451137781143, 0.019672000780701637, -0.01663348451256752, -0.027410181239247322, -0.001250087283551693, -0.002065761014819145, 0.01904229447245598, 0.025910738855600357, -0.036971379071474075, 0.007930561900138855, 0.03999047353863716, -0.03420054912567139, -0.013671303167939186, 0.014381052926182747, 0.0017895177006721497, -0.0056181978434324265, -0.02270573563873768, -1.0684229501123355e-8, -0.047522254288196564, 0.0006677662604488432, 0.04606291279196739, -0.0023173303343355656, 0.05017664283514023, -0.0018254508031532168, -0.004551990423351526, 0.007386242970824242, 0.030417785048484802, 0.002302392851561308, -0.04965848848223686, -0.03372893109917641, -0.005638364236801863, -0.0649643987417221, 0.031119808554649353, 0.009465226903557777, -0.048982083797454834, -0.004511162173002958, -0.011425187811255455, 0.027830803766846657, 0.007859035395085812, 0.0005486335721798241, 0.012237994000315666, 0.029207490384578705, 0.004745807498693466, -0.058825522661209106, 0.035428665578365326, -0.0339629165828228, -0.007238319609314203, -0.0664358139038086, 0.0006341649568639696, -0.03653797507286072, -0.012842413038015366, -0.01467724796384573, -0.015176906250417233, -0.0008198249852284789, 0.033657606691122055, -0.017474640160799026, -0.00290784053504467, -0.06676813960075378, 0.07023375481367111, -0.005442111752927303, -0.026829922571778297, -0.01846512407064438, 0.017070123925805092, 0.07911943644285202, 0.03331911191344261, 0.00598223926499486, 0.057030100375413895, 0.0040549286641180515, 0.033988308161497116, -0.010945425368845463, 0.03653092682361603, -0.0028237714432179928, -0.0867496132850647, -0.029511263594031334, 0.05941738933324814, -0.017209623008966446, -0.008369299583137035, -0.004585757851600647, -0.035225532948970795, -0.0031799885910004377, 0.0033152098767459393, 0.06609385460615158, 0.008871124126017094, -0.00786686223000288, -0.0097007742151618, 0.0194040946662426, -0.008758732117712498, 0.03563340753316879, 0.030708903446793556, 0.02173144556581974, -0.05108027532696724, -0.06924346089363098, 0.02784786932170391, 0.027673501521348953, 0.026057984679937363, 0.08326388150453568, -0.039724405854940414, 0.010506155900657177, 0.09177066385746002, 0.05151645466685295, 0.013634997420012951, -0.013144083321094513, 0.0077740163542330265, 0.06219862774014473, 0.057813860476017, 0.020901532843708992, 0.05373585969209671, 0.007842245511710644, -0.023978907614946365, -0.017048094421625137, 0.021039515733718872, 0.007323381025344133, -0.012302267365157604, -0.048019327223300934, -0.04569542407989502, 0.07510076463222504, -0.05030730739235878, 0.006978115998208523, 0.051891714334487915, 0.05702650547027588, 0.04552209749817848, 0.03510359302163124, 0.014024241827428341, -0.07719515264034271, 0.053863219916820526, -0.01616404764354229, 0.032479725778102875, 0.0333104133605957, 0.006862112320959568, 0.061432402580976486, 0.00213029095903039, 0.024311523884534836, 0.02378653921186924, -0.07441679388284683, -0.07687537372112274, -0.00969841331243515, 0.008326738141477108, 0.03946303948760033, 0.013491863384842873, -0.011295671574771404, 0.08716756850481033, 0.02798737771809101, 0.026639753952622414, 0.02074929140508175, -0.03967243805527687, 0.007838056422770023, -0.07809653878211975, -0.0451628640294075, 0.03815612569451332, 0.0424940399825573, -0.011457682587206364, -0.013775327242910862, -0.00041366968071088195, -0.047806840389966965, 0.018410755321383476, 0.03458119556307793, -0.005419721361249685, 0.07320742309093475, 0.03520644083619118, -0.0011805531103163958, -0.006753030698746443, 0.03880777955055237, -0.019185110926628113, 0.01474047638475895, -0.0007795194978825748, -0.015550246462225914, -0.022817477583885193, -0.009143998846411705, 0.11286015063524246, 0.05267952010035515, -0.042316559702157974, -0.045259442180395126, 0.02582773007452488, -0.0070454515516757965, -0.05549939349293709, 0.0010878505418077111, 0.009481930173933506, 0.018687155097723007, 0.010382315143942833, -0.009811686351895332, 0.011380592361092567, 0.0007637221715413034, -0.03429553285241127, 0.0133604621514678, 0.057877764105796814, -0.0173322856426239, 0.06304410845041275, 0.01187293604016304, -0.00942891463637352, -0.006889102980494499, -0.024288054555654526, -0.09119388461112976, 0.016734564676880836, 0.02076028101146221, -0.007159993518143892, 0.042417194694280624, -0.023778336122632027, -0.044356171041727066, -0.021635407581925392, -0.0579514317214489, 0.020086582750082016, 0.026166990399360657, 0.05705336481332779, -0.0486275739967823, 0.050242580473423004, -0.023459099233150482, 0.03553745523095131, -0.026803702116012573, -0.00663830665871501, -0.051714375615119934, -0.019342368468642235, -0.016874026507139206, 0.018173450604081154, -0.0004862107161898166, 0.023335978388786316, 0.01579664833843708, -0.0010123440297320485, 0.03421185538172722, 0.0031446972861886024, 0.03190749138593674, 0.024091936647892, -0.029120787978172302, -0.03971628472208977, 0.008793468587100506, 0.030664850026369095, -0.05893787369132042, -0.023247428238391876, 0.024226000532507896, -0.06320112943649292, 0.026620041579008102, -0.07754053175449371, -0.035920049995183945, -0.028622379526495934, 0.026597125455737114, 0.024090221151709557, -0.007317386567592621, 0.04828813299536705, 0.041149526834487915, 0.03793732076883316, 0.019258130341768265, 0.016598286107182503, 0.022308029234409332, 0.046956442296504974, 0.034298449754714966, 0.004382168874144554, 0.02438542991876602, -0.02829388529062271, -0.02969687432050705, -0.004664201755076647, -0.001406550989486277, -0.04351970553398132, -0.2833998203277588, 0.08114126324653625, 0.022759074345231056, -0.02244681864976883, 0.03789704293012619, -0.012501683086156845, 0.011460297740995884, -0.027617262676358223, -0.03412837162613869, -0.004630432929843664, -0.024804512038826942, -0.04013131558895111, 0.007804709021002054, 0.06831151247024536, -0.008439896628260612, 0.02844163589179516, 0.0029373501893132925, -0.05387992784380913, 0.015575695782899857, 0.007692251354455948, -0.053228363394737244, -0.048214688897132874, 0.014077474363148212, 0.020607952028512955, 0.03457009792327881, 0.048892952501773834, -0.08525818586349487, 0.047814417630434036, -0.06222152337431908, -0.03586795926094055, -0.00451281201094389, -0.005092633422464132, 0.009366960264742374, 0.024451149627566338, -0.02860225737094879, 0.00512935034930706, 0.03192248195409775, 0.0207904651761055, 0.04182329401373863, -0.02556714415550232, -0.028582068160176277, -0.023294415324926376, -0.024808114394545555, 0.00020590022904798388, 0.0719115138053894, -0.021395964547991753, -0.058834098279476166, -0.009526426903903484, -0.04786480590701103, 0.08469971269369125, -0.018918626010417938, -0.036388471722602844, -0.027216654270887375, 0.04005352780222893, -0.026141680777072906, -0.007364057004451752, -0.005422289948910475, 0.014790697954595089, -0.028822993859648705, -0.03724624216556549, 0.007004719227552414, -0.052605077624320984, -0.010661778040230274, -0.041625168174505234, 0.007657161448150873, -0.07092367857694626, -0.07676053792238235, -0.03403875231742859, 0.05725773796439171, 0.00748493243008852, -0.03287370875477791, -0.010172992944717407, -0.034104328602552414, -0.10176008194684982, -0.004430638160556555, -0.07069527357816696, -0.05298590287566185, -0.037886232137680054, -0.0032823486253619194, 0.009744780138134956, -0.053782399743795395, -0.014667428098618984, 0.028474532067775726, 0.00972676184028387, -0.017668232321739197, 0.0030835792422294617, 0.05691693350672722, -0.016486600041389465, -0.03849603980779648, -0.016931133344769478, 0.0494658537209034, -0.02688269503414631, -0.010770323686301708, -0.016653677448630333, 0.004822059068828821, 0.005932219792157412, 0.010222501121461391, -0.01757950708270073, 0.014886956661939621, 0.02586115151643753, 0.0499085858464241, -0.0460037961602211, -0.015126729384064674, -0.0475318618118763, -0.00785822980105877, -0.0023347570095211267, -0.06136125698685646, 0.03410383686423302, 0.02625347301363945, 0.038120683282613754, -0.0215421374887228, -0.009486271068453789, 0.04167116433382034, -0.06985925883054733, -0.027008885517716408, 0.031201427802443504, 0.022274402901530266, 0.013481775298714638, 0.0331345871090889, -0.0016070407582446933, -0.04129800572991371, 0.0424647256731987, 0.023172831162810326, -0.03590776026248932, -0.018555376678705215, -0.0279788039624691, -0.013724559918045998, 0.021902134642004967, 0.02193070389330387, 0.003363165771588683, -0.02619745396077633, 0.026397570967674255, 0.035452693700790405, -0.036191944032907486, 0.03533075004816055, -0.012910418212413788, -0.036581166088581085, -0.023080341517925262, -0.0019466787343844771, -0.00524592911824584, -0.03218584135174751, 0.013974028639495373, 0.007925024256110191, 0.005450062919408083, 0.04299084469676018, -0.02244018390774727, 0.058462955057621, -0.015366954728960991, 0.004865515511482954, -0.026783635839819908, 0.013774405233561993, -0.07373262941837311, 0.013144155964255333, -0.04468407481908798, -0.04231853038072586, -0.022764692083001137, -0.0031398488208651543, -0.04836416617035866, -0.00936440471559763, -0.030754951760172844, 0.02585308440029621, -0.03986659273505211, -0.01953415386378765, -0.009580850601196289, -0.01281760260462761, 0.046825800091028214, 0.022038765251636505, 0.015416593290865421, -0.02519223280251026, 0.0027625549118965864, 0.010500478558242321, 0.02012985572218895, -0.02919507399201393, -0.03694502264261246, -0.026385268196463585, 0.003221447579562664, 0.02780749835073948, 0.022104203701019287, 0.0112743666395545, -0.007043854799121618, -0.0006568434182554483, -0.028532065451145172, 0.01699858158826828, 0.003835652954876423, 0.023488132283091545, 0.01364163774996996, -0.022751275449991226, -0.015181835740804672, -0.016263050958514214, 0.0013211561599746346, -0.02393520064651966, -0.0184011273086071, -0.024860303848981857, -0.0028963254299014807, -0.010616607964038849, -0.05150103569030762, 0.01584540866315365, 0.019484616816043854, 0.021370716392993927, 0.033283405005931854, -0.005739300511777401, -0.0033920069690793753, -0.034715086221694946, 0.0204803254455328, 0.061012186110019684, -0.04186950996518135, -0.013994822278618813, -0.0050724162720143795, 0.009006318636238575, -0.013969963416457176, 0.02003442868590355, -0.04620392248034477, -0.02562814950942993, -0.03731491416692734, 0.0030538381543010473, -0.039702411741018295, -0.030660239979624748, -0.004262714646756649, -0.028981681913137436, -0.020218579098582268, 0.002678647404536605, 0.010532614775002003, 0.03231174498796463, -0.019610946998000145, -0.037742771208286285, -0.002077586716040969, -0.02928699366748333, 0.014353016391396523, 0.027425721287727356, -0.0005414376500993967, 0.02410994842648506, -0.033396217972040176, 0.06608731299638748, -0.010875827632844448, -0.011104553006589413, -0.012672520242631435, -0.05113064497709274, 0.009363818913698196, -0.01685405895113945, 0.019239546731114388, 0.0019548325799405575, 0.023557918146252632, -0.0626400038599968, -0.008968797512352467, -0.035357244312763214, -0.008879833854734898, -0.048540204763412476, -0.008529292419552803, 0.03436708450317383, 0.061610862612724304, 0.04238491877913475, 0.03588733449578285, -0.006171764340251684, -0.018965445458889008, 0.06251957267522812, -0.07814645022153854, -0.025461645796895027, -0.020078545436263084, -0.01998095214366913, 0.005098025780171156, 0.04727697744965553, 0.01994330808520317, -0.05005974322557449, 0.035598840564489365, 0.036868881434202194, -0.0029447043780237436, 0.040676750242710114, -0.01687762886285782, 0.006510626990348101, -0.051618512719869614, -0.007325750309973955, -0.08381984382867813, 0.013075512833893299, -0.009397635236382484, -0.03085765801370144, -0.019833536818623543, 0.006707523018121719, -0.052950419485569, 0.03298623859882355, -0.047105345875024796, -0.04506824165582657, 0.0583585686981678, -0.020291252061724663, -0.0007016155868768692, -0.009092058055102825, -0.06464039534330368, 0.04856974259018898, 0.058232489973306656, -0.05475853011012077, -0.020365161821246147, -0.04577111452817917, 0.04725746065378189, 0.0032143564894795418, 0.06310778856277466, -0.016146263107657433, -0.027959000319242477, 0.0707593485713005, 0.03560733422636986, 0.034370068460702896, 0.012563337571918964, 0.0006084061460569501, 0.04309486225247383, 0.043993473052978516, 0.01483171060681343, -0.012896014377474785, 0.03147505223751068, -0.013735764659941196, -0.037711866199970245, 0.012478694319725037, 0.0222149845212698, -0.024346068501472473, -0.04255584999918938, 0.04487605392932892, 0.00104949448723346, -0.026928236708045006, -0.04200185090303421, 0.04205574840307236, -0.060776662081480026, -0.00736631965264678, -0.024084417149424553, -0.008778187446296215, -0.06443262845277786, 0.037252068519592285, -0.009782209992408752, 0.017705457285046577, 0.06664008647203445, 0.00325557473115623, 0.0019166171550750732, 0.004869621247053146, 0.03858194872736931, 0.09017489105463028, 0.02637390047311783, 0.003605710109695792, 0.048102978616952896, 0.022844256833195686, -0.034035589545965195, 0.025525758042931557, -0.021954376250505447, -0.006451298948377371, -0.044848162680864334, 0.004918544087558985, 0.07362553477287292, -0.016109013929963112, 0.06703481078147888, -0.030211789533495903, 0.006188864819705486, -0.0018903163727372885, 0.006835740525275469, 0.005426040850579739, 0.04439627379179001, 0.030840091407299042, 0.014821588061749935, -0.03366660699248314, -0.023868421092629433, 0.009165922179818153, -0.04218987002968788, -0.010333618149161339, 0.03287394717335701, -0.020557280629873276, 0.028000937774777412, 0.03935219720005989, 0.023659907281398773, 0.039579134434461594, -0.028614895418286324, 0.006229494232684374, -0.005727801006287336, 0.0528411939740181, 0.015133725479245186, 0.031068991869688034, -0.009160250425338745, -0.0029729255475103855, 0.024246441200375557, -0.055754903703927994, 0.0075721899047493935, 0.02849043346941471, -0.025952134281396866, 0.02859284169971943, -0.004956804681569338, 0.04467557743191719, 0.0275080855935812, 0.0038896151818335056, -0.004425541963428259, -0.027491983026266098, -0.05270203575491905, -0.07442676275968552, -0.033191096037626266, -0.02241244539618492, -0.020868126302957535, 0.018141301348805428, -0.03237197548151016, -0.03660627454519272, 0.0026763721834868193, -0.015996940433979034, 0.0714314803481102, -0.052427589893341064, -0.001633531879633665, -0.009076190181076527, 0.024439537897706032, -0.010189935564994812, -0.0010760752484202385, 0.049745138734579086, -0.01236704457551241, -0.034305572509765625, 0.001916444511152804, 0.00520343380048871, 0.05248217284679413, -0.016207706183195114, 0.0009764870046637952, -0.04260009527206421, 0.06435208022594452, 0.050984740257263184, 0.0010676183737814426, -0.07300861924886703, 0.008098384365439415, 0.030023694038391113, -0.04322230815887451, 0.08930658549070358, -0.01056252047419548, 0.006387399509549141, -0.02413589507341385, -0.019357185810804367, -0.007084228098392487, -0.006645206827670336, 0.059947557747364044, 0.009811978787183762, 0.08196799457073212, 0.03539611026644707, -0.006191308610141277, -0.01771979033946991, -0.0069559188559651375, -0.009830727241933346, -0.007906963117420673, -0.03555159270763397, -0.0026992999482899904, -0.057160645723342896, -0.057112954556941986, -0.025627898052334785, 0.023186957463622093, -0.04199155792593956, -0.03496239706873894, -0.005979093722999096, 0.017374437302350998, -0.03801850602030754, 0.012214988470077515, -0.033859334886074066, 0.016117051243782043, -0.028193917125463486, -0.0011358493939042091, -0.027228593826293945, 0.031556565314531326, 0.012564600445330143, 0.0272812582552433, 0.07113298773765564, -0.03891940787434578, -0.008012445643544197, -0.011950725689530373, 0.0265094842761755, 0.0519714280962944, 0.0005955951637588441, 0.035180315375328064 ]
[ -0.03865290805697441, -0.014779550954699516, 0.0025255607906728983, -0.004844140727072954, 0.09287802875041962, -0.06345900893211365, -0.012640129774808884, -0.010150345973670483, -0.006924644112586975, -0.012116902507841587, 0.01150042749941349, -0.0374249704182148, 0.0045617204159498215, -0.00753451231867075, 0.047844815999269485, -0.036271631717681885, -0.051733966916799545, -0.0002884467248804867, -0.017024271190166473, 0.022621169686317444, -0.02592376060783863, -0.004056438338011503, 0.003979138098657131, -0.04209199175238609, -0.002753706881776452, -0.006562681403011084, -0.016012119129300117, -0.024024877697229385, -0.03884154185652733, -0.18825571238994598, 0.005259509198367596, -0.007502133026719093, -0.06409883499145508, 0.049236852675676346, 0.021436579525470734, 0.06347957253456116, 0.021338237449526787, -0.0001768366782926023, -0.016806643456220627, 0.048599258065223694, 0.03083784319460392, 0.03252250701189041, -0.06592132151126862, -0.0295688696205616, -0.02988470532000065, -0.03690800815820694, 0.025526126846671104, -0.0220464039593935, -0.008452124893665314, 0.021258963271975517, 0.03526683896780014, -0.013671514578163624, -0.020519081503152847, -0.005934832617640495, -0.01954920031130314, -0.006883127614855766, 0.04339909553527832, 0.08413916081190109, -0.006545132491737604, 0.01857590675354004, -0.009365959092974663, 0.02061414159834385, -0.1626376360654831, 0.08097050338983536, 0.04681595414876938, 0.0395938903093338, -0.046524327248334885, -0.037267111241817474, -0.0003296833310741931, 0.034500692039728165, -0.014113456942141056, -0.00713335070759058, -0.09829777479171753, 0.08379954099655151, 0.03179415315389633, -0.03981083258986473, -0.02664865180850029, 0.08147038519382477, 0.059913549572229385, -0.014618429355323315, -0.03252644091844559, 0.025708060711622238, -0.03195670619606972, 0.02225423976778984, -0.034470584243535995, 0.003952177241444588, 0.027982067316770554, 0.06190405413508415, 0.04377344995737076, -0.013798750005662441, 0.0036234494764357805, -0.08097266405820847, 0.08209758996963501, 0.026635412126779556, -0.0329991951584816, 0.0069253090769052505, 0.015130363404750824, -0.001220459584146738, -0.04197792336344719, 0.38573697209358215, -0.03670759126543999, -0.015260379761457443, -0.021125702187418938, 0.01924966461956501, 0.030585600063204765, -0.0007649822509847581, -0.011917291209101677, -0.01882202923297882, 0.0285512562841177, 0.015090931206941605, -0.011322684586048126, 0.0052002533338963985, 0.012176807038486004, -0.07413787394762039, -0.004898685496300459, 0.02183244191110134, -0.011328067630529404, 0.05109348148107529, -0.05805632844567299, -0.00036102652666158974, 0.0020723403431475163, -0.011580213904380798, 0.05682684853672981, 0.010994965210556984, 0.049311697483062744, 0.03222116827964783, 0.0407334566116333, 0.04599123075604439, 0.01429104246199131, 0.03850053995847702, 0.014720097184181213, 0.019573591649532318, -0.08784608542919159, -0.004990171175450087, -0.0036439041141420603, 0.04144285246729851, 0.010264319367706776, -0.012049848213791847, -0.037758126854896545, 0.00008613737736595795, -0.01328316144645214, 0.010832170024514198, 0.020293885841965675, -0.03536133095622063, -0.012718729674816132, 0.11253401637077332, -0.007143125403672457, -0.008571588434278965, -0.013132002204656601, -0.11375930160284042, -0.01785074733197689, 0.015157559886574745, -0.034087102860212326, -0.032190557569265366, 0.025410126894712448, 0.03449999541044235, 0.04842006415128708, 0.0018296719063073397, -0.05630946904420853, -0.015869516879320145, 0.004761035088449717, -0.03606583923101425, 0.005285145249217749, 0.04878195375204086, 0.046500369906425476, -0.07441819459199905, -0.042838528752326965, 0.018451310694217682, 0.0541960634291172, -0.043113332241773605, 0.0006891882512718439, 0.005106330383569002, -0.017775261774659157, -0.008990533649921417, 0.04936729371547699, -0.018906917423009872, -0.007325942628085613, 0.03649068996310234, 0.048699066042900085, 0.05646205320954323, -0.05644184723496437, -0.0048826937563717365, -0.020491302013397217, 0.027737999334931374, -0.06764212995767593, -0.06559675931930542, -0.024976836517453194, 0.025737689808011055, -0.037255190312862396, 0.0042536198161542416, -0.008268385194242, -0.013882290571928024, -0.06719071418046951, 0.0005245219217613339, 0.017971009016036987, -0.005803312174975872, 0.006963727064430714, -0.027034364640712738, 0.0019905278459191322, -0.010771931149065495, 0.023333298042416573, 0.060742639005184174, -0.012425506487488747, 0.03109285794198513, -0.10429501533508301, 0.010437879711389542, 0.0336565263569355, -0.07157137244939804, 0.028842533007264137, 0.006728125270456076, -0.0559750571846962, 0.038129307329654694, -0.03793160617351532, 0.0056687407195568085, -0.0126399090513587, -0.015129709616303444, -0.046968817710876465, 0.0010564614785835147, 0.0595603846013546, -0.0056347716599702835, -0.028949571773409843, -0.021168991923332214, -0.002412598580121994, -0.3535363972187042, -0.043594080954790115, -0.03847640007734299, -0.0008109595510177314, 0.07403881102800369, -0.028734682127833366, 0.013197816908359528, 0.006041402462869883, -0.019799211993813515, -0.04984055459499359, 0.1072264015674591, -0.0022998119238764048, 0.011406034231185913, -0.02084525115787983, 0.03390258550643921, 0.009065057151019573, -0.02571452595293522, -0.03970586508512497, 0.012814288027584553, 0.00754372077062726, 0.0006267349817790091, -0.035309914499521255, -0.02756687067449093, -0.023806391283869743, 0.013693557120859623, -0.003577924333512783, 0.09098831564188004, -0.02691858448088169, 0.048123590648174286, -0.049791693687438965, 0.029114006087183952, 0.04510068893432617, 0.03907196223735809, -0.15596117079257965, 0.008884245529770851, -0.007868430577218533, -0.027224497869610786, 0.09595360606908798, 0.03263688459992409, -0.0009613623260520399, 0.004703818820416927, 0.03960133716464043, -0.03684758394956589, -0.050348564982414246, 0.00249937130138278, -0.03337818756699562, -0.03661039471626282, 0.023507695645093918, 0.009105820208787918, 0.012898528948426247, -0.02072271890938282, 0.032231684774160385, 0.01290821935981512, 0.025169556960463524, 0.02757933735847473, -0.04876311868429184, -0.042577460408210754, 0.0036365361884236336, 0.06487291306257248, -0.002532305894419551, 0.002370883245021105, 0.026583150029182434, 0.04901839420199394, -0.04839327558875084, 0.027573762461543083, -0.0017912616021931171, -0.0034445447381585836, -0.028599688783288002, 0.09027425199747086, -0.027200972661376, 0.0031048834789544344, 0.09631059318780899, -0.006150105036795139, 0.003979433327913284, 0.014970690943300724, 0.03086753748357296, -0.024013573303818703, 0.023333022370934486, -0.03751303628087044, -0.04415789619088173, 0.008119075559079647, 0.020698904991149902, 0.05529585853219032, -0.03534487262368202, 0.009151495061814785, 0.09206779301166534, -0.018823394551873207, 0.006687791086733341, 0.04353082552552223, 0.03755553066730499, -0.020880458876490593, -0.04522237554192543, -0.03583529219031334, -0.04391596466302872, 0.07137325406074524, 0.025876278057694435, -0.27142027020454407, 0.03061932884156704, 0.02953268773853779, -0.0025179553776979446, -0.008749023079872131, -0.025797981768846512, 0.010262008756399155, -0.0667073056101799, -0.01187069807201624, 0.0009266829001717269, 0.028566874563694, 0.028171835467219353, -0.0015307619469240308, 0.019143100827932358, 0.005479336716234684, 0.029188372194767, 0.0736643522977829, 0.059755146503448486, 0.036973096430301666, -0.02044636383652687, 0.004599524196237326, -0.009734953753650188, 0.1844116747379303, 0.044385701417922974, -0.0003450570220593363, 0.0005549754132516682, -0.006640758365392685, 0.027595294639468193, 0.1022615060210228, 0.014400729909539223, 0.009190088137984276, 0.0031120001804083586, 0.049727022647857666, -0.007722605485469103, 0.020058369264006615, -0.08463101089000702, 0.03127678483724594, 0.010014309547841549, 0.009188585914671421, -0.047834545373916626, -0.036319661885499954, 0.02801191247999668, -0.01687929406762123, 0.002188711194321513, 0.05400010198354721, -0.07246039062738419, 0.02496425434947014, -0.019685620442032814, -0.02103036269545555, -0.026753420010209084, -0.04021681472659111, 0.005624765995889902, -0.006198069546371698, -0.015081170946359634, 0.050770219415426254, 0.05096036195755005, 0.020719867199659348, -0.057460103183984756, -0.014731713570654392, 0.04199349880218506, 0.007552390918135643, -0.06000443547964096, 0.08455927670001984, -0.0059896064922213554, -0.01224583387374878 ]
[ 0.02480418048799038, 0.024827219545841217, -0.027835631743073463, 0.04212438687682152, 0.00325920432806015, 0.00042719722841866314, -0.004063649568706751, -0.003883798373863101, -0.01755467802286148, 0.019667942076921463, -0.008664284832775593, -0.004965706262737513, 0.06446168571710587, -0.00698769511654973, 0.018226632848381996, -0.01182626560330391, 0.019805574789643288, 0.026469314470887184, 0.05774923413991928, 0.015043949708342552, -0.026673855260014534, 0.042180225253105164, 0.019880658015608788, 0.0045154765248298645, 0.021925969049334526, 0.004764838609844446, -0.04131123051047325, -0.011769378557801247, -0.008573235012590885, -0.13093341886997223, -0.01437779888510704, 0.006742843892425299, -0.0022259980905801058, -0.007950281724333763, 0.0036026586312800646, 0.05422912538051605, -0.013709504157304764, 0.015625860542058945, -0.0326295904815197, 0.01383653562515974, 0.023111458867788315, 0.008314685896039009, -0.004672781564295292, -0.029415372759103775, -0.00167369085829705, -0.026966549456119537, 0.016714654862880707, -0.00992236565798521, -0.021352767944335938, -0.016019344329833984, -0.009891211055219173, -0.037630967795848846, -0.014140577055513859, -0.011910452507436275, 0.030088353902101517, -0.027901584282517433, -0.002326436573639512, 0.022001301869750023, 0.030934203416109085, -0.025173092260956764, 0.03685199096798897, 0.05382393300533295, -0.034534752368927, -0.05047174170613289, 0.004124910570681095, -0.00922456569969654, 0.024826064705848694, 0.005934625398367643, -0.020030995830893517, -0.01043460238724947, 0.0004751367087010294, 0.04882844537496567, -0.05109422653913498, -0.026320572942495346, -0.0281020887196064, 0.023786498233675957, 0.020718077197670937, 0.019253097474575043, 0.005750694777816534, 0.026046358048915863, -0.037540607154369354, 0.012223362922668457, 0.008998609147965908, -0.010591494850814342, -0.01379622332751751, 0.034184399992227554, 0.010630125179886818, 0.037747591733932495, 0.07410342246294022, 0.01920686475932598, 0.005441191140562296, -0.00494081387296319, -0.028339384123682976, 0.001367916353046894, -0.051779601722955704, -0.06118116155266762, -0.025126544758677483, -0.00280606746673584, -0.013841481879353523, 0.8225082755088806, -0.010868306271731853, 0.00804596021771431, 0.03065473958849907, 0.024656305089592934, 0.013285690918564796, -0.00043924927012994885, 0.039008837193250656, 0.004620644263923168, -0.007689541671425104, 0.005714566446840763, 0.0096525764092803, -0.0014923368580639362, 0.007670106831938028, 0.007329343352466822, 0.04888897389173508, 0.05991270765662193, 0.06181444972753525, -0.009349575266242027, -0.030239960178732872, 0.017527099698781967, 0.040098294615745544, -0.019299397245049477, 0.025106118991971016, -0.009675716049969196, -0.005300246644765139, -0.18926012516021729, -0.008919880725443363, -7.791840711558336e-33, 0.023365221917629242, -0.033226847648620605, 0.03337172418832779, 0.029066868126392365, 0.047956954687833786, 0.013391903601586819, -0.0017260194290429354, -0.03741467371582985, -0.009082132019102573, -0.030623484402894974, -0.028739506378769875, -0.011994733475148678, -0.006135415285825729, 0.0382007397711277, 0.009563271887600422, -0.012117245234549046, -0.008317599073052406, 0.028526024892926216, 0.014493976719677448, 0.007437370251864195, -0.01712380163371563, 0.02962804026901722, -0.03097313456237316, 0.031214741989970207, 0.02250845544040203, -0.027358541265130043, 0.043649546802043915, -0.018736867234110832, 0.022100983187556267, -0.05310904607176781, 0.0063541303388774395, -0.018380869179964066, 0.02658664435148239, -0.026051023975014687, -0.007735888008028269, -0.045541729778051376, -0.05022703483700752, 0.007282788399606943, -0.04306592792272568, -0.050516948103904724, 0.02547747641801834, -0.026928067207336426, -0.008609270676970482, 0.026060132309794426, -0.04498089849948883, -0.009127289988100529, 0.02805832214653492, 0.026675060391426086, 0.033368855714797974, -0.002848297357559204, 0.015084488317370415, 0.06848523020744324, -0.039221834391355515, -0.03654034808278084, -0.014661608263850212, 0.018483540043234825, 0.00818719808012247, 0.021208710968494415, -0.010624748654663563, 0.009694165550172329, 0.005038267932832241, -0.030892105773091316, 0.001895840629003942, 0.010622992180287838, -0.010956537909805775, -0.019356895238161087, -0.012049240991473198, 0.018801242113113403, 0.014513412490487099, 0.003754154546186328, -0.0771811306476593, 0.006759221665561199, -0.013598747551441193, -0.026571206748485565, 0.012018551118671894, -0.027457553893327713, 0.03438006713986397, 0.014874834567308426, 0.03925208002328873, 0.007200339343398809, -0.005828212480992079, -0.004414558410644531, -0.05672162398695946, -0.00010995667253155261, -0.030946938320994377, 0.02628069557249546, 0.03198801726102829, 0.02554829977452755, -0.008531044237315655, 0.01427748054265976, 0.062484875321388245, 0.03169884532690048, 0.011126494035124779, -0.05392763763666153, -0.04367910325527191, 7.640394427502208e-33, -0.019737813621759415, -0.06320793181657791, 0.008809994906187057, 0.00705066230148077, 0.01265410240739584, 0.013731325045228004, 0.010615864768624306, -0.012311356142163277, -0.03334886208176613, 0.009012490510940552, 0.004483188036829233, 0.016647562384605408, -0.05485868081450462, 0.04095027223229408, 0.04524447023868561, -0.013001357205212116, 0.005689962301403284, 0.013241215609014034, 0.02476906031370163, -0.014374598860740662, 0.012342034839093685, 0.010777043178677559, 0.015870198607444763, 0.035942208021879196, 0.008946958929300308, 0.03151699900627136, -0.029787294566631317, 0.0007472522556781769, -0.018316205590963364, -0.029252344742417336, 0.013525336049497128, -0.01924048364162445, -0.02326180785894394, -0.005284551996737719, -0.0489242859184742, 0.023409176617860794, -0.01803760789334774, 0.0011955270310863853, -0.01076740026473999, -0.012959735468029976, 0.009101545438170433, 0.0034101062919944525, -0.02570301480591297, 0.018488172441720963, -0.027000857517123222, 0.011519655585289001, 0.00797367375344038, 0.008998828940093517, -0.002122071571648121, 0.005168526899069548, 0.0007443903014063835, 0.034534502774477005, 0.03675159066915512, -0.008155688643455505, 0.02420750819146633, -0.016620393842458725, -0.053909532725811005, 0.004946683533489704, 0.00793524831533432, 0.01353288721293211, -0.004551971796900034, 0.014165151864290237, -0.001655951258726418, 0.012334228493273258, -0.057029299437999725, -0.026703672483563423, 0.0009054003749042749, -0.007376471534371376, -0.005129971541464329, -0.03601592779159546, 0.0006493940018117428, -0.022334076464176178, -0.029600970447063446, 0.022689461708068848, 0.031193310394883156, -0.0599701963365078, -0.021750595420598984, -0.020714176818728447, -0.009000957943499088, 0.01872081682085991, 0.016863690689206123, 0.008144962601363659, -0.026346752420067787, -0.020145991817116737, 0.02492242120206356, 0.00035510974703356624, -0.03177455812692642, 0.034065209329128265, 0.061972152441740036, 0.029160376638174057, -0.02931182086467743, -0.03523796424269676, -0.03337887302041054, 0.0024729184806346893, -0.018462100997567177, -1.287970263774696e-8, -0.015432599931955338, 0.00781314168125391, -0.02749062515795231, 0.024356350302696228, -0.012598068453371525, -0.003442079294472933, -0.010880663990974426, 0.007688661105930805, -0.008544126525521278, 0.009538516402244568, 0.03668325021862984, -0.027574675157666206, 0.006520385388284922, 0.016373394057154655, 0.014819870702922344, -0.007201203610748053, 0.01833096146583557, 0.03822755068540573, 0.027905073016881943, -0.04706772044301033, 0.01629520207643509, 0.035869523882865906, -0.01970561221241951, 0.013398727402091026, 0.0022439819294959307, 0.014210173860192299, 0.01941942237317562, -0.049309536814689636, -0.00598107511177659, 0.013607081957161427, 0.03208974003791809, -0.03489961102604866, -0.05455954372882843, 0.0026105123106390238, -0.07294991612434387, -0.016590874642133713, 0.02159019000828266, 0.011640826240181923, 0.0283033587038517, 0.03448186069726944, -0.021164199337363243, -0.017129868268966675, 0.015901878476142883, -0.022645778954029083, -0.0710374191403389, 0.002169723156839609, -0.01458677276968956, 0.041476957499980927, 0.009611545130610466, -0.03029519133269787, 0.03853389248251915, -0.013720884919166565, -0.01828252524137497, 0.027798250317573547, 0.032171186059713364, 0.005933689884841442, 0.028042757883667946, -0.032343942672014236, 0.022716734558343887, 0.003290961030870676, -0.012005658820271492, -0.021722612902522087, -0.0009145329240709543, -0.02447780780494213 ]
git-ignore-local-changes-committed-env-file
https://markhneedham.com/blog/2020/12/18/git-ignore-local-changes-committed-env-file
false
2020-12-29 00:44:37
Materialize: Querying JSON arrays
[ "materialize" ]
[ "materialize" ]
In https://markhneedham.com/blog/2020/12/17/materialize-querying-json-file/[a blog post I wrote a couple of weeks ago^], we learned how to analyse JSON files using the https://materialize.com/[Materialize^] SQL streaming database. In this post we're going to build on that knowledge to analyse a JSON file of tweets that contain arrays of hashtags. It took me a while to figure out to do this, so I wanted to share what I learnt along the way. image::{{<siteurl>}}/uploads/2020/12/materialize-banner-json-arrays.png[] The JSON file that we're going to analyse looks like this and we'll save that file in a `data` directory locally. .https://github.com/mneedham/materialize-sandbox/blob/main/twitter/data/covid_sample.json[covid_sample.json^] [source,json] ---- {"id": "1341755954614861826", "conversation_id": "1341755954614861826", "created_at": "2020-12-23 14:42:02 GMT", "date": "2020-12-23", "time": "14:42:02", "timezone": "+0000", "user_id": 856240505826496513, "username": "suriyasubraman", "name": "Suriya Subramanian", "place": "", "tweet": "Impact of COVID-19 On Internet of Things (IoT) Networks Market 2020 Industry Challenges ... https://t.co/ndGN2xRKzv #iot #data #internetofthings", "language": "en", "mentions": [], "urls": ["http://dlvr.it/RpCyyv"], "photos": [], "replies_count": 0, "retweets_count": 0, "likes_count": 0, "hashtags": ["iot", "data", "internetofthings"], "cashtags": [], "link": "https://twitter.com/SuriyaSubraman/status/1341755954614861826", "retweet": false, "quote_url": "", "video": 0, "thumbnail": "", "near": "London", "geo": "", "source": "", "user_rt_id": "", "user_rt": "", "retweet_id": "", "reply_to": [], "retweet_date": "", "translate": "", "trans_src": "", "trans_dest": ""} {"id": "1341755827158441984", "conversation_id": "1341755827158441984", "created_at": "2020-12-23 14:41:32 GMT", "date": "2020-12-23", "time": "14:41:32", "timezone": "+0000", "user_id": 26450334, "username": "nickkeca", "name": "Nick Keca", "place": "", "tweet": "Non-compliance is the only thing ordinary people have to fight against the agenda hiding behind this #covid cloak. BUT, we are fighting against financial interests that are so powerful that only strength of numbers &amp; people power can prevail", "language": "en", "mentions": [], "urls": [], "photos": [], "replies_count": 0, "retweets_count": 0, "likes_count": 0, "hashtags": ["covid"], "cashtags": [], "link": "https://twitter.com/nickkeca/status/1341755827158441984", "retweet": false, "quote_url": "", "video": 0, "thumbnail": "", "near": "London", "geo": "", "source": "", "user_rt_id": "", "user_rt": "", "retweet_id": "", "reply_to": [], "retweet_date": "", "translate": "", "trans_src": "", "trans_dest": ""} {"id": "1341755981420703744", "conversation_id": "1341755981420703744", "created_at": "2020-12-23 14:42:09 GMT", "date": "2020-12-23", "time": "14:42:09", "timezone": "+0000", "user_id": 147562101, "username": "jasonjamesstone", "name": "Jason Stone 🔶 🇪🇺🇬🇧🏴󠁧󠁢󠁥󠁮󠁧󠁿🇧🇷", "place": "", "tweet": "We can't afford to have a damaging #Brexit and an out of control Coronavirus pandemic at the same time. Sign the petition: Extend the #BrexitTransition Period until the virus is under control https://t.co/yyI3miEJLg", "language": "en", "mentions": [], "urls": ["https://www.londonlibdems.org.uk/extendbrexit?e=13bee6003ca0b15761a0a8e71e926169&utm_source=ldlondon&utm_medium=email&utm_campaign=brexit_extension&n=3"], "photos": [], "replies_count": 0, "retweets_count": 0, "likes_count": 0, "hashtags": ["brexit", "brexittransition"], "cashtags": [], "link": "https://twitter.com/jasonjamesstone/status/1341755981420703744", "retweet": false, "quote_url": "", "video": 0, "thumbnail": "", "near": "London", "geo": "", "source": "", "user_rt_id": "", "user_rt": "", "retweet_id": "", "reply_to": [], "retweet_date": "", "translate": "", "trans_src": "", "trans_dest": ""} {"id": "1341754919896948736", "conversation_id": "1341754919896948736", "created_at": "2020-12-23 14:37:56 GMT", "date": "2020-12-23", "time": "14:37:56", "timezone": "+0000", "user_id": 14508711, "username": "beecee", "name": "Brigid Coady 🌈", "place": {"type": "Point", "coordinates": [51.49594393, -0.13355317]}, "tweet": "Finish work. Give blood. My Xmas present to the world! #morningcommute #xmas #giveblood #plasma #platelets #covid19 #coronavirus #tier4 #lockdown #London @ Westminster https://t.co/Tq42OaN811", "language": "en", "mentions": [], "urls": ["https://www.instagram.com/p/CJJNIidgG4M/?igshid=1hu20v1xohrce"], "photos": [], "replies_count": 0, "retweets_count": 0, "likes_count": 0, "hashtags": ["morningcommute", "xmas", "giveblood", "plasma", "platelets", "covid19", "coronavirus", "tier4", "lockdown", "london"], "cashtags": [], "link": "https://twitter.com/beecee/status/1341754919896948736", "retweet": false, "quote_url": "", "video": 0, "thumbnail": "", "near": "London", "geo": "", "source": "", "user_rt_id": "", "user_rt": "", "retweet_id": "", "reply_to": [], "retweet_date": "", "translate": "", "trans_src": "", "trans_dest": ""} {"id": "1341753938333237253", "conversation_id": "1341753938333237253", "created_at": "2020-12-23 14:34:02 GMT", "date": "2020-12-23", "time": "14:34:02", "timezone": "+0000", "user_id": 820537716798619648, "username": "amprouk", "name": "AMPro", "place": "", "tweet": "Motability provides #coronavirus update for customers https://t.co/dRX6xXEtOM", "language": "en", "mentions": [], "urls": ["http://dlvr.it/RpCxYZ"], "photos": [], "replies_count": 0, "retweets_count": 0, "likes_count": 0, "hashtags": ["coronavirus"], "cashtags": [], "link": "https://twitter.com/amprouk/status/1341753938333237253", "retweet": false, "quote_url": "", "video": 0, "thumbnail": "", "near": "London", "geo": "", "source": "", "user_rt_id": "", "user_rt": "", "retweet_id": "", "reply_to": [], "retweet_date": "", "translate": "", "trans_src": "", "trans_dest": ""} ---- == Connecting to Materialize We're going to query that data using Materialize, which we'll set up using the following Docker Compose configuration: .docker-compose.yml [source,yaml] ---- version: '3' services: materialize: image: materialize/materialized:v0.5.3 container_name: "materialize-sandbox-docker-compose" volumes: - ./data:/data ports: - "6875:6875" ---- The `data` directory containing the https://github.com/mneedham/materialize-sandbox/blob/main/twitter/data/covid_sample.json[`covid_sample.json`^] file is in the https://github.com/mneedham/materialize-sandbox/tree/main/twitter[mneedham/materialize-sandbox/twitter^] GitHub repository. The repository also contains setup instructions. Once we've cloned that repository, we can launch Materialize by running the following command: [source, bash] ---- docker-compose up ---- We're now ready to connect to Materialize, which we can do using the https://www.postgresql.org/docs/9.3/app-psql.html[`psql` CLI tool^]: [source, bash] ---- psql -h localhost -p 6875 materialize ---- .Results [source,text] ---- psql (12.5 (Ubuntu 12.5-0ubuntu0.20.04.1), server 9.5.0) Type "help" for help. materialize=> ---- == Creating a materialized view Now we're to create a source around the file and then a materialized view on top of that source. .CREATE SOURCE [source,sql] ---- CREATE SOURCE covid_sample_source FROM FILE '/data/covid_sample.json' WITH(tail=true) FORMAT TEXT; ---- .CREATE MATERIALIZED VIEW [source,sql] ---- CREATE MATERIALIZED VIEW covid_sample AS SELECT (val->>'id')::float::bigint AS id, (val->>'username')::text AS username, (val->>'hashtags')::text AS hashtags, (val->>'tweet')::text AS tweet FROM (SELECT text::jsonb AS val FROM covid_sample_source); ---- We can describe the view by running the following query: [source,sql] ---- SHOW COLUMNS FROM covid_sample; ---- .Results [opts="header"] |=== |name | nullable | type |hashtags | t | text |id | t | int8 |tweet | t | text |username | t | text |=== The interesting thing here is that the `hashtags` column is storing data in the `text` type. == Querying a materialized view Now it's time to write some queries. Let's start with a query that returns all columns and rows in the `covid_sample` view: [source,sql] ---- SElECT * FROM covid_sample; ---- .Results [opts="header", cols="1,1,1,2"] |=== |id | username | hashtags | tweet |1341753938333237248 | amprouk | ["coronavirus"] | Motability provides #coronavirus update for customers https://t.co/dRX6xXEtOM |1341755954614861824 | suriyasubraman | ["iot","data","internetofthings"] | Impact of COVID-19 On Internet of Things (IoT) Networks Market 2020 Industry Challenges ... https://t.co/ndGN2xRKzv #iot #data #internetofthings |1341755981420703744 | jasonjamesstone | ["brexit","brexittransition"] | We can't afford to have a damaging #Brexit and an out of control Coronavirus pandemic at the same time. Sign the petition: Extend the #BrexitTransition Period until the virus is under control https://t.co/yyI3miEJLg |1341755827158441984 | nickkeca | ["covid"] | Non-compliance is the only thing ordinary people have to fight against the agenda hiding behind this #covid cloak. BUT, we are fighting against financial interests that are so powerful that only strength of numbers &amp; people power can prevail |1341754919896948736 | beecee | ["morningcommute","xmas","giveblood","plasma","platelets","covid19","coronavirus","tier4","lockdown","london"] | Finish work. Give blood. My Xmas present to the world! #morningcommute #xmas #giveblood #plasma #platelets #covid19 #coronavirus #tier4 #lockdown #London @ Westminster https://t.co/Tq42OaN811 |=== I wanted to write a query that shows how many tweets each hashtag appears in, so we'll need to 'explode' the values in `hashtags` column into rows, which we can do using the https://materialize.com/docs/sql/types/jsonb/#jsonb_array_elements[`jsonb_array_elements`] function. My first attempt was the following: [source,sql] ---- SELECT jsonb_array_elements(hashtags) AS ht FROM covid_sample LIMIT 5; ---- .Results [source,text] ---- ERROR: table function (jsonb_array_elements) in scalar position not yet supported, see https://github.com/MaterializeInc/materialize/issues/1546 for more details ---- This error indicates that we need to use the `json_array_elements` function in the `FROM` part of the query. Let's try that: [source,sql] ---- SELECT ht FROM covid_sample, jsonb_array_elements(hashtags) AS ht LIMIT 5; ---- .Results [source,text] ---- ERROR: Cannot call function jsonb_array_elements(string): arguments cannot be implicitly cast to any implementation's parameters; try providing explicit casts ---- Hmmm, still no good. The problem this time is that the `jsonb_array_elements` function excepts to receive values of type `jsonb` and the `hashtags` column returns values of type `text`. We can fix that by casting to the correct type, like this: [source,sql] ---- SELECT ht FROM covid_sample, jsonb_array_elements(hashtags :: jsonb) AS ht LIMIT 5; ---- .Results [opts="header" ] |=== |ht |"iot" |"data" |"xmas" |"covid" |"tier4" |=== Success! Now we can write a query that shows how many times each hashtag has been used: [source,sql] ---- SELECT ht, count(*) AS count FROM covid_sample, jsonb_array_elements(hashtags :: jsonb) AS ht GROUP BY ht ORDER BY count DESC LIMIT 5; ---- .Results [opts="header" ] |=== |ht | count | "coronavirus" | 2 |"iot" | 1 |"data" | 1 |"xmas" | 1 |"covid" | 1 |=== We could even go further than this and create a view that returns hashtags and their counts: [source,sql] ---- CREATE MATERIALIZED VIEW covid_hashtags AS SELECT ht, count(*) AS count FROM covid_sample, jsonb_array_elements(hashtags :: jsonb) AS ht GROUP BY ht ORDER BY count DESC; ---- Which we can query like this: [source,sql] ---- SELECT * FROM covid_hashtags LIMIT 5; ---- .Results [opts="header" ] |=== |ht | count |"iot" | 1 |"data" | 1 |"xmas" | 1 |"covid" | 1 |"tier4" | 1 |=== Interestingly the `ORDER BY` doesn't seem to be reflected in the results. I learnt from https://twitter.com/frankmcsherry[Frank McSherry^] that it's actually a feature of SQL that the `ORDER BY` clause isn't inherited from the view. Now let's add a couple of extra tweets to the end of `covid_sample.json`: [source,json] ---- {"id": "1341759529520926722", "conversation_id": "1341759529520926722", "created_at": "2020-12-23 14:56:15 GMT", "date": "2020-12-23", "time": "14:56:15", "timezone": "+0000", "user_id": 368587842, "username": "piterk68", "name": "Peter Lewis", "place": "", "tweet": "A quick thread reflecting on two themes of my year : #COVID &amp; #Inequality particularly race inequality, with a few thank yous at the end:", "language": "en", "mentions": [], "urls": [], "photos": [], "replies_count": 1, "retweets_count": 0, "likes_count": 1, "hashtags": ["covid", "inequality"], "cashtags": [], "link": "https://twitter.com/piterk68/status/1341759529520926722", "retweet": false, "quote_url": "", "video": 0, "thumbnail": "", "near": "London", "geo": "", "source": "", "user_rt_id": "", "user_rt": "", "retweet_id": "", "reply_to": [], "retweet_date": "", "translate": "", "trans_src": "", "trans_dest": ""} {"id": "1341759301908631554", "conversation_id": "1341759301908631554", "created_at": "2020-12-23 14:55:20 GMT", "date": "2020-12-23", "time": "14:55:20", "timezone": "+0000", "user_id": 57581622, "username": "lamuscle", "name": "LA Muscle", "place": "", "tweet": "Fitter &amp; Stronger With Minimal Equipment Try This Excellent Pump Workout Full article here: https://t.co/HY3e9wfX0P #lamuscle #bodyweight #coronavirus #covid19 #isolation #training #fitness #health #muscle #exercise #workout #homeworkout #outdoors #healthy #dumbbells #lean #diet https://t.co/91wU7DcZRA", "language": "en", "mentions": [], "urls": ["https://www.lamuscle.com/knowledge/lose-fat/fitter-stronger-pump-workout"], "photos": ["https://pbs.twimg.com/media/Ep7i9fvXYAIb5Ay.jpg"], "replies_count": 0, "retweets_count": 0, "likes_count": 1, "hashtags": ["lamuscle", "bodyweight", "coronavirus", "covid19", "isolation", "training", "fitness", "health", "muscle", "exercise", "workout", "homeworkout", "outdoors", "healthy", "dumbbells", "lean", "diet"], "cashtags": [], "link": "https://twitter.com/LAMuscle/status/1341759301908631554", "retweet": false, "quote_url": "", "video": 1, "thumbnail": "https://pbs.twimg.com/media/Ep7i9fvXYAIb5Ay.jpg", "near": "London", "geo": "", "source": "", "user_rt_id": "", "user_rt": "", "retweet_id": "", "reply_to": [], "retweet_date": "", "translate": "", "trans_src": "", "trans_dest": ""} ---- And if we run the query against `covid_hashtags` again: [source,sql] ---- SELECT * FROM covid_hashtags ORDER BY count DESC LIMIT 5; ---- The hashtags from those tweets will be reflected in the results returned: .Results [opts="header" ] |=== | ht | count | "coronavirus" | 3 |"covid" | 2 |"covid19" | 2 |"iot" | 1 |"data" | 1 |===
In this post we'll learn how to query a JSON file that contains arrays using the Materialize SQL streaming database.
uploads/2020/12/materialize-banner-json-arrays.png
[ 0.040937744081020355, -0.013226449489593506, 0.010196776129305363, 0.04935405030846596, 0.07386308163404465, 0.022400332614779472, 0.032231032848358154, 0.04412834346294403, 0.0030056010000407696, 0.003147784387692809, -0.013879071921110153, -0.017974266782402992, -0.0701344758272171, 0.012169110588729382, -0.025323068723082542, 0.07118359208106995, 0.053532615303993225, 0.015911325812339783, 0.04323196038603783, 0.012041546404361725, 0.02639993280172348, 0.06286336481571198, 0.048569515347480774, 0.008821028284728527, 0.03689836338162422, 0.002894943580031395, 0.0029806431848555803, 0.023917105048894882, -0.054481226950883865, 0.008281480520963669, 0.033780913800001144, 0.006651268340647221, 0.010169502347707748, 0.00400563096627593, 0.02401817962527275, 0.016607210040092468, -0.03599657118320465, 0.03239527344703674, -0.012192846275866032, 0.026104463264346123, -0.06228264048695564, 0.03646153211593628, -0.007413103245198727, 0.011447382159531116, -0.03714519739151001, 0.0030645921360701323, -0.048686910420656204, 0.034441880881786346, -0.012140896171331406, -0.003038727678358555, -0.04961656406521797, 0.04371492937207222, -0.007260716054588556, -0.0037109677214175463, -0.006922862958163023, 0.06557340174913406, 0.01031793188303709, -0.08298773318529129, 0.009075576439499855, -0.02791139855980873, 0.020045951008796692, -0.017571009695529938, 0.0136897973716259, -0.004493291024118662, 0.026484813541173935, -0.04093877226114273, -0.015626326203346252, 0.05556206777691841, -0.04413408413529396, -0.004582421854138374, 0.020109916105866432, 0.04192103073000908, -0.030646653845906258, 0.00800564605742693, 0.016391580924391747, -0.04880382865667343, 0.012968095019459724, 0.07997676730155945, 0.004728345666080713, 0.023178374394774437, -0.03707752376794815, 0.02315770462155342, 0.0022728603798896074, 0.04873494431376457, -0.03102147951722145, -0.04952634498476982, -0.027129901573061943, 0.005531643517315388, -0.06656432896852493, 0.05397258326411247, 0.024088189005851746, -0.02501150220632553, 0.02395281195640564, 0.03327740356326103, -0.0011017152573913336, 0.019802698865532875, 0.017198028042912483, 0.0027470800559967756, -0.027566447854042053, -0.03626812621951103, -0.03724965453147888, -0.010371093638241291, 0.015798384323716164, 0.010267752222716808, -0.062346599996089935, -0.015757346525788307, -0.02642304264008999, 0.005108082666993141, 0.004424771293997765, -0.01676555722951889, -0.016816396266222, 0.018113788217306137, -0.01964077726006508, 0.016852175816893578, -0.0563163086771965, 0.06082357093691826, 0.029657937586307526, -0.04758060351014137, -0.017907895147800446, 0.03584237024188042, 0.0634106695652008, 0.022069167345762253, -0.018146513029932976, 0.07733199745416641, 0.003744241315871477, 0.012038642540574074, -0.0025563850067555904, 0.0395885594189167, -0.028583308681845665, -0.053140148520469666, -0.013888629153370857, 0.05091942101716995, -0.033309999853372574, 0.008755861781537533, -0.007179863750934601, -0.03389999642968178, 0.008340724743902683, 0.009057315066456795, 0.07162733376026154, 0.03489261493086815, -0.021815920248627663, -0.05162103474140167, 0.008585634641349316, -0.015689369291067123, 0.033875517547130585, 0.013698693364858627, -0.02023318037390709, -0.042171794921159744, -0.037292174994945526, 0.00864107720553875, -0.00633364450186491, -0.019003387540578842, 0.04593004658818245, -0.04971160367131233, 0.020260151475667953, 0.08359715342521667, 0.03214399889111519, 0.00935625471174717, -0.004930939991027117, 0.030699919909238815, 0.04542335495352745, 0.05721341446042061, 0.012634560465812683, 0.028562486171722412, -0.01849314011633396, -0.03496519848704338, -0.004181357566267252, 0.061783403158187866, -0.012070255354046822, -0.015803221613168716, -0.02961076982319355, -0.05174538865685463, 0.06203621253371239, -0.02402593195438385, -0.02482430264353752, 0.053541794419288635, 0.06821558624505997, 0.056981589645147324, 0.014634253457188606, 0.010756285861134529, -0.09822829067707062, 0.046144142746925354, 0.0257490873336792, 0.022210506722331047, 0.029481472447514534, -0.0073084598407149315, 0.07045888900756836, 0.02169589139521122, 0.008279750123620033, 0.04718254134058952, -0.06814797222614288, -0.07670361548662186, -0.028190413489937782, 0.0010205948492512107, 0.0488537959754467, -0.02648705430328846, 0.03505164384841919, 0.08306972682476044, 0.01549875270575285, 0.04002142697572708, -0.0024552580434828997, -0.020862428471446037, 0.01954044960439205, -0.050393179059028625, -0.04890146851539612, 0.048898596316576004, 0.03470662981271744, -0.01968170329928398, -0.03202245756983757, 0.01770252361893654, -0.03721950575709343, -0.044338151812553406, 0.030451765283942223, -0.03164217248558998, 0.021368689835071564, 0.00209783180616796, 0.04185284301638603, -0.00393713591620326, 0.032275084406137466, -0.04773116484284401, 0.044047072529792786, -0.016012990847229958, -0.02757047861814499, -0.018944215029478073, -0.010169672779738903, 0.12849654257297516, 0.06410835683345795, -0.0422929972410202, -0.04417114332318306, 0.010486304759979248, 0.013935764320194721, -0.043507616966962814, -0.005573573522269726, -0.021366223692893982, -0.020364267751574516, 0.006852768827229738, -0.05260346829891205, -0.036685824394226074, 0.009387830272316933, -0.04783988371491432, -0.00921177864074707, 0.05908118560910225, -0.009455060586333275, 0.05294664949178696, 0.0009896174306049943, 0.003135262755677104, -0.016038328409194946, -0.0354343056678772, -0.051953114569187164, 0.01896507292985916, -0.016035737469792366, -0.022672658786177635, 0.00563067477196455, -0.015963971614837646, -0.01551886647939682, -0.03642451763153076, -0.0334148034453392, 0.033939458429813385, 0.046770356595516205, 0.06425748765468597, -0.021242128685116768, 0.06048395484685898, -0.03131401911377907, 0.02474098838865757, -0.0280146561563015, -0.03485434129834175, -0.04942214861512184, -0.03488856554031372, 0.005407257005572319, 0.029762985184788704, 0.040793195366859436, 0.004333823919296265, 0.010982205159962177, 0.030798517167568207, 0.009709799662232399, -0.013561775907874107, 0.04546898975968361, -0.002540847286581993, -0.017099622637033463, -0.017431262880563736, -0.023143935948610306, 0.07172465324401855, -0.03748760372400284, -0.03510330244898796, -0.013183056376874447, -0.08584894984960556, 0.028503449633717537, -0.037405118346214294, -0.02857971005141735, -0.018957793712615967, 0.014077584259212017, 0.03351835906505585, 0.016473667696118355, -0.02228572592139244, 0.06479781866073608, 0.0026982573326677084, 0.005620158743113279, 0.005370922852307558, -0.0027495846152305603, 0.06122302636504173, -0.029953280463814735, 0.03557758405804634, 0.0495619960129261, 0.006778461392968893, -0.0028926481027156115, -0.06119288131594658, 0.02738511562347412, -0.03048897720873356, -0.2701358497142792, 0.046720124781131744, 0.016240831464529037, -0.03884180262684822, 0.02636340633034706, -0.0017387318657711148, 0.007754769176244736, -0.0466918908059597, -0.0033584218472242355, -0.0069996970705688, -0.0027507110498845577, -0.024793896824121475, -0.020385434851050377, 0.025613775476813316, 0.021540185436606407, 0.003062403528019786, -0.01644163951277733, -0.024725373834371567, 0.0009184770751744509, 0.04674708843231201, -0.013809511438012123, -0.05262286961078644, -0.017204657196998596, 0.054777491837739944, 0.03598685935139656, 0.03662051260471344, -0.069857656955719, 0.015057733282446861, -0.04477119818329811, -0.012080023996531963, 0.007420191541314125, -0.012183465994894505, 0.023323725908994675, 0.003917406778782606, -0.008505730889737606, -0.01860576495528221, 0.05780131369829178, 0.008951070718467236, 0.0015898005804046988, 0.010373958386480808, -0.025931688025593758, -0.015689697116613388, -0.015170236118137836, -0.005617049057036638, 0.09690508246421814, 0.001513344468548894, -0.07520648092031479, -0.01177898421883583, -0.04013264551758766, 0.06340174376964569, -0.008327915333211422, -0.05539397522807121, -0.01707466132938862, 0.018988898023962975, -0.016668833792209625, -0.009898129850625992, -0.002650545910000801, -0.02348289079964161, -0.06297406554222107, -0.06295951455831528, -0.014591516926884651, -0.02838672325015068, -0.014836650341749191, -0.043692588806152344, -0.027187855914235115, -0.0699814185500145, -0.05163641273975372, -0.0033038838300853968, 0.08300737291574478, 0.016455726698040962, -0.03202912211418152, 0.024201983585953712, -0.020271100103855133, -0.11180274933576584, -0.0022030670661479235, 0.0019943348597735167, -0.03702960163354874, 0.013794226571917534, 0.011440228670835495, 0.04263263940811157, -0.050883956253528595, -0.054541729390621185, 0.018202437087893486, -0.0031326792668551207, 0.020553939044475555, -0.02749374695122242, 0.03662946820259094, -0.02062089368700981, -0.012322893366217613, 0.007674281485378742, 0.060903046280145645, -0.03852230682969093, -0.03626946732401848, 0.004712887108325958, 0.005608578212559223, 0.03237985819578171, 0.007624468300491571, 0.0011306466767564416, 0.001059917500242591, 0.05439160391688347, 0.020203987136483192, -0.052842918783426285, 0.014732329174876213, -0.03644054755568504, -0.009753311052918434, 0.013036105781793594, -0.047016728669404984, 0.0208554957062006, 0.02292441762983799, 0.016262328252196312, 0.0062562464736402035, -0.02646278403699398, 0.013961617834866047, -0.035587504506111145, -0.01198851503431797, -0.009320193901658058, 0.005282289814203978, 0.035379230976104736, 0.03432854264974594, -0.04342765361070633, -0.042088162153959274, 0.018663175404071808, 0.010783595032989979, -0.010639742016792297, -0.06094486266374588, -0.040446098893880844, -0.015854742377996445, -0.004014233592897654, 0.008138096891343594, 0.010376082733273506, -0.0020472267642617226, -0.004847101867198944, -0.00470924424007535, -0.031350329518318176, 0.04071647673845291, -0.030962960794568062, -0.03955741971731186, -0.047881532460451126, 0.025345558300614357, -0.003064582357183099, 0.016553103923797607, -0.007019694894552231, 0.0024453375954180956, 0.0225409884005785, 0.035276271402835846, 0.01940552145242691, 0.018023841083049774, 0.002061283215880394, 0.01866992749273777, -0.009000071324408054, 9.37391348543315e-7, -0.04763162136077881, 0.008203642442822456, -0.02579657919704914, -0.01142155472189188, 0.0031870293896645308, 0.05601009726524353, -0.014237542636692524, -0.024071695283055305, -0.045748014003038406, 0.024741478264331818, -0.02862561121582985, -0.029834987595677376, -0.021864837035536766, -0.01170058362185955, 0.03999621048569679, -0.0165493693202734, 0.02019098401069641, 0.005160156637430191, -0.01202365756034851, 0.005984458606690168, -0.008593357168138027, -0.025005899369716644, -0.00028953453875146806, 0.002568491967394948, -0.02433043345808983, -0.005627951584756374, 0.01077701710164547, 0.026193367317318916, 0.03792285546660423, -0.008394449017941952, -0.024024978280067444, 0.004047802649438381, 0.032298777252435684, 0.06995492428541183, 0.05554363504052162, 0.003107431810349226, -0.007804625667631626, -0.029085835441946983, 0.002855528611689806, -0.029823195189237595, -0.006080992054194212, -0.006702614016830921, -0.007679545786231756, -0.016938336193561554, -0.06549326330423355, 0.07255279272794724, -0.0009522165637463331, 0.027155641466379166, 0.038543425500392914, -0.003013912122696638, 0.014129679650068283, -0.03756473585963249, 0.04765212908387184, 0.05880105495452881, -0.07093896716833115, -0.005667774006724358, -0.0009068924700841308, -0.012196940369904041, -0.013054854236543179, 0.002019351813942194, -0.04954450950026512, -0.018747687339782715, -0.039257172495126724, 0.021428165957331657, -0.05612880364060402, -0.03046201542019844, -0.00989127904176712, 0.020467158406972885, -0.01515292376279831, -0.004408339504152536, -0.015835411846637726, 0.006607523187994957, 0.004708239808678627, -0.020018616691231728, 0.040550000965595245, -0.0281179528683424, 0.01979219913482666, -0.0016817477298900485, -0.03787392005324364, 0.005612824112176895, -0.03959568589925766, 0.018935633823275566, 0.058516938239336014, -0.025252604857087135, -0.0039319973438978195, -0.03351631760597229, -0.01971150003373623, 0.011889138258993626, 0.06337691843509674, -0.013542194850742817, -0.04294135421514511, -0.044385142624378204, 0.004054988268762827, -0.04880224168300629, 0.03287245333194733, -0.018942492082715034, 0.0028095082379877567, 0.03784840181469917, 0.03631593659520149, 0.013933814130723476, 0.018334027379751205, -0.0547330379486084, -0.027456577867269516, 0.05657549574971199, -0.06794679164886475, -0.019423021003603935, -0.029104305431246758, -0.038464054465293884, 0.006633142475038767, -0.0008610467775724828, 0.004265633411705494, -0.025890538468956947, 0.05133836716413498, 0.017739353701472282, 0.04057960957288742, 0.05369902402162552, 0.002822150941938162, 0.018790751695632935, -0.038794033229351044, -0.017515605315566063, -0.09148914366960526, -0.009391513653099537, 0.01604236289858818, -0.019872047007083893, 0.0036842951085418463, 0.006043830420821905, -0.029840953648090363, 0.017208771780133247, -0.05898537114262581, -0.03585760295391083, 0.039946749806404114, -0.032520733773708344, -0.004895517602562904, 0.01017682533711195, -0.06483877450227737, 0.02954038418829441, 0.028357619419693947, -0.049040209501981735, -0.021595245227217674, -0.0195369403809309, 0.0643264651298523, -0.019446000456809998, 0.02018253318965435, -0.01133185625076294, -0.01598861627280712, 0.0482528954744339, 0.015779457986354828, 0.0004185420402791351, 0.03593902662396431, -0.03027121163904667, 0.025440694764256477, 0.029166266322135925, -0.002923280466347933, 0.026082711294293404, 0.008068217895925045, -0.0230238139629364, -0.05795954167842865, 0.037610385566949844, 0.009124364703893661, -0.036585547029972076, -0.028565021231770515, 0.07626703381538391, 0.0369073823094368, -0.03450766205787659, -0.05094577744603157, 0.026660876348614693, -0.051648929715156555, -0.014969730749726295, -0.01513898279517889, 0.006279763765633106, -0.05650128424167633, 0.05134700983762741, -0.0030205738730728626, 0.014830301515758038, 0.07050666213035583, 0.006396009586751461, 0.00808179285377264, -0.0222353283315897, 0.08941513299942017, 0.08136879652738571, 0.03575076907873154, -0.005723126698285341, 0.07189694792032242, -0.01577107235789299, -0.04382108896970749, 0.007091190200299025, -0.00839175097644329, -0.012222002260386944, 0.01903930865228176, 0.0008083973079919815, 0.08252009749412537, -0.038842130452394485, 0.09209274500608444, -0.03342590481042862, -0.02671934850513935, -0.0016098974738270044, 0.013074209913611412, 0.010610873810946941, 0.04455260559916496, 0.004266030620783567, 0.05385546013712883, -0.02772686257958412, -0.05268364027142525, 0.0299658365547657, -0.0023278577718883753, -0.01974845863878727, 0.03478020802140236, -0.015044060535728931, 0.03519975766539574, -0.010430675931274891, 0.06089715287089348, 0.07354728877544403, -0.02717745117843151, 0.020903291180729866, -0.01660182699561119, 0.008650010451674461, -0.0021452484652400017, 0.03879031911492348, -0.03486405313014984, 0.0021887808106839657, -0.004216745961457491, -0.04737319052219391, 0.014513814821839333, -0.030953658744692802, -0.02110784500837326, 0.030536826699972153, -0.023828787729144096, -0.004975869320333004, 0.01175126526504755, 0.008096463978290558, -0.02125132828950882, -0.052679095417261124, -0.05456668883562088, -0.0401836596429348, -0.0708475336432457, -0.008913165889680386, 0.03652740642428398, 0.014204015955328941, -0.02495095320045948, -0.016185827553272247, -0.016099734231829643, -0.002227733377367258, 0.06196371838450432, -0.07797422260046005, -0.00011908109445357695, 0.010769314132630825, 0.018169231712818146, 0.020639484748244286, 0.0178279597312212, 0.053874000906944275, -0.008562014438211918, -0.02060818113386631, -0.014859222806990147, 0.023984648287296295, 0.05301722139120102, 0.022867631167173386, 0.004388731904327869, -0.08936357498168945, 0.015479005873203278, 0.012884042225778103, -0.03604341670870781, -0.07910013943910599, 0.004891294054687023, 0.030766455456614494, -0.008387322537600994, 0.05574566125869751, -0.00427309749647975, 0.019488105550408363, -0.05156955495476723, -0.020441696047782898, -0.018355557695031166, -0.010570118203759193, 0.030309807509183884, -0.025777667760849, 0.08020802587270737, 0.017908204346895218, -0.009709425270557404, -0.02972574532032013, -0.01930873654782772, -0.0033028344623744488, 0.007881748490035534, -0.03849777206778526, -0.035019006580114365, -0.03366369754076004, -0.08554492890834808, -0.05508289113640785, 0.026884419843554497, -0.01575346104800701, -0.031815867871046066, 0.039193637669086456, 0.009156065993010998, -0.029234880581498146, 0.010873363353312016, -0.03877026587724686, 0.027268996462225914, -0.007341432850807905, 0.004873825237154961, -0.02872106060385704, 0.00654148543253541, 0.016367733478546143, -0.003328820690512657, 0.02992989495396614, -0.05680186673998833, -0.003082128707319498, -0.02007944881916046, 0.022387314587831497, 0.05798397585749626, 0.004344793502241373, -0.01763955131173134 ]
[ -0.07606226205825806, -0.019396912306547165, -0.026951603591442108, -0.027442798018455505, 0.07684565335512161, -0.05448218435049057, -0.008183268830180168, 0.034735407680273056, -0.01860773004591465, -0.019508620724081993, 0.011425326578319073, -0.05817896127700806, -0.0037876202259212732, -0.011653128080070019, 0.10617473721504211, 0.01852332428097725, 0.02215510793030262, -0.08088821917772293, -0.05364561080932617, 0.030113017186522484, 0.017124991863965988, -0.0145376892760396, -0.029096538200974464, -0.06498119980096817, 0.009664085693657398, 0.019953520968556404, 0.023913227021694183, -0.04140692949295044, 0.002543247537687421, -0.1970418244600296, 0.03139601647853851, -0.019788706675171852, 0.03839081525802612, -0.009639719501137733, 0.015139446593821049, 0.05602822080254555, 0.04702995344996452, 0.013064319267868996, 0.008348432369530201, 0.054171789437532425, 0.013644784688949585, -0.0026690007653087378, -0.05790669843554497, -0.025150977075099945, 0.023558884859085083, -0.01221260242164135, -0.017545996233820915, -0.010718779638409615, -0.029762575402855873, 0.03499981760978699, -0.09171551465988159, -0.01945514976978302, 0.004309730138629675, -0.01984361559152603, 0.018025709316134453, 0.03488541767001152, 0.04953944310545921, 0.09669580310583115, 0.017212992534041405, 0.023452602326869965, 0.02535291016101837, -0.005578699521720409, -0.08603111654520035, 0.10582293570041656, 0.0444846972823143, 0.03327054902911186, -0.027346542105078697, -0.009488985873758793, -0.010699798353016376, 0.06653034687042236, 0.019933901727199554, 0.00715606939047575, -0.02848489210009575, 0.06923218816518784, 0.01666901633143425, 0.0009511732496321201, 0.014292014762759209, 0.021397434175014496, 0.02583662047982216, -0.03948086127638817, -0.07617759704589844, 0.01880001090466976, 0.01274072378873825, -0.02904471941292286, -0.04022897034883499, -0.005253795068711042, -0.03572020307183266, 0.04746346175670624, -0.004908622708171606, 0.005084994714707136, 0.027029898017644882, 0.0033960475120693445, 0.04168860614299774, 0.028138915076851845, -0.10956143587827682, -0.02662450447678566, -0.021208643913269043, 0.027161426842212677, -0.02177085354924202, 0.41582411527633667, -0.043522339314222336, -0.026171552017331123, 0.07918054610490799, 0.013092919252812862, -0.021903371438384056, -0.004755364265292883, -0.004346469882875681, -0.07326284050941467, 0.03339002653956413, -0.02636105939745903, -0.004648509435355663, 0.007535203825682402, 0.03236346319317818, -0.049029089510440826, 0.021727610379457474, 0.003975701984018087, 0.02834288403391838, 0.02702280879020691, -0.0027816675137728453, 0.016849493607878685, -0.018416021019220352, 0.018222490325570107, 0.025831211358308792, 0.003697863081470132, 0.010215709917247295, -0.012377006933093071, 0.019889619201421738, 0.03860259801149368, 0.06312970817089081, 0.028933605179190636, 0.011616842821240425, -0.0009107392397709191, -0.0799209326505661, 0.003927322570234537, 0.007255530916154385, 0.022790279239416122, 0.015110311098396778, -0.03695087134838104, -0.005604328587651253, 0.045777883380651474, -0.015637952834367752, -0.03494108468294144, 0.014209305867552757, -0.011893974617123604, -0.03550805151462555, 0.12370042502880096, 0.007191389799118042, -0.01891707256436348, -0.006401361897587776, -0.05809622257947922, -0.004754236899316311, 0.06914631277322769, -0.01279857475310564, -0.046182963997125626, 0.023295925930142403, 0.0472080297768116, 0.06255332380533218, -0.034350667148828506, -0.0542534738779068, -0.007272075861692429, -0.01987307146191597, -0.047601163387298584, -0.01812126301229, 0.04781123623251915, 0.025554729625582695, -0.12066551297903061, -0.014704089611768723, 0.01901577226817608, 0.03390976041555405, -0.0923832356929779, 0.028498752042651176, 0.04811089113354683, -0.045887235552072525, -0.0019035028526559472, 0.03775261342525482, -0.018087374046444893, -0.03127738833427429, 0.007715991698205471, 0.03917703405022621, 0.010161870159208775, -0.02108507603406906, 0.004973347764462233, -0.046144820749759674, 0.018659308552742004, -0.05518079176545143, -0.06391952186822891, -0.036174751818180084, 0.012549973092973232, 0.01563849486410618, 0.0007563824765384197, 0.0069384584203362465, -0.015460294671356678, -0.08874660730361938, 0.04742870852351189, -0.017980091273784637, -0.02946791984140873, 0.029050398617982864, 0.0008456918876618147, -0.004935594741255045, -0.039410606026649475, 0.04408501088619232, 0.042661722749471664, -0.026159288361668587, 0.06336299329996109, -0.04925312101840973, 0.03365498036146164, 0.0554312989115715, -0.028239058330655098, 0.06658530235290527, -0.0007296106196008623, -0.01385271456092596, -0.029479246586561203, -0.052431412041187286, 0.0021508722566068172, -0.007452304009348154, -0.02478061430156231, 0.015731772407889366, 0.007783547043800354, 0.04383031651377678, 0.02978925220668316, -0.05264567583799362, -0.04331285133957863, -0.044182006269693375, -0.34707358479499817, -0.045279067009687424, 0.007527826353907585, -0.008369723334908485, -0.009303407743573189, -0.05979561805725098, -0.0036949727218598127, -0.013073071837425232, 0.013424585573375225, 0.03299226239323616, 0.07520615309476852, 0.002249102806672454, 0.01731068827211857, -0.10775503516197205, -0.017696106806397438, 0.017805064097046852, -0.028295135125517845, -0.016658425331115723, -0.01172693446278572, 0.03535914793610573, -0.003264243248850107, -0.023506030440330505, -0.03428986296057701, -0.03656404837965965, 0.020319106057286263, -0.041005637496709824, 0.11796389520168304, 0.04603664577007294, 0.03957400098443031, -0.05992482230067253, 0.05043525993824005, 0.01865047588944435, -0.02460002712905407, -0.09843847900629044, 0.003153064986690879, -0.032877564430236816, -0.016412049531936646, 0.03740617632865906, -0.008799280971288681, -0.01889539510011673, -0.0660017877817154, 0.039896003901958466, -0.012594244442880154, -0.08099957555532455, -0.02304200455546379, 0.00993437971919775, -0.026856156066060066, -0.038774631917476654, -0.011780615895986557, 0.04413435235619545, 0.014369352720677853, 0.016122089698910713, 0.040213342756032944, 0.012661618180572987, -0.016699161380529404, -0.023540489375591278, -0.056692469865083694, 0.009656501933932304, -0.005567224230617285, -0.015123499557375908, 0.02682800218462944, 0.006779185030609369, 0.024454114958643913, -0.03493289649486542, 0.0019454294815659523, -0.013981939293444157, -0.00009597280586604029, 0.020428096875548363, 0.0033423881977796555, -0.031306441873311996, -0.029861776158213615, 0.09350480884313583, -0.0036163392942398787, 0.044266752898693085, 0.027158215641975403, 0.045068204402923584, -0.031429436057806015, -0.00937859807163477, 0.02850385755300522, 0.007224521599709988, 0.04988379403948784, 0.02827427163720131, 0.03939973935484886, -0.03250348940491676, -0.0022666044533252716, 0.06711260974407196, -0.004861575085669756, -0.037385549396276474, 0.05065317079424858, 0.0002554401580709964, 0.002002146327868104, -0.023479335010051727, -0.02460220269858837, -0.06393951922655106, 0.05949284881353378, 0.017305443063378334, -0.25992149114608765, 0.028625521808862686, 0.0465080663561821, 0.0701521635055542, 0.0011908909073099494, 0.005172657314687967, 0.03718120604753494, -0.06280190497636795, 0.026092136278748512, 0.03914802521467209, 0.01745932176709175, 0.060598354786634445, 0.01623431406915188, -0.030991073697805405, 0.005186331924051046, -0.009075399488210678, 0.020512009039521217, 0.00838129036128521, 0.017255859449505806, -0.00897151418030262, 0.01657242327928543, -0.030175302177667618, 0.19064876437187195, 0.017787979915738106, -0.019327128306031227, 0.03468213975429535, 0.007700011134147644, 0.03298436477780342, 0.09509620815515518, 0.0026234968099743128, -0.009374668821692467, 0.015552825294435024, 0.021158425137400627, 0.03508922457695007, 0.029931556433439255, -0.08180881291627884, -0.034723710268735886, 0.014279903843998909, -0.00569568295031786, -0.021078169345855713, -0.010848305188119411, 0.027528362348675728, -0.04833304509520531, 0.03399056941270828, 0.04856524243950844, -0.002834727056324482, -0.012776866555213928, -0.052540428936481476, -0.0511799082159996, -0.014496960677206516, -0.021089136600494385, -0.05826786532998085, -0.006314978469163179, -0.001657374668866396, -0.004310989286750555, 0.08592021465301514, 0.01582678221166134, -0.021420130506157875, 0.033720556646585464, 0.012787573039531708, -0.012402326799929142, -0.0375838540494442, 0.06676120311021805, 0.034757114946842194, 0.02076985500752926 ]
[ -0.020224252715706825, 0.038288574665784836, -0.013307137414813042, 0.04297484830021858, 0.037741031497716904, -0.007765834219753742, 0.012615119107067585, 0.015286675654351711, -0.032739441841840744, -0.000908953370526433, -0.01521560549736023, 0.008679714985191822, 0.04029320180416107, 0.015298359096050262, 0.010533442720770836, 0.00999048538506031, -0.034109197556972504, -0.01632518693804741, 0.025959592312574387, -0.01870455965399742, -0.028729015961289406, 0.00820986833423376, 0.023709263652563095, -0.015541582368314266, 0.01373487152159214, 0.05231698229908943, -0.03022787533700466, 0.0001918433263199404, 0.02516131103038788, -0.08439244329929352, -0.036100853234529495, -0.020023126155138016, -0.022684752941131592, -0.01498806569725275, -0.02159053273499012, 0.021666187793016434, -0.010326308198273182, -0.005348277743905783, -0.0003555406874511391, -0.004086170345544815, 0.03143761679530144, -0.0050531309098005295, -0.029006296768784523, -0.027344243600964546, -0.006756735499948263, -0.0282527394592762, -0.015447542071342468, -0.01549164205789566, -0.03100808709859848, -0.0011923154816031456, -0.041029468178749084, -0.007459144573658705, -0.012097890488803387, 0.03902054950594902, -0.006182190030813217, -0.005364879034459591, -0.04384878650307655, 0.02600582130253315, -0.009154316037893295, -0.008594942279160023, 0.011618280783295631, -0.0179984662681818, -0.022430773824453354, -0.013726990669965744, 0.009908637963235378, -0.017607267946004868, -0.025879204273223877, 0.04086983576416969, 0.019262127578258514, 0.0035228680353611708, 0.013854549266397953, 0.0417686328291893, -0.048323068767786026, -0.009468158707022667, -0.00918730441480875, 0.0021645864471793175, 0.028712280094623566, -0.02956375479698181, -0.009351739659905434, 0.027375048026442528, -0.03935273364186287, 0.005682225804775953, 0.025818949565291405, 0.007652947213500738, -0.030201565474271774, -0.027565723285079002, -0.0014626301126554608, 0.03970993310213089, 0.0006773885688744485, -0.0047903526574373245, -0.0206614900380373, 0.0071221692487597466, -0.030431397259235382, 0.023087574169039726, -0.0969417467713356, -0.009734357707202435, -0.02221660688519478, -0.015789423137903214, -0.004000792279839516, 0.8389706015586853, -0.023555375635623932, -0.004034885670989752, 0.0448412224650383, 0.0084554897621274, 0.004595454316586256, -0.0409083366394043, 0.015688061714172363, 0.00468958867713809, 0.004059768281877041, 0.0022462815977633, 0.02186715230345726, 0.05895724520087242, 0.014932806603610516, 0.003493542317301035, 0.02560051903128624, 0.035966113209724426, -0.008356421254575253, 0.0047845980152487755, 0.0013742304872721434, 0.03238406777381897, 0.044527385383844376, -0.02228705957531929, 0.0027784283738583326, 0.016557959839701653, 0.03626585379242897, -0.1870536357164383, -0.005889234598726034, -7.219554225596383e-33, 0.06576485186815262, -0.010634810663759708, 0.0480729304254055, -0.0106800002977252, 0.008975853212177753, -0.0055219088681042194, 0.008671600371599197, 0.007342098280787468, -0.002721463330090046, -0.04017388075590134, 0.017065875232219696, -0.015816619619727135, -0.008366348221898079, 0.0032033263705670834, 0.017240069806575775, -0.022024935111403465, 0.011365038342773914, 0.03307336941361427, 0.006585581693798304, 0.012597043067216873, 0.027342597022652626, 0.03311420604586601, 0.026800425723195076, 0.03691291809082031, -0.020159777253866196, 0.00004490557694225572, 0.033449430018663406, 0.01643369160592556, -0.02346068061888218, -0.03554772585630417, 0.00658534886315465, 0.013872260227799416, 0.0036641843616962433, -0.01372604537755251, 0.05396132916212082, -0.03688538074493408, -0.056131958961486816, 0.009396152570843697, -0.025542214512825012, -0.04090723395347595, -0.012828370556235313, 0.004178725183010101, -0.022451547905802727, -0.022814709693193436, -0.043460503220558167, 0.006524383556097746, 0.0075522433035075665, -0.008525075390934944, -0.007647843565791845, 0.0024015349335968494, 0.01967952959239483, 0.0310969278216362, -0.008126764558255672, 0.015464586205780506, 0.012013236060738564, 0.0330587774515152, 0.021598339080810547, -0.025387493893504143, 0.016960222274065018, -0.018644623458385468, 0.02722947672009468, -0.04338886961340904, 0.010891694575548172, 0.03336559608578682, 0.01003341469913721, -0.017250893637537956, 0.036316774785518646, 0.02397431805729866, 0.007775481324642897, 0.018635859712958336, -0.0629747286438942, 0.048208434134721756, -0.012255108915269375, -0.019366787746548653, 0.042013417929410934, -0.01365467719733715, 0.003507941495627165, 0.004624883644282818, 0.020143402740359306, 0.013776586391031742, 0.0015249482821673155, -0.029043007642030716, 0.00946426298469305, -0.0504288487136364, -0.035903964191675186, -0.01631280593574047, 0.01139042153954506, 0.00995770562440157, -0.0030408164020627737, -0.0017824957612901926, 0.020075436681509018, 0.07635955512523651, 0.008723612874746323, -0.03976469114422798, -0.03571975976228714, 7.931120629083453e-33, 0.0012312850449234247, -0.029242083430290222, -0.018757354468107224, -0.015586161985993385, -0.000815028790384531, -0.02088703215122223, 0.03187857195734978, 0.05470650643110275, -0.003326703794300556, 0.06148742139339447, 0.00757697643712163, -0.014285780489444733, -0.02251291833817959, 0.005919215269386768, 0.037304703146219254, 0.00807900819927454, 0.02824457921087742, -0.013249796815216541, 0.03331036865711212, -0.01762508600950241, -0.019068483263254166, 0.008759764023125172, 0.009341683238744736, 0.008815644308924675, -0.006946668028831482, 0.03499075397849083, -0.021517738699913025, -0.0001286792103201151, -0.022069433704018593, -0.0025724386796355247, -0.014145776629447937, -0.04651302844285965, 0.013705010525882244, -0.015880191698670387, -0.020654048770666122, 0.03173847496509552, 0.0026017287746071815, -0.01273246668279171, 0.029215216636657715, -0.027429845184087753, 0.047994427382946014, 0.010599496774375439, -0.016732655465602875, 0.03744472190737724, -0.01840921863913536, -0.009465855546295643, -0.0018394452054053545, 0.0090880636125803, -0.007967893965542316, -0.01330303493887186, 0.001855676295235753, 0.021395867690443993, 0.01663639023900032, -0.02113022655248642, 0.030902134254574776, -0.036875322461128235, -0.011958363465964794, -0.002287070034071803, -0.05309724062681198, -0.00261638592928648, -0.018565017729997635, -0.021973585709929466, -0.012732836417853832, 0.0067798057571053505, -0.03502749279141426, -0.03431411460042, -0.02878539264202118, -0.014006393030285835, -0.013664145953953266, -0.010083667933940887, -0.009616275317966938, 0.012452621944248676, -0.007300254423171282, 0.03194378688931465, 0.044773541390895844, -0.04457138106226921, -0.0019231014885008335, -0.005323562305420637, -0.0012877103872597218, 0.00458583515137434, 0.024495530873537064, 0.0036781972739845514, -0.006810198072344065, -0.02345309965312481, 0.034226194024086, 0.020934782922267914, -0.03606247529387474, 0.0015531879616901278, 0.011074244976043701, -0.008824135176837444, -0.011390245519578457, -0.020600030198693275, -0.02096444182097912, 0.023105714470148087, -0.006179826334118843, -1.2983257136056636e-8, -0.07055465131998062, -0.0007778865983709693, -0.020052645355463028, 0.032713327556848526, 0.02772589400410652, 0.01717676781117916, 0.0028308748733252287, 0.001588472630828619, 0.04591737315058708, 0.007507472299039364, 0.0677756518125534, -0.009081633761525154, -0.002118815667927265, -0.004973594564944506, 0.0018631269922479987, -0.06161072850227356, -0.024644924327731133, -0.0140695720911026, 0.008980090729892254, -0.01509759109467268, 0.031577080488204956, 0.04971069470047951, -0.023448430001735687, -0.025875084102153778, 0.024418197572231293, 0.0293906107544899, 0.002378511941060424, -0.061544500291347504, -0.05507081747055054, -0.035634592175483704, 0.009565453045070171, -0.03805002197623253, -0.0387924499809742, 0.022129831835627556, -0.03499206155538559, -0.014910461381077766, 0.06156337261199951, 0.003130504162982106, -0.000667350075673312, 0.012559357099235058, 0.009863443672657013, 0.032646000385284424, -0.013406611047685146, -0.017601925879716873, -0.022603506222367287, 0.006040541455149651, -0.031974878162145615, 0.04702840372920036, 0.013723071664571762, -0.014112051576375961, 0.03141561895608902, -0.017749253660440445, 0.018820064142346382, 0.01781095564365387, 0.04156937077641487, -0.017686346545815468, 0.04421282187104225, -0.03132515028119087, -0.007358950097113848, 0.020035071298480034, 0.04080219194293022, -0.027218269184231758, 0.0002929524634964764, -0.00844116322696209 ]
materialize-json-arrays
https://markhneedham.com/blog/2020/12/29/materialize-json-arrays
false
2020-12-17 00:44:37
Materialize: Querying JSON files
[ "materialize" ]
[ "materialize" ]
I recently learnt about https://materialize.com/[Materialize^], a SQL streaming database, via their https://techcrunch.com/2020/11/30/materialize-scores-40-million-investment-for-sql-streaming-database/[Series B fundraising announcement^], and thought I'd take it for a spin. My go-to dataset for new databases is Strava, an app that I use to record my runs. It has an API that returns a JSON representation of each run, containing information like the distance covered, elapsed time, heart rate metrics, and more. I've extracted my latest 30 activities to a file in the JSON lines format and in this post we're going to analyse that data using Materialize. image::{{<siteurl>}}/uploads/2020/12/materialize-banner.png[] The data is stored in the https://github.com/mneedham/materialize-sandbox/blob/main/strava/data/activities-clean.json[`activities-clean.json`^] file on the https://github.com/mneedham/materialize-sandbox/tree/main/strava[mneedham/materialize-sandbox^] repository. Below is an example of the first line in this file: [source,json] ---- {"resource_state":2,"athlete":{"id":6958432,"resource_state":1},"name":"Morning Run","distance":14175.1,"moving_time":4222,"elapsed_time":4391,"total_elevation_gain":105.4,"type":"Run","workout_type":null,"id":4470124807,"upload_id":4776694342,"start_date":"2020-12-14T05:31:43Z","start_date_local":"2020-12-14T05:31:43Z","timezone":"(GMT+00:00) Europe/London","utc_offset":0,"location_city":null,"location_state":null,"location_country":"United Kingdom","achievement_count":0,"kudos_count":2,"comment_count":0,"athlete_count":1,"photo_count":0,"trainer":false,"commute":false,"manual":false,"private":false,"visibility":"everyone","flagged":false,"gear_id":"g7064038","from_accepted_tag":false,"upload_id_str":"4776694342","average_speed":3.357,"max_speed":4.3,"average_cadence":87.4,"has_heartrate":true,"average_heartrate":150.3,"max_heartrate":168,"heartrate_opt_out":false,"display_hide_heartrate_option":true,"elev_high":76.2,"elev_low":25,"pr_count":0,"total_photo_count":0,"has_kudoed":false,"suffer_score":116} ---- == Connecting to Materialize We're going to query that data using Materialize, which we'll set up using the following Docker Compose configuration: .docker-compose.yml [source,yaml] ---- version: '3' services: materialize: image: materialize/materialized:v0.5.3 container_name: "materialize-sandbox-docker-compose" volumes: - ./data:/data ports: - "6875:6875" ---- The `data` directory containing the `activities-clean.json` file is in the https://github.com/mneedham/materialize-sandbox/tree/main/strava[mneedham/materialize-sandbox/strava^] GitHub repository. The repository also contains setup instructions. Once we've cloned that repository, we can launch Materialize by running the following command: [source, bash] ---- docker-compose up ---- We should see the following output: .Results [source,text] ---- Dec 16 16:13:15.027 INFO materialized: booting server materialized v0.5.3 (f56c5a8a3) OpenSSL 1.1.1g 21 Apr 2020 librdkafka v1.5.0 .... ======================================================================= Thank you for trying Materialize! We are interested in any and all feedback you have, which may be able to improve both our software and your queries! Please reach out at: Web: https://materialize.com GitHub issues: https://github.com/MaterializeInc/materialize/issues Email: support@materialize.io Twitter: @MaterializeInc ======================================================================= materialized v0.5.3 (f56c5a8a3) listening on 0.0.0.0:6875... ---- We're now ready to connect to Materialize, which we can do using the https://www.postgresql.org/docs/9.3/app-psql.html[`psql` CLI tool^]: [source, bash] ---- psql -h localhost -p 6875 materialize ---- .Results [source,text] ---- psql (12.5 (Ubuntu 12.5-0ubuntu0.20.04.1), server 9.5.0) Type "help" for help. materialize=> ---- == Creating a materialized view To query this file using Materialize we'll need to create a source around the file and then a materialized view on top of that source. My understanding of the architecture at a high level is shown in the diagram below: image::{{<siteurl>}}/uploads/2020/12/materialize-architecture.png[title="Materialize Architecture"] Let's now create a source on top of the file. We can do this using the https://materialize.com/docs/sql/create-source/[`CREATE SOURCE`^] clause, as shown below: [source, sql] ---- CREATE SOURCE activities FROM FILE '/data/activities-clean.json' FORMAT TEXT; ---- We need to indicate where the file lives on the server, as well as the format of its contents. We also need to specify the format of the file, which in this case is https://materialize.com/docs/sql/create-source/text-file/[`TEXT`^]. We'll be able to describe the JSON structure in more detail when we create the view. We can describe the source by running the following query: [source, sql] ---- SHOW COLUMNS FROM activities; ---- .Results [opts="header"] |=== | name | nullable | type | mz_line_no | f | int8 | text | f | text |=== So the main field we're interested in is the `text` one, which contains our JSON documents. Next we're going to create a materialized view, in which we can use https://materialize.com/docs/sql/functions/#json[JSON functions^] to extract fields from the JSON documents and cast them to appropriate types. By default fields are imported as the `text` type. We can pull out the interesting data from the activities by creating the following materialized view: [source, sql] ---- CREATE MATERIALIZED VIEW activities_view AS SELECT (val->>'id')::float::bigint AS id, (val->>'distance')::float AS distance, (val->>'moving_time')::float::int AS moving_time, (val->>'elapsed_time')::float::int AS elapsed_time, (val->>'total_elevation_gain')::float AS total_elevation_gain, (val->>'elev_high')::float AS elev_high, (val->>'elev_low')::float AS elev_low, (val->>'average_speed')::float AS average_speed, (val->>'max_speed')::float AS max_speed, (val->>'average_heartrate')::float AS average_heartrate, (val->>'max_heartrate')::float AS max_heartrate, (val->>'start_date')::timestamp AS start_date FROM (SELECT text::json AS val FROM activities); ---- While I was working out which fields to extract, I found myself repeatedly creating and dropping the view. We can drop the view using the `DROP VIEW` clause: [source, sql] ---- DROP VIEW activities_view; ---- And once we're happy with it, we can use the `SHOW COLUMNS` clause to describe the view, as shown below: [source, sql] ---- SHOW COLUMNS FROM activities_view; ---- .Results [opts="header"] |=== |name | nullable | type |average_heartrate | t | float8 |average_speed | t | float8 |distance | t | float8 |elapsed_time | t | int4 |elev_high | t | float8 |elev_low | t | float8 |id | t | int8 |max_heartrate | t | float8 |max_speed | t | float8 |moving_time | t | int4 |start_date | t | timestamp |total_elevation_gain | t | float8 |=== == Querying a materialized view Ok, now it's time for some fun, let's query the materialized view that we've just created. We'll start with a SQL query that returns the latest 10 activities, sorted in descending order by `start_date`: [source,sql] ---- SELECT * FROM activities_view ORDER BY start_date DESC LIMIT 10; ---- .Results [opts="header"] |=== | id | distance | moving_time | elapsed_time | total_elevation_gain | elev_high | elev_low | average_speed | max_speed | average_heartrate | max_heartrate | start_date |470124807 | 14175.1 | 4222 | 4391 | 105.4 | 76.2 | 25 | 3.357 | 4.3 | 150.3 | 168 | 2020-12-14 05:31:43 |460808499 | 13132.6 | 3794 | 3935 | 81.4 | 67.4 | 25 | 3.461 | 4.6 | 147.3 | 163 | 2020-12-12 06:28:06 |456998655 | 12244.8 | 3580 | 3643 | 74.4 | 67.4 | 25 | 3.42 | 4.4 | 156.2 | 190 | 2020-12-11 04:15:32 |448905703 | 12304.8 | 3567 | 3889 | 87.7 | 69.9 | 25 | 3.45 | 4.4 | 153.5 | 182 | 2020-12-09 05:17:29 |440554208 | 12239.9 | 3856 | 3987 | 87 | 69.8 | 28.1 | 3.174 | 4 | 154.4 | 178 | 2020-12-07 05:38:44 |431429475 | 13116.8 | 3992 | 4049 | 111.8 | 122.3 | 57 | 3.286 | 4.3 | 156.1 | 185 | 2020-12-05 08:41:17 |427493338 | 12253.2 | 3756 | 3814 | 73.3 | 67.4 | 29.1 | 3.262 | 4.5 | 158.8 | 182 | 2020-12-04 05:33:21 |419097799 | 12305 | 3852 | 4013 | 93.9 | 74.6 | 29.6 | 3.194 | 4.6 | 143.5 | 174 | 2020-12-02 05:36:33 |410708776 | 10916.3 | 3456 | 3645 | 87.8 | 67.3 | 22.9 | 3.159 | 4.1 | 145.7 | 178 | 2020-11-30 05:40:06 |400404590 | 12926.9 | 4142 | 4243 | 123.1 | 74.6 | 28.5 | 3.121 | 6.4 | 150.6 | 193 | 2020-11-28 07:17:00 |=== We can use all the SQL aggregation functions that we're used to. So if we wanted to work out the distance run, grouped by month, we could write the following query that uses the https://materialize.com/docs/sql/functions/date-trunc/[`date_trunc`^] function: [source,sql] ---- SELECT date_trunc('month', start_date) AS month, sum(distance) AS totalDistance FROM activities_view GROUP BY month ORDER BY month; ---- .Results [opts="header"] |=== |month | totaldistance |2020-10-01 00:00:00 | 75149.69999992847 |2020-11-01 00:00:00 | 194009.49999952316 |2020-12-01 00:00:00 | 101772.19999974966 |=== I ran a lot more in November than the other two months, but admittedly we don't have complete data for October or December (so far). If we pull in all that data, the total distance covered would likely be similar. What about the fastest run and the pace per mile on that run? We can compute with a little help from the https://materialize.com/docs/sql/functions/to_char/[`to_char`^] function: [source,sql] ---- SELECT start_date, distance, to_char(to_timestamp(moving_time / distance * 1609.34), 'MI:SS') AS pacePerMile, to_char(to_timestamp(moving_time), 'HH24:MI:SS') AS time FROM activities_view ORDER BY moving_time / distance LIMIT 10; ---- .Results [opts="header"] |=== | start_date | distance | pacepermile | time |2020-12-12 06:28:06 | 13132.6 | 07:44 | 01:03:14 |2020-12-09 05:17:29 | 12304.8 | 07:46 | 00:59:27 |2020-10-21 04:34:38 | 12624.5 | 07:48 | 01:01:14 |2020-10-23 03:49:00 | 13762.7 | 07:49 | 01:06:57 |2020-12-11 04:15:32 | 12244.8 | 07:50 | 00:59:40 |2020-12-14 05:31:43 | 14175.1 | 07:59 | 01:10:22 |2020-10-24 06:04:41 | 13703.4 | 08:01 | 01:08:21 |2020-10-30 05:43:05 | 8172.7 | 08:02 | 00:40:49 |2020-10-28 05:33:27 | 14494.7 | 08:05 | 01:12:52 |2020-11-18 05:42:50 | 11968.1 | 08:06 | 01:00:16 |=== It looks like my fastest run was just a few days ago, but I have had a few others that were at a similar pace. We could combine the previous two queries together to find the fastest pace per month, as shown in the following query: [source,sql] ---- SELECT to_char(date_trunc('month', start_date), 'YYYY-MM') AS month, to_char(to_timestamp(min(moving_time / distance * 1609.34)), 'MI:SS') AS pacePerMile, to_char(to_timestamp(min(moving_time)), 'HH24:MI:SS') AS time FROM activities_view GROUP BY month; ---- .Results [opts="header"] |=== | month | pacepermile | time |2020-10 | 07:48 | 00:40:49 |2020-11 | 08:06 | 00:39:39 |2020-12 | 07:44 | 00:59:27 |=== If we wanted to also show the average pace per mile, we could do this using the `avg` function instead of the `min` function on the 2nd line of the query: [source,sql] ---- SELECT to_char(date_trunc('month', start_date), 'YYYY-MM') AS month, to_char(to_timestamp(min(moving_time / distance * 1609.34)), 'MI:SS') AS bestPacePerMile, to_char(to_timestamp(avg(moving_time / distance * 1609.34)), 'MI:SS') AS averagePacePerMile FROM activities_view GROUP BY month; ---- .Results [opts="header"] |=== |month | bestpacepermile | averagepacepermile |2020-10 | 07:48 | 08:00 |2020-11 | 08:06 | 08:23 |2020-12 | 07:44 | 08:04 |=== == In summary I've only skimmed the surface of what we can do with Materialize. From my understanding, a more common use case is to execute SQL queries over streaming data, whereas what we have here is a flat file with static content. I guess querying streaming data is the next thing for me to explore! //// materialize=> select * from activities; ERROR: Unable to automatically determine a timestamp for your query; this can happen if your query depends on non-materialized sources CREATE MATERIALIZED VIEW activities_view AS SELECT (val->>'id')::float::bigint AS id, (val->>'distance')::float AS distance, (val->>'moving_time')::float::int AS moving_time, (val->>'elapsed_time')::float::int AS elapsed_time FROM (SELECT text::json AS val FROM activities); CREATE MATERIALIZED VIEW activities_view AS SELECT (val->>'id')::float::bigint AS id, (val->>'distance')::float AS distance, (val->>'moving_time')::float::int AS moving_time, (val->>'elapsed_time')::float::int AS elapsed_time, (val->>'elev_high')::float AS elev_high, (val->>'elev_low')::float AS elev_low, (val->>'total_elevation_gain')::float AS total_elevation_gain FROM (SELECT text::json AS val FROM activities); ////
In this post we'll learn how to query a JSON file of Strava activites using the Materialize SQL streaming database.
uploads/2020/12/materialize-banner.png
[ 0.020945293828845024, -0.018083928152918816, 0.002216220600530505, 0.07197309285402298, 0.08941609412431717, 0.020682984963059425, 0.016867302358150482, 0.04923389479517937, -0.0010957560734823346, -0.0072763399221003056, -0.0013565076515078545, -0.020013000816106796, -0.07449635118246078, -0.0012259077047929168, -0.0197250097990036, 0.066510871052742, 0.058254167437553406, 0.02075354754924774, 0.05557601898908615, 0.008269166573882103, 0.002837632317095995, 0.041910428553819656, 0.0325988344848156, 0.027644706889986992, 0.02342759072780609, 0.019784996286034584, 0.0006985677755437791, 0.0058769965544342995, -0.06038209795951843, 0.0002438331430312246, 0.05129677429795265, -0.015380109660327435, 0.015450566075742245, -0.003850232809782028, 0.04639388248324394, 0.003087331773713231, -0.03088195249438286, 0.0380474217236042, -0.011824429035186768, -0.0051107811741530895, -0.06723945587873459, 0.02451244741678238, -0.02015821821987629, 0.01049259677529335, -0.03527576103806496, 0.030023736879229546, -0.027181947603821754, 0.013164143078029156, -0.0437287874519825, -0.01853407360613346, -0.03403666242957115, 0.06464715301990509, -0.04065169021487236, 0.020320875570178032, 0.0026929983869194984, 0.06501854956150055, 0.0317797027528286, -0.06840734928846359, 0.005679101683199406, -0.03863133117556572, 0.029413782060146332, 0.0008103851578198373, -0.0013103819219395518, -0.0029022691305726767, 0.031002309173345566, -0.031426046043634415, 0.00622151792049408, 0.058966659009456635, -0.01648448407649994, -0.013491049408912659, 0.014184148982167244, 0.01738147996366024, -0.024423792958259583, 0.021426836028695107, 0.01481274887919426, -0.052507802844047546, 0.013385609723627567, 0.07013123482465744, -0.000411822838941589, 0.027960699051618576, -0.0011850785231217742, 0.017389705404639244, 0.01762094348669052, 0.05430537462234497, -0.024295808747410774, -0.04138582944869995, -0.039403676986694336, -0.006257331930100918, -0.0436493344604969, 0.036985885351896286, 0.018144043162465096, -0.03312845900654793, 0.027113310992717743, 0.013887674547731876, -0.030452033504843712, 0.003007900435477495, -0.005690807476639748, -0.017133858054876328, -0.014051898382604122, -0.031242992728948593, -0.056905198842287064, -0.016215907409787178, 0.014312063343822956, 0.02937541902065277, -0.045801784843206406, 0.0011022202670574188, -0.03662693127989769, -0.010067379102110863, 0.006104244850575924, -0.00872599333524704, -0.031380657106637955, 0.010375721380114555, -0.03454360365867615, 0.0012979669263586402, -0.05787096545100212, 0.06609955430030823, 0.03002055361866951, -0.05115140974521637, -0.020572755485773087, 0.017435509711503983, 0.0871364027261734, 0.028304800391197205, -0.018429389223456383, 0.051074881106615067, -0.004879578482359648, 0.03201594576239586, -0.002002761699259281, 0.030946731567382812, -0.005113848950713873, -0.06047428026795387, -0.02691483683884144, 0.04613526165485382, -0.009501868858933449, 0.015501883812248707, 0.015612118877470493, -0.03498472645878792, 0.01488453894853592, -0.0053085992112755775, 0.08094843477010727, 0.017597995698451996, -0.008408266119658947, -0.03673073649406433, 0.017879432067275047, -0.014843827113509178, 0.035391125828027725, -0.003911605104804039, -0.0007792827673256397, -0.04708406701683998, -0.04124656319618225, 0.02033027820289135, 0.013746865093708038, 0.003894404973834753, 0.060374099761247635, -0.05026603862643242, 0.006233205087482929, 0.10060537606477737, 0.020366277545690536, 0.015689564868807793, -0.004077740013599396, 0.023428181186318398, 0.05425197631120682, 0.0510389469563961, -0.0008714900468476117, 0.010539615526795387, -0.018829340115189552, -0.01646837592124939, 0.015029288828372955, 0.06152615323662758, -0.03290568292140961, -0.011883801780641079, -0.05384649336338043, -0.05624060705304146, 0.08206181973218918, -0.025609765201807022, -0.03306965529918671, 0.05675208568572998, 0.06871100515127182, 0.04550958797335625, 0.0208501648157835, 0.0013525012182071805, -0.07992897927761078, 0.03904123231768608, 0.033349957317113876, 0.013731724582612514, 0.037477247416973114, 0.0028568198904395103, 0.08397302031517029, 0.01688401773571968, 0.0033600633032619953, 0.03592083975672722, -0.05616612732410431, -0.08531968295574188, -0.032050635665655136, -0.015008221380412579, 0.040332432836294174, -0.02891959249973297, 0.026601679623126984, 0.08404535055160522, 0.005712725222110748, 0.04549288749694824, 0.002668655477464199, -0.019541146233677864, 0.02211856283247471, -0.06371940672397614, -0.03486672043800354, 0.03248269483447075, 0.0510040819644928, -0.017047733068466187, -0.03277876600623131, 0.004541164264082909, -0.03232328221201897, -0.0389988012611866, 0.017466293647885323, -0.012212787754833698, 0.038273364305496216, 0.01987125352025032, 0.03778813034296036, -0.000873672601301223, 0.03356457129120827, -0.03416818007826805, 0.056927017867565155, 0.0040826378390192986, -0.028467455878853798, -0.030067451298236847, -0.030427293851971626, 0.11482547968626022, 0.04830620437860489, -0.03199679031968117, -0.062461722642183304, 0.01486481074243784, 0.012365580536425114, -0.030965961515903473, -0.0014019898371770978, -0.019712362438440323, -0.006503228098154068, -0.012931720353662968, -0.04018140211701393, -0.0433892123401165, 0.01081016380339861, -0.04693857207894325, -0.005312683526426554, 0.05091697350144386, 0.0019273434299975634, 0.059693191200494766, 0.01670030690729618, -0.031163115054368973, -0.009399406611919403, -0.022272596135735512, -0.05671375244855881, -0.0040705204010009766, -0.002191529842093587, -0.016708336770534515, 0.02412717230618, 0.0018296182388439775, -0.022935504093766212, -0.027521543204784393, -0.03917524218559265, 0.048145197331905365, 0.04276536405086517, 0.0672752633690834, -0.01361682079732418, 0.050457995384931564, -0.03029557131230831, 0.04340296611189842, -0.03949061408638954, -0.040098220109939575, -0.052121344953775406, -0.030697893351316452, 0.009264493361115456, 0.04237254336476326, 0.03662707284092903, 0.006780165247619152, 0.0028137292247265577, 0.011311264708638191, 0.015410098247230053, 0.0006316384533420205, 0.05322740599513054, -0.005204204004257917, -0.02549702860414982, -0.02084098383784294, -0.010164471343159676, 0.06853122264146805, -0.04116862639784813, -0.039363034069538116, 0.013009709306061268, -0.07136257737874985, 0.03495535999536514, -0.038096170872449875, -0.025150250643491745, -0.005014633759856224, 0.011180022731423378, 0.038202930241823196, 0.018930567428469658, -0.00006535225111292675, 0.0954117700457573, 0.017778366804122925, 0.006927287206053734, -0.002629227703437209, -0.0036808971781283617, 0.058274682611227036, -0.015153664164245129, 0.017928671091794968, 0.056166332215070724, -0.014043132774531841, -0.007705146912485361, -0.058664895594120026, 0.012082592584192753, -0.04732038080692291, -0.28761836886405945, 0.05347694829106331, 0.007087573874741793, -0.04266830533742905, 0.03713223710656166, -0.006981905549764633, -0.0004903496592305601, -0.02817656844854355, -0.03348013013601303, 0.002652374329045415, -0.012050545774400234, -0.04692055284976959, -0.020927445963025093, 0.030014105141162872, 0.030278226360678673, 0.029870344325900078, 0.003634751308709383, -0.0237136073410511, -0.00911164004355669, 0.03802873566746712, -0.012670822441577911, -0.05566120520234108, -0.002499139402061701, 0.04071176424622536, 0.0389835499227047, 0.049817755818367004, -0.0645667016506195, 0.01460628118366003, -0.03939908742904663, -0.028660761192440987, 0.0395672433078289, -0.01370907761156559, 0.02185225300490856, -0.018878912553191185, -0.011690805666148663, -0.04110753908753395, 0.020525887608528137, 0.011340674944221973, 0.02919934131205082, -0.0219427403062582, -0.029788406565785408, -0.028350673615932465, -0.00799458660185337, 0.023160357028245926, 0.09080314636230469, 0.019896697252988815, -0.07014741748571396, 0.008642490953207016, -0.029588112607598305, 0.06810685247182846, -0.003510416019707918, -0.04622400179505348, -0.03836115077137947, 0.03797778859734535, -0.03220173344016075, -0.010689766146242619, -0.0058429054915905, -0.012025948613882065, -0.036582160741090775, -0.030818874016404152, -0.008174911141395569, -0.02508201263844967, 0.007997521199285984, -0.04568611457943916, -0.020859520882368088, -0.06885185837745667, -0.05639130249619484, -0.010233167558908463, 0.07790499925613403, 0.04152209311723709, -0.016150113195180893, 0.016240470111370087, -0.009521671570837498, -0.12399604916572571, -0.006634491961449385, -0.0022681334521621466, -0.025835156440734863, 0.010297237895429134, -0.008686373010277748, 0.0368468314409256, -0.06019065901637077, -0.04508035629987717, 0.0213357824832201, -0.0027841872069984674, 0.018343953415751457, -0.02661867067217827, 0.04718589782714844, -0.013848721981048584, -0.0027440025005489588, -0.006001412868499756, 0.06353029608726501, -0.03657589480280876, -0.023313354700803757, -0.016756292432546616, -0.02934172935783863, 0.02681291475892067, -0.0007368865772150457, -0.013088797219097614, 0.0021009205374866724, 0.028785184025764465, 0.018065040931105614, -0.05664820969104767, 0.0036294690798968077, -0.05813667178153992, 0.0014370100107043982, -0.017880000174045563, -0.05521542578935623, 0.010931475088000298, 0.01801372691988945, 0.03176997974514961, 0.001472369534894824, -0.020273903384804726, 0.013688205741345882, -0.04531993344426155, -0.0012628401163965464, -0.005697176791727543, 0.017566140741109848, 0.022820208221673965, 0.025608178228139877, -0.02581440657377243, -0.043845757842063904, 0.024303561076521873, 0.010251701809465885, -0.016830794513225555, -0.03834298625588417, -0.027660353109240532, -0.009660998359322548, -0.006618755869567394, -0.006323026027530432, -0.005312430206686258, -0.013993442058563232, 0.004188080783933401, 0.006374924443662167, -0.01713910512626171, 0.035835541784763336, -0.03139331191778183, -0.03481319174170494, -0.03940946236252785, 0.020961077883839607, -0.008254610933363438, 0.009516938589513302, -0.00009686138218967244, -0.0007756931590847671, 0.0307342279702425, 0.05751217156648636, 0.014177670702338219, 0.03739206865429878, -0.006928746588528156, 0.01969207637012005, -0.024919606745243073, -0.004083818290382624, -0.06653030961751938, 0.030911993235349655, -0.04255111515522003, -0.009397892281413078, -0.005209500435739756, 0.04059880971908569, -0.022157447412610054, -0.0155375050380826, -0.042673543095588684, 0.026050500571727753, -0.034542396664619446, -0.043509263545274734, -0.015593371354043484, -0.018116451799869537, 0.0593891479074955, 0.006440339144319296, -0.00021012674551457167, 0.0027576202992349863, -0.019298909232020378, 0.006474799010902643, -0.029532408341765404, -0.016832737252116203, -0.0076732574962079525, -0.00870248582214117, -0.025348104536533356, 0.008650624193251133, 0.020709136500954628, 0.030726712197065353, 0.015049430541694164, -0.00855827983468771, -0.02078731171786785, -0.0008316917228512466, -0.00440655741840601, 0.05259794741868973, 0.06279321759939194, -0.0036486198659986258, 0.0008606923511251807, -0.018326137214899063, -0.0004325921763665974, -0.016829507425427437, -0.017542878165841103, -0.009941804222762585, -0.029000869020819664, -0.018506228923797607, -0.055239852517843246, 0.047568436712026596, 0.03216534107923508, 0.006376595702022314, 0.01858513057231903, 0.003632359905168414, 0.002412662608548999, -0.02123819850385189, 0.04949222505092621, 0.0721697136759758, -0.06524671614170074, -0.005875651724636555, 0.0017161667346954346, 0.002795192413032055, 0.0026054030749946833, 0.007228067610412836, -0.019891124218702316, 0.0044489274732768536, -0.024926872923970222, 0.010250428691506386, -0.03079497627913952, -0.036474645137786865, -0.020401423797011375, 0.009111236780881882, -0.014194969087839127, 0.0048278579488396645, -0.0005708290264010429, -0.016249418258666992, -0.018395712599158287, -0.018744392320513725, 0.016374332830309868, -0.03482574597001076, 0.005745392758399248, 0.001500319573096931, -0.02254980057477951, -0.0042791226878762245, -0.06109929084777832, 0.026494767516851425, 0.027966860681772232, -0.011026713997125626, -0.0026598097756505013, -0.04874799773097038, 0.006253303959965706, 0.019117170944809914, 0.035059310495853424, -0.012570202350616455, -0.029323510825634003, -0.01744050160050392, 0.01901955157518387, -0.02494753524661064, 0.020001640543341637, -0.005944219417870045, -0.0020067838486284018, 0.05495667830109596, 0.03031870909035206, 0.009201918728649616, 0.019232386723160744, -0.034519340842962265, -0.02780572511255741, 0.05292634665966034, -0.06381398439407349, -0.01572977565228939, -0.01923242025077343, -0.043734341859817505, 0.020992038771510124, 0.012667806819081306, -0.002185296034440398, -0.04329904168844223, 0.06077425926923752, 0.020265068858861923, 0.04222426190972328, 0.07288281619548798, 0.01249692216515541, 0.019494690001010895, -0.039573535323143005, -0.00826655700802803, -0.09534161537885666, -0.018912270665168762, 0.016778862103819847, -0.021632201969623566, -0.0038751086685806513, 0.019134825095534325, -0.05129307880997658, 0.02121656760573387, -0.06016029790043831, -0.03695734217762947, 0.05672802776098251, -0.01392192393541336, -0.01379445381462574, 0.01665925793349743, -0.05375880375504494, 0.03239899501204491, 0.05221704766154289, -0.04281739518046379, -0.0026708608493208885, -0.013741916045546532, 0.06281490623950958, -0.006467245984822512, 0.02634112909436226, -0.027634335681796074, -0.024638505652546883, 0.07059075683355331, 0.0071570053696632385, 0.018379956483840942, 0.041427385061979294, -0.0327787809073925, 0.038827985525131226, 0.014813754707574844, -0.0039054700173437595, 0.00930773839354515, -0.004035807214677334, -0.0014790110290050507, -0.06103784218430519, 0.040947917848825455, 0.027557367458939552, -0.03224024549126625, -0.0389631912112236, 0.0659344345331192, 0.007753373123705387, -0.03708747774362564, -0.06560749560594559, 0.02102772146463394, -0.0541444830596447, -0.024676717817783356, -0.0035438172053545713, -0.0036776820197701454, -0.0689011886715889, 0.05390673503279686, -0.008765804581344128, 0.006938489619642496, 0.07283232361078262, 0.007274253759533167, 0.009455216117203236, 0.00982220284640789, 0.067684106528759, 0.07364378124475479, 0.02712216228246689, -0.00798150897026062, 0.0701272115111351, -0.02644144557416439, -0.04299091547727585, 0.0057591721415519714, -0.03682687506079674, -0.04044404625892639, -0.011874435469508171, -0.002543345093727112, 0.07045061141252518, -0.021521110087633133, 0.06998234987258911, -0.035400789231061935, -0.02236339822411537, 0.004235700238496065, 0.013068035244941711, 0.008792533539235592, 0.01610613614320755, -0.0003567825478967279, 0.030775105580687523, -0.035093244165182114, -0.04034589231014252, 0.01867145486176014, -0.007592488080263138, -0.004310115706175566, 0.02900608628988266, -0.013499743305146694, 0.038977690041065216, -0.008168446831405163, 0.040906861424446106, 0.06424140185117722, -0.02046058140695095, 0.010267413221299648, -0.026072345674037933, 0.020107261836528778, 0.003861341392621398, 0.02300264872610569, -0.028243644163012505, -0.02015286684036255, 0.019669905304908752, -0.05371551960706711, 0.017943162471055984, -0.024829361587762833, -0.014503836631774902, 0.02916422113776207, -0.02392588183283806, 0.01651887409389019, 0.030069908127188683, -0.0035538505762815475, -0.028842270374298096, -0.04540673643350601, -0.06158861145377159, -0.028800472617149353, -0.08514600247144699, -0.0019717004615813494, 0.02225254848599434, 0.006957544945180416, -0.017701584845781326, -0.025336306542158127, -0.0035542300902307034, 0.0018612017156556249, 0.06085376814007759, -0.07449261099100113, -0.03503342717885971, 0.016140146180987358, 0.002304441761225462, 0.029145510867238045, 0.02030656486749649, 0.056436676532030106, -0.00696597620844841, -0.02286095730960369, -0.003841947764158249, 0.010210132226347923, 0.05840964987874031, 0.004944176413118839, 0.009251225739717484, -0.08331536501646042, 0.04824502766132355, -0.012786902487277985, -0.03851158171892166, -0.06890218704938889, -0.0014035857748240232, 0.04682041332125664, -0.009987067431211472, 0.05898630619049072, -0.025546664372086525, 0.0035498652141541243, -0.051346685737371445, -0.04259008914232254, 0.008590237237513065, 0.003178881946951151, 0.04676135629415512, -0.03400520607829094, 0.08150950819253922, 0.01263002585619688, -0.018078217282891273, -0.030075067654252052, -0.009631089866161346, -0.008953251875936985, -0.0005516986711882055, -0.029471831396222115, -0.015194888226687908, -0.03990987315773964, -0.08752766251564026, -0.046050142496824265, 0.023035110905766487, -0.0406772755086422, -0.026418475434184074, 0.03248852118849754, 0.04064267873764038, -0.027822956442832947, -0.0013547149719670415, -0.030891401693224907, 0.030598493292927742, -0.02309459261596203, -0.009127175435423851, -0.02829626016318798, 0.017507946118712425, 0.019303927198052406, -0.009726140648126602, 0.04020995274186134, -0.04217278212308884, 0.000013095163012621924, -0.030448444187641144, 0.0379486083984375, 0.06349936127662659, -0.00038094090996310115, -0.006452605593949556 ]
[ -0.0566432923078537, -0.039627425372600555, -0.02225343883037567, -0.0028860915917903185, 0.06461043655872345, -0.05186928063631058, -0.02698003314435482, 0.02062353305518627, 0.005051175132393837, -0.002416258677840233, -0.002507164841517806, -0.052401598542928696, -0.018855685368180275, 0.014149226248264313, 0.07218626141548157, -0.01073597464710474, 0.02697729505598545, -0.06570488959550858, -0.027964163571596146, 0.04922237619757652, -0.0066930861212313175, -0.0102841816842556, -0.04951261356472969, -0.040607500821352005, 0.00415133498609066, 0.02745724655687809, 0.010757865384221077, -0.03358958289027214, -0.02290632389485836, -0.1981176733970642, 0.014336034655570984, -0.018754441291093826, 0.034712377935647964, 0.00467096921056509, 0.01929340325295925, 0.038055822253227234, 0.025791868567466736, 0.033593449741601944, -0.020239541307091713, 0.051820576190948486, 0.015425804071128368, 0.020318441092967987, -0.07576683908700943, -0.003442253451794386, 0.02798602543771267, 0.002362605184316635, 0.009534748271107674, 0.0012185923987999558, 0.012830921448767185, 0.04826384782791138, -0.061081863939762115, -0.0063107493333518505, 0.012540111318230629, 0.004553445149213076, 0.012170796282589436, 0.006687186658382416, 0.043379612267017365, 0.07003190368413925, 0.023605864495038986, 0.02527572028338909, -0.008977186866104603, -0.005302011966705322, -0.1070418581366539, 0.07872641831636429, -0.007545451167970896, 0.03430552780628204, -0.03763711079955101, -0.0050578732043504715, 0.011869116686284542, 0.0669088140130043, 0.019193299114704132, -0.01659422740340233, -0.009829441085457802, 0.06850224733352661, 0.054474834352731705, -0.009055577218532562, 0.0040503558702766895, 0.03019052743911743, 0.012774234637618065, -0.024985596537590027, -0.0793551355600357, -0.009669042192399502, -0.023879777640104294, -0.023102929815649986, -0.03107599914073944, 0.022511780261993408, -0.022081799805164337, 0.053653039038181305, 0.029602231457829475, 0.024750500917434692, 0.01633109338581562, 0.022702373564243317, 0.02365117333829403, 0.03297368064522743, -0.09243036061525345, -0.04927920177578926, -0.01626085676252842, 0.03956950455904007, -0.016100892797112465, 0.4286879897117615, -0.02193421497941017, 0.015156939625740051, 0.045310962945222855, 0.05132971331477165, -0.0013216231018304825, -0.016807343810796738, -0.0008340633939951658, -0.0486287996172905, 0.014820708893239498, -0.02202954888343811, 0.028358779847621918, 0.013243837282061577, 0.03431934118270874, -0.0683801919221878, 0.010586888529360294, 0.05358664318919182, 0.011435151100158691, 0.02796175703406334, -0.006860776804387569, -0.00002617075188027229, -0.03955762833356857, 0.013155845925211906, 0.020254237577319145, 0.008185075595974922, 0.003644663840532303, -0.037488553673028946, 0.041455578058958054, 0.037074536085128784, 0.023360280320048332, 0.0010473931906744838, 0.05320418253540993, -0.006635667290538549, -0.12548843026161194, -0.006964808329939842, 0.0023987952154129744, 0.002117506694048643, 0.03856533765792847, -0.030233822762966156, -0.007535040378570557, 0.036244235932826996, -0.021728405728936195, -0.013531966134905815, 0.04619981348514557, -0.04114953428506851, -0.06447187811136246, 0.15365202724933624, 0.019274873659014702, -0.03085174597799778, -0.00974478479474783, -0.07377380132675171, 0.0001883110380731523, 0.016110951080918312, 0.004449182655662298, -0.05930059030652046, 0.03154530003666878, 0.04040314629673958, 0.07279608398675919, -0.0367572046816349, -0.06336186826229095, -0.029136165976524353, -0.024525288492441177, -0.03653761371970177, -0.03261405602097511, 0.03732415661215782, 0.04975687339901924, -0.11512140929698944, -0.04400363937020302, 0.0435158833861351, 0.03532247990369797, -0.08757110685110092, 0.022954348474740982, 0.022968079894781113, -0.04637603461742401, 0.003568398766219616, 0.06509072333574295, -0.014224722050130367, -0.03405606374144554, 0.0030522868037223816, 0.057548873126506805, 0.021190183237195015, 0.01107694674283266, -0.0006784283905290067, -0.03439531475305557, -0.010458504781126976, -0.06670190393924713, -0.06947176158428192, -0.05084764212369919, 0.025115670636296272, 0.009697436355054379, -0.012896828353404999, 0.008418269455432892, -0.02159140631556511, -0.08492426574230194, 0.0668986439704895, -0.03435031697154045, -0.03459726646542549, 0.012026728130877018, 0.013373472727835178, -0.022821344435214996, -0.04757913947105408, 0.034737441688776016, 0.029142774641513824, -0.000677318312227726, 0.07236121594905853, -0.016539080068469048, 0.030079560354351997, 0.018875766545534134, -0.03501652181148529, 0.08177731186151505, 0.023921389132738113, -0.0051397718489170074, -0.02229304611682892, -0.022303616628050804, 0.000009734010745887645, 0.006018825341016054, -0.024356620386242867, 0.006086138542741537, -0.009267836809158325, 0.01666620559990406, 0.02624998241662979, -0.01867442950606346, 0.007650449872016907, -0.017430612817406654, -0.34860262274742126, -0.019495345652103424, -0.02044675499200821, 0.01820347271859646, 0.0065338402055203915, -0.022811591625213623, 0.0036767388228327036, -0.016397956758737564, 0.013765150681138039, 0.01722184382379055, 0.0942966639995575, 0.01964242197573185, 0.014581067487597466, -0.0985734835267067, 0.012908034026622772, 0.0038734024856239557, -0.03769395500421524, -0.006090344861149788, -0.027722107246518135, -0.0016402442706748843, 0.028615202754735947, -0.02226627990603447, -0.05847226083278656, -0.017917094752192497, 0.011259709484875202, -0.025158770382404327, 0.1201036125421524, 0.0006302098045125604, 0.04063892737030983, -0.06732595711946487, 0.03106079250574112, 0.0017238060245290399, -0.019664308056235313, -0.11820069700479507, 0.004912078846246004, -0.038121145218610764, 0.020973864942789078, 0.030992183834314346, -0.014343956485390663, -0.048631951212882996, -0.09662175178527832, 0.03406532108783722, -0.028326885774731636, -0.055453650653362274, -0.018793489784002304, 0.01283709891140461, -0.021533813327550888, -0.03900235891342163, -0.016301020979881287, 0.07053490728139877, -0.009054910391569138, 0.010863959789276123, 0.027928480878472328, 0.027398258447647095, 0.020375080406665802, -0.030063793063163757, -0.09857393801212311, 0.014600370079278946, -0.010903419926762581, -0.022407565265893936, 0.008848819881677628, 0.017625780776143074, 0.03774208575487137, -0.045439958572387695, 0.00965015310794115, 0.004212495405226946, 0.017417697235941887, 0.0015509029617533088, 0.012189608998596668, -0.0477503277361393, -0.004755397792905569, 0.0600491464138031, -0.014634310267865658, 0.01843823678791523, 0.03406025469303131, 0.03869304805994034, -0.023477980867028236, 0.038286540657281876, 0.05177917703986168, 0.006287030875682831, 0.02129320800304413, 0.02840656228363514, 0.009488354437053204, -0.02386251837015152, 0.00801784172654152, 0.06027870997786522, 0.028725409880280495, -0.04338248446583748, 0.05234774947166443, 0.019111309200525284, 0.012996749021112919, -0.017384445294737816, -0.041415922343730927, -0.04779978096485138, 0.060113575309515, -0.007672027684748173, -0.27786868810653687, 0.04502011835575104, 0.03658681362867355, 0.04074837639927864, -0.010304344817996025, -0.033645499497652054, -0.0011704802745953202, -0.028122881427407265, 0.031116515398025513, 0.004434986039996147, 0.0154560012742877, 0.046926237642765045, -0.008668879047036171, -0.004660188686102629, 0.0011379985371604562, 0.00837467610836029, 0.07099360972642899, 0.025995204225182533, 0.038938142359256744, -0.005278672557324171, 0.02354421652853489, -0.017907297238707542, 0.13638287782669067, 0.044486358761787415, 0.009993965737521648, 0.041720613837242126, -0.0031104721128940582, 0.005385125055909157, 0.08392193913459778, 0.008826373144984245, -0.014959086664021015, -0.0048784734681248665, 0.0035782726481556892, 0.04206820949912071, 0.01026700809597969, -0.08367785811424255, -0.012358322739601135, 0.052644405514001846, 0.00808021891862154, -0.03509477153420448, 0.018563585355877876, -0.010949880816042423, -0.07304991036653519, 0.03158843517303467, 0.06315314024686813, 0.011451516300439835, -0.013326394371688366, -0.03869202360510826, -0.06118369847536087, -0.017695121467113495, -0.03476900979876518, -0.03757476806640625, -0.008935607969760895, -0.018995048478245735, -0.012186165899038315, 0.07671735435724258, 0.04217742010951042, -0.016459912061691284, 0.056872740387916565, 0.004882557317614555, -0.016267651692032814, -0.04418203607201576, 0.037565458565950394, 0.022493338212370872, 0.009336770512163639 ]
[ 0.00506084319204092, 0.023453470319509506, -0.03153428062796593, 0.05594640597701073, -0.0017830664291977882, 0.023919543251395226, -0.0036239170003682375, 0.007093932945281267, -0.04061232879757881, -0.01862541399896145, -0.03183280676603317, 0.00910995714366436, 0.0238579660654068, -0.024236038327217102, 0.0277080237865448, -0.0032766598742455244, -0.010894116014242172, -0.01540637668222189, 0.03301696479320526, 0.01578248105943203, -0.010904102586209774, 0.008132820948958397, 0.013220659457147121, 0.024685775861144066, -0.00010368149378336966, 0.05546478554606438, -0.0312055554240942, -0.01071970909833908, 0.008685230277478695, -0.1060047298669815, -0.024814963340759277, -0.010923686437308788, -0.001117670675739646, -0.01599002629518509, -0.026596980169415474, 0.028892436996102333, -0.026477258652448654, -0.013633685186505318, -0.06371037662029266, -0.0017182276351377368, 0.0635996088385582, -0.015626806765794754, -0.010558754205703735, -0.014657477848231792, -0.03346133977174759, -0.031070522964000702, 0.005178320221602917, -0.022920899093151093, -0.014354011975228786, 0.011204489506781101, -0.03174011781811714, -0.025373104959726334, -0.023693183436989784, 0.024452591314911842, 0.01919204369187355, 0.012219423428177834, -0.0102538475766778, 0.03442814201116562, -0.018330346792936325, -0.03195847570896149, 0.04243653640151024, -0.006457116454839706, -0.01058902870863676, -0.03417503833770752, 0.004996131639927626, -0.011954149231314659, -0.012675267644226551, 0.0015853306977078319, 0.019359974190592766, -0.014139128848910332, 0.006435511168092489, 0.01898971199989319, -0.03647352755069733, -0.030188221484422684, -0.022138632833957672, 0.015130546875298023, 0.029157500714063644, -0.009633422829210758, -0.016497572883963585, 0.010400374419987202, -0.049004003405570984, 0.005184141453355551, -0.001654015388339758, 0.011819367296993732, -0.0067465961910784245, 0.0020135981030762196, -0.012568416073918343, 0.04150386154651642, 0.05367272347211838, 0.0047079771757125854, -0.023237166926264763, 0.016046850010752678, -0.04983174428343773, 0.011187045834958553, -0.0746997594833374, 0.0035650432109832764, -0.04060040041804314, -0.020056817680597305, 0.0005969043704681098, 0.8125808238983154, 0.002660133643075824, 0.016066208481788635, 0.026052327826619148, 0.04072380065917969, -0.012125957757234573, -0.0306203942745924, 0.01263310294598341, -0.011126108467578888, -0.017557453364133835, -0.0016964174574241042, 0.051915377378463745, 0.046932049095630646, 0.03505300357937813, -0.0025743425358086824, 0.021540017798542976, 0.05705532059073448, 0.01708696223795414, -0.018569128587841988, -0.019197244197130203, 0.04788462445139885, 0.04323346167802811, -0.014712532050907612, 0.007148761302232742, 0.0033021930139511824, 0.045720502734184265, -0.21211443841457367, -0.026283184066414833, -6.954705062780552e-33, 0.032653599977493286, -0.026545509696006775, 0.08364363759756088, -0.012919914908707142, 0.02123974822461605, 0.0019592277240008116, -0.00612432137131691, -0.012252147309482098, 0.03136960044503212, -0.026208270341157913, -0.0030442739371210337, 0.016266312450170517, 0.007750269491225481, -0.007844660431146622, 0.026480624452233315, -0.030768387019634247, -0.005263666156679392, 0.02397991716861725, 0.01895088143646717, -0.020656442269682884, 0.029167525470256805, 0.019535420462489128, -0.018506323918700218, 0.03651054576039314, -0.006802874617278576, 0.011519346386194229, 0.02909442037343979, 0.006351970601826906, -0.02477167174220085, -0.03720233589410782, -0.011970818042755127, -0.035481974482536316, -0.015440822578966618, -0.0297250859439373, 0.06211915239691734, -0.04840520769357681, -0.06385495513677597, 0.0034298005048185587, -0.02384304627776146, -0.04087623953819275, -0.017445191740989685, -0.023252712562680244, -0.026105739176273346, -0.0025624206755310297, -0.04857112094759941, 0.027143165469169617, 0.04024811089038849, 0.014801234938204288, 0.00305221532471478, -0.013845715671777725, 0.029569996520876884, 0.019304608926177025, -0.006401261780411005, -0.005679653026163578, -0.0029614155646413565, 0.038936685770750046, 0.03224284574389458, 0.005327832885086536, -0.010471398010849953, 0.00767234293743968, 0.0298585407435894, -0.032928623259067535, 0.009963380172848701, 0.03093530610203743, 0.015500159002840519, 0.009459326975047588, 0.001902723335660994, 0.019638944417238235, 0.018036790192127228, 0.007379261311143637, -0.06305935233831406, 0.02632002718746662, 0.004863215144723654, -0.021932946518063545, 0.04900272563099861, -0.011276889592409134, 0.03039955534040928, 0.0012392252683639526, 0.018640020862221718, 0.020028986036777496, 0.00008363361848751083, -0.02947811782360077, -0.03781978785991669, -0.04668907821178436, -0.05851233750581741, 0.004997687879949808, 0.01032165065407753, -0.0040693264454603195, -0.011551197618246078, 0.01591363735496998, 0.020298967137932777, 0.05642025172710419, 0.015157239511609077, -0.032342057675123215, -0.022632526233792305, 7.192414265087804e-33, -0.02338697388768196, -0.042284052819013596, 0.02002885937690735, -0.019237997010350227, 0.05315285176038742, -0.022965900599956512, 0.03215546905994415, 0.04934674873948097, -0.031272534281015396, 0.045644354075193405, -0.002072006929665804, -0.034615352749824524, -0.03928076848387718, 0.025166140869259834, 0.04329404607415199, 0.021140463650226593, 0.027019405737519264, -0.004035289399325848, 0.04415535554289818, 0.018809540197253227, -0.0005977709079161286, 0.02967369183897972, 0.005842423066496849, 0.011282742023468018, -0.0028955808375030756, 0.026418128982186317, -0.0005183572648093104, -0.0017775159794837236, -0.016328172758221626, 0.006409012246876955, 0.004078671336174011, -0.05714006721973419, -0.017675856128335, -0.01761442981660366, -0.06482426077127457, 0.025131158530712128, -0.007806218694895506, -0.003163709305226803, 0.010639372281730175, -0.033008474856615067, 0.038026683032512665, -0.00041060548392124474, -0.004653967451304197, 0.038299817591905594, 0.004772233311086893, -0.0002615082776173949, -0.023503899574279785, 0.018232429400086403, -0.026754014194011688, -0.011932792142033577, 0.013191993348300457, 0.03479266166687012, -0.0003857119008898735, 0.010269696824252605, 0.047689590603113174, -0.026688171550631523, 0.008190621621906757, -0.028991080820560455, -0.0547151081264019, -0.023511607199907303, -0.02430599555373192, 0.0054514603689312935, -0.019947296008467674, 0.017581384629011154, -0.01845201663672924, -0.024220973253250122, 0.002661757403984666, -0.014497673138976097, -0.034430164843797684, 0.008344542235136032, -0.03187243267893791, 0.00855772104114294, -0.007759891916066408, 0.057771407067775726, 0.012793480418622494, -0.014381574466824532, -0.012430643662810326, 0.0037828681524842978, -0.003227771958336234, 0.012537442147731781, 0.032017599791288376, 0.005973387975245714, 0.018352612853050232, -0.04119514301419258, 0.024699559435248375, 0.030869195237755775, -0.030191607773303986, -0.009737526997923851, 0.039206914603710175, 0.021043483167886734, -0.019221177324652672, -0.04879111051559448, -0.04307955503463745, 0.029272079467773438, -0.02273143082857132, -1.2513817537751493e-8, -0.0479653961956501, 0.014202066697180271, -0.018708936870098114, 0.006548123899847269, 0.038523681461811066, -0.011993206106126308, 0.0011812682496383786, -0.009189093485474586, 0.036557864397764206, 0.011515522375702858, 0.07096119970083237, -0.04586230590939522, 0.016285721212625504, -0.006194794084876776, 0.019887562841176987, -0.04985712096095085, -0.002996285678818822, 0.009115024469792843, 0.015970755368471146, -0.02269813045859337, 0.00854914914816618, 0.040961481630802155, -0.027529319748282433, -0.005299365613609552, 0.020591076463460922, 0.023149054497480392, 0.006185748148709536, -0.05357273668050766, -0.01571221835911274, -0.02117503061890602, 0.022345788776874542, -0.024903617799282074, 0.002941965591162443, 0.011988762766122818, -0.053431328386068344, -0.03056083433330059, 0.0661306157708168, 0.017693061381578445, 0.004370481241494417, 0.04220365360379219, -0.03649332746863365, 0.02354930154979229, 0.0012187989195808768, -0.020472239702939987, -0.02307829260826111, 0.014241675846278667, -0.04288233444094658, 0.02176506258547306, 0.03463311865925789, -0.017338963225483894, 0.03366560488939285, -0.017342623323202133, 0.0018015069654211402, 0.01023132260888815, 0.03668693080544472, 0.019368410110473633, 0.012321533635258675, -0.03108147345483303, -0.044387802481651306, 0.009092723950743675, 0.02706729993224144, -0.04096267372369766, 0.0025556718464940786, -0.015829989686608315 ]
materialize-querying-json-file
https://markhneedham.com/blog/2020/12/17/materialize-querying-json-file
false
2020-12-31 00:44:37
Materialize: Unable to automatically determine a timestamp for your query; this can happen if your query depends on non-materialized sources
[ "materialize" ]
[ "materialize" ]
This is another post describing https://markhneedham.com/blog/tag/materialize/[my exploration^] of https://materialize.com/[Materialize^], a SQL streaming database. In this post I'm going to explain a confusing (to me at least) error message that you might come across when you're getting started. As I mentioned in https://markhneedham.com/blog/2020/12/17/materialize-querying-json-file/[my first post about Materialize^], the general idea is that you create a source around a data resource and then a view on top of that. Those views can either be https://materialize.com/docs/overview/api-components/#materialized-views[materialized^] or https://materialize.com/docs/overview/api-components/#non-materialized-views[non-materialized^]. * A materialized view embeds a query like a traditional SQL view, but—unlike a SQL view—compute and incrementally update the results of the embedded query. * A non-materialized view stores a verbatim query, and provides a shorthand for performing the query. Before we decide what query the view is going to embed, we need to create a source. In this post, we'll use the following file that contains one JSON document: .data/covid_sample_small.json [source,json] ---- {"id": "1341755954614861826", "conversation_id": "1341755954614861826", "created_at": "2020-12-23 14:42:02 GMT", "date": "2020-12-23", "time": "14:42:02", "timezone": "+0000", "user_id": 856240505826496513, "username": "suriyasubraman", "name": "Suriya Subramanian", "place": "", "tweet": "Impact of COVID-19 On Internet of Things (IoT) Networks Market 2020 Industry Challenges ... https://t.co/ndGN2xRKzv #iot #data #internetofthings", "language": "en", "mentions": [], "urls": ["http://dlvr.it/RpCyyv"], "photos": [], "replies_count": 0, "retweets_count": 0, "likes_count": 0, "hashtags": ["iot", "data", "internetofthings"], "cashtags": [], "link": "https://twitter.com/SuriyaSubraman/status/1341755954614861826", "retweet": false, "quote_url": "", "video": 0, "thumbnail": "", "near": "London", "geo": "", "source": "", "user_rt_id": "", "user_rt": "", "retweet_id": "", "reply_to": [], "retweet_date": "", "translate": "", "trans_src": "", "trans_dest": ""} ---- [NOTE] ==== For brevity's sake, I'm not including instructions for how to install or connect to Materialize in this post. If you want to learn how to do that, see https://markhneedham.com/blog/2020/12/17/materialize-querying-json-file/[my post about querying JSON files with Materialize^]. ==== We can create a source for this file by running the following query: .CREATE SOURCE [source,sql] ---- CREATE SOURCE covid_sample_source FROM FILE '/data/covid_sample_small.json' WITH(tail=true) FORMAT TEXT; ---- Next, we're going to create a materialized view on top of this source so that we can query the data. At the moment we don't know which fields to include in that view, so let's see what we've got to work with, by running the following query: [source,sql] ---- SELECT * FROM covid_sample_source; ---- .Results |=== | ERROR: Unable to automatically determine a timestamp for your query; this can happen if your query depends on non-materialized sources |=== Hmmm, that's not what I expected to happen! I couldn't find any documentation explaining what to do about this error, so a trip to the https://materialize.com/s/chat[Materialize User Slack^] was needed! In a message on there, https://twitter.com/frankmcsherry[Frank McSherry^] pointed out that Materialize needs to determine a time for the query since the source represents a changing source of data. If we wrap the query in a materialized view this problem is taken care for us, otherwise we need to specify a timestamp using the `AS OF` syntax. Let's give that a try: [source,sql] ---- SELECT * FROM covid_sample_source AS OF 1; ---- .Results [opts="header", cols="5,1"] |=== | text | mz_line_no | {"id": "1341755954614861826", "conversation_id": "1341755954614861826", "created_at": "2020-12-23 14:42:02 GMT", "date": "2020-12-23", "time": "14:42:02", "timezone": "+0000", "user_id": "856240505826496513", "username": "suriyasubraman", "name": "Suriya Subramanian", "place": "", "tweet": "Impact of COVID-19 On Internet of Things (IoT) Networks Market 2020 Industry Challenges ... https://t.co/ndGN2xRKzv #iot #data #internetofthings", "language": "en", "mentions": [], "urls": ["http://dlvr.it/RpCyyv"], "photos": [], "replies_count": 0, "retweets_count": 0, "likes_count": 0, "hashtags": ["iot", "data", "internetofthings"], "cashtags": [], "link": "https://twitter.com/SuriyaSubraman/status/1341755954614861826", "retweet": false, "quote_url": "", "video": 0, "thumbnail": "", "near": "London", "geo": "", "source": "", "user_rt_id": "", "user_rt": "", "retweet_id": "", "reply_to": [], "retweet_date": "", "translate": "", "trans_src": "", "trans_dest": ""} | 1 |=== That's more like it! Now we can update our query to extract just the fields that we want using the https://materialize.com/docs/sql/functions/#json[JSON operators^]: [source,sql] ---- SELECT val->>'id' AS id, val->>'tweet' AS tweet, val->'hashtags' AS hashtags, val->>'date' AS date FROM (SELECT text::jsonb AS val FROM covid_sample_source) AS OF 1; ---- .Results [opts="header"] |=== |id | tweet | hashtags | date |1341755954614861826 | Impact of COVID-19 On Internet of Things (IoT) Networks Market 2020 Industry Challenges ... https://t.co/ndGN2xRKzv #iot #data #internetofthings | ["iot","data","internetofthings"] | 2020-12-23 |=== Once we're happy with our query, we can create a materialized view around the query, making sure to remove the `AS OF` bit: [source, sql] ---- CREATE MATERIALIZED VIEW covid_sample AS SELECT val->>'id' AS id, val->>'tweet' AS tweet, val->'hashtags' AS hashtags, val->>'date' AS date FROM (SELECT text::jsonb val FROM covid_sample_source); ---- We can now query the materialized view like so: [source,sql] ---- SELECT * FROM covid_sample; ----
In this post we'll learn how to workaround an initially confusing error message when querying with the Materialize SQL Streaming database.
null
[ 0.007230040151625872, -0.01776370219886303, 0.01684468798339367, 0.05585909262299538, 0.0713856890797615, -0.005529565736651421, 0.020115386694669724, 0.04702712222933769, 0.014458535239100456, -0.01968231424689293, -0.01474471390247345, -0.017293348908424377, -0.06693551689386368, 0.03391604498028755, -0.01800760067999363, 0.08172019571065903, 0.05455494299530983, 0.02219347283244133, 0.04025799408555031, 0.013725277967751026, 0.015292417258024216, 0.04039427265524864, 0.03136710822582245, 0.011654011905193329, 0.02803783491253853, 0.024656351655721664, -0.019243648275732994, 0.012124241329729557, -0.06468860059976578, -0.018352625891566277, 0.030717670917510986, -0.0067413016222417355, 0.004048705101013184, -0.008473989553749561, 0.025714818388223648, 0.023202693089842796, -0.03612104430794716, 0.03792145848274231, -0.014502983540296555, 0.004026861395686865, -0.07222484052181244, 0.01882333494722843, 0.014590051956474781, 0.02149595133960247, -0.03760002925992012, 0.004999971482902765, -0.03309326246380806, 0.01927110366523266, -0.027177201583981514, -0.004100203979760408, -0.0470941886305809, 0.047889333218336105, -0.0025246820878237486, 0.015320654027163982, 0.01573386788368225, 0.06617747992277145, 0.010534257628023624, -0.0759047120809555, 0.004110327456146479, -0.03784026950597763, 0.04045172035694122, -0.0034772860817611217, 0.00337146851234138, -0.015760034322738647, 0.01741713099181652, -0.023358376696705818, -0.011930539272725582, 0.06291524320840836, -0.04406271502375603, 0.01513376459479332, 0.02696710079908371, 0.025681134313344955, -0.030868755653500557, 0.02486053854227066, 0.01548636145889759, -0.024670029059052467, 0.0026670864317566156, 0.07272782921791077, 0.013193388469517231, 0.047024041414260864, -0.022588428109884262, 0.02535822242498398, 0.01638658531010151, 0.039720673114061356, -0.014048552140593529, -0.055141981691122055, -0.03429126739501953, -0.016643492504954338, -0.037928443402051926, 0.03089725412428379, 0.01845729351043701, -0.02816232480108738, 0.032142817974090576, 0.01485952828079462, -0.02901344746351242, 0.002855386584997177, 0.017501121386885643, -0.020250972360372543, -0.017245694994926453, -0.033477526158094406, -0.047063324600458145, -0.009528903290629387, 0.016766050830483437, 0.02089843712747097, -0.059980038553476334, -0.0019067367538809776, -0.05441977456212044, 0.0003820603305939585, -0.004664723761379719, -0.02797890640795231, -0.04341505840420723, 0.017911074683070183, -0.024848246946930885, 0.0011813404271379113, -0.05303434655070305, 0.06716033816337585, 0.02391335554420948, -0.04670988768339157, -0.005270692519843578, 0.019663842394948006, 0.08879298716783524, 0.02020447328686714, -0.02261250652372837, 0.05764458328485489, 0.0007157523068599403, 0.031318191438913345, -0.00849697645753622, 0.03437936305999756, -0.030704759061336517, -0.07299793511629105, -0.005658913869410753, 0.03428344801068306, -0.013012805953621864, 0.004518101457506418, 0.004707908723503351, -0.038452621549367905, 0.01573881506919861, 0.005112700164318085, 0.07043281197547913, 0.012842935509979725, -0.028243158012628555, -0.05149196833372116, 0.005963045638054609, 0.006369796581566334, 0.04001474007964134, 0.016656018793582916, 0.00625715684145689, -0.04175737500190735, -0.06225840374827385, 0.004894760437309742, 0.0278156828135252, 0.02682610973715782, 0.04667441174387932, -0.04694678634405136, 0.024905094876885414, 0.10444512218236923, 0.026736918836832047, 0.003569625085219741, -0.007340811658650637, 0.03759007528424263, 0.05863204598426819, 0.05227638781070709, 0.013703558593988419, 0.01948660984635353, -0.009583787992596626, -0.03503086417913437, 0.005093324463814497, 0.04836787283420563, 0.011402077041566372, -0.01205442100763321, -0.0438164584338665, -0.07053690403699875, 0.06563963741064072, -0.0382096953690052, -0.017995253205299377, 0.06849558651447296, 0.08635556697845459, 0.0613003671169281, 0.02979337051510811, 0.015912549570202827, -0.0969027578830719, 0.03695731982588768, 0.012932775542140007, -0.007507422473281622, 0.010912034660577774, -0.007343307603150606, 0.07343684881925583, 0.04018913954496384, -0.010338633321225643, 0.038049373775720596, -0.07658369094133377, -0.06449435651302338, -0.025913026183843613, -0.016082139685750008, 0.04693152755498886, -0.031045492738485336, 0.0037570742424577475, 0.09905881434679031, 0.0015281111700460315, 0.03952988609671593, -0.006517915986478329, 0.009824949316680431, 0.019763493910431862, -0.06360922753810883, -0.03379344195127487, 0.04279737547039986, 0.04326712712645531, 0.007567898370325565, -0.052609000355005264, 0.011901619844138622, -0.0228202436119318, -0.04507198557257652, 0.02145969308912754, -0.009151752106845379, 0.04709140211343765, 0.036752041429281235, 0.02417425997555256, -0.002231330145150423, 0.0419144369661808, -0.026684703305363655, 0.05453379824757576, 0.003879210911691189, -0.029852228239178658, -0.01142500713467598, -0.02698407880961895, 0.13283461332321167, 0.060579195618629456, -0.02637287974357605, -0.05341583117842674, 0.00682793278247118, 0.020707998424768448, -0.025203125551342964, -0.0041669742204248905, -0.03136461228132248, 0.00034664967097342014, -0.02823353372514248, -0.015238059684634209, -0.03036513179540634, 0.006740733049809933, -0.03186492249369621, -0.008900893852114677, 0.05598082020878792, -0.018458830192685127, 0.052575379610061646, 0.019070839509367943, -0.025626668706536293, -0.020350303500890732, -0.01662600412964821, -0.04371728003025055, 0.025789806619286537, -0.013506077229976654, -0.007179352454841137, 0.030230099335312843, -0.02089371532201767, -0.01348087377846241, -0.030051587149500847, -0.0482257604598999, 0.04750227928161621, 0.04326532408595085, 0.06861472129821777, -0.0317741334438324, 0.06498466432094574, -0.02508561871945858, 0.03320704400539398, -0.035546135157346725, -0.030538443475961685, -0.05010029673576355, -0.005143951624631882, 0.01168286893516779, 0.06159045547246933, 0.05293089151382446, -0.008800135925412178, -0.00597418425604701, 0.01977521926164627, 0.003084382973611355, 0.003350842511281371, 0.026242710649967194, 0.00031912242411635816, -0.00641648517921567, -0.023590141907334328, -0.014672056771814823, 0.061393413692712784, -0.03640415519475937, -0.041287608444690704, -0.015326338820159435, -0.06045350432395935, 0.034573208540678024, -0.055459197610616684, -0.03535597026348114, -0.02444135956466198, 0.02675393968820572, 0.04480110481381416, 0.005080022849142551, -0.010673383250832558, 0.10540252923965454, 0.024421630427241325, -0.00869041122496128, 0.009344547055661678, 0.005077570676803589, 0.05821691453456879, -0.03254896402359009, -0.000382220750907436, 0.07582579553127289, -0.011287026107311249, -0.016725677996873856, -0.05634377524256706, 0.027004798874258995, -0.030300315469503403, -0.2798224091529846, 0.04591143876314163, 0.00041176140075549483, -0.051081590354442596, 0.018167611211538315, -0.020118478685617447, 0.007654597517102957, -0.03572720289230347, -0.02739238739013672, 0.0016201292164623737, -0.007386824581772089, -0.038110751658678055, -0.014411276206374168, 0.03362519294023514, 0.013381337746977806, 0.032356929033994675, 0.010700586251914501, -0.019825251772999763, -0.007805804722011089, 0.03582692891359329, 0.0006230261642485857, -0.05803896114230156, -0.01454573217779398, 0.0532914437353611, 0.058114536106586456, 0.03606598451733589, -0.06877584755420685, 0.029979119077324867, -0.041914910078048706, -0.003673868952319026, 0.02134835533797741, -0.00040516527951695025, 0.013840429484844208, -0.008199680596590042, -0.021127548068761826, -0.026504693552851677, 0.033987004309892654, 0.0036563477478921413, 0.014234278351068497, -0.009710985235869884, -0.03275580331683159, -0.0287671759724617, -0.008215085603296757, 0.011228742077946663, 0.09026914089918137, 0.002206989796832204, -0.09337611496448517, 0.006219443865120411, -0.015605499967932701, 0.05712462216615677, -0.0018046480836346745, -0.06145038083195686, -0.005518270656466484, 0.023583021014928818, -0.015250952914357185, -0.0020324375946074724, -0.004933979362249374, -0.032105520367622375, -0.04854704067111015, -0.03198948875069618, -0.007248666603118181, -0.032172784209251404, -0.004853183403611183, -0.03275133669376373, -0.011693963780999184, -0.053291384130716324, -0.054596979171037674, -0.024791395291686058, 0.07937441021203995, 0.04007335752248764, -0.009736606851220131, 0.026990270242094994, -0.0191656444221735, -0.11025562137365341, 0.011343811638653278, -0.008250814862549305, -0.024010522291064262, 0.0034562430810183287, -0.013120962306857109, 0.0390230230987072, -0.04277341067790985, -0.03615560010075569, 0.004853116348385811, 0.006123143248260021, 0.006795692723244429, -0.014997665770351887, 0.0456530936062336, -0.016516897827386856, -0.008581763133406639, 0.0019654063507914543, 0.057720739394426346, -0.03799097612500191, -0.02735082246363163, -0.005467636976391077, -0.024821216240525246, 0.030610790476202965, 0.0019610205199569464, -0.0205461997538805, 0.007455732673406601, 0.04236547276377678, 0.028767965734004974, -0.054409630596637726, 0.02118130587041378, -0.031410668045282364, -0.02163374237716198, -0.002927181078121066, -0.043442294001579285, 0.009717945009469986, 0.018653402104973793, 0.02311132103204727, -0.011753168888390064, -0.01957857422530651, 0.007716227788478136, -0.032420989125967026, -0.0017892267787829041, 0.0016017458401620388, 0.0068288929760456085, 0.02177133597433567, 0.009390822611749172, -0.05240613594651222, -0.0346490703523159, 0.025613145902752876, 0.006525300443172455, -0.008233129046857357, -0.06192934140563011, -0.01617555320262909, -0.002694935305044055, -0.0014157063560560346, -0.0017166025936603546, 0.02220907062292099, -0.020943084731698036, 0.0008561303257010877, 0.005704997573047876, -0.01671290025115013, 0.03787257522344589, -0.03612987697124481, -0.0360911525785923, -0.014924181625247002, 0.01124208327382803, -0.006603853777050972, 0.02043362706899643, -0.004374777432531118, 0.0002629550581332296, 0.04304896295070648, 0.028416071087121964, 0.028493739664554596, 0.033040788024663925, 0.011539699509739876, 0.005280972924083471, 0.006221917923539877, -0.006070572882890701, -0.0712149515748024, 0.02780289761722088, -0.04279370605945587, -0.02252950146794319, -0.012230796739459038, 0.04445125535130501, -0.023768620565533638, 0.001342901261523366, -0.043200500309467316, 0.013812870718538761, -0.03766633942723274, -0.03571953997015953, -0.018224289640784264, -0.02026521973311901, 0.04346407949924469, -0.017879491671919823, 0.017872171476483345, 0.004606325179338455, -0.004745121579617262, 0.0176712553948164, -0.00658027408644557, -0.026641277596354485, -0.007452705409377813, 0.015889184549450874, -0.02248162403702736, -0.0014336060266941786, 0.012784641236066818, 0.028308505192399025, 0.02604171261191368, 0.00712619861587882, -0.003783667227253318, 0.011262021027505398, 0.028474023565649986, 0.05605463683605194, 0.02168230712413788, -0.013071678578853607, -0.016317453235387802, -0.01870070956647396, -0.018080182373523712, -0.02207236923277378, -0.0033128114882856607, -0.0011945307487621903, -0.008041401393711567, -0.006202502176165581, -0.059292253106832504, 0.0705215111374855, 0.005207616835832596, 0.0006107859662733972, 0.013958010822534561, 0.0045133475214242935, 0.0028790065553039312, -0.03782491758465767, 0.04647914692759514, 0.07655612379312515, -0.06380075961351395, -0.00121873093303293, 0.009379224851727486, -0.047682151198387146, -0.002569700125604868, 0.012673434801399708, -0.013478255830705166, -0.00506797106936574, -0.03644588589668274, 0.023593781515955925, -0.03713614121079445, -0.010730642825365067, -0.0003422141307964921, 0.02718682773411274, 0.010346174240112305, 0.0061273048631846905, -0.01121048629283905, 0.018098723143339157, -0.006419583689421415, -0.019714267924427986, 0.05146968737244606, -0.01492053922265768, 0.013120378367602825, -0.0009981911862269044, -0.03343413025140762, 0.024645384401082993, -0.048414457589387894, 0.02768835611641407, 0.03308945149183273, -0.015472142957150936, -0.005511340219527483, -0.03455536440014839, 0.0019243251299485564, 0.004301552195101976, 0.0523495227098465, -0.0278814435005188, -0.05650710314512253, -0.017657039687037468, 0.015813056379556656, -0.04812075197696686, 0.026136068627238274, -0.01582486554980278, -0.00516618462279439, 0.028436953201889992, 0.03575785085558891, 0.012123147957026958, -0.006525712087750435, -0.03431209176778793, -0.027864867821335793, 0.0479096993803978, -0.04589682072401047, -0.024823985993862152, -0.016434339806437492, -0.04855862259864807, 0.016414828598499298, -0.0025110291317105293, 0.010647558607161045, -0.02858232893049717, 0.05196193605661392, 0.025092357769608498, 0.03780016303062439, 0.05401899293065071, 0.022959912195801735, 0.02777250111103058, -0.050819531083106995, -0.03686843812465668, -0.10186376422643661, -0.0045290058478713036, 0.003123457310721278, -0.0014566280879080296, -0.022986045107245445, 0.000608125003054738, -0.033272746950387955, 0.01793072745203972, -0.06467216461896896, -0.036857739090919495, 0.01149490475654602, -0.004486626014113426, 0.0039727394469082355, 0.00556637067347765, -0.05939822643995285, 0.019938256591558456, 0.03215932846069336, -0.030230389907956123, -0.038898684084415436, -0.03372449055314064, 0.05305904895067215, 0.00849965214729309, 0.020911794155836105, -0.035222429782152176, -0.0032075559720396996, 0.07915689051151276, 0.01391263585537672, -0.002362617524340749, 0.0393834263086319, -0.006499723065644503, 0.030800553038716316, 0.03750969469547272, 0.0012518503936007619, 0.022533906623721123, 0.011393682099878788, -0.02841341122984886, -0.061143819242715836, 0.04355640336871147, 0.013299315236508846, -0.01545196957886219, -0.03064814954996109, 0.07382064312696457, 0.02231013961136341, -0.03792795166373253, -0.058825697749853134, -0.01384134590625763, -0.0444357730448246, -0.036241766065359116, -0.020361339673399925, -0.0052208248525857925, -0.047897014766931534, 0.05871200934052467, -0.015462592244148254, 0.0029653520323336124, 0.05838071182370186, 0.018634449690580368, 0.0034535909071564674, -0.026876172050833702, 0.06901891529560089, 0.08419584482908249, 0.042061273008584976, 0.004577391780912876, 0.06390072405338287, -0.02791425585746765, -0.0357549674808979, 0.004871048033237457, -0.04886927455663681, -0.03907013311982155, -0.009910599328577518, -0.011417808942496777, 0.07156110554933548, -0.025919374078512192, 0.08398567885160446, -0.034674253314733505, -0.012759401462972164, -0.0003942350740544498, -0.004558587446808815, 0.0030499915592372417, 0.039943791925907135, 0.012561787851154804, 0.013670414686203003, -0.025551442056894302, -0.04594507813453674, 0.004718746058642864, -0.0040438235737383366, -0.015099262818694115, 0.013320695608854294, 0.010288850404322147, 0.03553806245326996, -0.025361889973282814, 0.03283597528934479, 0.07324013859033585, -0.01689901389181614, -0.007261071354150772, -0.008866313844919205, -0.010935848578810692, -0.005580964032560587, 0.030698345974087715, -0.03097778744995594, -0.027557548135519028, 0.00867397990077734, -0.047681473195552826, 0.030274303629994392, -0.021344106644392014, -0.01544132549315691, 0.027534956112504005, -0.03159860894083977, -0.01518019288778305, 0.043120793998241425, -0.004188062157481909, -0.042468223720788956, -0.04680807143449783, -0.05698219686746597, -0.034422021359205246, -0.06391171365976334, -0.002935178577899933, 0.020623890683054924, -0.004531436134129763, -0.01732669770717621, -0.028412215411663055, -0.016301007941365242, -0.01590817980468273, 0.04747335612773895, -0.056787993758916855, -0.03415346145629883, 0.017497647553682327, 0.012956032529473305, 0.027325263246893883, 0.036771468818187714, 0.06267804652452469, -0.006560108158737421, 0.0016798618016764522, -0.014347944408655167, 0.01984749361872673, 0.041179876774549484, 0.004490867722779512, 0.02907366119325161, -0.08787550777196884, 0.020499449223279953, -0.01076415739953518, -0.04125719144940376, -0.07341111451387405, -0.00897197611629963, 0.05383512005209923, -0.03770114481449127, 0.06264915317296982, -0.006455503404140472, 0.020622193813323975, -0.03989595174789429, -0.020155195146799088, -0.019288450479507446, 0.009346190840005875, 0.04660407453775406, -0.021727317944169044, 0.058571621775627136, 0.02640879526734352, -0.019512919709086418, -0.014807003550231457, -0.002886829199269414, 0.0009363637072965503, -0.01033818069845438, -0.04975266754627228, -0.017329273745417595, -0.03841675817966461, -0.08107274770736694, -0.06308791786432266, 0.022091535851359367, -0.016337033361196518, -0.033228714019060135, 0.022292299196124077, 0.02263089083135128, -0.05918322876095772, -0.005266646388918161, -0.048479851335287094, 0.02145279571413994, -0.022169696167111397, -0.016807107254862785, -0.03243415430188179, 0.02830285206437111, 0.03810279443860054, -0.025418050587177277, 0.03324711322784424, -0.0705283135175705, 0.003436192637309432, -0.032190583646297455, 0.028695544227957726, 0.06699790060520172, 0.013417025096714497, -0.015847649425268173 ]
[ -0.06932966411113739, -0.03619833663105965, -0.03374456614255905, -0.010839086957275867, 0.02533065527677536, -0.06228248029947281, -0.03355918452143669, 0.013485684059560299, -0.011095679365098476, -0.0034295814111828804, 0.01788252219557762, -0.04848981276154518, -0.01036739069968462, 0.018006376922130585, 0.07100670039653778, 0.017604846507310867, 0.01000802218914032, -0.07342955470085144, -0.011749341152608395, 0.050373125821352005, 0.01581612601876259, -0.018446769565343857, -0.05276945233345032, -0.0544578917324543, -0.009529397822916508, 0.03846072778105736, 0.013607804663479328, -0.04780013859272003, -0.00032589019974693656, -0.18767589330673218, 0.01178794540464878, -0.011579055339097977, 0.028269842267036438, -0.0018388930475339293, 0.03437945246696472, 0.0183508712798357, 0.044427886605262756, 0.02243843860924244, 0.0030600158497691154, 0.05662961304187775, 0.0037037290167063475, 0.0011290938127785921, -0.06232146546244621, -0.028571588918566704, 0.03548772260546684, -0.0006526405923068523, 0.018583854660391808, 0.0006489724037237465, -0.012252360582351685, 0.04631189629435539, -0.06929383426904678, -0.012615338899195194, -0.008937490172684193, -0.005981610622256994, 0.014659857377409935, 0.03918591886758804, 0.03969278186559677, 0.07893276959657669, 0.008952087722718716, 0.018700964748859406, 0.034921370446681976, 0.0012249343562871218, -0.07881075143814087, 0.11011634767055511, 0.009116638451814651, 0.039387401193380356, -0.02679048478603363, -0.021618742495775223, -0.0030415982473641634, 0.05525588244199753, 0.03951691463589668, -0.0254628024995327, -0.05311587452888489, 0.07337765395641327, 0.04710543900728226, -0.014464578591287136, 0.00966236088424921, 0.0395326167345047, 0.029989849776029587, -0.01886841654777527, -0.06750130653381348, 0.01112337689846754, -0.027424901723861694, -0.041068147867918015, -0.051814619451761246, 0.02055663987994194, -0.022154562175273895, 0.04474745690822601, 0.013152104802429676, 0.004022577311843634, 0.03489404916763306, 0.014287451282143593, 0.01716158166527748, 0.023217206820845604, -0.08632194995880127, -0.03988077864050865, -0.003351879073306918, 0.043277814984321594, -0.0180702805519104, 0.4232097864151001, -0.01760193519294262, 0.013465464115142822, 0.0725865289568901, 0.03218936547636986, -0.008257175795733929, -0.01678643934428692, -0.012307926081120968, -0.05000939965248108, 0.027686016634106636, -0.034571629017591476, -0.011034994386136532, 0.002771453931927681, 0.03373917192220688, -0.04937177523970604, -0.004406583029776812, 0.015738595277071, 0.04090398550033569, 0.018301427364349365, 0.010667243972420692, -0.013909566216170788, -0.025663096457719803, 0.015150045044720173, 0.013060427270829678, 0.010705632157623768, -0.0017882680986076593, -0.05823766812682152, 0.02577042765915394, 0.045278966426849365, 0.016965651884675026, 0.009369423612952232, 0.031363651156425476, -0.0074327499605715275, -0.0912318304181099, 0.004006419330835342, 0.01001881156116724, 0.005372776184231043, 0.04010552167892456, -0.022704824805259705, 0.003816062118858099, 0.040777165442705154, -0.03534437716007233, -0.02847299911081791, 0.011848357506096363, -0.01794247329235077, -0.047191157937049866, 0.14552052319049835, 0.026731694117188454, -0.026525966823101044, -0.038946256041526794, -0.0761127695441246, -0.022288208827376366, 0.02830488048493862, -0.005903338082134724, -0.06112037971615791, 0.0276316050440073, 0.04059801623225212, 0.06947589665651321, -0.038493137806653976, -0.09107433259487152, -0.01962757110595703, 0.006777886301279068, -0.042027320712804794, -0.05863618850708008, 0.0823340117931366, 0.02132156491279602, -0.1169414073228836, -0.04351310804486275, 0.03394404426217079, 0.0430840440094471, -0.06289523839950562, 0.017967330291867256, 0.041484978049993515, -0.06008126959204674, 0.0024710195139050484, 0.0731508657336235, 0.0005601585144177079, -0.030981935560703278, 0.0010601081885397434, 0.025824833661317825, 0.015825631096959114, 0.017306413501501083, -0.004585508722811937, -0.04769352450966835, 0.00974112469702959, -0.07611451297998428, -0.09591279178857803, -0.03607897460460663, 0.022137345746159554, 0.009480107575654984, -0.027492908760905266, -0.005552597343921661, -0.01834409311413765, -0.10162952542304993, 0.08600451052188873, -0.028162680566310883, -0.044428467750549316, 0.012891711667180061, 0.018403030931949615, 0.0030645534861832857, -0.041068583726882935, 0.06277573853731155, 0.03410588949918747, -0.04059409722685814, 0.05354863405227661, -0.03987343981862068, 0.03188273310661316, 0.05009792372584343, -0.024094954133033752, 0.03910345584154129, 0.033250048756599426, -0.022504620254039764, -0.011956457979977131, -0.04654892534017563, 0.027178632095456123, 0.002259233733639121, -0.00829511322081089, 0.014150755479931831, 0.012807085178792477, 0.02864503301680088, 0.010118738748133183, -0.03419938310980797, 0.0017082466511055827, -0.019017912447452545, -0.3522951602935791, -0.03341340646147728, -0.04290725663304329, -0.008852289989590645, -0.01712678000330925, -0.04496966302394867, 0.000930438342038542, -0.002282826928421855, -0.021336577832698822, 0.019538311287760735, 0.04537411779165268, 0.014732610434293747, 0.029787078499794006, -0.08379098027944565, -0.003988967277109623, 0.0014630963560193777, -0.029959646984934807, -0.000492595718242228, -0.03773586079478264, -0.015212123282253742, 0.0017534095095470548, -0.005479038693010807, -0.03875415772199631, -0.07033280283212662, 0.03432939946651459, -0.025717874988913536, 0.12211543321609497, 0.005086563527584076, 0.034541286528110504, -0.06700832396745682, 0.060019757598638535, 0.013317706063389778, -0.027045838534832, -0.12116362154483795, -0.002805527066811919, -0.021492134779691696, 0.0022348391357809305, 0.03802204877138138, -0.030825573951005936, -0.023534776642918587, -0.06865988671779633, 0.015305140987038612, -0.039139628410339355, -0.042840953916311264, -0.002802035538479686, -0.00031450839014723897, -0.02592235803604126, 0.0027782677207142115, -0.03950127214193344, 0.09094127267599106, 0.005662381183356047, 0.004250248894095421, 0.02524515613913536, 0.04898716136813164, -0.0016974733443930745, -0.007518781814724207, -0.07372434437274933, -0.009743697941303253, 0.0031356671825051308, 0.005962858442217112, 0.024795077741146088, 0.021448180079460144, 0.03310321643948555, -0.04309513419866562, 0.004466169513761997, -0.003996770828962326, 0.017954634502530098, 0.010340147651731968, 0.01996893808245659, -0.04107270389795303, -0.03983249142765999, 0.08159481734037399, -0.03724944591522217, 0.02496105059981346, 0.010709674097597599, 0.06008163094520569, -0.027171431109309196, 0.03279129043221474, 0.0478854775428772, 0.007903081364929676, 0.03713125362992287, -0.0013531182194128633, 0.04543721303343773, -0.020160220563411713, 0.008146614767611027, 0.07751517742872238, 0.009886657819151878, -0.05014358088374138, 0.04352601617574692, -0.005466596223413944, -0.01505336444824934, -0.016024865210056305, -0.05719306692481041, -0.06208835542201996, 0.0706295296549797, -0.014415840618312359, -0.2569175660610199, 0.03850329667329788, 0.04234546795487404, 0.0575716458261013, -0.011995498090982437, -0.003931954503059387, 0.015945691615343094, -0.03661040589213371, 0.02734990045428276, 0.011925768107175827, 0.01600789465010166, 0.03408275544643402, -0.00220975442789495, -0.004031889606267214, 0.018224362283945084, -0.009877721779048443, 0.033119719475507736, 0.018530063331127167, 0.029561737552285194, 0.00269090267829597, 0.01591602712869644, -0.0009977539302781224, 0.16700275242328644, 0.05362635478377342, 0.0013936456525698304, 0.03513773903250694, 0.009980972856283188, 0.009806575253605843, 0.06748893857002258, 0.01968231610953808, -0.016184167936444283, 0.021352676674723625, 0.02183382771909237, 0.019169596955180168, 0.02044256217777729, -0.07594279199838638, -0.005202056840062141, 0.03202471509575844, 0.0290065910667181, -0.028900574892759323, 0.0069491080939769745, 0.014219265431165695, -0.035368576645851135, 0.06818971037864685, 0.06222452223300934, 0.037375565618276596, 0.0013458568137139082, -0.013136525638401508, -0.05389407277107239, -0.020769253373146057, -0.03134632110595703, -0.022417664527893066, 0.005073568318039179, -0.000987203442491591, -0.020517148077487946, 0.0711982250213623, 0.02955963835120201, -0.019765550270676613, 0.04257692024111748, 0.018092790618538857, -0.020897826179862022, -0.04736856743693352, 0.06367804855108261, 0.01858747936785221, 0.005900946445763111 ]
[ -0.03613303229212761, 0.008282081224024296, -0.014296729117631912, 0.065281443297863, 0.028526747599244118, -0.0013141595991328359, 0.01800287887454033, 0.016433369368314743, -0.043645020574331284, -0.004592033103108406, -0.021363668143749237, -0.02709360420703888, 0.036153122782707214, 0.011475714854896069, 0.011247264221310616, 0.02870887890458107, 0.004738125950098038, -0.024861497804522514, 0.021376676857471466, 0.02496563456952572, -0.027992011979222298, 0.02501554600894451, 0.004075280390679836, -0.014125590212643147, 0.02084817923605442, 0.026295427232980728, -0.027427587658166885, -0.016703130677342415, 0.033849120140075684, -0.09099412709474564, -0.022392071783542633, -0.017573487013578415, -0.019284510985016823, 0.0053389109671115875, -0.02761109545826912, 0.01605159603059292, -0.007019479293376207, -0.04253895580768585, -0.01235317625105381, 0.006939760874956846, 0.026342730969190598, -0.002014816738665104, -0.030730510130524635, -0.02294720895588398, -0.009989148005843163, -0.046075139194726944, -0.028511296957731247, -0.030519617721438408, -0.020185882225632668, -0.01663959212601185, -0.05137065052986145, -0.009709174744784832, -0.03232469782233238, 0.019028495997190475, -0.0044055357575416565, -0.010690830647945404, -0.032058291137218475, 0.03679067641496658, -0.00472776684910059, -0.02225559391081333, 0.04175496846437454, -0.04239514470100403, 0.004137795884162188, -0.017952702939510345, 0.000021704234313801862, -0.011894899420440197, -0.01837075874209404, 0.02325126715004444, 0.0182332806289196, 0.00020794119336642325, 0.007831910625100136, 0.021986739709973335, -0.04577760770916939, -0.03396746888756752, -0.0019941723439842463, 0.006042507942765951, 0.023254627361893654, -0.01402075681835413, 0.004938341211527586, 0.012643500231206417, -0.044171739369630814, 0.007072266656905413, 0.007079588249325752, 0.02317153662443161, -0.013024192303419113, -0.016097264364361763, 0.014798806980252266, 0.022282425314188004, 0.017887158319354057, -0.011886019259691238, -0.027945436537265778, 0.018633566796779633, -0.043761081993579865, 0.017875289544463158, -0.1043042242527008, -0.012321755290031433, -0.029427027329802513, -0.021785462275147438, 0.0022892144042998552, 0.8303542137145996, -0.0027989675290882587, 0.020204029977321625, 0.029055766761302948, 0.03409268707036972, -0.025325749069452286, -0.047534484416246414, 0.012630893848836422, 0.03404683992266655, -0.010856827720999718, 0.009566469117999077, 0.038613591343164444, 0.05725303664803505, 0.0230873990803957, 0.00013645889703184366, 0.02115834876894951, 0.04532616585493088, 0.004102758597582579, -0.009613207541406155, -0.0032962688710540533, 0.0376761332154274, 0.04326329007744789, -0.00936681218445301, 0.0036576304119080305, 0.004350605420768261, 0.047961898148059845, -0.18647263944149017, 0.01672140508890152, -7.492837560379364e-33, 0.0601661391556263, -0.00953617412596941, 0.04058036580681801, -0.01381281204521656, 0.03958577662706375, -0.007191688288003206, 0.016194961965084076, 0.03672236204147339, -0.0010889563709497452, -0.05062068998813629, 0.005139081738889217, -0.003364924341440201, -0.0085561228916049, 0.00119683681987226, 0.015544728375971317, -0.019160525873303413, -0.00978171918541193, 0.027931269258260727, -0.002322911052033305, -0.009347096085548401, 0.04492444545030594, 0.03172784298658371, 0.0012349565513432026, 0.038076937198638916, -0.015247468836605549, -0.001183985499665141, 0.034455928951501846, 0.027479706332087517, -0.042746227234601974, -0.03661369904875755, -0.01334812305867672, -0.014737986028194427, 0.00013925381063017994, -0.01794973947107792, 0.02861272729933262, -0.025416092947125435, -0.03549091890454292, 0.01482891570776701, -0.015124053694307804, -0.02857944741845131, -0.023864252492785454, 0.01675480604171753, -0.01735493540763855, -0.03599628061056137, -0.04769773408770561, 0.013887428678572178, 0.02754395641386509, 0.014053039252758026, -0.012012450955808163, -0.009176928550004959, 0.016102077439427376, 0.024135319516062737, -0.0033181128092110157, 0.012260115705430508, 0.009842374362051487, 0.024709008634090424, -0.0006805774173699319, -0.018770653754472733, 0.022420218214392662, -0.01954135112464428, 0.009419390000402927, -0.05785500258207321, -0.0011456119827926159, 0.04328861087560654, -0.00406248914077878, 0.007579652592539787, 0.03727024048566818, 0.022020412608981133, 0.00903045479208231, 0.021747224032878876, -0.05155571177601814, 0.01821063458919525, 0.00797008816152811, -0.011487848125398159, 0.05149932950735092, -0.022216221317648888, -0.005046397913247347, 0.0048219868913292885, 0.020638886839151382, 0.05651606619358063, -0.0033514173701405525, -0.012485592626035213, -0.0033870998304337263, -0.017244817689061165, -0.04964201897382736, -0.025062942877411842, 0.01704835332930088, 0.006274696905165911, 0.007270583882927895, -0.006652185693383217, 0.016970455646514893, 0.04836741089820862, 0.03116266243159771, -0.06428220868110657, -0.01751723699271679, 8.019544987572152e-33, -0.001141678192652762, -0.02376008778810501, -0.00875060074031353, -0.01753300428390503, -0.00684360321611166, -0.03828371316194534, 0.018913794308900833, 0.058791011571884155, 0.0056327469646930695, 0.04894962161779404, 0.011899521574378014, 0.0005978390690870583, -0.007121167611330748, 0.010359094478189945, 0.015106997452676296, 0.017200656235218048, 0.027379250153899193, -0.016495760530233383, 0.03010895475745201, 0.015143396332859993, -0.0000852124867378734, 0.018910948187112808, -0.00024786603171378374, -0.004472129046916962, 0.020847968757152557, 0.04510888829827309, -0.013501488603651524, -0.0017342991195619106, -0.02349945157766342, -0.016186829656362534, -0.022488588467240334, -0.048514679074287415, 0.005089450161904097, -0.037150997668504715, -0.04448763281106949, 0.03600623831152916, 0.00027637186576612294, -0.006106407847255468, 0.003814901225268841, -0.031930044293403625, 0.026198552921414375, -0.0032931650057435036, 0.0020829406566917896, 0.05050027742981911, -0.0033094531390815973, -0.011695378459990025, 0.004647577181458473, 0.005215655080974102, -0.008471599780023098, -0.009577637538313866, 0.002601885236799717, 0.040638577193021774, 0.004575715865939856, -0.0040357778780162334, 0.0016033847350627184, -0.035265002399683, -0.013498685322701931, 0.0012157222954556346, -0.03866985812783241, -0.006695590913295746, -0.004036618862301111, -0.004533355124294758, -0.02264227531850338, 0.00048204229096882045, -0.03860234469175339, -0.016548827290534973, -0.023174777626991272, -0.011179779656231403, -0.02418563887476921, -0.03334616869688034, -0.006165761966258287, 0.015200530178844929, -0.0033327406272292137, 0.04549241438508034, 0.040920138359069824, -0.025719178840517998, -0.010203899815678596, -0.005456133279949427, 0.0029416189063340425, 0.010010438971221447, 0.021590832620859146, 0.0007767695933580399, 0.011641901917755604, -0.02519872412085533, 0.0222795270383358, 0.033031221479177475, -0.04987716302275658, -0.00987097155302763, -0.012958349660038948, -0.005881278309971094, -0.05842702463269234, -0.05467222258448601, -0.03069324977695942, 0.037384018301963806, -0.03289797529578209, -1.3013877087075798e-8, -0.045234061777591705, 0.007947390899062157, -0.013560740277171135, 0.02135065570473671, 0.030695568770170212, 0.007101109717041254, -0.003191417781636119, 0.013444148935377598, 0.05555194616317749, 0.0013739477144554257, 0.05085098743438721, -0.015229758806526661, 0.009290344081819057, -0.006116984877735376, 0.01081477478146553, -0.058553777635097504, -0.0035204128362238407, -0.02690579742193222, 0.010168627835810184, -0.010029284283518791, 0.0026013099122792482, 0.048816174268722534, -0.010112705640494823, -0.01822827011346817, 0.03364213928580284, 0.04254934936761856, 0.03043268620967865, -0.057807572185993195, -0.030688928440213203, -0.03213539347052574, 0.005470925476402044, -0.018335463479161263, -0.03376421704888344, 0.039937276393175125, -0.03350342810153961, -0.02799023874104023, 0.0737544521689415, 0.03419824689626694, 0.009112490341067314, 0.012658675201237202, -0.00009133951971307397, 0.022901661694049835, -0.01803453080356121, -0.00737730972468853, -0.01918601244688034, 0.02740553580224514, -0.03903302922844887, 0.03356129676103592, 0.04722258821129799, -0.008821221068501472, 0.026263948529958725, -0.04152699559926987, 0.01858159899711609, -0.008300061337649822, 0.02382924035191536, -0.0041278968565166, 0.033175691962242126, -0.031030340120196342, -0.03697921335697174, 0.020106054842472076, 0.045669615268707275, -0.01675550639629364, 0.013941057026386261, -0.007872921414673328 ]
materialize-unable-automatically-determine-timestamp-query
https://markhneedham.com/blog/2020/12/31/materialize-unable-automatically-determine-timestamp-query
false
2020-12-29 00:44:37
jq: How to change the value of keys in JSON documents
[ "jq" ]
[ "jq" ]
https://stedolan.github.io/jq/[jq^], the command-line JSON processor, is my favourite tool for transforming JSON documents. In this post we're going to learn how to use it to transform the values for specific keys in a document, while leaving everything else untouched. image::{{<siteurl>}}/uploads/2020/12/jq-banner.png[] We have the following file, which contains one JSON document: ./tmp/foo.json [source,json] ---- {"id":1341735877953904600,"conversation_id":"1341735877953904641","created_at":"2020-12-23 13:22:16 GMT","date":"2020-12-23","time":"13:22:16","timezone":"+0000","user_id":"972709154329591800","username":"dondaconceicao","name":"T N Biscuits","place":"","tweet":"Can’t imagine being sick with covid while living alone","language":"en","mentions":[],"urls":[],"photos":[],"replies_count":0,"retweets_count":0,"likes_count":1,"hashtags":[],"cashtags":[],"link":"https://twitter.com/dondaconceicao/status/1341735877953904641","retweet":false,"quote_url":"","video":0,"thumbnail":"","near":"London","geo":"","source":"","user_rt_id":"","user_rt":"","retweet_id":"","reply_to":[],"retweet_date":"","translate":"","trans_src":"","trans_dest":""} ---- We want to update the `id` field so that its value is a string rather than numeric value. We can do this using the https://stedolan.github.io/jq/manual/#tostring[`tostring`^] function, as shown below: [source,bash] ---- cat /tmp/foo.json | jq -c '.id=(.id|tostring)' ---- .Output [source,json] ---- {"id":"1341735877953904600","conversation_id":"1341735877953904641","created_at":"2020-12-23 13:22:16 GMT","date":"2020-12-23","time":"13:22:16","timezone":"+0000","user_id":"972709154329591800","username":"dondaconceicao","name":"T N Biscuits","place":"","tweet":"Can’t imagine being sick with covid while living alone","language":"en","mentions":[],"urls":[],"photos":[],"replies_count":0,"retweets_count":0,"likes_count":1,"hashtags":[],"cashtags":[],"link":"https://twitter.com/dondaconceicao/status/1341735877953904641","retweet":false,"quote_url":"","video":0,"thumbnail":"","near":"London","geo":"","source":"","user_rt_id":"","user_rt":"","retweet_id":"","reply_to":[],"retweet_date":"","translate":"","trans_src":"","trans_dest":""} ---- All the other fields are left as they were before. So far so good. But what if we want to change the `user_id` key as well? My first attempt was to comma separate the two filters: [source,bash] ---- cat /tmp/foo.json | jq -c '.id=(.id|tostring),.user_id=(.user_id|tostring)' ---- .Output [source,json] ---- {"id":"1341735877953904600","conversation_id":"1341735877953904641","created_at":"2020-12-23 13:22:16 GMT","date":"2020-12-23","time":"13:22:16","timezone":"+0000","user_id":"972709154329591800","username":"dondaconceicao","name":"T N Biscuits","place":"","tweet":"Can’t imagine being sick with covid while living alone","language":"en","mentions":[],"urls":[],"photos":[],"replies_count":0,"retweets_count":0,"likes_count":1,"hashtags":[],"cashtags":[],"link":"https://twitter.com/dondaconceicao/status/1341735877953904641","retweet":false,"quote_url":"","video":0,"thumbnail":"","near":"London","geo":"","source":"","user_rt_id":"","user_rt":"","retweet_id":"","reply_to":[],"retweet_date":"","translate":"","trans_src":"","trans_dest":""} {"id":1341735877953904600,"conversation_id":"1341735877953904641","created_at":"2020-12-23 13:22:16 GMT","date":"2020-12-23","time":"13:22:16","timezone":"+0000","user_id":"972709154329591800","username":"dondaconceicao","name":"T N Biscuits","place":"","tweet":"Can’t imagine being sick with covid while living alone","language":"en","mentions":[],"urls":[],"photos":[],"replies_count":0,"retweets_count":0,"likes_count":1,"hashtags":[],"cashtags":[],"link":"https://twitter.com/dondaconceicao/status/1341735877953904641","retweet":false,"quote_url":"","video":0,"thumbnail":"","near":"London","geo":"","source":"","user_rt_id":"","user_rt":"","retweet_id":"","reply_to":[],"retweet_date":"","translate":"","trans_src":"","trans_dest":""} ---- Hmmm, now we have two rows instead of one, which isn't what we want! Each filter has been applied individually rather than one after the other. We can fix this by piping one filter into the other using the `|` operator. Let's give that a try: [source,bash] ---- cat /tmp/foo.json | jq -c '.id=(.id|tostring) | .user_id=(.user_id|tostring)' ---- .Output [source,json] ---- {"id":"1341735877953904600","conversation_id":"1341735877953904641","created_at":"2020-12-23 13:22:16 GMT","date":"2020-12-23","time":"13:22:16","timezone":"+0000","user_id":"972709154329591800","username":"dondaconceicao","name":"T N Biscuits","place":"","tweet":"Can’t imagine being sick with covid while living alone","language":"en","mentions":[],"urls":[],"photos":[],"replies_count":0,"retweets_count":0,"likes_count":1,"hashtags":[],"cashtags":[],"link":"https://twitter.com/dondaconceicao/status/1341735877953904641","retweet":false,"quote_url":"","video":0,"thumbnail":"","near":"London","geo":"","source":"","user_rt_id":"","user_rt":"","retweet_id":"","reply_to":[],"retweet_date":"","translate":"","trans_src":"","trans_dest":""} ---- Much better!
In this post we'll learn how to change the values of specific keys in a JSON document using the jq command-line JSON processor.
uploads/2020/12/jq-banner.png
[ -0.010116598568856716, -0.020592564716935158, -0.01251202542334795, 0.02876853756606579, 0.07323574274778366, 0.0288104098290205, 0.02594742365181446, 0.05528312176465988, -0.0006387748289853334, -0.004035293124616146, -0.02636704035103321, -0.008147395215928555, -0.07185256481170654, 0.002794895088300109, -0.024874012917280197, 0.07033801823854446, 0.05710120126605034, 0.0007339172880165279, 0.0264739952981472, -0.01574506238102913, 0.041211821138858795, 0.05718569457530975, 0.022025976330041885, 0.01313087809830904, 0.03711974620819092, 0.008462361991405487, 0.002146957442164421, 0.03214804455637932, -0.06258347630500793, -0.012859451584517956, 0.016827380284667015, -0.017366910353302956, -0.008588921278715134, -0.0048810807056725025, -0.00044343603076413274, 0.011169997043907642, -0.0519014410674572, 0.005045868922024965, 0.001303499098867178, 0.03747717663645744, -0.025451529771089554, 0.034258197993040085, 0.0018350532045587897, 0.03786436468362808, -0.04623192548751831, -0.004568587522953749, -0.0608670599758625, 0.044255081564188004, -0.028566457331180573, -0.004019643645733595, -0.06233940273523331, 0.04504266008734703, -0.02754853665828705, -0.03609008342027664, 0.005646641366183758, 0.06698127090930939, -0.009344263933598995, -0.06399279832839966, 0.0238431915640831, -0.021946799010038376, 0.023967966437339783, -0.011533698067069054, 0.02603919804096222, 0.02212260290980339, 0.016287371516227722, -0.021354394033551216, 0.0037130056880414486, 0.06668630987405777, -0.04874838888645172, -0.029413772746920586, 0.022585395723581314, 0.04030681774020195, -0.011595239862799644, 0.0036917703691869974, 0.014660399407148361, -0.05208363011479378, -0.010341985151171684, 0.0703875720500946, 0.003717061597853899, 0.05988762900233269, -0.024751028046011925, 0.02569439448416233, 0.007837922312319279, 0.0316731333732605, -0.018152130767703056, -0.04269504174590111, -0.042020902037620544, 0.006372911389917135, -0.06882162392139435, 0.04540828615427017, 0.050367895513772964, -0.021550940349698067, 0.02997150830924511, 0.00841523427516222, -0.006422000005841255, -0.0026172734797000885, 0.005433268845081329, 0.015888692811131477, -0.01525029819458723, -0.009165436029434204, -0.06241867318749428, -0.004298259038478136, 0.028124328702688217, -0.015420016832649708, -0.07418929785490036, -0.017431072890758514, -0.009720854461193085, 0.004971164278686047, 0.008561071939766407, -0.010325131937861443, -0.013067672960460186, 0.008394374512135983, -0.01221599243581295, 0.01299140602350235, -0.06712637096643448, 0.05158374458551407, 0.01317034475505352, -0.044845059514045715, -0.018201949074864388, 0.036882322281599045, 0.06313635408878326, 0.010310369543731213, -0.007092009298503399, 0.08412780612707138, 0.026753760874271393, 0.0022234756033867598, 0.0016963150119408965, 0.04692349210381508, -0.010631082579493523, -0.06093231588602066, -0.016613515093922615, 0.058820270001888275, 0.0006164686637930572, 0.02717885561287403, 0.003551760921254754, -0.05303514003753662, -0.020184263586997986, 0.009088853374123573, 0.07538789510726929, 0.03190856799483299, -0.010165407322347164, -0.03933532163500786, -0.012259702198207378, -0.00828680768609047, 0.015279887244105339, 0.02796851471066475, -0.03376827761530876, -0.029500244185328484, -0.018887359648942947, 0.03872991353273392, 0.005266462452709675, -0.005498835816979408, 0.05317336320877075, -0.010805204510688782, 0.01263214647769928, 0.08820413798093796, 0.026543809100985527, 0.024451956152915955, -0.029771728441119194, 0.018037499859929085, 0.019073612987995148, 0.034007713198661804, -0.006197039037942886, 0.030902625992894173, -0.011953824199736118, -0.02161802537739277, 0.010886300355196, 0.06356581300497055, -0.015317931771278381, -0.008483851328492165, -0.041663605719804764, -0.06874264031648636, 0.07895684987306595, -0.007853961549699306, -0.008403307758271694, 0.04379336163401604, 0.05994746461510658, 0.04009544476866722, 0.03817944601178169, 0.023148147389292717, -0.09296735376119614, 0.058236610144376755, 0.013188867829740047, -0.005554792936891317, 0.03730035573244095, -0.005102556198835373, 0.08185353130102158, 0.023685099557042122, 0.018673749640583992, 0.03699257969856262, -0.09194512665271759, -0.07033750414848328, -0.028614891692996025, 0.0035821767523884773, 0.05179135501384735, -0.024047059938311577, 0.014144543558359146, 0.07616730034351349, 0.0190799031406641, 0.03525012359023094, 0.01266929879784584, -0.027498705312609673, 0.0427108108997345, -0.06075586751103401, -0.047734010964632034, 0.03781525418162346, 0.04770325869321823, -0.011937015689909458, 0.006405905820429325, 0.0073853908106684685, -0.040639251470565796, -0.0017803164664655924, 0.02944919653236866, -0.03276972100138664, -0.0043604010716080666, 0.01028238795697689, 0.04060854762792587, -0.026449183002114296, 0.03180212527513504, -0.06014248728752136, 0.03468351438641548, 0.013102350756525993, -0.013388341292738914, -0.013209358789026737, -0.013402516022324562, 0.13984891772270203, 0.0662643313407898, -0.00019778426212724298, -0.0496009886264801, 0.039178915321826935, -0.006113077513873577, -0.054254479706287384, -0.0019281907007098198, -0.04009251296520233, -0.026046255603432655, 0.017853429540991783, -0.041889581829309464, -0.025895187631249428, 0.0037394745741039515, -0.024554328992962837, -0.01235748641192913, 0.045811090618371964, -0.025883084163069725, 0.05649017542600632, 0.028375040739774704, -0.008059666492044926, -0.016329245641827583, -0.032712068408727646, -0.05192097648978233, -0.005746752023696899, -0.02164931409060955, -0.012997754849493504, 0.03331776335835457, -0.057581353932619095, -0.0008906634757295251, -0.017016176134347916, -0.04570351168513298, 0.042889825999736786, 0.030567480251193047, 0.06694132834672928, -0.046389561146497726, 0.057690732181072235, -0.019915981218218803, 0.011255878955125809, -0.013190212659537792, -0.037541523575782776, -0.03222110867500305, -0.013449872843921185, 0.008523817174136639, 0.004350540228188038, 0.031161928549408913, 0.034836430102586746, 0.004443651996552944, -0.005181289743632078, 0.003317734692245722, -0.01177299115806818, 0.03792453929781914, -0.01656288467347622, 0.0013178327353671193, -0.02869294583797455, -0.02778772823512554, 0.056501831859350204, -0.052904050797224045, -0.03156640753149986, 0.0000959832759690471, -0.0968654602766037, 0.041684094816446304, -0.050860390067100525, -0.029611507430672646, -0.008282450959086418, 0.011602265760302544, 0.04605285823345184, 0.004451059736311436, -0.011001713573932648, 0.0556793212890625, -0.00246078590862453, 0.02018635720014572, 0.01851670630276203, 0.01154440175741911, 0.04186832904815674, -0.014734182506799698, 0.02809329144656658, 0.0729040652513504, 0.007818244397640228, -0.014924014918506145, -0.04069671407341957, 0.007771067321300507, -0.014561200514435768, -0.27953270077705383, 0.03595976158976555, -0.002899416722357273, -0.03373226150870323, 0.023240167647600174, 0.006800782401114702, 0.012885179370641708, -0.059030190110206604, -0.008085331879556179, 0.005589355248957872, -0.017275400459766388, -0.04412682354450226, -0.02402275800704956, 0.034807052463293076, 0.004794489126652479, -0.009065055288374424, -0.02855159156024456, -0.02440984547138214, 0.010167826898396015, 0.03755144774913788, -0.008167256601154804, -0.07051285356283188, 0.014101476408541203, 0.04643626511096954, 0.03138558939099312, 0.04630923643708229, -0.07031672447919846, 0.008175023831427097, -0.03917299211025238, -0.029635729268193245, 0.019838102161884308, -0.02259887382388115, 0.028921052813529968, 0.0017007567221298814, -0.011358686722815037, -0.01727641187608242, 0.054357320070266724, -0.012024596333503723, 0.004737501963973045, 0.01658162660896778, -0.043975453823804855, -0.026016943156719208, -0.010665682144463062, -0.007793258875608444, 0.08634446561336517, -0.016324292868375778, -0.051443248987197876, -0.01223855372518301, -0.031505849212408066, 0.07063236087560654, -0.0116229597479105, -0.040808118879795074, -0.016565438359975815, 0.03308798745274544, 0.010051899589598179, 0.0020176030229777098, -0.0259548407047987, -0.0045674750581383705, -0.06260455399751663, -0.033317163586616516, 0.020151952281594276, -0.04199213162064552, -0.02247093804180622, -0.028956333175301552, -0.04420202597975731, -0.059112802147865295, -0.06632807105779648, -0.022024862468242645, 0.08188524842262268, 0.021513650193810463, -0.04149756580591202, 0.02474922314286232, -0.019051147624850273, -0.10251478105783463, 0.0013556791236624122, -0.02259877696633339, -0.037338100373744965, 0.0061545707285404205, -0.006883258931338787, 0.037695303559303284, -0.057835422456264496, -0.06547378748655319, 0.0046272845938801765, 0.014732823707163334, 0.02120276726782322, -0.04124424234032631, 0.023514514788985252, -0.02280794084072113, 0.010904647409915924, -0.025059571489691734, 0.07311751693487167, -0.03330356627702713, -0.02778451144695282, 0.0008514565415680408, 0.0020236573182046413, 0.027676023542881012, 0.003632632317021489, -0.02007465437054634, 0.012592623941600323, 0.05348582938313484, 0.029305607080459595, -0.04972684755921364, 0.02948453277349472, -0.04277380555868149, -0.014695052057504654, -0.005369556602090597, -0.06378766149282455, 0.022747140377759933, 0.016466014087200165, 0.02123689092695713, -0.01649690791964531, -0.029302271082997322, 0.01720779947936535, -0.038778942078351974, -0.01206387858837843, -0.019937921315431595, 0.01189653854817152, 0.028779907152056694, 0.044199388474226, -0.034234680235385895, -0.03483894467353821, 0.030845489352941513, 0.020052585750818253, -0.02655329927802086, -0.06664427369832993, -0.03247250244021416, -0.004563647322356701, 0.016617145389318466, 0.0013517511542886496, -0.008610709570348263, 0.007524905260652304, 0.008641685359179974, -0.0006284750998020172, -0.025717981159687042, 0.018875079229474068, -0.01186523586511612, -0.030276333913207054, -0.03391895815730095, 0.008173019625246525, 0.00262263510376215, 0.002932306844741106, -0.015378883108496666, 0.009023116901516914, 0.027773547917604446, 0.0018320400267839432, 0.004698304925113916, 0.05132336542010307, -0.014809021726250648, 0.022025587037205696, 0.005263217259198427, -0.011210574768483639, -0.05397894233465195, -0.0011558830738067627, -0.028908200562000275, -0.03766336664557457, 0.001732183271087706, 0.036037739366292953, 0.0005463812267407775, -0.029888710007071495, -0.0352269783616066, 0.0013479952467605472, -0.0469941645860672, -0.01183834858238697, -0.022823084145784378, -0.014494326896965504, 0.02439137175679207, -0.020300449803471565, 0.03332354873418808, -0.007979081012308598, 0.005779941566288471, 0.013517706654965878, -0.0007152379839681089, -0.030554311349987984, -0.005122210830450058, -0.0010151853784918785, -0.017347075045108795, 0.024904552847146988, 0.04298077151179314, 0.018583720549941063, 0.03271367773413658, -0.000591954099945724, -0.0017854775069281459, 0.006799132563173771, 0.03875792771577835, 0.047712791711091995, 0.010154236108064651, -0.012542434968054295, -0.0009300742531195283, -0.030543098226189613, -0.05277429521083832, -0.024232279509305954, -0.014261063188314438, -0.030816631391644478, -0.032317426055669785, -0.022845329716801643, -0.07230229675769806, 0.04408116266131401, 0.024963000789284706, 0.025268472731113434, 0.02955295331776142, -0.01236612070351839, 0.020766694098711014, -0.032732173800468445, 0.016585469245910645, 0.04397841542959213, -0.07157441228628159, -0.023709293454885483, -0.016069089993834496, -0.004891081713140011, -0.007021806202828884, 0.023828808218240738, -0.06263702362775803, -0.006589962635189295, -0.03211870416998863, 0.0079446230083704, -0.031906306743621826, -0.031592778861522675, -0.011750719510018826, 0.022201623767614365, -0.03218202292919159, -0.001706950948573649, -0.001888614846393466, 0.019253341481089592, 0.011138812638819218, -0.003226084401831031, 0.03625006601214409, -0.04216736927628517, 0.025657763704657555, 0.029037391766905785, -0.025833114981651306, 0.03362287953495979, -0.029328517615795135, 0.0438515730202198, 0.04315726086497307, -0.02070806175470352, 0.0007994775078259408, -0.043241918087005615, -0.009683223441243172, -0.01891467161476612, 0.06412940472364426, 0.004294332582503557, -0.04100034385919571, -0.04389673471450806, 0.016313351690769196, -0.0288043525069952, 0.012233659625053406, -0.026488810777664185, -0.03279431164264679, 0.04098828509449959, 0.04806887358427048, 0.019273368641734123, 0.03337644040584564, -0.034493181854486465, -0.04688577726483345, 0.07532213628292084, -0.04019875451922417, -0.015267269685864449, -0.016955137252807617, -0.053470123559236526, 0.032001007348299026, 0.026303622871637344, 0.0275837741792202, -0.05179362744092941, 0.04727061837911606, 0.04606524482369423, 0.02573130652308464, 0.02601921185851097, -0.02561810426414013, 0.03295323625206947, -0.022787993773818016, -0.02028336562216282, -0.0857982262969017, 0.018651798367500305, 0.041563328355550766, -0.033739566802978516, -0.011530857533216476, 0.00855062436312437, -0.030835174024105072, 0.00914473831653595, -0.04317161440849304, -0.026184460148215294, 0.052434515208005905, -0.01348952017724514, 0.002730721840634942, 0.012359586544334888, -0.06666702777147293, 0.051160942763090134, 0.049004822969436646, -0.04522249475121498, 0.0018249034183099866, -0.032571617513895035, 0.0743570327758789, -0.016886338591575623, 0.015584570355713367, -0.014501763507723808, -0.011902743950486183, 0.057156167924404144, 0.029174046590924263, -0.0015184455551207066, 0.03125426918268204, -0.024801714345812798, 0.031391460448503494, 0.022503845393657684, -0.024699775502085686, 0.012692670337855816, 0.03429921716451645, -0.03407007455825806, -0.061894576996564865, 0.024051483720541, 0.014173325151205063, -0.06390974670648575, -0.027276944369077682, 0.07941686362028122, 0.023549070581793785, -0.027039512991905212, -0.046231258660554886, 0.01696227490901947, -0.03567228093743324, -0.024188589304685593, -0.02365189976990223, 0.0074815754778683186, -0.047005824744701385, 0.04682345688343048, -0.0037854269612580538, 0.0049935681745409966, 0.08953636884689331, -0.007801904808729887, -0.005760609172284603, -0.006040523294359446, 0.08324418216943741, 0.08687624335289001, 0.03576705977320671, 0.008699587546288967, 0.055666789412498474, -0.01993352361023426, -0.04474518075585365, 0.008662105537950993, 0.021537918597459793, 0.00900408998131752, 0.009614435024559498, -0.006776978261768818, 0.08914769440889359, -0.04048475623130798, 0.0763331726193428, 0.000042925559682771564, -0.0254785418510437, -0.013379205018281937, 0.013813669793307781, 0.03172001987695694, 0.04494407773017883, 0.006724763661623001, 0.03514592722058296, -0.023592591285705566, -0.03532811999320984, 0.055667489767074585, 0.0021929063368588686, -0.03530610725283623, 0.02967434749007225, -0.01199754886329174, 0.023234449326992035, 0.006173967383801937, 0.06059778854250908, 0.05665385350584984, -0.013210984878242016, 0.0015067619970068336, -0.0023673237301409245, 0.013901060447096825, 0.008089255541563034, 0.015976861119270325, -0.016349053010344505, -0.03364012762904167, -0.004439478274434805, -0.042257439345121384, 0.005072503816336393, -0.011076310649514198, -0.03645188361406326, 0.03440473973751068, -0.0053960769437253475, -0.0055581191554665565, 0.01917329989373684, 0.014380227774381638, -0.029957573860883713, -0.051224030554294586, -0.06959649920463562, -0.0403822660446167, -0.03294271230697632, -0.0334944985806942, 0.008384184911847115, -0.006532009225338697, -0.0038866556715220213, -0.014470197260379791, -0.03269588202238083, 0.012970083393156528, 0.02037162519991398, -0.050666581839323044, -0.00944847334176302, 0.014113660901784897, 0.012862643226981163, 0.005617834627628326, 0.01876078173518181, 0.06128058210015297, -0.009598299860954285, -0.011789724230766296, -0.018648942932486534, 0.006695812102407217, 0.05370822548866272, 0.016831176355481148, 0.0031895500142127275, -0.06742488592863083, -0.0019916226156055927, 0.023374147713184357, -0.014641639776527882, -0.0664626806974411, 0.022003456950187683, 0.02935822494328022, -0.02702232077717781, 0.05663790553808212, 0.0036233237478882074, 0.014240918681025505, -0.03355635702610016, -0.038250647485256195, -0.007793855853378773, -0.013242403045296669, 0.04995733126997948, -0.016243480145931244, 0.09488233923912048, 0.040291719138622284, -0.017376601696014404, -0.034431736916303635, -0.015879137441515923, 0.01604381389915943, 0.0012148573296144605, -0.040861282497644424, -0.02120703086256981, -0.04154612496495247, -0.08032246679067612, -0.05505363270640373, 0.0004388485394883901, -0.03544910252094269, -0.030720027163624763, 0.020836029201745987, 0.016163242980837822, -0.022554289549589157, 0.025396578013896942, -0.056635864078998566, 0.019343512132763863, -0.013397226110100746, -0.0036542986053973436, -0.030065329745411873, 0.005417771637439728, 0.008018262684345245, 0.019322926178574562, 0.026518072932958603, -0.0351131409406662, 0.025225380435585976, -0.02189151756465435, 0.020150210708379745, 0.05083782598376274, -0.0011681010946631432, 0.006310036405920982 ]
[ -0.10044734925031662, -0.004435950890183449, -0.025810502469539642, -0.029860787093639374, 0.032733622938394547, -0.05112626031041145, -0.01573537476360798, 0.017344778403639793, -0.004313116893172264, -0.004520276095718145, -0.01682479865849018, -0.034322112798690796, 0.0010356324492022395, -0.0178843941539526, 0.09407252818346024, 0.005683766212314367, -0.009589008055627346, -0.050966404378414154, -0.07163531333208084, 0.012404168955981731, 0.008941099047660828, -0.012795212678611279, -0.025171371176838875, -0.05297774076461792, -0.012721485458314419, 0.042363766580820084, 0.02441783808171749, -0.022242344915866852, -0.0021246850956231356, -0.19425219297409058, 0.008618343621492386, -0.018553337082266808, 0.022051608189940453, -0.0027369994204491377, 0.0003673459868878126, 0.05708140507340431, 0.006586115341633558, 0.025540659204125404, -0.011264434084296227, 0.05845632404088974, 0.04179816693067551, 0.0025226774159818888, -0.04241015762090683, -0.05123179405927658, 0.032057687640190125, -0.041058704257011414, -0.029733998700976372, -0.024677185341715813, -0.013917396776378155, 0.013205006718635559, -0.10805655270814896, -0.012205943465232849, -0.0031022734474390745, -0.02694731391966343, 0.012717390432953835, 0.04213885962963104, 0.04529419168829918, 0.08894108235836029, -0.007357154507189989, 0.019982926547527313, 0.01135223638266325, -0.0037179950159043074, -0.07795877754688263, 0.10734359920024872, 0.020873630419373512, 0.0343954972922802, -0.020035337656736374, -0.03151572868227959, -0.02894032932817936, 0.0804290845990181, 0.00985592883080244, -0.010941550135612488, -0.02759254351258278, 0.06318781524896622, -0.010687621310353279, -0.026074128225445747, -0.008373457938432693, 0.007506887894123793, 0.04888993501663208, -0.0239641722291708, -0.06354828923940659, -0.016617611050605774, -0.0035105289425700903, -0.0438666008412838, -0.03385736420750618, 0.0017284153727814555, -0.033239200711250305, 0.040226299315690994, -0.004358184989541769, 0.006219623144716024, 0.01913905143737793, -0.009597360156476498, 0.06495704501867294, 0.020673338323831558, -0.10833465307950974, -0.01301632635295391, -0.015355003997683525, 0.009497742168605328, -0.011784158647060394, 0.4558907449245453, -0.011515564285218716, -0.04683969169855118, 0.06643588095903397, -0.01600445806980133, 0.011074913665652275, 0.010196230374276638, -0.005034468602389097, -0.05989426001906395, 0.03886151686310768, -0.037408195436000824, -0.01742163859307766, -0.006680876947939396, 0.03295009955763817, -0.04669656604528427, 0.005369309801608324, -0.002931942231953144, 0.035449735820293427, 0.02892320416867733, -0.03027832880616188, 0.010772752575576305, 0.006192884873598814, 0.01773841679096222, 0.014232547022402287, 0.028345562517642975, 0.03185078874230385, -0.016526877880096436, 0.03187841549515724, 0.025301320478320122, 0.06060732528567314, 0.0456751212477684, 0.0275944322347641, -0.015193447470664978, -0.05184362828731537, 0.005149525124579668, -0.007106491830199957, 0.024729155004024506, 0.002652989234775305, -0.04825568199157715, -0.00014958895917516202, 0.04595141112804413, -0.006804291624575853, -0.029937507584691048, -0.021029703319072723, -0.011818602681159973, -0.03927968442440033, 0.11145232617855072, 0.006748054176568985, -0.027441931888461113, -0.015640776604413986, -0.040480222553014755, -0.003373420797288418, 0.07529351860284805, 0.00026636631810106337, -0.04387106001377106, 0.02714196778833866, 0.05248624458909035, 0.058346595615148544, -0.03586830198764801, -0.04292157292366028, -0.014916935004293919, -0.01835154928267002, -0.0666082501411438, -0.02055877074599266, 0.045391421765089035, 0.01496545784175396, -0.11625873297452927, -0.01301624160259962, -0.0036460214760154486, 0.010150115005671978, -0.0792984813451767, 0.007359407376497984, 0.017943061888217926, -0.04348781332373619, 0.0003365757584106177, 0.04728801175951958, -0.0033015748485922813, -0.01675061136484146, 0.035455428063869476, 0.05357495695352554, -0.007531340233981609, -0.0572938546538353, -0.0008217582944780588, -0.06017891690135002, 0.013036251999437809, -0.04694312438368797, -0.040719956159591675, -0.04168637841939926, 0.01766444742679596, -0.0027543208561837673, 0.00555365439504385, 0.0010509479325264692, -0.008812353946268559, -0.06384551525115967, 0.034377917647361755, -0.01159527339041233, -0.021167803555727005, 0.010078724473714828, -0.0014227599604055285, -0.014982856810092926, -0.05130114033818245, 0.04145793989300728, 0.04530962184071541, 0.0046564191579818726, 0.03497462347149849, -0.05409982055425644, 0.00789589062333107, 0.057577650994062424, -0.024931397289037704, 0.06581085920333862, 0.03412463143467903, -0.03786447271704674, 0.002344182226806879, -0.014642268419265747, 0.001738681341521442, -0.004811963532119989, -0.04064485803246498, -0.01591598428785801, 0.007319653406739235, 0.054286371916532516, 0.018236108124256134, -0.062404707074165344, -0.05757049098610878, -0.00343132670968771, -0.3465425968170166, -0.019325483590364456, 0.013293757103383541, 0.0046352422796189785, 0.002771688625216484, -0.06385253369808197, 0.008035270497202873, -0.008204814977943897, 0.019186897203326225, 0.04844367504119873, 0.0801253467798233, -0.024389857426285744, 0.02800496108829975, -0.06127865985035896, -0.03029247187077999, 0.04559842124581337, -0.02528558485209942, -0.028640788048505783, -0.004745027050375938, 0.035743214190006256, 0.00569130340591073, -0.016866208985447884, -0.02624044194817543, -0.05548246204853058, -0.00021369331807363778, -0.022265344858169556, 0.12954413890838623, 0.03698886185884476, 0.07228919118642807, -0.055721621960401535, 0.05758833885192871, 0.015468773432075977, -0.01546380203217268, -0.07866314798593521, -0.009837801568210125, -0.02087671123445034, -0.018519148230552673, 0.02295764908194542, -0.003548530163243413, 0.0019948503468185663, -0.031955599784851074, 0.02853112667798996, -0.02141174115240574, -0.07299674302339554, -0.014957541599869728, 0.009575052186846733, -0.01672518067061901, -0.02011897601187229, -0.010735857300460339, 0.05675359442830086, -0.0020208610221743584, 0.005047950893640518, 0.03695250675082207, 0.04028257727622986, -0.005575667601078749, -0.019038377329707146, -0.023831892758607864, -0.01341218315064907, -0.01224612072110176, -0.005378328263759613, 0.04270492121577263, 0.03713659197092056, 0.027490071952342987, -0.03718934208154678, -0.004516354762017727, -0.0012152454582974315, 0.0020124814473092556, 0.03637618571519852, 0.04081681743264198, -0.05416441336274147, -0.0583626851439476, 0.08017271757125854, 0.012353498488664627, 0.055380262434482574, 0.024265231564641, 0.06104887276887894, -0.034632354974746704, -0.004796882625669241, -0.0012835960369557142, -0.0007664512377232313, 0.04142541065812111, 0.032914455980062485, 0.03323230892419815, -0.027441006153821945, -0.00456209247931838, 0.05726467818021774, -0.011378658935427666, -0.02016226015985012, 0.03875059634447098, -0.009967046789824963, -0.026864904910326004, -0.037643685936927795, 0.01450090017169714, -0.0598941333591938, 0.047613728791475296, 0.0008433654438704252, -0.27235427498817444, 0.01707669347524643, 0.025691749528050423, 0.09298774600028992, 0.007568967994302511, 0.03248516842722893, 0.033121656626462936, -0.07920777052640915, -0.023285994306206703, 0.045567601919174194, 0.000792270409874618, 0.05341140553355217, 0.017361951991915703, -0.020879337564110756, 0.025095783174037933, -0.017471078783273697, 0.02168870158493519, 0.004494182765483856, 0.013714584521949291, 0.009212006814777851, 0.011879440397024155, -0.01396365836262703, 0.1677401214838028, 0.008118354715406895, -0.007310975342988968, 0.03399915248155594, 0.020347299054265022, 0.0329536497592926, 0.10729103535413742, 0.010786877013742924, 0.003688183380290866, 0.01977330446243286, 0.05512715131044388, 0.04544047638773918, 0.027155349031090736, -0.07287901639938354, -0.047555845230817795, 0.03255998715758324, 0.005526009481400251, -0.01193147711455822, -0.025367993861436844, 0.04270874336361885, -0.016346726566553116, 0.011897408403456211, 0.062397394329309464, -0.0034330955240875483, -0.00508890813216567, -0.026844972744584084, -0.016648462042212486, -0.01499718613922596, -0.026435626670718193, -0.040477409958839417, 0.006773130968213081, 0.008091763593256474, 0.003969151061028242, 0.07252573221921921, 0.035892240703105927, -0.021764390170574188, 0.012667014263570309, 0.007578268181532621, -0.019002078101038933, -0.033308710902929306, 0.09762294590473175, 0.015443811193108559, -0.00966995395720005 ]
[ -0.026463232934474945, 0.05763388052582741, -0.014973311685025692, 0.01894311234354973, 0.00510826613754034, -0.01781388185918331, -0.01480101514607668, 0.0299500972032547, 0.012681448832154274, -0.01813027821481228, -0.008687799796462059, 0.010465227998793125, 0.038456812500953674, 0.005085039883852005, 0.02402668260037899, -0.007833185605704784, -0.05377796292304993, 0.005779765080660582, 0.01604420877993107, -0.05655740946531296, -0.04377341270446777, 0.04198671504855156, 0.013759119436144829, -0.02349088154733181, 0.004494396969676018, 0.04897031560540199, -0.03500484675168991, 0.01114656962454319, 0.019630402326583862, -0.0891147330403328, -0.03257995843887329, -0.05735590681433678, -0.016350099816918373, -0.011248832568526268, -0.023733362555503845, 0.006758215371519327, 0.019132418558001518, -0.02526034042239189, 0.03423341363668442, 0.0039147729985415936, -0.00892944261431694, -0.004601422231644392, -0.023948758840560913, -0.02439061738550663, 0.023395661264657974, 0.006642237771302462, -0.03894123435020447, 0.003930590581148863, -0.038477275520563126, 0.029449747875332832, -0.04630496725440025, 0.0010933636222034693, -0.01283342856913805, 0.03090931475162506, -0.004529769532382488, 0.025936365127563477, -0.06450898200273514, 0.018405621871352196, 0.007944286800920963, 0.004878637380897999, 0.014472666196525097, 0.016793610528111458, -0.03541969880461693, -0.01424107514321804, -0.01836557127535343, -0.039217397570610046, -0.035585321485996246, 0.0037421793676912785, 0.018374621868133545, 0.005764778237789869, 0.025344302877783775, 0.004651085939258337, -0.049447108060121536, -0.035834211856126785, -0.01611698605120182, -0.030324995517730713, 0.0092873340472579, -0.04653163254261017, 0.0046236817725002766, 0.02757711336016655, -0.008767623454332352, -0.006124545820057392, 0.010618246160447598, 0.021247010678052902, -0.012806159444153309, -0.04159151762723923, -0.002989999484270811, 0.020225070416927338, 0.0022466096561402082, 0.008563214913010597, -0.04405876249074936, -0.031964510679244995, 0.013915781863033772, 0.01296487357467413, -0.0822746679186821, 0.013498181477189064, -0.017486799508333206, -0.010418357327580452, -0.007674435619264841, 0.8358783721923828, -0.009105764329433441, -0.00148270174395293, 0.06027914211153984, 0.014171501621603966, 0.039741694927215576, -0.010138501413166523, 0.006327783688902855, 0.006714243441820145, 0.008793178014457226, -0.017982173711061478, 0.017152326181530952, 0.027310188859701157, 0.024601979181170464, -0.002508603734895587, 0.033724792301654816, 0.026876656338572502, 0.007183339912444353, 0.017668187618255615, -0.004907980095595121, 0.04953967034816742, 0.06496872007846832, -0.028406118974089622, -0.010481341741979122, 0.032336000353097916, 0.03991084173321724, -0.1461990624666214, 0.018805300816893578, -6.886581491730554e-33, 0.0738314762711525, 0.006175618153065443, 0.05897630378603935, -0.027492312714457512, -0.005835312884300947, -0.01052789855748415, 0.013047684915363789, 0.001985608832910657, -0.022423846647143364, -0.044332243502140045, 0.025620320811867714, -0.015238672494888306, -0.011952903121709824, -0.000628187321126461, 0.006381343584507704, -0.024960651993751526, 0.01731579564511776, 0.03855981305241585, 0.018134409561753273, 0.04213452711701393, 0.016561178490519524, 0.023572638630867004, 0.02738269791007042, 0.05712888762354851, 0.0005498066893778741, 0.021765701472759247, 0.002823248505592346, -0.005949764046818018, -0.02182537131011486, -0.043558962643146515, -0.023249272257089615, 0.04372311010956764, -0.00803740881383419, -0.025270940735936165, 0.02088235691189766, -0.03677460178732872, -0.03752600774168968, -0.004106914158910513, -0.017059843987226486, -0.0702524483203888, -0.027237532660365105, 0.0178176611661911, -0.04394131153821945, -0.0325821153819561, -0.02571841888129711, -0.0071587879210710526, 0.008488480933010578, -0.0013874974101781845, -0.0027469564229249954, 0.026068372651934624, 0.008229165337979794, 0.029563700780272484, -0.009611662477254868, 0.017747389152646065, 0.01696697250008583, 0.010246256366372108, 0.019130876287817955, 0.029820699244737625, 0.01138547994196415, -0.014211315661668777, 0.005752358585596085, -0.02718082256615162, 0.001281831180676818, 0.06203559786081314, 0.027118679136037827, -0.030188502743840218, 0.022868551313877106, 0.02417951077222824, -0.010373485274612904, 0.03370746225118637, -0.0352974571287632, 0.036060065031051636, -0.027620188891887665, -0.04235786199569702, 0.022350843995809555, -0.04536375030875206, -0.0025851980317384005, 0.016516322270035744, 0.014315754175186157, 0.015754681080579758, 0.009160310961306095, -0.006236339453607798, 0.022464653477072716, -0.038995515555143356, -0.007244438398629427, -0.015791015699505806, 0.019938088953495026, 0.02517074905335903, -0.02331365831196308, 0.0012637319741770625, 0.024445485323667526, 0.10206372290849686, -0.008324074558913708, -0.03000756911933422, -0.025020524859428406, 7.125208314315417e-33, -0.0004131300956942141, -0.03214091435074806, -0.020550837740302086, 0.003862990066409111, -0.00975332222878933, -0.011529207229614258, 0.019830945879220963, 0.036699648946523666, 0.012578513473272324, 0.043410442769527435, -0.028769435361027718, -0.015419225208461285, -0.021564729511737823, -0.011796620674431324, 0.06280379742383957, 0.0031651491299271584, 0.005319779273122549, -0.000520180503372103, -0.01100967638194561, 0.0006337273516692221, -0.0017716194270178676, 0.016217656433582306, 0.008321268483996391, 0.033029962331056595, 0.010422816500067711, 0.017113031819462776, -0.014781471341848373, -0.002890530973672867, -0.01889736019074917, -0.014213121496140957, -0.011238622479140759, -0.027622951194643974, 0.017848657444119453, -0.026906726881861687, -0.003011873923242092, 0.023628560826182365, -0.02047709934413433, 0.019321341067552567, 0.01910858415067196, 0.008964658714830875, 0.037273894995450974, 0.00448027765378356, -0.0003151909331791103, 0.022416764870285988, -0.014207601547241211, 0.010321163572371006, 0.005268190987408161, 0.01762271299958229, -0.012624235823750496, -0.004325727932155132, -0.0071737514808773994, 0.013275694102048874, -0.008154433220624924, 0.004182820674031973, -0.006159491371363401, -0.04675427824258804, -0.02978052757680416, -0.0000019339454411237966, -0.05076392740011215, -0.024266012012958527, -0.013988586142659187, -0.02136298269033432, -0.007595797535032034, 0.011113359592854977, -0.02074596658349037, -0.06005687639117241, -0.04467453807592392, -0.024283628910779953, 0.012652629055082798, -0.03242609649896622, 0.013108465820550919, -0.015047966502606869, -0.0025186792481690645, 0.007121656555682421, 0.032449159771203995, -0.04207110032439232, -0.004488572012633085, -0.015582570806145668, -0.004284897353500128, 0.004160197451710701, 0.03167186677455902, -0.002579649444669485, 0.019259996712207794, -0.021881593391299248, 0.014764206483960152, 0.019989917054772377, -0.030185915529727936, 0.007440912537276745, 0.004863895941525698, 0.008065538480877876, 0.0005883449339307845, -0.022620733827352524, -0.01240069605410099, -0.011089324951171875, -0.005634970963001251, -1.2595628540168491e-8, -0.04896506294608116, 0.010117790661752224, -0.010207361541688442, 0.025687791407108307, 0.0088582132011652, 0.025131333619356155, -0.0015508296201005578, 0.0095320800319314, 0.05142099782824516, 0.008695874363183975, 0.0686054676771164, 0.005987331736832857, 0.010058242827653885, -0.005096010398119688, -0.004087130539119244, -0.0378958061337471, -0.011730137281119823, -0.019373036921024323, 0.025414757430553436, 0.01091653574258089, 0.003644859418272972, 0.047874271869659424, -0.01179233193397522, -0.026592643931508064, 0.015899691730737686, 0.005076844710856676, 0.01879541575908661, -0.0595393069088459, -0.02566281333565712, -0.0311148501932621, -0.003008306259289384, -0.03873913735151291, -0.0068815527483820915, 0.0009514230769127607, -0.04388539493083954, -0.03520955145359039, 0.0696919783949852, -0.003881567157804966, -0.024532081559300423, 0.016936304047703743, 0.01810251548886299, 0.023816121742129326, -0.05885527282953262, -0.02739293873310089, -0.058446306735277176, 0.002823607297614217, -0.009942672215402126, 0.03595978021621704, 0.01756959781050682, -0.018026333302259445, 0.002652486553415656, -0.0077955229207873344, 0.018192527815699577, 0.009094664826989174, 0.031721197068691254, 0.01294760499149561, 0.06999939680099487, -0.021839072927832603, -0.007425462361425161, 0.0003754587087314576, 0.05033218860626221, 0.002548942342400551, -0.019314410164952278, -0.002517686691135168 ]
jq-change-value-multiple-keys
https://markhneedham.com/blog/2020/12/30/jq-change-value-multiple-keys
false
2020-12-15 00:44:37
Strava: Authorization Error - Missing activity:read_permission
[ "strava" ]
[ "strava" ]
I'm revisiting the Strava API after a two year absence and the approach to authenticating requests has changed in that time. You now need to generate an access token via OAuth 2.0, as described in the 'How to authenticate with OAuth 2.0' section of the http://developers.strava.com/docs/getting-started/#oauth[Getting Started with the Strava API^] guide. I want to generate a token that lets me retrieve all of my activities via the http://developers.strava.com/docs/reference/#api-Activities-getLoggedInAthleteActivities[`/athlete/activities`^] end point. I tried to do this by following these steps: . Go to https://www.strava.com/settings/api and copy your Client ID . Paste your Client ID into this URL: http://www.strava.com/oauth/authorize?client_id=[REPLACE_WITH_YOUR_CLIENT_ID]&response_type=code&redirect_uri=http://localhost/exchange_token&approval_prompt=force&scope=read . Go to a browser . Paste the URL you edited into the browser window (step 1 and 2 from the graph) . Hit enter . When you see the authorization page, click “Authorize” (step 3a from the graph) image::{{<siteurl>}}/uploads/2020/12/strava-1.png[title="Strava Authorisation"] Once we click on 'Authorize', the web browser redirects to a localhost URL that contains an authorisation code. For me, this URL looks like this: [source, text] ---- http://localhost/exchange_token?state=&code=b55003496d87a9f0b694ca1680cd5690d27d9d28&scope=read ---- We then take that code and feed it into another request, which will generate a refresh token, access token, and access token expiration date: [source,bash] ---- curl -X POST https://www.strava.com/oauth/token \ -F client_id=YOURCLIENTID \ -F client_secret=YOURCLIENTSECRET \ -F code=b55003496d87a9f0b694ca1680cd5690d27d9d28 \ -F grant_type=authorization_code ---- This request will will return a JSON response that looks like this: [source,json] ---- { "token_type": "Bearer", "expires_at": 1608060738, "expires_in": 18068, "refresh_token": "<refresh-token>", "access_token": "<access-token>", "athlete": { "id": 6958432, "username": null, "resource_state": 2, "firstname": "Mark", "lastname": "Needham", "city": "London", "state": "England", "country": "United Kingdom", "sex": "M", "premium": true, "summit": true, "created_at": "2014-11-01T10:48:26Z", "updated_at": "2020-08-10T06:23:51Z", "badge_type_id": 1, "profile_medium": "https://dgalywyr863hv.cloudfront.net/pictures/athletes/6958432/17352912/1/medium.jpg", "profile": "https://dgalywyr863hv.cloudfront.net/pictures/athletes/6958432/17352912/1/large.jpg", "friend": null, "follower": null } } ---- We can then take the `access_token` and use that on requests against other API endpoints. For example, to retrieve my activities, we can make the following request: [source, bash] ---- curl -X GET https://www.strava.com/api/v3/athlete/activities -H 'Authorization: Bearer <access-token>' ---- When I ran that, I got the following response: [source, json] ---- { "message": "Authorization Error", "errors": [ { "resource": "AccessToken", "field": "activity:read_permission", "code": "missing" } ] } ---- The mistake I've made was https://www.reddit.com/r/learnpython/comments/g135yz/strava_api_code_missing/[right at the beginning of the authentication process^], when selecting the 'scope' on the initial request. We used the following URL: [source,text] ---- http://www.strava.com/oauth/authorize?client_id=[REPLACE_WITH_YOUR_CLIENT_ID]&response_type=code&redirect_uri=http://localhost/exchange_token&approval_prompt=force&scope=read ---- The `scope` is set to `read` when this API end point requires `activity:read_all` permissions, so the URL should instead read like this: [source,text] ---- http://www.strava.com/oauth/authorize?client_id=[REPLACE_WITH_YOUR_CLIENT_ID]&response_type=code&redirect_uri=http://localhost/exchange_token&approval_prompt=force&scope=activity:read_all ---- And if we do that and use the authorisation code that it returns to generate an access token, it all works as expected. Now it's time to analyse those runs!
In this post we'll learn how to get an access token with appropriate permissions for the Strava API.
null
[ 0.03731181472539902, -0.020611049607396126, 0.009951711632311344, 0.03137745335698128, 0.058552101254463196, -0.0037450052332133055, 0.02331886813044548, 0.046085670590400696, 0.017310278490185738, -0.0004909946583211422, 0.00544698815792799, -0.039609938859939575, -0.05685616657137871, -0.014312846586108208, -0.0014723597560077906, 0.030138129368424416, 0.07714296132326126, 0.005859788041561842, -0.0027901791036128998, -0.006409576162695885, 0.0014709754614159465, 0.0552835650742054, 0.024398619309067726, 0.004640201572328806, 0.048096559941768646, -0.006745461840182543, 0.010878413915634155, -0.00011562198778847232, -0.05701963230967522, -0.025632299482822418, 0.02661166526377201, -0.011026573367416859, 0.0008607371710240841, -0.0182985570281744, 0.03753842040896416, -0.004795816261321306, -0.02847038209438324, -0.019427433609962463, 0.020403306931257248, 0.011279180645942688, -0.06794228404760361, 0.014178681187331676, -0.05178014189004898, 0.006978969555348158, -0.014033196493983269, 0.03243790939450264, -0.017269497737288475, 0.008144953288137913, -0.00252886232919991, -0.022429557517170906, -0.05649135261774063, 0.022405799478292465, -0.028232866898179054, 0.0121860820800066, 0.05170680955052376, 0.05432358384132385, -0.00008243318734457716, -0.06114156171679497, 0.01169567834585905, -0.0559612400829792, 0.029670780524611473, 0.012937442399561405, 0.038133248686790466, 0.022671440616250038, 0.006038660183548927, -0.026898428797721863, 0.023396190255880356, 0.06356527656316757, -0.002094235736876726, -0.011626169085502625, -0.01566467247903347, -0.012359385378658772, -0.02115931734442711, 0.022692596539855003, 0.016768405213952065, -0.030596846714615822, 0.004985104314982891, 0.07118654251098633, 0.01952013000845909, -0.0026329748798161745, 0.012698818929493427, -0.0158703550696373, 0.01229177974164486, 0.03033590316772461, -0.022401176393032074, -0.03407391160726547, -0.02534264326095581, -0.012190102599561214, -0.014719737693667412, 0.05748710408806801, -0.0037072929553687572, -0.05897657573223114, 0.0013612172333523631, 0.007041226606816053, 0.0038892871234565973, -0.01883861981332302, 0.009192648343741894, -0.012991184368729591, 0.0067010922357439995, -0.04198559373617172, -0.03870561346411705, -0.017273038625717163, -0.01897045038640499, 0.017001856118440628, -0.05439154431223869, 0.032661039382219315, -0.008633137680590153, -0.012124987319111824, 0.020618697628378868, 0.0003474303230177611, -0.021166080608963966, 0.017484385520219803, -0.015192925930023193, -0.0005033296183682978, -0.042490195482969284, 0.04576561972498894, 0.008577689528465271, -0.03476215898990631, -0.042725592851638794, -0.0006767362356185913, 0.05229419469833374, 0.032109592109918594, -0.005643458105623722, 0.049115244299173355, 0.012736803852021694, 0.05632249638438225, -0.015117333270609379, 0.04486897215247154, -0.02204088307917118, -0.05662308633327484, -0.05396996811032295, 0.04155921936035156, -0.024365389719605446, 0.037780631333589554, 0.0057111745700240135, -0.0005914319772273302, -0.024898402392864227, -0.0030361630488187075, 0.05956937000155449, -0.016450202092528343, -0.004290206823498011, -0.041530922055244446, -0.005127260461449623, -0.012323109433054924, 0.029132850468158722, 0.030213631689548492, 0.009529258124530315, -0.04320443794131279, -0.04942679777741432, 0.012720409780740738, 0.025955094024538994, 0.009736469015479088, 0.06990473717451096, -0.02335994876921177, -0.008597448468208313, 0.08291030675172806, 0.056872181594371796, 0.002387646585702896, 0.00606369785964489, 0.02203550562262535, 0.06606695055961609, 0.04575613513588905, -0.005568104330450296, 0.0684361681342125, 0.021593132987618446, 0.007798366714268923, 0.0023297558072954416, 0.04869291931390762, 0.003946496639400721, 0.0017824997194111347, -0.06421325355768204, -0.06911107897758484, 0.03474675491452217, -0.04069554805755615, -0.029091088101267815, 0.06135661527514458, 0.05739055573940277, 0.004831231664866209, 0.033598653972148895, 0.04168679937720299, -0.06937626749277115, 0.05107047036290169, 0.029387090355157852, 0.03242975100874901, 0.0655447319149971, -0.013948583044111729, 0.1002727821469307, 0.027360208332538605, -0.005136106628924608, 0.02134171687066555, -0.05788286775350571, -0.05422017723321915, -0.03032848984003067, 0.009044880978763103, 0.06040922924876213, -0.02644333429634571, 0.005314958747476339, 0.08317308127880096, 0.034421779215335846, 0.055120401084423065, 0.021591540426015854, -0.020706109702587128, 0.008127107284963131, -0.05932135134935379, -0.05276377871632576, 0.04717548191547394, 0.05824572965502739, -0.0463472418487072, -0.04056283086538315, 0.015437143854796886, -0.05812333896756172, 0.019194582477211952, -0.007523346226662397, -0.022585175931453705, 0.011633186601102352, -0.0008592426311224699, 0.03562033176422119, -0.00023672112729400396, 0.029907869175076485, -0.03459513559937477, 0.056451015174388885, 0.005889860913157463, 0.007729473989456892, 0.0010756782721728086, -0.023626770824193954, 0.10695195943117142, 0.03113877773284912, -0.011227017268538475, -0.051553163677453995, -0.014572025276720524, 0.01564166322350502, -0.0450095571577549, -0.015089116059243679, 0.0014892274048179388, 0.006197313312441111, -0.006830391939729452, -0.015201834961771965, -0.020510096102952957, -0.0034966100938618183, -0.06622214615345001, 0.0355541817843914, 0.06139428913593292, 0.01656257174909115, 0.04687363654375076, -0.004864422604441643, -0.026490535587072372, -0.005603152792900801, -0.024836670607328415, -0.05925847962498665, -0.019377946853637695, 0.018211638554930687, -0.017117423936724663, 0.02747391164302826, -0.0036682183854281902, -0.05531248077750206, -0.012752805836498737, -0.021358376368880272, 0.02936311438679695, 0.04244142025709152, 0.03851509466767311, -0.007052928674966097, 0.04747089743614197, -0.009012202732264996, 0.03421221673488617, -0.03205176442861557, -0.04981866106390953, -0.08155477046966553, -0.055167797952890396, 0.0007249689660966396, 0.027645982801914215, 0.01827065646648407, 0.025462260469794273, 0.011579214595258236, -0.019386369735002518, -0.00309383706189692, 0.02090412937104702, 0.03683219105005264, 0.008670011535286903, -0.005195267032831907, -0.005778967868536711, -0.03708372637629509, 0.060719083994627, -0.03904005140066147, -0.051802393049001694, -0.004904096480458975, -0.09639938175678253, 0.062293075025081635, -0.06453678756952286, -0.042365092784166336, 0.006940608844161034, 0.014350196346640587, 0.05590151995420456, 0.003859099233523011, 0.024181341752409935, 0.07441464066505432, 0.0017752755666151643, 0.01549670659005642, 0.007046537008136511, -0.012998795136809349, 0.049139831215143204, 0.011995639652013779, 0.0020268966909497976, 0.06382182985544205, -0.05045095086097717, -0.0162055604159832, -0.053639478981494904, 0.016977570950984955, -0.050559598952531815, -0.26745525002479553, 0.02696656994521618, -0.021246468648314476, -0.0034328866750001907, 0.016389964148402214, 0.020519666373729706, 0.0208214670419693, -0.027544502168893814, -0.03960033133625984, 0.016845744103193283, 0.0014437998179346323, -0.029247233644127846, -0.0005348413251340389, 0.017170991748571396, -0.01634969562292099, 0.019241169095039368, -0.040913019329309464, -0.06934259086847305, 0.028532203286886215, 0.023543594405055046, -0.004350354429334402, -0.061742186546325684, 0.007904591970145702, 0.0376741886138916, 0.04581163078546524, 0.0018400464905425906, -0.08423827588558197, 0.04334988445043564, -0.002271495060995221, -0.029475808143615723, 0.014355507679283619, -0.01513187400996685, 0.028813352808356285, -0.014711689203977585, -0.032641686499118805, -0.038563743233680725, 0.052746646106243134, -0.0009245351538993418, 0.016619866713881493, -0.05852543190121651, -0.013786861672997475, -0.028883611783385277, 0.021604394540190697, -0.014856260269880295, 0.08159182220697403, 0.014093410223722458, -0.05793267488479614, 0.01442426722496748, -0.03447040170431137, 0.0886235386133194, -0.029500674456357956, -0.012825132347643375, -0.04148036241531372, 0.0342668853700161, -0.0031973463483154774, -0.04012706130743027, -0.019182419404387474, -0.007098664995282888, -0.016469968482851982, 0.0007315141847357154, 0.0069160666316747665, -0.023694945499300957, 0.012895405292510986, -0.0804721787571907, -0.024347340688109398, -0.059981588274240494, -0.03942205756902695, -0.020843330770730972, 0.046798452734947205, 0.050443194806575775, -0.06446734815835953, 0.04667086526751518, -0.06125861406326294, -0.10361767560243607, -0.017707383260130882, -0.07787661254405975, -0.0003677406639326364, -0.0021087995264679193, -0.025737673044204712, 0.0344494991004467, -0.033894795924425125, -0.05777329206466675, -0.015690810978412628, 0.0167100727558136, 0.01693335548043251, -0.002129898639395833, 0.02536940574645996, -0.01527054701000452, -0.003090306418016553, -0.0011959566036239266, 0.08533158898353577, 0.018351411446928978, -0.04392090067267418, -0.01799512468278408, -0.025654353201389313, 0.007800641003996134, 0.001895924098789692, -0.0068323323503136635, 0.0045661963522434235, 0.02491530403494835, 0.05385555326938629, -0.010388374328613281, -0.03122892789542675, -0.06849761307239532, 0.004272274672985077, -0.014677315019071102, -0.0683877244591713, 0.005968010053038597, 0.03327815234661102, 0.020788364112377167, -0.030341345816850662, -0.05265894904732704, 0.012886680662631989, -0.04936695098876953, -0.03649262711405754, 0.01196808647364378, 0.025202682241797447, 0.018509376794099808, 0.04277927428483963, -0.01905129663646221, -0.05251637473702431, 0.03573039174079895, 0.021696243435144424, -0.025559300556778908, -0.034541040658950806, -0.023483943194150925, -0.006278711371123791, 0.02270784042775631, 0.006638853810727596, 0.0298197939991951, 0.0011637426214292645, -0.004996126983314753, 0.014692346565425396, -0.027477476745843887, -0.0011603401508182287, -0.014959689229726791, -0.003487407462671399, -0.025587933138012886, 0.020095476880669594, 0.00027857685927301645, -0.014196322299540043, 0.0032210268545895815, 0.014329285360872746, 0.023699099197983742, 0.056386470794677734, -0.014215276576578617, 0.054875217378139496, 0.009964863769710064, -0.027865253388881683, -0.020878765732049942, 0.01419051643460989, -0.052361924201250076, -0.0013546793488785625, -0.0024293819442391396, 0.0034626368433237076, -0.03884068503975868, 0.021745892241597176, -0.024366943165659904, -0.005682988557964563, -0.007455634418874979, 0.04023173078894615, -0.052665382623672485, -0.02559700421988964, 0.007811279967427254, -0.01380163710564375, 0.021858198568224907, -0.0026282244361937046, -0.008497421629726887, 0.004098878707736731, -0.042916543781757355, 0.04176044464111328, -0.04653221368789673, 0.011711284518241882, -0.004998940974473953, -0.05163658410310745, 0.00749127846211195, -0.01760248653590679, 0.014916741289198399, 0.03770086541771889, -0.04201598837971687, 0.0051028127782046795, -0.007821205072104931, 0.03138145059347153, -0.02406461164355278, 0.031424444168806076, 0.015377798117697239, -0.015138243325054646, 0.006555748637765646, 0.006069413386285305, 0.0163345355540514, -0.027839766815304756, 0.010364841669797897, -0.036080680787563324, 0.0019673160277307034, 0.007168908137828112, -0.06744670122861862, 0.005383810494095087, 0.030688650906085968, -0.004510404076427221, 0.028462013229727745, -0.0306843314319849, 0.025808904320001602, -0.01333705522119999, 0.05497017875313759, 0.02735666185617447, -0.03149424493312836, -0.004051415715366602, 0.01886363886296749, 0.014059528708457947, -0.013297471217811108, 0.006940660998225212, -0.07630261778831482, -0.00377767370082438, -0.020586758852005005, 0.009096919558942318, -0.009098606184124947, -0.07208368927240372, -0.02946784719824791, -0.026548665016889572, 0.004266714211553335, 0.056834056973457336, 0.014101178385317326, -0.022905927151441574, 0.005371210165321827, -0.02980611100792885, 0.020206794142723083, -0.028874240815639496, -0.03425145894289017, 0.01697530411183834, -0.012111683376133442, -0.010876347310841084, -0.028453655540943146, 0.055362898856401443, -0.004283464513719082, -0.005771046970039606, -0.003384022507816553, -0.07594475895166397, -0.012349193915724754, 0.0036133257672190666, 0.07906234264373779, -0.0009775591315701604, 0.00897950679063797, -0.049863219261169434, -0.00456430297344923, -0.008836640045046806, 0.0004470086714718491, -0.015960639342665672, 0.008853922598063946, 0.05357664078474045, 0.04807879030704498, 0.027353646233677864, 0.05740327015519142, 0.01815430074930191, -0.0505504235625267, 0.054143693298101425, -0.08038918673992157, -0.023578010499477386, 0.000563966459594667, -0.03144413232803345, 0.027447059750556946, 0.037600524723529816, 0.019167304039001465, -0.09620248526334763, 0.01678781770169735, 0.033504124730825424, -0.001060217502526939, 0.0499950647354126, -0.03061307780444622, 0.024636805057525635, -0.006707936059683561, 0.013058078475296497, -0.08238381892442703, 0.027151117101311684, 0.040834687650203705, -0.015613292343914509, -0.025237999856472015, 0.028574680909514427, -0.05100775510072708, 0.033126816153526306, -0.0658334419131279, -0.032715361565351486, 0.06515651196241379, 0.0015791641781106591, -0.009006215259432793, 0.003766390960663557, -0.04030515253543854, 0.019026009365916252, 0.06550902128219604, -0.06867270916700363, 0.01163819245994091, -0.005883770529180765, 0.05405760928988457, -0.039002925157547, 0.05005339905619621, -0.000660085235722363, -0.04249047860503197, 0.06476015597581863, 0.01429646834731102, 0.0010185244027525187, 0.04106498509645462, -0.012044318951666355, 0.02707349881529808, 0.007103489246219397, -0.012475990690290928, -0.018679454922676086, 0.03661791607737541, 0.005635630805045366, -0.062393151223659515, 0.06389420479536057, 0.02333369478583336, -0.017220167443156242, -0.0645972415804863, 0.06891611218452454, 0.012720008380711079, -0.05588869750499725, -0.024748122319579124, 0.026925701647996902, -0.040166016668081284, -0.06324560195207596, -0.015152635052800179, -0.008000354282557964, -0.012661823071539402, 0.04893820360302925, -0.0021590213291347027, -0.0010076409671455622, 0.04568300396203995, -0.009066320024430752, -0.019046571105718613, -0.006567758042365313, 0.07702591270208359, 0.06255202740430832, 0.04437844827771187, -0.0021650195121765137, 0.06431178003549576, 0.014789923094213009, -0.04648303613066673, 0.001182790845632553, -0.023213142529129982, -0.038325950503349304, 0.0018370588077232242, -0.005281636957079172, 0.04026036337018013, -0.0021766764111816883, 0.04008135199546814, -0.02441532351076603, -0.026497507467865944, 0.005675615277141333, 0.020498888567090034, 0.018148137256503105, -0.007334879599511623, 0.011419090442359447, 0.03837118297815323, -0.02459169737994671, -0.060025207698345184, 0.014371595345437527, -0.0084581533446908, -0.013978390023112297, 0.058038514107465744, -0.004553948994725943, 0.012602437287569046, 0.011251585558056831, -0.005413825623691082, 0.06656289845705032, -0.051154304295778275, 0.002003281842917204, -0.021330153569579124, 0.01675388589501381, 0.00918950792402029, 0.024014730006456375, -0.0171523354947567, -0.019419562071561813, 0.01006298791617155, -0.04531560465693474, -0.025880564004182816, 0.012914283201098442, -0.014432854950428009, 0.043075889348983765, -0.03114723600447178, 0.030016420409083366, -0.0038196826353669167, -0.02287793718278408, -0.03887372836470604, -0.044454652816057205, -0.07271567732095718, -0.06910596042871475, -0.04963451996445656, 0.0029707697685807943, -0.013135881163179874, 0.02067570760846138, -0.04306090250611305, -0.04322998598217964, -0.015036489814519882, 0.044404372572898865, 0.014335745945572853, -0.014468787238001823, -0.03777741268277168, 0.03661816567182541, 0.0022472867276519537, -0.011599116958677769, -0.0009387820027768612, 0.03660382330417633, 0.004357787314802408, 0.008158271200954914, -0.06409904360771179, 0.03332650661468506, 0.05214446038007736, -0.0074186366982758045, -0.01307095866650343, -0.06490954011678696, 0.0200131144374609, 0.02388709783554077, 0.014009601436555386, -0.06893173605203629, 0.013658450916409492, 0.062307827174663544, 0.04044269025325775, 0.05755484849214554, -0.008128968067467213, -0.023801332339644432, -0.046039484441280365, -0.03805772215127945, 0.03540299832820892, 0.004226664546877146, 0.03160347789525986, -0.00014336906315293163, 0.08804620057344437, 0.03667861223220825, 0.01404345128685236, -0.013413503766059875, -0.009174815379083157, -0.01867959275841713, -0.011112531647086143, -0.025636086240410805, -0.009135392494499683, -0.03308294713497162, -0.058095622807741165, -0.011107533238828182, 0.023724380880594254, -0.013418562710285187, -0.021247368305921555, 0.01640385203063488, 0.014555350877344608, -0.005732020828872919, 0.06028791144490242, -0.012137691490352154, 0.027412720024585724, -0.006100477650761604, -0.011463849805295467, -0.022915540263056755, 0.010539700277149677, 0.0041122352704405785, 0.029650000855326653, 0.04672858119010925, -0.0415654294192791, -0.006827548611909151, 0.001671688980422914, 0.009828533977270126, 0.05209873244166374, -0.04575710371136665, 0.017944008111953735 ]
[ -0.062042053788900375, -0.06441039592027664, -0.056048400700092316, -0.029541783034801483, 0.02187955565750599, -0.04475036635994911, 0.0018414584919810295, 0.04911810904741287, 0.0035118404775857925, 0.016670841723680496, -0.011830093339085579, -0.046065304428339005, -0.03203091397881508, -0.0060156467370688915, 0.07071588933467865, -0.017690664157271385, -0.010441785678267479, -0.06046935170888901, -0.06476463377475739, 0.05091208964586258, -0.017308570444583893, -0.010120308957993984, -0.015089751221239567, -0.009325241670012474, -0.0004645148874260485, 0.014875244349241257, 0.03234277665615082, -0.02500346675515175, 0.0022885387297719717, -0.1715606302022934, 0.00010849206591956317, -0.0123320696875453, -0.00674854451790452, 0.01888158917427063, -0.011015058495104313, 0.03572240099310875, 0.003357346635311842, -0.0013040878111496568, -0.006736938841640949, 0.05490364134311676, 0.02407056652009487, 0.04614429548382759, -0.05902743339538574, -0.011281578801572323, 0.039760906249284744, 0.013299157842993736, -0.03056279383599758, 0.02709297649562359, -0.003996612504124641, 0.010180111974477768, -0.013924132101237774, 0.02779345214366913, 0.016795512288808823, 0.016451360657811165, 0.008589953184127808, 0.000006342845153994858, 0.01794539950788021, 0.08135511726140976, 0.012544414959847927, 0.031140273436903954, 0.00009630541171645746, -0.010559049434959888, -0.14969414472579956, 0.08835283666849136, -0.0408419631421566, 0.04332919791340828, -0.013902484439313412, 0.014019478112459183, -0.003647246863692999, 0.04264421388506889, 0.027927834540605545, -0.019306546077132225, -0.06094909459352493, 0.028463084250688553, 0.06158224865794182, -0.006151216570287943, -0.0005954914377070963, 0.05340316891670227, 0.065372034907341, 0.0016794359544292092, -0.04377437382936478, 0.01629064604640007, -0.023403184488415718, 0.014881540089845657, -0.03334776312112808, -0.00480046309530735, -0.004113948903977871, 0.04629797115921974, 0.052407942712306976, 0.0318935252726078, 0.008005241863429546, -0.025155670940876007, 0.03811943158507347, 0.0015993040287867188, -0.10114803165197372, -0.010018778964877129, 0.008183928206562996, 0.015832962468266487, -0.014774257317185402, 0.43825650215148926, 0.0024428449105471373, 0.02201375551521778, 0.004379938822239637, 0.007845168001949787, 0.021507641300559044, -0.014510028064250946, -0.021629266440868378, -0.054697006940841675, 0.018697699531912804, -0.0026372342836111784, 0.021182766184210777, 0.023923704400658607, 0.04074356332421303, -0.06120169907808304, -0.021998630836606026, 0.06473436206579208, 0.00792424101382494, 0.04590555652976036, -0.027081115171313286, -0.0023116259835660458, -0.02368401549756527, -0.015264704823493958, 0.01504267007112503, 0.0007436550804413855, 0.004267575219273567, -0.005402469541877508, 0.07445360720157623, 0.05900896340608597, 0.023195020854473114, 0.05240417271852493, 0.05912645161151886, -0.013129127211868763, -0.08050090074539185, -0.014657815918326378, 0.0025192617904394865, -0.017821695655584335, -0.027768634259700775, -0.03987415134906769, -0.013239786028862, 0.035722311586141586, -0.011928506195545197, -0.04211501404643059, 0.055026665329933167, -0.042210567742586136, -0.027038654312491417, 0.1096295565366745, 0.03682534024119377, -0.03059157356619835, 0.019460568204522133, -0.05142922326922417, 0.03641011565923691, 0.024197397753596306, 0.022344188764691353, -0.06139145791530609, 0.019544078037142754, 0.02568843588232994, 0.0731126070022583, -0.004132833331823349, -0.06163863465189934, -0.013508593663573265, 0.025558430701494217, -0.05980486422777176, -0.051914528012275696, 0.05002591758966446, 0.06878851354122162, -0.1281079649925232, -0.003873269772157073, 0.024203745648264885, 0.0115470290184021, -0.057909537106752396, 0.00563125079497695, -0.003394923871383071, -0.028848323971033096, -0.0064318981021642685, 0.05817273259162903, 0.000285335787339136, -0.028425095602869987, -0.036117032170295715, 0.03314438462257385, 0.027006136253476143, -0.05100865289568901, -0.023523779585957527, -0.045654140412807465, -0.012932369485497475, -0.04178806021809578, -0.04549923539161682, -0.05586706101894379, 0.00627925805747509, -0.006274202838540077, -0.051885008811950684, -0.018420904874801636, -0.011258449405431747, -0.09592671692371368, 0.04653943330049515, -0.00008672843250678852, 0.000708241481333971, -0.01768028363585472, -0.0218468327075243, 0.012804425321519375, -0.024372955784201622, 0.0341532826423645, 0.019593967124819756, 0.0032441820949316025, 0.057508062571287155, -0.022427557036280632, 0.020784178748726845, 0.0573093555867672, -0.04788868874311447, 0.07964286208152771, 0.02299165166914463, -0.02301955409348011, 0.026601949706673622, -0.016704022884368896, 0.003702544141560793, 0.0312343742698431, -0.041916605085134506, -0.015697022899985313, -0.03743802011013031, 0.004112385679036379, 0.021226895973086357, -0.00691409595310688, 0.03241113945841789, -0.008727185428142548, -0.3381052017211914, -0.010662862099707127, -0.03024239093065262, 0.02985411137342453, 0.01437362190335989, -0.07171875238418579, 0.007796254009008408, -0.031910065561532974, 0.0011055120266973972, 0.006576552055776119, 0.15212170779705048, 0.02984149195253849, 0.0008809503051452339, -0.06012057885527611, 0.043765950947999954, 0.03490779548883438, -0.011808762326836586, -0.015689948573708534, 0.02723979391157627, -0.00905518513172865, -0.02870156615972519, -0.0316699780523777, 0.012410278432071209, -0.01712452992796898, -0.01113959588110447, -0.02187085710465908, 0.11329515278339386, 0.06272328644990921, 0.002706891158595681, -0.04196614772081375, 0.04760393872857094, 0.003383135423064232, -0.016324425116181374, -0.1368921846151352, 0.013078955933451653, -0.0048685623332858086, 0.023199131712317467, 0.02779027447104454, 0.08009511232376099, -0.04005720093846321, -0.035969410091638565, 0.038705747574567795, -0.03998982161283493, -0.02471105568110943, -0.007656935602426529, -0.02404191717505455, -0.019146248698234558, -0.01155303604900837, 0.008893261663615704, 0.09534678608179092, -0.01608893647789955, 0.032800786197185516, 0.009527178481221199, 0.061351027339696884, -0.004031394142657518, -0.01960003189742565, -0.06519069522619247, -0.026936383917927742, 0.009250441566109657, 0.010718793608248234, -0.01200661901384592, 0.04427630081772804, 0.023055147379636765, -0.07994057238101959, 0.022655900567770004, -0.007735559716820717, -0.017204079777002335, -0.014813442714512348, 0.06838241219520569, -0.03870035707950592, -0.03866775333881378, 0.09298914670944214, -0.012605893425643444, 0.004840819165110588, 0.06998752802610397, 0.029866080731153488, -0.013322199694812298, -0.0001297244889428839, 0.02870100922882557, 0.027100838720798492, -0.014832606539130211, -0.03464677929878235, 0.005326424725353718, -0.04081447049975395, 0.005882013123482466, 0.06796550005674362, -0.04940544813871384, 0.016392270103096962, 0.048237722367048264, 0.013654722832143307, -0.029223179444670677, -0.003731505712494254, -0.0218487698584795, -0.05559920519590378, 0.01712702214717865, -0.003767243819311261, -0.2649146616458893, 0.03218844160437584, 0.051729846745729446, 0.059538159519433975, 0.0006375032826326787, -0.0030884186271578074, 0.03357512503862381, -0.06621565669775009, -0.05758097395300865, 0.0032167406752705574, 0.03919754922389984, 0.04813915118575096, 0.0036850757896900177, 0.021628428250551224, 0.005271570291370153, 0.01918521337211132, 0.03369016572833061, -0.0031804039608687162, -0.004740679170936346, 0.013080338947474957, 0.014583174139261246, -0.014238676987588406, 0.14375638961791992, 0.013351738452911377, -0.0164319034665823, -0.008175289258360863, -0.015614462085068226, 0.042963918298482895, 0.058505285531282425, -0.007684775628149509, -0.020806610584259033, -0.028729289770126343, 0.053080860525369644, 0.04563762992620468, 0.031241074204444885, -0.10163222998380661, -0.0050940499641001225, -0.006513242144137621, -0.0026974414940923452, -0.0370941236615181, -0.017648307606577873, -0.00659215496852994, -0.015921667218208313, 0.03397899121046066, 0.058241117745637894, -0.04490472376346588, -0.013864665292203426, -0.01448698528110981, -0.05221239849925041, -0.004681359510868788, -0.03522971272468567, -0.07202562689781189, -0.024537844583392143, 0.02552371472120285, 0.01972213387489319, 0.03866788372397423, 0.015176767483353615, -0.06570923328399658, 0.02417747676372528, 0.025753803551197052, -0.020650779828429222, -0.013290398754179478, 0.0631045401096344, 0.009263396263122559, 0.003471560776233673 ]
[ 0.027053553611040115, 0.04139968752861023, -0.01529591903090477, 0.023304030299186707, -0.0157767403870821, 0.017011290416121483, -0.021533822640776634, -0.0010376584250479937, 0.025688467547297478, -0.02398039773106575, -0.008884025737643242, 0.026545139029622078, 0.024278268218040466, -0.004522227216511965, 0.022255705669522285, -0.016245216131210327, -0.02907625213265419, -0.019591646268963814, 0.05209913104772568, 0.014411595650017262, 0.019936678931117058, 0.038711562752723694, -0.005986379459500313, 0.006094816140830517, -0.015191914513707161, 0.024134520441293716, -0.05060359090566635, -0.029541248455643654, 0.015511604957282543, -0.13204042613506317, 0.00006234522152226418, -0.040045496076345444, 0.012005755677819252, -0.0024924513418227434, -0.06591085344552994, -0.008000710047781467, 0.002383667044341564, 0.01120520755648613, -0.044054362922906876, 0.00043024428305216134, -0.0016930936835706234, -0.005643421784043312, -0.0125585300847888, -0.006443170830607414, -0.0043272944167256355, -0.011619755998253822, -0.005722247064113617, -0.009296071715652943, -0.020182866603136063, 0.012029510922729969, -0.023023193702101707, -0.035031698644161224, 0.004321557469666004, 0.004292734432965517, -0.019069328904151917, -0.024180788546800613, -0.05508072301745415, 0.023455295711755753, 0.009175094775855541, -0.027030928060412407, 0.06063605844974518, 0.017927812412381172, -0.020105792209506035, -0.02645949460566044, -0.0034737884998321533, -0.054959870874881744, 0.025474542751908302, -0.029498422518372536, -0.02339562028646469, -0.0018108608201146126, -0.000931029615458101, 0.034179847687482834, -0.047498807311058044, -0.03575494885444641, -0.026200931519269943, -0.006426617968827486, 0.011244500987231731, 0.017183639109134674, 0.010936601087450981, -0.0004317599523346871, -0.01762164570391178, -0.008136267773807049, -0.025471525266766548, 0.06660592555999756, 0.00836357194930315, 0.04079096391797066, -0.022331180050969124, -0.005847439169883728, 0.03930961340665817, -0.004508344456553459, -0.03723684698343277, 0.011028332635760307, -0.00849491823464632, -0.0020427240524441004, -0.05597127601504326, -0.002693711081519723, -0.045306041836738586, 0.0033910830970853567, -0.004307060036808252, 0.8026178479194641, -0.01744760572910309, 0.004282462410628796, -0.003036131616681814, 0.034899551421403885, 0.00859528873115778, -0.008918234147131443, 0.008504791185259819, -0.026434333994984627, 0.04177606478333473, 0.024402553215622902, 0.04063911363482475, 0.019698787480592728, 0.015605393797159195, 0.010544001124799252, 0.021539460867643356, 0.09507904946804047, 0.004545365460216999, -0.008407876826822758, -0.004097389988601208, 0.039288025349378586, 0.01703108288347721, -0.019850632175803185, 0.019297538325190544, -0.013369654305279255, -0.003915728535503149, -0.18893615901470184, 0.029852556064724922, -7.463152654601254e-33, 0.0056044310331344604, -0.02963453345000744, 0.04113679751753807, 0.007513528224080801, 0.00448202807456255, -0.021677805110812187, -0.0017214732943102717, -0.0323333777487278, 0.0074991509318351746, -0.04915880411863327, -0.029704242944717407, 0.05486178770661354, 0.035894207656383514, -0.0019731789361685514, 0.037462908774614334, -0.023350605741143227, 0.003687863936647773, 0.034864313900470734, 0.06150665506720543, -0.002398319309577346, 0.04759753867983818, 0.0010182587429881096, 0.0043665687553584576, 0.043731868267059326, 0.020222079008817673, 0.020947476848959923, 0.030401282012462616, -0.008639014326035976, -0.017123274505138397, -0.045588862150907516, -0.0020488444715738297, -0.03872726112604141, -0.006812373176217079, -0.057646412402391434, 0.056760720908641815, -0.04902972653508186, -0.020323054865002632, 0.009291576221585274, -0.03268957510590553, -0.05835747718811035, -0.0035091405734419823, -0.016678204759955406, -0.016564594581723213, 0.006808397825807333, -0.039664141833782196, -0.013685405254364014, 0.009774154052138329, 0.02303915284574032, -0.006717310287058353, 0.023752937093377113, -0.014031708240509033, 0.01372783724218607, 0.001967390300706029, -0.04426901787519455, -0.032190095633268356, -0.004354314412921667, -0.02216392196714878, 0.05267595499753952, -0.01898450031876564, -0.008739814162254333, 0.04188748449087143, -0.014546333812177181, -0.0049705044366419315, 0.02244391292333603, -0.021489275619387627, -0.000456432782812044, -0.005408884026110172, 0.04341007024049759, 0.04849701747298241, 0.010613055899739265, -0.05058396980166435, 0.0367102324962616, -0.017218926921486855, -0.012737744487822056, 0.03871389850974083, -0.025502819567918777, 0.05358635261654854, 0.03319627791643143, 0.04228879511356354, 0.03332217410206795, 0.04219886288046837, -0.040355145931243896, -0.03460199013352394, 0.0016918558394536376, -0.054646555334329605, -0.008286762051284313, 0.031052596867084503, -0.01186936441808939, -0.02913817949593067, 0.04037456214427948, 0.0247072484344244, 0.0430271215736866, 0.024173986166715622, 0.007850045338273048, -0.0051273456774652, 6.598593457302755e-33, -0.0034991141874343157, -0.04972103238105774, 0.03696107491850853, 0.0009967071237042546, 0.0870652049779892, -0.0073749166913330555, 0.003121812827885151, 0.02531709335744381, -0.04872201010584831, 0.005770078394562006, -0.011158477514982224, 0.0036483490839600563, -0.05588475614786148, 0.06511847674846649, 0.0733179971575737, -0.01359654776751995, 0.01107108872383833, 0.020583152770996094, -0.013148805126547813, -0.020819831639528275, -0.014942833222448826, 0.032013874500989914, 0.010401446372270584, 0.014820292592048645, 0.0392085462808609, 0.049344874918460846, 0.012351631186902523, 0.00424271821975708, -0.01712646335363388, -0.01337538380175829, 0.018749874085187912, -0.029975229874253273, -0.0017704583005979657, 0.0022062838543206453, -0.02838248200714588, 0.014100435189902782, 0.010326426476240158, 0.011829697526991367, 0.011524669826030731, -0.04713636636734009, 0.025172103196382523, 0.012668303214013577, 0.00018049623758997768, 0.017129572108387947, 0.016435928642749786, 0.028649939224123955, -0.003587332321330905, 0.0028298015240579844, -0.040338169783353806, 0.01703793928027153, 0.024931704625487328, 0.01940487138926983, -0.014858394861221313, 0.0288582444190979, 0.037054359912872314, -0.03076528012752533, -0.0055409823544323444, -0.014651931822299957, -0.04508231207728386, -0.022914361208677292, -0.018918370828032494, -0.007667457219213247, -0.017516667023301125, 0.052217885851860046, -0.026105644181370735, -0.06253395229578018, 0.007257593795657158, 0.01628715544939041, -0.02971358224749565, 0.02587781473994255, -0.022897088900208473, -0.019322652369737625, -0.019679227843880653, 0.01987132430076599, 0.032546594738960266, -0.025973256677389145, -0.009387371130287647, 0.002486701123416424, -0.019597863778471947, 0.007754993159323931, -0.010633536614477634, -0.015017401427030563, 0.035114504396915436, -0.02368396893143654, 0.02882709912955761, 0.02145455591380596, -0.04168209806084633, 0.01340988278388977, 0.02971781976521015, 0.05749312788248062, -0.02453654445707798, -0.01609676331281662, -0.023561011999845505, -0.01524617150425911, 0.012756996788084507, -1.254059789346229e-8, -0.01298334077000618, 0.007325407117605209, 0.001440859050489962, 0.02852168120443821, 0.012394162826240063, 0.01946885511279106, -0.03197472169995308, -0.0134927062317729, 0.01144515909254551, 0.0039507136680185795, 0.023615432903170586, -0.04100567474961281, 0.035591624677181244, -0.03901747986674309, 0.006700500380247831, -0.006711570546030998, -0.009222175925970078, 0.01909472607076168, 0.042986005544662476, -0.021008921787142754, -0.023716557770967484, 0.005198212806135416, 0.003314377274364233, -0.018588770180940628, 0.003269977169111371, -0.017883317545056343, -0.028853770345449448, -0.05289836972951889, -0.023007499054074287, -0.013179968111217022, -0.005535909906029701, -0.02271886169910431, -0.001332747284322977, -0.05271196737885475, -0.04511182755231857, -0.05679082125425339, 0.03724054619669914, -0.05774696543812752, -0.03423290699720383, 0.019899645820260048, 0.004764051176607609, 0.019220786169171333, 0.028635298833251, -0.029361240565776825, -0.023160850629210472, 0.02230808138847351, 0.010879571549594402, -0.018429886549711227, 0.02602049522101879, -0.06268011033535004, 0.006374297197908163, 0.005325955338776112, -0.009582805447280407, 0.04789986088871956, -0.006835321895778179, 0.026037054136395454, -0.007511647883802652, -0.04370162636041641, -0.02779548615217209, -0.034547578543424606, 0.045828741043806076, 0.009781325235962868, -0.03481452539563179, -0.02083527483046055 ]
strava-authorization-error-missing-read-permission
https://markhneedham.com/blog/2020/12/15/strava-authorization-error-missing-read-permission
false
2018-03-20 17:51:10
Neo4j Desktop: undefined: Unable to extract host from undefined
[ "neo4j", "neo4j-desktop" ]
[ "Neo4j" ]
During a training session I facilitated today one of the attendees got the following error message while trying to execute a query inside the Neo4j Desktop. image::{{<siteurl>}}/uploads/2018/03/2018-03-20_17-49-35.png[width="600px"] This error message happens if we try to run a query when the database hasn't been started, and would usually be accompanied by this screen: image::{{<siteurl>}}/uploads/2018/03/2018-03-20_17-56-48.png[width="600px"] On this occasion that wasn't happening, but we can easily fix it by going back to the project screen and starting the database: image::{{<siteurl>}}/uploads/2018/03/2018-03-20_17-58-54.png[width="600px"] Once we do that we'll be able to execute queries again.
Learn how to work around a weird message in the Neo4j browser.
null
[ 0.011756484396755695, -0.01844465546309948, -0.014544177800416946, 0.02817009761929512, 0.08977624028921127, -0.01042516715824604, 0.054684896022081375, 0.021442774683237076, 0.012297354638576508, -0.02069173939526081, -0.03588736057281494, 0.00024105593911372125, -0.05187661945819855, 0.020226819440722466, 0.002561144297942519, 0.0641295462846756, 0.06706018000841141, 0.0122441491112113, 0.02842278592288494, -0.014168125577270985, 0.026148313656449318, 0.03995392844080925, -0.0041334014385938644, 0.03923310711979866, 0.05248156934976578, 0.019810663536190987, -0.01847672462463379, -0.0007810519891791046, -0.0644533559679985, -0.007967613637447357, 0.035395774990320206, 0.008659638464450836, 0.03146146237850189, -0.022144729271531105, 0.038224101066589355, 0.01268681325018406, -0.043053168803453445, 0.02844659611582756, -0.012555496767163277, 0.006399281322956085, -0.049995724111795425, 0.020540984347462654, 0.0035010077990591526, 0.03628825023770332, -0.04432445392012596, 0.023284323513507843, -0.048322927206754684, 0.027790183201432228, 0.035851363092660904, -0.004185016732662916, -0.08583510667085648, 0.06149842590093613, -0.0036396775394678116, -0.010529285296797752, 0.022561149671673775, 0.040165387094020844, 0.014415796846151352, -0.06950583308935165, 0.054941702634096146, -0.014444543980062008, 0.005431613884866238, -0.014139177277684212, -0.004372708965092897, 0.015583445318043232, 0.016851624473929405, -0.02597144804894924, 0.009597417898476124, 0.062190115451812744, -0.05835574120283127, 0.005737645085901022, 0.0000957308875513263, 0.02533833310008049, -0.0074262479320168495, -0.007502593100070953, 0.013707933947443962, -0.05224783346056938, -0.0051765842363238335, 0.04688413441181183, 0.03258383646607399, 0.06359275430440903, -0.009944126009941101, 0.012545568868517876, 0.04182596132159233, 0.018482418730854988, 0.006943896412849426, -0.04900842905044556, -0.02771405316889286, -0.05014461278915405, -0.030086759477853775, 0.02880365401506424, 0.04864149168133736, -0.06182072311639786, 0.02534434199333191, -0.00124320515897125, -0.024988578632473946, 0.03218120336532593, -0.0014362821821123362, 0.0006751544424332678, 0.02564946562051773, -0.020664960145950317, -0.03034242056310177, -0.031191768124699593, -0.001055293483659625, 0.027282435446977615, -0.07744401693344116, -0.010830488987267017, -0.03611179068684578, -0.018289854750037193, 0.004613441415131092, -0.010136009193956852, -0.027702555060386658, 0.020913422107696533, -0.020722880959510803, -0.009639237076044083, -0.09188301861286163, 0.06414905935525894, 0.019245777279138565, -0.005509753245860338, -0.014554005116224289, 0.013898718170821667, 0.05429781600832939, 0.0194852314889431, -0.012550616636872292, 0.08067649602890015, -0.029072508215904236, 0.03696422278881073, 0.017347285524010658, 0.03673268482089043, -0.023382088169455528, -0.07480300962924957, -0.009996949695050716, 0.062496308237314224, 0.00800638273358345, 0.010075350292026997, -0.010726210661232471, -0.025387553498148918, 0.011660308577120304, -0.009255818091332912, 0.04740162193775177, 0.009038211777806282, -0.0036328951828181744, -0.057543423026800156, 0.01690969616174698, 0.023179244250059128, 0.04964427277445793, 0.02982822246849537, -0.003510531038045883, -0.03560113534331322, -0.0239406768232584, 0.013616185635328293, 0.01948249712586403, 0.005083087366074324, 0.040657851845026016, -0.026066632941365242, 0.000806197349447757, 0.11561977118253708, -0.005989537574350834, 0.01817675121128559, -0.016914231702685356, 0.03274397552013397, 0.03583899512887001, 0.027883443981409073, -0.011108390055596828, 0.0503944531083107, 0.0014154973905533552, -0.010973644442856312, -0.019055185839533806, 0.048222675919532776, -0.008736776188015938, 0.026354053989052773, -0.052243687212467194, -0.08269796520471573, 0.0561676099896431, -0.05229102820158005, -0.03203113377094269, 0.06492426991462708, 0.06884890794754028, 0.009994269348680973, 0.013597632758319378, 0.01925628073513508, -0.07673090696334839, 0.04500706493854523, -0.004753250163048506, 0.0008011289173737168, 0.010312823578715324, 0.00314975599758327, 0.08339480310678482, 0.034000054001808167, 0.022401800379157066, 0.03419119864702225, -0.10384055227041245, -0.0942780151963234, -0.03762604668736458, -0.0011680168099701405, 0.04982563108205795, -0.03722517937421799, 0.0018223385559394956, 0.042420145124197006, -0.012661997228860855, 0.04756598919630051, 0.010180526413023472, 0.01848098263144493, 0.04013342037796974, -0.044469572603702545, -0.052254222333431244, 0.07199686020612717, 0.02902909368276596, -0.05915122106671333, -0.04522426798939705, 0.023750945925712585, -0.025745699182152748, -0.00412894319742918, 0.03853945434093475, 0.0034898158628493547, 0.05074358731508255, 0.019816434010863304, 0.04282425343990326, -0.039519768208265305, 0.02261633239686489, -0.04098290205001831, 0.027894947677850723, 0.024423036724328995, -0.02689712680876255, 0.0012791577028110623, 0.006252715829759836, 0.108082115650177, 0.042016372084617615, 0.009399236179888248, -0.05358338728547096, 0.011647849343717098, 0.013100359588861465, -0.023717932403087616, 0.03078778088092804, -0.022817201912403107, 0.014400175772607327, 0.005155075807124376, -0.023545552045106888, -0.0477408803999424, -0.002293844474479556, -0.03792053461074829, 0.003405710682272911, 0.06305592507123947, -0.04112918674945831, 0.047797635197639465, 0.0241659227758646, -0.0002595226396806538, 0.0104262949898839, -0.020055994391441345, -0.04212770611047745, 0.02833782695233822, 0.038158297538757324, -0.009143211878836155, 0.0550096333026886, -0.01846139319241047, -0.013551649637520313, -0.028544167056679726, -0.02667757123708725, 0.028448445722460747, 0.056440673768520355, 0.05522451549768448, 0.00044944186811335385, 0.04088987410068512, -0.03540365397930145, -0.0016000717878341675, -0.0031580976210534573, -0.047342173755168915, -0.03568495437502861, -0.03680386021733284, 0.034040506929159164, 0.013368815183639526, 0.04075419157743454, -0.015273313969373703, 0.024353137239813805, 0.021012745797634125, 0.00442842673510313, -0.005063841585069895, 0.03536003828048706, -0.007991488091647625, 0.010114431381225586, -0.021407080814242363, -0.026354975998401642, 0.03689206764101982, -0.08166220784187317, -0.034835293889045715, -0.00046977950842119753, -0.02531941793859005, 0.039816875010728836, -0.06893735378980637, -0.052950419485569, 0.0055589452385902405, 0.013301764614880085, 0.07141343504190445, 0.023579740896821022, 0.0006313816411420703, 0.09053172171115875, -0.004442814737558365, 0.009416652843356133, -0.005498114041984081, 0.00396791473031044, 0.05803985893726349, -0.010822274722158909, 0.048437487334012985, 0.03364134207367897, -0.032831981778144836, 0.009330814704298973, -0.04237188398838043, -0.0222316961735487, -0.018998892977833748, -0.27305176854133606, 0.03851688653230667, 0.002140557626262307, -0.03494059666991234, 0.030990255996584892, -0.033711474388837814, 0.018667584285140038, -0.0034734169021248817, -0.040366049855947495, 0.001468328176997602, 0.01798224449157715, -0.031669314950704575, -0.0014475100906565785, 0.044412463903427124, -0.004050062969326973, 0.019682852551341057, 0.012053046375513077, -0.05043983459472656, 0.007662580814212561, 0.006595749873667955, -0.008082980290055275, -0.041689492762088776, -0.012372682802379131, -0.0014742413768544793, 0.03142820671200752, 0.05781716853380203, -0.0686102882027626, 0.04415937885642052, -0.04676460474729538, -0.04401177912950516, 0.019931457936763763, -0.007518725469708443, 0.00542609253898263, 0.012846353463828564, -0.022122563794255257, 0.005787417758256197, 0.018367541953921318, -0.015370016917586327, 0.0009144807117991149, 0.007011542562395334, -0.037192706018686295, -0.07032129913568497, 0.005934609100222588, -0.0028901982586830854, 0.08433234691619873, -0.011837475933134556, -0.07202829420566559, -0.01243820320814848, -0.013946409337222576, 0.05965043604373932, -0.024061888456344604, -0.03926744684576988, 0.006439604330807924, 0.03930884972214699, 0.009007412008941174, -0.010959159582853317, -0.02391403540968895, -0.004078873433172703, -0.053812406957149506, -0.035090409219264984, -0.011029411107301712, -0.053028251975774765, 0.012334831990301609, -0.043234847486019135, -0.031274013221263885, -0.05102907493710518, -0.045586466789245605, -0.04303589090704918, 0.057920608669519424, 0.024978986009955406, -0.012654097750782967, 0.04152873158454895, 0.0045820618979632854, -0.09022261202335358, -0.037861403077840805, -0.04389912262558937, -0.0021293533500283957, -0.004732042085379362, -0.030143359676003456, 0.03317585214972496, -0.03799793869256973, -0.04622235149145126, -0.011720865033566952, 0.026961378753185272, 0.020915670320391655, -0.0031198274809867144, 0.03427502140402794, -0.025809910148382187, -0.03581999987363815, 0.024492185562849045, 0.06290189921855927, -0.031120995059609413, -0.04368274658918381, 0.01405015867203474, -0.03377017378807068, 0.02803797647356987, -0.004881429020315409, -0.01614375412464142, 0.015943650156259537, 0.05496075004339218, 0.04166658595204353, -0.047587763518095016, 0.033704813569784164, -0.03403244540095329, -0.019481873139739037, 0.0016632324550300837, -0.03959709033370018, 0.015842583030462265, 0.013240614905953407, 0.016477111726999283, 0.00025014052516780794, -0.008454044349491596, 0.016126219183206558, -0.03108822926878929, -0.03187983110547066, -0.0009092940599657595, 0.03424014523625374, 0.024143194779753685, 0.025820406153798103, -0.028133312240242958, -0.051591161638498306, 0.040342461317777634, 0.044661927968263626, 0.015595453791320324, -0.05237102881073952, -0.023829689249396324, -0.0004574421909637749, -0.022298000752925873, -0.0011195616098120809, -0.013712756335735321, -0.029126960784196854, 0.030945003032684326, 0.026973925530910492, 0.002041012281551957, 0.05370631814002991, -0.026029011234641075, -0.038747478276491165, -0.017414450645446777, 0.017248300835490227, -0.007599310018122196, -0.020481998100876808, -0.0081487400457263, -0.010149780660867691, 0.03367455303668976, 0.05641855672001839, 0.014483957551419735, 0.002674269024282694, -0.010077770799398422, 0.017772560939192772, 0.027952058240771294, -0.03154996037483215, -0.04380672425031662, 0.040763091295957565, -0.054389189928770065, -0.03857048973441124, -0.005660897120833397, 0.05024692788720131, -0.03987748548388481, -0.015540258027613163, -0.02040911838412285, 0.005697276443243027, -0.06834056228399277, -0.017259053885936737, 0.005740671418607235, -0.022367242723703384, 0.03991562873125076, -0.019027043133974075, 0.0012534158304333687, -0.0049762730486691, -0.020163368433713913, 0.019976932555437088, -0.0025596413761377335, -0.0346219427883625, 0.01244728546589613, 0.02715187892317772, 0.011966260150074959, 0.01529278140515089, 0.028719376772642136, 0.04554203897714615, 0.015502353198826313, -0.00776554923504591, 0.004380029160529375, 0.03647056221961975, 0.038084059953689575, 0.04969647526741028, 0.021056177094578743, -0.028247982263565063, 0.010911444202065468, -0.007091492414474487, -0.02403726987540722, -0.0077116298489272594, -0.008759277872741222, -0.016980379819869995, 0.002300478983670473, -0.013097019866108894, -0.04524410143494606, 0.04049288481473923, -0.011060986667871475, 0.028223756700754166, 0.033628225326538086, 0.009654040448367596, 0.013065210543572903, -0.05123806372284889, 0.045710232108831406, 0.03464061766862869, -0.06451538950204849, -0.01484288927167654, -0.0034347111359238625, -0.03365031257271767, 0.01547242235392332, 0.005690844729542732, -0.04208751395344734, -0.03624412789940834, -0.021323619410395622, 0.02190885879099369, -0.0330413281917572, -0.04281579703092575, 0.0020003984682261944, 0.021814176812767982, -0.01135375164449215, 0.022496579214930534, -0.00039940932765603065, 0.033993687480688095, -0.03244546428322792, -0.009336206130683422, 0.0426953062415123, -0.03967273607850075, -0.0042721121571958065, 0.007658904884010553, -0.017042815685272217, 0.017928676679730415, -0.0206601619720459, 0.03760034590959549, 0.004740757867693901, 0.0017979934345930815, -0.012339239940047264, -0.049612224102020264, 0.022334856912493706, 0.004927851725369692, 0.014717728830873966, -0.013780989684164524, -0.0038569485768675804, -0.021522756665945053, 0.0004967584973201156, -0.015172856859862804, 0.030957970768213272, -0.015031919814646244, -0.0034478330053389072, 0.00880346167832613, 0.02919924631714821, 0.0123454499989748, 0.03250618278980255, -0.024473657831549644, -0.03190144523978233, 0.052387963980436325, -0.03948407992720604, -0.015822751447558403, -0.010401488281786442, -0.05329776927828789, 0.019269337877631187, 0.017507759854197502, -0.010046145878732204, -0.04402180761098862, 0.05505862459540367, 0.0374872125685215, 0.020518023520708084, 0.03156764432787895, -0.0268243458122015, 0.04361595958471298, -0.026227878406643867, -0.041101716458797455, -0.0913102850317955, 0.000256889674346894, 0.02889706939458847, -0.007131347898393869, -0.01958189345896244, -0.022856123745441437, -0.03292650356888771, -0.006902242079377174, -0.05013308674097061, -0.027642380446195602, 0.0296554546803236, -0.030724748969078064, 0.009345438331365585, 0.031036358326673508, -0.05568288266658783, 0.001935538137331605, 0.04237448051571846, -0.03387285768985748, -0.05639323964715004, -0.0409482941031456, 0.05834897980093956, -0.03637120872735977, 0.019591394811868668, -0.05379613861441612, -0.016183022409677505, 0.08449430763721466, 0.032797977328300476, 0.05108366906642914, 0.057974714785814285, -0.033785250037908554, 0.04890169948339462, 0.04907911643385887, 0.0008327747927978635, 0.006875976454466581, 0.02507898025214672, -0.037777818739414215, -0.0566069670021534, 0.025598010048270226, 0.012879121117293835, -0.010258259251713753, -0.05154221132397652, 0.06562505662441254, 0.0007837818702682853, -0.02730444073677063, -0.02190479077398777, 0.003805984975770116, -0.03999405354261398, -0.024334926158189774, -0.05886483192443848, -0.006175979506224394, -0.04331214725971222, 0.07034694403409958, -0.009357982315123081, -0.006565906573086977, 0.07397516071796417, -0.013086080551147461, 0.002085136016830802, 0.004239985719323158, 0.06766834110021591, 0.07514588534832001, 0.025820905342698097, 0.01851343922317028, 0.06957195699214935, -0.02389237843453884, -0.030388569459319115, -0.007311216089874506, -0.05363897606730461, -0.03704645857214928, -0.021885305643081665, -0.005115958862006664, 0.07898539304733276, -0.019974561408162117, 0.07604585587978363, -0.04251455143094063, 0.020427905023097992, -0.02465881034731865, -0.0034703330602496862, 0.04931358993053436, 0.041869573295116425, 0.0012345111463218927, 0.03331854194402695, -0.013984832912683487, -0.025769438594579697, 0.019350610673427582, 0.0008599241846241057, -0.0078080277889966965, 0.008421234786510468, -0.00965668074786663, -0.004382387734949589, 0.015147830359637737, 0.024093681946396828, 0.07729407399892807, -0.024624716490507126, -0.01754719950258732, 0.016014356166124344, 0.028885433450341225, -0.000977427582256496, 0.04294763132929802, -0.025130029767751694, -0.020293138921260834, -0.014631801284849644, -0.044066473841667175, -0.02752832882106304, -0.03996105492115021, -0.08121085166931152, 0.013854820281267166, -0.041803695261478424, -0.025040119886398315, -0.0037566926330327988, -0.01367735955864191, -0.0076894937083125114, -0.05299335718154907, -0.05830010771751404, -0.046353861689567566, -0.07411391288042068, 0.013835965655744076, -0.0008000140660442412, 0.0001363995688734576, -0.023287400603294373, -0.0016358915017917752, -0.00830873940140009, -0.02591078169643879, 0.04047498106956482, -0.043176524341106415, -0.01621168665587902, 0.029951494187116623, 0.02500912919640541, 0.010721798054873943, 0.01983320340514183, 0.045968275517225266, -0.014415091834962368, 0.02050381526350975, -0.01811791956424713, 0.023482628166675568, 0.04368984326720238, 0.005743077024817467, 0.02118784375488758, -0.08799222111701965, -0.009088368155062199, 0.02029181830585003, -0.0007837616722099483, -0.06070265918970108, 0.011878247372806072, 0.060955632477998734, -0.03541718050837517, 0.03779008612036705, -0.010738864541053772, -0.00375672266818583, -0.03590910881757736, 0.02007911540567875, -0.01694163866341114, 0.016169371083378792, 0.021272536367177963, -0.028310110792517662, 0.049313951283693314, 0.04971133917570114, -0.034837979823350906, -0.009293951094150543, -0.016086800023913383, 0.018107740208506584, -0.007750073913484812, -0.051001619547605515, -0.03730253130197525, -0.06153886765241623, -0.10349343717098236, -0.037841808050870895, 0.0031103771179914474, -0.012106230482459068, -0.033591482788324356, -0.008555904030799866, 0.014571824111044407, -0.03658769652247429, 0.017745235934853554, -0.03290461376309395, 0.02454950287938118, -0.03709769621491432, -0.03423476219177246, -0.014278978109359741, -0.0003582443459890783, 0.0022316882386803627, -0.004614898003637791, 0.028826143592596054, -0.04120620712637901, -0.002864190610125661, -0.05079718679189682, 0.007233298849314451, 0.02435169741511345, 0.01624125801026821, 0.022378040477633476 ]
[ -0.0654798373579979, -0.030758189037442207, -0.026112651452422142, -0.016219332814216614, 0.030072970315814018, -0.04622117057442665, -0.024292200803756714, 0.02624722383916378, 0.018975019454956055, -0.023300589993596077, 0.047990165650844574, -0.032956503331661224, 0.005907031241804361, 0.022397805005311966, 0.05648229271173477, 0.031819481402635574, -0.01076857652515173, -0.0753994807600975, -0.020327473059296608, 0.07278728485107422, -0.012245597317814827, -0.02253265306353569, -0.00795199815183878, -0.05184020474553108, -0.046724144369363785, 0.028348341584205627, 0.030314238741993904, -0.04787725582718849, -0.04117273911833763, -0.18141226470470428, -0.02342139184474945, 0.007163127418607473, 0.002496161498129368, -0.01706821657717228, 0.04943720996379852, 0.03048219345510006, 0.018668673932552338, -0.007815402001142502, 0.02347470074892044, 0.04760334640741348, 0.006207215134054422, 0.018759308382868767, -0.07515811175107956, -0.016026321798563004, 0.05707745999097824, 0.00876698549836874, -0.004361677449196577, -0.034188125282526016, 0.0009043252794072032, 0.012560313567519188, -0.05502576008439064, -0.022865956649184227, -0.009887910448014736, -0.025465868413448334, 0.014190844260156155, 0.03336121886968613, 0.05002136901021004, 0.0603736937046051, 0.017611617222428322, 0.04347137734293938, 0.02502990886569023, -0.007057112641632557, -0.12011026591062546, 0.07602996379137039, 0.0010235420195385814, 0.017969468608498573, -0.03605122119188309, -0.022152937948703766, -0.0259994026273489, 0.07797807455062866, 0.017476394772529602, -0.01850084774196148, -0.03127614036202431, 0.07630738615989685, 0.0009219912462867796, 0.032297972589731216, 0.019292665645480156, 0.016281582415103912, 0.034101590514183044, -0.0398469902575016, -0.034626785665750504, -0.005660322494804859, -0.03504428267478943, -0.0190131813287735, -0.05704127997159958, 0.028770046308636665, -0.027327898889780045, 0.07098277658224106, 0.019065402448177338, 0.03939799219369888, 0.030111337080597878, 0.012768624350428581, 0.05078127235174179, 0.017634756863117218, -0.08393977582454681, -0.024391092360019684, 0.004613138269633055, 0.014966005459427834, -0.017688265070319176, 0.41621828079223633, 0.027960924431681633, 0.012723983265459538, 0.0395040400326252, 0.050567902624607086, -0.01690354198217392, -0.016192635521292686, 0.006111388560384512, -0.03806805983185768, 0.036419566720724106, -0.015006047673523426, 0.006272163707762957, -0.03179376572370529, 0.07551757246255875, -0.07907778024673462, 0.010581699199974537, 0.044884148985147476, 0.03709426522254944, -0.010493236593902111, -0.04705606773495674, 0.01787644252181053, -0.029298972338438034, 0.010288014076650143, 0.01778062805533409, -0.004336400888860226, 0.029177941381931305, -0.008309559896588326, 0.02542932890355587, 0.08281728625297546, 0.00766020780429244, 0.0065760244615375996, 0.044831279665231705, 0.011088792234659195, -0.0699942484498024, 0.022069822996854782, -0.008472917601466179, 0.0031892016995698214, 0.016573915258049965, -0.028172984719276428, -0.01880144327878952, 0.020801085978746414, -0.029126642271876335, -0.052016936242580414, 0.004208224825561047, 0.010000036098062992, -0.041841764003038406, 0.11190753430128098, -0.005135935731232166, -0.014254116453230381, -0.0316019169986248, -0.05529114976525307, -0.005726924631744623, 0.04542938619852066, -0.006014819722622633, -0.04032641276717186, -0.01459333673119545, 0.0015716711059212685, 0.07262910157442093, -0.0021615142468363047, -0.08151118457317352, -0.01718023233115673, 0.005673757754266262, -0.05526565760374069, -0.048212118446826935, 0.058819808065891266, 0.03652321919798851, -0.09331881254911423, -0.025726689025759697, 0.024445364251732826, 0.013888317160308361, -0.04981135204434395, -0.01344999298453331, -0.014664934948086739, -0.05483623966574669, -0.043374549597501755, 0.05956432223320007, -0.018703104928135872, -0.016269680112600327, -0.008647129870951176, 0.011440116912126541, 0.011203417554497719, -0.002798327011987567, 0.0068838829174637794, -0.023084724321961403, 0.0028370211366564035, -0.06022895127534866, -0.08267375826835632, -0.05706171318888664, 0.024455472826957703, 0.01881728693842888, -0.031022293493151665, -0.046282295137643814, -0.03140131011605263, -0.09492063522338867, 0.06263062357902527, -0.0420842245221138, -0.046359289437532425, -0.014373213984072208, 0.00017821829533204436, -0.015544137917459011, -0.05778896063566208, 0.05615370348095894, 0.018873542547225952, -0.015067675150930882, 0.04301799088716507, -0.06721538305282593, 0.02832530438899994, 0.06060803309082985, -0.025586308911442757, 0.04093139246106148, 0.012611602433025837, -0.057884495705366135, 0.010954570025205612, 0.0062670330516994, 0.019368445500731468, 0.026800962164998055, -0.006178951356559992, 0.0003377768152859062, 0.0018042483134195209, 0.008362055756151676, 0.044188980013132095, -0.019496027380228043, 0.031090855598449707, -0.009950275532901287, -0.35104629397392273, -0.023961832746863365, -0.023648669943213463, -0.023127246648073196, -0.016156043857336044, 0.0006003545713610947, 0.026277592405676842, -0.016032099723815918, 0.0011949207400903106, 0.009404962882399559, 0.08527889102697372, -0.0004551986057776958, 0.018854500725865364, -0.08515813201665878, 0.0074947006069123745, 0.011340166442096233, -0.03241153433918953, 0.015048535540699959, -0.031880490481853485, -0.0309794582426548, -0.00894073210656643, -0.058172497898340225, -0.012626023963093758, -0.07313086837530136, 0.009454065002501011, 0.0014589177444577217, 0.13032382726669312, 0.03888614475727081, 0.018201718106865883, -0.06852007657289505, 0.05440356582403183, 0.01551890466362238, -0.02028018608689308, -0.0925956666469574, 0.032260358333587646, -0.014981008134782314, 0.008625230751931667, 0.03297755494713783, -0.021372830495238304, -0.003917651250958443, -0.04780389741063118, -0.0022730454802513123, -0.04458177462220192, -0.05796153470873833, 0.014412046410143375, 0.013989901170134544, -0.03705587238073349, 0.0018195436568930745, -0.02658570557832718, 0.08555712550878525, 0.014601148664951324, 0.014837333932518959, 0.023507896810770035, 0.057624030858278275, 0.039890386164188385, -0.006108071189373732, -0.08473782986402512, -0.016160253435373306, 0.04442330077290535, 0.03320690616965294, 0.029860075563192368, 0.05003466457128525, 0.02531532384455204, -0.09507038444280624, 0.025989649817347527, -0.007131956983357668, -0.01888606697320938, -0.010419029742479324, 0.053758278489112854, -0.025289157405495644, -0.03492894396185875, 0.11675392091274261, 0.02415464073419571, 0.015150641091167927, 0.03980708867311478, 0.036740876734256744, -0.020927129313349724, -0.028723668307065964, 0.03427772596478462, 0.01194151584059, 0.030746199190616608, -0.027060341089963913, 0.08722104877233505, -0.019035130739212036, -0.021217405796051025, 0.06718867272138596, 0.0033859084360301495, -0.042341943830251694, 0.0926397293806076, -0.001358931651338935, -0.04497598484158516, -0.002242896007373929, -0.055793069303035736, -0.05985289439558983, 0.07114196568727493, -0.0407012514770031, -0.2545959949493408, 0.03102703206241131, 0.051417574286460876, 0.05168839916586876, 0.013568837195634842, 0.018144818022847176, 0.01762343943119049, -0.011755404062569141, -0.015154129825532436, -0.005152851343154907, 0.018556585535407066, 0.013105765916407108, -0.03369954228401184, -0.012351583689451218, 0.007616921328008175, 0.016016386449337006, 0.007670184131711721, 0.031949881464242935, 0.03290071338415146, 0.010773468762636185, 0.03351452201604843, 0.002288917312398553, 0.16120979189872742, 0.046390265226364136, -0.0005056938389316201, 0.020258164033293724, -0.016550179570913315, 0.015726363286376, 0.05250024050474167, 0.016538169234991074, -0.04534779489040375, 0.03960432857275009, 0.004824274685233831, 0.021288448944687843, 0.024324145168066025, -0.057949554175138474, -0.013743945397436619, 0.04707201197743416, 0.0347747728228569, -0.0176701620221138, -0.017151597887277603, 0.0320294126868248, -0.006407914683222771, 0.05965755134820938, 0.05134693533182144, -0.006267296615988016, 0.029983950778841972, -0.00815413799136877, -0.052088938653469086, -0.011854201555252075, -0.020587172359228134, -0.058028336614370346, -0.020970311015844345, -0.014089139178395271, -0.020393546670675278, 0.07014232873916626, 0.03689204901456833, -0.037353143095970154, 0.023405570536851883, 0.00940013863146305, 0.02484080009162426, -0.03612121194601059, 0.10983319580554962, -0.03702801838517189, 0.003763132495805621 ]
[ 0.04250175505876541, 0.04980619251728058, 0.0023254635743796825, 0.06538458913564682, 0.01021086610853672, 0.010764731094241142, 0.0008621339802630246, -0.008640700951218605, -0.031847599893808365, -0.0240426417440176, -0.008725462481379509, 0.026898030191659927, 0.08023320883512497, 0.029207244515419006, -0.021782606840133667, 0.008673594333231449, -0.03460383415222168, 0.00949931051582098, 0.00618168618530035, -0.0002948070177808404, -0.03571496903896332, -0.04150997847318649, 0.030783571302890778, -0.014685733243823051, -0.003095311112701893, 0.011338504031300545, -0.02434111386537552, -0.04301820695400238, 0.03172280266880989, -0.12930314242839813, -0.043297912925481796, -0.043737005442380905, -0.04832320660352707, 0.005186197813600302, -0.010785235092043877, 0.029637085273861885, 0.02990964986383915, -0.010294393636286259, -0.0016110328724607825, -0.007449169643223286, 0.018801450729370117, -0.02225111797451973, -0.019487787038087845, 0.017134763300418854, 0.020205741748213768, -0.006751409266144037, -0.02833235077559948, -0.03591351956129074, 0.01130622811615467, -0.024532653391361237, -0.047001175582408905, -0.0541144497692585, -0.016517996788024902, 0.0033780757803469896, -0.0015135897556319833, 0.027884356677532196, -0.0016549041029065847, 0.019381998106837273, 0.010113166645169258, 0.04840962961316109, 0.038814976811409, -0.023618971928954124, -0.03821070119738579, -0.012803482823073864, 0.007255634758621454, -0.01082664355635643, 0.005060179159045219, 0.0001988391304621473, 0.010001718997955322, -0.005176843143999577, -0.013951854780316353, 0.048704054206609726, -0.07023270428180695, -0.02203589677810669, -0.04690620303153992, 0.024020230397582054, 0.052409108728170395, -0.019043508917093277, 0.00869552418589592, 0.010865403339266777, 0.0059835114516317844, 0.009866494685411453, -0.004697501193732023, -0.008283203467726707, 0.015419132076203823, 0.0018449913477525115, -0.008106216788291931, -0.027729978784918785, 0.02218351513147354, 0.0021060830913484097, -0.04149433970451355, 0.013098388910293579, -0.041790273040533066, 0.03364242985844612, -0.08875196427106857, -0.008888903073966503, -0.01815004274249077, -0.024843614548444748, 0.02056906931102276, 0.8091201186180115, 0.005218223202973604, 0.0026758364401757717, 0.034992292523384094, 0.012557609006762505, 0.002845227252691984, 0.01321907714009285, 0.04473959282040596, -0.0105892363935709, -0.02623877488076687, 0.005781130865216255, -0.0041464087553322315, 0.00972366239875555, 0.010181475430727005, 0.0034467235673218966, 0.00004173658089712262, 0.006854515057057142, -0.028614016249775887, -0.03060622699558735, -0.03393904119729996, 0.003906578291207552, -0.00042819278314709663, 0.029657239094376564, -0.0019658550154417753, -0.007692331448197365, 0.025118829682469368, -0.1864127367734909, -0.021125895902514458, -7.246383414785963e-33, 0.05234145745635033, -0.011770757846534252, 0.09471076726913452, 0.02533329278230667, 0.003844213206321001, 0.020451869815587997, 0.004169427789747715, -0.024108106270432472, -0.035447146743535995, -0.028774239122867584, -0.01533217541873455, -0.03175686299800873, -0.017580606043338776, 0.010538685135543346, 0.028194542974233627, 0.003530945163220167, 0.02804790996015072, 0.02014048956334591, -0.004771845880895853, 0.05005592852830887, -0.009892246685922146, 0.04691331461071968, -0.042893171310424805, 0.01823124848306179, 0.00819541234523058, 0.022564120590686798, 0.011543145403265953, 0.022800158709287643, 0.00506653543561697, -0.04216697812080383, -0.034406162798404694, -0.009170143865048885, -0.03328863903880119, -0.034898076206445694, 0.005570436827838421, -0.06509062647819519, -0.017935365438461304, 0.026007231324911118, -0.032621439546346664, 0.0014621808659285307, -0.033150989562273026, -0.008411988615989685, -0.007968089543282986, -0.021523525938391685, -0.02581344172358513, 0.00897169765084982, 0.006294236984103918, -0.015172051265835762, -0.02549964189529419, 0.0001857122260844335, -0.018261592835187912, 0.014795924536883831, -0.015274285338819027, 0.0237108301371336, -0.011784554459154606, -0.003078685374930501, -0.0035867434926331043, -0.011677621863782406, 0.0024239032063633204, -0.02533264458179474, 0.06087566167116165, 0.0011689189122989774, -0.02633303962647915, 0.06565507501363754, 0.011447164230048656, 0.021345563232898712, 0.03216465935111046, -0.006927502807229757, -0.011534120887517929, 0.03482559695839882, -0.04869605973362923, 0.03919512405991554, -0.010045520961284637, -0.06261135637760162, 0.051046159118413925, -0.047679901123046875, -0.018786190077662468, 0.01160664577037096, 0.002496460685506463, 0.07449638098478317, 0.0008952110656537116, -0.05442572012543678, -0.006400095298886299, -0.06312018632888794, -0.02191239409148693, -0.010908018797636032, 0.04825733229517937, 0.03725380450487137, 0.03924044966697693, 0.03421971574425697, 0.04464953392744064, 0.04095008224248886, -0.008009064942598343, 0.013846599496901035, -0.019407976418733597, 7.006745667059393e-33, 0.027786964550614357, 0.03112921118736267, -0.028098365291953087, -0.0033616770524531603, 0.046965163201093674, 0.030089110136032104, 0.02574528194963932, 0.006797599606215954, -0.043664172291755676, 0.01236709114164114, 0.016934731975197792, 0.017657648772001266, -0.021780965849757195, 0.012827182188630104, 0.018763497471809387, -0.001982984598726034, -0.0031693060882389545, -0.04517807438969612, -0.009333002381026745, 0.020605651661753654, 0.003378627821803093, 0.018213285133242607, -0.003632480977103114, 0.02981692925095558, 0.024962175637483597, 0.06250128895044327, 0.03400669991970062, 0.0023370091803371906, -0.026279743760824203, 0.040615763515233994, -0.014983320608735085, -0.08871445804834366, 0.014377384446561337, -0.007011703215539455, -0.007180301006883383, 0.00861817691475153, -0.027848174795508385, -0.005857196636497974, -0.017615322023630142, 0.03694048151373863, 0.02857672981917858, 0.034262366592884064, -0.006117476150393486, 0.07804620265960693, -0.0018074719700962305, -0.012056013569235802, -0.013234870508313179, -0.02581322006881237, 0.007604601327329874, 0.007430180441588163, -0.01567736081779003, 0.01634230837225914, 0.003065878991037607, -0.006225260905921459, 0.037935953587293625, -0.05192122235894203, -0.03333418816328049, 0.03420903533697128, -0.004570485092699528, 0.017737215384840965, -0.02177228406071663, -0.033772002905607224, -0.02064060978591442, -0.011051525361835957, -0.033376544713974, 0.004364230204373598, -0.030627328902482986, 0.03158476948738098, -0.016635065898299217, -0.014348718337714672, 0.019849248230457306, 0.031216703355312347, 0.009982570074498653, 0.03313591331243515, 0.03754692152142525, -0.035010926425457, -0.01709616370499134, -0.0016284806188195944, -0.004407264292240143, 0.02298855222761631, 0.030211549252271652, 0.01293907966464758, 0.0007019083714112639, 0.006158953532576561, 0.0007761838496662676, 0.012706959620118141, -0.026667479425668716, 0.022199811413884163, -0.04933147132396698, -0.04089229553937912, 0.026636669412255287, -0.020033719018101692, -0.0010175828356295824, 0.023390425369143486, -0.004986145067960024, -1.2483691413933684e-8, -0.03942108154296875, 0.009070118889212608, -0.0005224178894422948, -0.0291370190680027, 0.025139909237623215, -0.02701788768172264, -0.02884194813668728, 0.02935735136270523, -0.010150853544473648, 0.04362967610359192, 0.02964124083518982, 0.004548547323793173, 0.009916729293763638, -0.001552685396745801, -0.00016622766270302236, -0.02757931873202324, -0.0037005702033638954, 0.00457161758095026, 0.03208504244685173, -0.019388750195503235, -0.022952357307076454, 0.02665635757148266, -0.04237818345427513, -0.004235246684402227, -0.010817448608577251, 0.016251204535365105, 0.008077703416347504, -0.054863590747117996, -0.00197682180441916, -0.002032053889706731, -0.0036567864008247852, -0.016457220539450645, 0.004379820078611374, -0.01611081324517727, -0.04586426541209221, -0.02670995146036148, 0.030961360782384872, 0.0119170518592, 0.02200847677886486, 0.014854745008051395, -0.030892858281731606, -0.02812476083636284, 0.02380230277776718, -0.03819085657596588, -0.035263434052467346, 0.021211063489317894, -0.0028880792669951916, 0.002992097521200776, 0.0078034549951553345, -0.003637871937826276, -0.003256891155615449, -0.022565225139260292, 0.007631724700331688, 0.06352326273918152, 0.010746309533715248, -0.019220484420657158, 0.021653912961483, 0.0026348186656832695, -0.012628777883946896, 0.005519946105778217, 0.04172881320118904, -0.009710797108709812, -0.035116344690322876, 0.005935940425843 ]
neo4j-undefined-unable-to-extract-host-from-undefined
https://markhneedham.com/blog/2018/03/20/neo4j-undefined-unable-to-extract-host-from-undefined
false
2018-03-07 03:11:12
Neo4j Import: java.lang.IllegalStateException: Mixing specified and unspecified group belongings in a single import isn't supported
[ "neo4j", "neo4j-import", "bulk-import" ]
[ "neo4j" ]
I've been working with the https://neo4j.com/docs/operations-manual/current/tools/import/[Neo4j Import Tool] recently after a bit of a break and ran into an interesting error message that I initially didn't understand. I had some CSV files containing nodes that I wanted to import into Neo4j. Their contents look like this: [source,bash] ---- $ cat people_header.csv name:ID(Person) $ cat people.csv "Mark" "Michael" "Ryan" "Will" "Jennifer" "Karin" $ cat companies_header.csv name:ID(Company) $ cat companies.csv "Neo4j" ---- I find it easier to use separate header files because I often make typos with my column names and it's easier to update a single line file than to open a multi-million line file and change the first line. I ran the following command to create a new Neo4j database from these files: [source,bash] ---- $ ./bin/neo4j-admin import \ --database=blog.db \ --mode=csv \ --nodes:Person people_header.csv,people.csv \ --nodes:Company companies_heade.csv,companies.csv ---- which resulted in this error message: [source,bash] ---- Neo4j version: 3.3.3 Importing the contents of these files into /Users/markneedham/Library/Application Support/Neo4j Desktop/Application/neo4jDatabases/database-b59e33d5-2060-4a5d-bdb8-0b9f6dc919fa/installation-3.3.3/data/databases/blog.db: Nodes: :Person /Users/markneedham/Library/Application Support/Neo4j Desktop/Application/neo4jDatabases/database-b59e33d5-2060-4a5d-bdb8-0b9f6dc919fa/installation-3.3.3/people_header.csv /Users/markneedham/Library/Application Support/Neo4j Desktop/Application/neo4jDatabases/database-b59e33d5-2060-4a5d-bdb8-0b9f6dc919fa/installation-3.3.3/people.csv :Company /Users/markneedham/Library/Application Support/Neo4j Desktop/Application/neo4jDatabases/database-b59e33d5-2060-4a5d-bdb8-0b9f6dc919fa/installation-3.3.3/companies.csv ... Import error: Mixing specified and unspecified group belongings in a single import isn't supported Caused by:Mixing specified and unspecified group belongings in a single import isn't supported java.lang.IllegalStateException: Mixing specified and unspecified group belongings in a single import isn't supported at org.neo4j.unsafe.impl.batchimport.input.Groups.getOrCreate(Groups.java:52) at org.neo4j.unsafe.impl.batchimport.input.csv.InputNodeDeserialization.initialize(InputNodeDeserialization.java:60) at org.neo4j.unsafe.impl.batchimport.input.csv.InputEntityDeserializer.initialize(InputEntityDeserializer.java:68) at org.neo4j.unsafe.impl.batchimport.input.csv.ParallelInputEntityDeserializer.lambda$new$0(ParallelInputEntityDeserializer.java:104) at org.neo4j.unsafe.impl.batchimport.staging.TicketedProcessing.lambda$submit$1(TicketedProcessing.java:103) at org.neo4j.unsafe.impl.batchimport.executor.DynamicTaskExecutor$Processor.run(DynamicTaskExecutor.java:237) ---- The output actually helpfully indicates which files it's importing from and we can see under the 'Company' section that the header file is missing. As a result of the typo I made when trying to type +++<cite>+++companies_header.csv+++</cite>+++, the tool now treats the first line of +++<cite>+++companies.csv+++</cite>+++ as the header and since we haven't specified a group (e.g. Company, Person) on that line we receive this error. Let's fix the typo and try again: [source,bash] ---- $ ./bin/neo4j-admin import \ --database=blog.db \ --mode=csv \ --nodes:Person people_header.csv,people.csv \ --nodes:Company companies_header.csv,companies.csv Neo4j version: 3.3.3 Importing the contents of these files into /Users/markneedham/Library/Application Support/Neo4j Desktop/Application/neo4jDatabases/database-b59e33d5-2060-4a5d-bdb8-0b9f6dc919fa/installation-3.3.3/data/databases/blog.db: Nodes: :Person /Users/markneedham/Library/Application Support/Neo4j Desktop/Application/neo4jDatabases/database-b59e33d5-2060-4a5d-bdb8-0b9f6dc919fa/installation-3.3.3/people_header.csv /Users/markneedham/Library/Application Support/Neo4j Desktop/Application/neo4jDatabases/database-b59e33d5-2060-4a5d-bdb8-0b9f6dc919fa/installation-3.3.3/people.csv :Company /Users/markneedham/Library/Application Support/Neo4j Desktop/Application/neo4jDatabases/database-b59e33d5-2060-4a5d-bdb8-0b9f6dc919fa/installation-3.3.3/companies_header.csv /Users/markneedham/Library/Application Support/Neo4j Desktop/Application/neo4jDatabases/database-b59e33d5-2060-4a5d-bdb8-0b9f6dc919fa/installation-3.3.3/companies.csv ... IMPORT DONE in 1s 5ms. Imported: 7 nodes 0 relationships 7 properties Peak memory usage: 480.00 MB ---- Success!
null
null
[ -0.0019348245114088058, -0.007861555553972721, -0.026889953762292862, 0.017783332616090775, 0.10664616525173187, -0.004274556878954172, 0.011722836643457413, 0.026863377541303635, 0.008121185936033726, -0.0200517401099205, -0.02748517319560051, -0.010478492826223373, -0.06260822713375092, 0.025861196219921112, -0.009927740320563316, 0.032549649477005005, 0.07348962128162384, 0.022700203582644463, 0.02583838254213333, -0.019924968481063843, -0.0035381633788347244, 0.04221928119659424, -0.011010999791324139, 0.03133232146501541, 0.0181826613843441, 0.004087576176971197, -0.011590403504669666, -0.021351533010601997, -0.05820336192846298, 0.008846377953886986, 0.039280183613300323, -0.012395336292684078, 0.03507451340556145, -0.03248918429017067, 0.028882205486297607, -0.010817425325512886, -0.023112885653972626, 0.01163388229906559, -0.010068610310554504, -0.007297537289559841, -0.03985362499952316, 0.03628626838326454, -0.03140571340918541, 0.01614687405526638, -0.049535419791936874, 0.004449754022061825, -0.038692452013492584, 0.034991927444934845, 0.017125211656093597, -0.009094897657632828, -0.07220645248889923, 0.005965139716863632, -0.027098320424556732, -0.035913582891225815, 0.03689691051840782, 0.052405405789613724, -0.006472607608884573, -0.06823171675205231, 0.03889332339167595, -0.014679733663797379, 0.0046798232942819595, -0.02394147589802742, -0.007218260783702135, 0.02242090553045273, 0.019212812185287476, -0.03915609419345856, 0.006573708262294531, 0.058118000626564026, -0.05035923793911934, -0.01379894558340311, 0.019759831950068474, 0.021119458600878716, -0.0194388460367918, -0.025261005386710167, 0.016532210633158684, -0.03411635756492615, 0.01234522182494402, 0.045863084495067596, 0.029224872589111328, 0.05643671378493309, -0.024971064180135727, 0.03420952335000038, 0.007047540042549372, 0.006256057880818844, 0.015284682624042034, -0.04751024767756462, -0.027199041098356247, -0.01862594485282898, -0.0361010879278183, 0.025782335549592972, 0.018485000357031822, -0.04850674420595169, 0.005693953949958086, 0.008211926557123661, -0.0005532775539904833, 0.02045459859073162, 0.0009499635780230165, 0.025044335052371025, 0.026942597702145576, 0.009159586392343044, -0.062994584441185, 0.0005896578659303486, -0.008085040375590324, 0.024277251213788986, -0.07775700092315674, -0.011328459717333317, -0.01224938128143549, -0.02320965752005577, -0.0008449959568679333, -0.020549772307276726, -0.013803171925246716, -0.0029258746653795242, -0.011116760782897472, -0.00901891104876995, -0.09909120202064514, 0.07416793704032898, 0.01947244256734848, -0.015250065363943577, -0.010786542668938637, 0.020623251795768738, 0.05337510630488396, 0.0506218820810318, 0.015359964221715927, 0.06513935327529907, -0.003875030903145671, 0.029850609600543976, 0.008601567707955837, 0.05402194336056709, -0.011078503914177418, -0.07936412841081619, -0.035640012472867966, 0.06561299413442612, 0.006483509670943022, 0.027321936562657356, -0.00242439447902143, -0.02691490389406681, -0.023601125925779343, 0.009293466806411743, 0.050826504826545715, 0.025203974917531013, 0.020403170958161354, -0.03984268754720688, 0.022118888795375824, 0.013224003836512566, 0.021203013136982918, 0.026952216401696205, -0.012164374813437462, -0.026153262704610825, -0.036457255482673645, 0.018998369574546814, 0.03016233816742897, 0.03342559561133385, 0.07755167782306671, -0.01799318939447403, 0.007983049377799034, 0.13442233204841614, 0.03776291385293007, 0.02260870300233364, -0.028357859700918198, 0.018909387290477753, 0.03857376426458359, 0.04643974080681801, 0.01889897882938385, 0.041429657489061356, -0.02576822228729725, -0.02588898502290249, -0.01681344397366047, 0.06089537963271141, -0.011105477809906006, 0.03187140077352524, -0.02275501936674118, -0.07273054867982864, 0.05623462423682213, -0.020616015419363976, 0.01570870727300644, 0.04964546486735344, 0.0591660737991333, 0.010793939232826233, 0.02184204012155533, 0.0068877446465194225, -0.07265713810920715, 0.07434391975402832, -0.020507093518972397, 0.004788209218531847, 0.005408420227468014, 0.03023950755596161, 0.0647037997841835, 0.027550095692276955, 0.008901243098080158, 0.03253588080406189, -0.07987717539072037, -0.07672951370477676, -0.04017382860183716, -0.003931259736418724, 0.055839501321315765, -0.018206872045993805, -0.013503174297511578, 0.07420704513788223, -0.003981385845690966, 0.016709959134459496, 0.00619332492351532, -0.0029203910380601883, 0.043022990226745605, -0.05937221646308899, -0.05785083398222923, 0.05771767348051071, 0.018763035535812378, -0.021479597315192223, -0.027925824746489525, 0.014862765558063984, -0.02305949106812477, 0.007568025495857, 0.04792328178882599, -0.02609715797007084, 0.0604981891810894, 0.019964151084423065, 0.0326513797044754, -0.010006001219153404, 0.007391071878373623, -0.04823814705014229, 0.0077382344752550125, -0.0031089973635971546, -0.013157220557332039, 0.00454650167375803, -0.016718918457627296, 0.10805977135896683, 0.05049217492341995, -0.01723918877542019, -0.07401435077190399, 0.0253610759973526, 0.021018436178565025, -0.034321337938308716, 0.026809675619006157, -0.007515333127230406, -0.02045169100165367, 0.001029708655551076, -0.033070459961891174, -0.012619774788618088, -0.004785404074937105, -0.023177016526460648, 0.0036863458808511496, 0.06177803874015808, -0.04170162230730057, 0.042699359357357025, 0.018393617123365402, -0.016978098079562187, -0.005526786204427481, -0.04716019704937935, -0.04918045550584793, 0.030574090778827667, 0.04096755385398865, -0.002517886459827423, 0.05502072721719742, -0.02539227530360222, -0.02307715453207493, -0.016017906367778778, -0.03348895162343979, 0.052917882800102234, 0.03424140065908432, 0.04884738475084305, -0.01617850363254547, 0.04162600636482239, -0.06909030675888062, 0.0019182715332135558, -0.01969333365559578, -0.03336695209145546, -0.022050244733691216, -0.020291512832045555, 0.022559240460395813, -0.013619362376630306, 0.021478381007909775, -0.026748130097985268, 0.008823425509035587, 0.003765830537304282, 0.03723680227994919, -0.018406668677926064, 0.040272269397974014, -0.005518699064850807, 0.010347709991037846, -0.060838282108306885, -0.026395102962851524, 0.04173893481492996, -0.08824626356363297, -0.024294592440128326, 0.025315048173069954, -0.057292092591524124, 0.017484528943896294, -0.05529262498021126, -0.03382796421647072, -0.030976252630352974, 0.01853935793042183, 0.039369385689496994, 0.019786329939961433, -0.012187184765934944, 0.051085952669382095, 0.016568267717957497, 0.013099506497383118, 0.03803592175245285, 0.02769341692328453, 0.06526303291320801, 0.005904152058064938, 0.05591603368520737, 0.03766925260424614, -0.024428701028227806, -0.0177602618932724, -0.012093706987798214, -0.01599479280412197, -0.023376289755105972, -0.26381316781044006, 0.07322801649570465, -0.02697831019759178, -0.05718895420432091, 0.018299788236618042, -0.03819199651479721, 0.027864599600434303, -0.03364742547273636, -0.03189692273736, -0.00575628224760294, -0.018461238592863083, -0.02846592105925083, 0.0003854639653582126, 0.03986820578575134, -0.0020765983499586582, 0.027061691507697105, 0.011519158259034157, -0.0673137977719307, 0.00011822338274214417, 0.03235446289181709, -0.015561631880700588, -0.01651429757475853, 0.008301750756800175, 0.019711030647158623, 0.00816516112536192, 0.0376766212284565, -0.08097565174102783, 0.054750945419073105, -0.0698169618844986, -0.03850695490837097, -0.008685667999088764, -0.03192475438117981, 0.006908240728080273, -0.009929366409778595, -0.020659515634179115, -0.02552116848528385, 0.03830544278025627, -0.0010019713081419468, 0.01725761778652668, 0.009179427288472652, -0.04465973377227783, -0.05586465075612068, 0.008324273861944675, -0.02359982579946518, 0.0699872300028801, -0.00886436179280281, -0.08397160470485687, -0.016992835327982903, -0.01725512184202671, 0.07512316852807999, -0.04007657244801521, -0.021491434425115585, 0.004181509837508202, 0.028757303953170776, -0.007475579623132944, -0.0014187542255967855, -0.025634044781327248, 0.003516224678605795, -0.05555104836821556, -0.025382723659276962, -0.010453295893967152, -0.03992937132716179, 0.015908021479845047, -0.047345053404569626, -0.008999543264508247, -0.05468480661511421, -0.09765571355819702, -0.04375351592898369, 0.05730532482266426, 0.02817705273628235, -0.03503069281578064, 0.04251851141452789, -0.0038267590571194887, -0.09938994795084, -0.015591131523251534, -0.073062963783741, -0.020356200635433197, -0.003949661273509264, -0.032273292541503906, 0.04334883764386177, -0.0465238019824028, -0.04102716222405434, 0.010680542327463627, -0.006267511285841465, 0.016033878549933434, 0.003680112538859248, 0.01897270604968071, -0.008897529914975166, -0.04849615320563316, 0.01948431134223938, 0.0530652292072773, -0.0240529403090477, -0.01696622185409069, 0.006137152202427387, -0.02486063353717327, 0.02858867682516575, -0.0013270032359287143, 0.0008392801973968744, 0.018712850287556648, 0.048497505486011505, 0.05536036193370819, -0.021917017176747322, 0.009679626673460007, -0.044375352561473846, -0.02265447936952114, -0.016990933567285538, -0.05057160183787346, 0.013637945055961609, 0.00801086239516735, 0.05025683715939522, 0.0023653812240809202, -0.02093968726694584, 0.024054354056715965, -0.05691641941666603, -0.027373403310775757, 0.02809327468276024, 0.006615747231990099, 0.005993194878101349, 0.04970536753535271, -0.005399561487138271, -0.040667928755283356, 0.020617950707674026, 0.03341158479452133, -0.00988121796399355, -0.0531783290207386, -0.035815633833408356, -0.019202429801225662, -0.017365839332342148, -0.0024715580511838198, -0.013561414554715157, -0.05057639256119728, 0.014615098014473915, 0.04194173961877823, -0.03850835934281349, 0.043304093182086945, -0.011928248219192028, -0.045127321034669876, -0.04323391988873482, -0.005313499830663204, -0.006908679846674204, -0.027311788871884346, 0.0021010118070989847, -0.02017900161445141, 0.04006761312484741, 0.04421750828623772, 0.0019166747806593776, -0.00014347316755447537, 0.0032667152117937803, 0.029751673340797424, -0.008670855313539505, -0.0363161601126194, -0.027168363332748413, 0.02089705504477024, -0.0206107459962368, -0.06704282015562057, -0.009684284217655659, 0.04964916408061981, -0.009433128871023655, -0.009087790735065937, -0.031536608934402466, 0.026952216401696205, -0.058888230472803116, 0.02184697426855564, 0.002651716349646449, -0.011168564669787884, 0.04028607904911041, 0.009853780269622803, 0.00808548554778099, -0.027736781165003777, 0.000914709409698844, 0.014860054478049278, 0.055869799107313156, -0.04681159928441048, -0.007205667439848185, 0.00865673553198576, 0.012912925332784653, 0.03891627863049507, 0.02860238030552864, 0.033257003873586655, 0.02587169036269188, -0.014325855299830437, -0.024252543225884438, 0.014787883497774601, 0.007487740367650986, 0.030230460688471794, 0.03943315148353577, -0.026759564876556396, 0.027455469593405724, -0.006938055623322725, -0.03557055443525314, -0.010569102130830288, -0.00813798326998949, -0.01974080130457878, 0.00938364490866661, -0.032402679324150085, -0.03324643149971962, 0.04754706472158432, 0.008055627346038818, 0.013345727697014809, 0.046080078929662704, -0.002553096041083336, 0.003188424278050661, -0.014455532655119896, 0.04887281730771065, 0.056321416050195694, -0.04871917515993118, -0.030198145657777786, -0.02714420109987259, 0.010163676925003529, 0.016590898856520653, 0.023342033848166466, -0.053893666714429855, -0.03607942909002304, -0.03256908059120178, 0.03845192492008209, -0.02843734622001648, -0.052256301045417786, -0.021293649449944496, 0.008477873168885708, -0.009243746288120747, -0.0008220744202844799, 0.017962394282221794, 0.03724438697099686, -0.03519818186759949, -0.007338373456150293, 0.02180362120270729, -0.005737806670367718, -0.0038796449080109596, 0.01305375061929226, -0.00880859512835741, 0.021593984216451645, -0.009002266451716423, 0.03755452111363411, 0.0165010504424572, 0.004183626268059015, -0.014356381259858608, -0.046096641570329666, 0.019573938101530075, -0.00029846953111700714, 0.02326943166553974, -0.005633266642689705, 0.012726099230349064, -0.024016089737415314, -0.012184476479887962, -0.01825658045709133, -0.007504037581384182, -0.03395291045308113, -0.029894279316067696, 0.010216616094112396, 0.045444224029779434, 0.006555153522640467, 0.040175773203372955, 0.007174422033131123, -0.045693088322877884, 0.04823702201247215, -0.0331263467669487, -0.06519143283367157, 0.008993425406515598, -0.03586757183074951, 0.005285800900310278, 0.04067032411694527, 0.02414834313094616, -0.058225154876708984, 0.06872482597827911, 0.06276074051856995, -0.0012222512159496546, 0.025084340944886208, -0.000893439631909132, 0.036676257848739624, -0.02468477003276348, -0.05140487477183342, -0.08621928840875626, 0.011512626893818378, 0.03701464831829071, -0.017568664625287056, -0.0010079658823087811, 0.010030115954577923, -0.016015904024243355, -0.01627844013273716, -0.05638068541884422, -0.03750135004520416, 0.03211519122123718, -0.027517568320035934, 0.044607702642679214, -0.016074636951088905, -0.047313954681158066, 0.024574946612119675, 0.06246262416243553, -0.049623753875494, -0.03401513770222664, -0.04950348660349846, 0.05798341706395149, -0.028350986540317535, 0.06371340900659561, -0.02841135859489441, -0.042239896953105927, 0.05839192867279053, 0.026889551430940628, 0.05036173015832901, 0.041742026805877686, -0.02578037418425083, 0.034363262355327606, 0.03970900923013687, -0.029098842293024063, -0.0020759787876158953, 0.03300256282091141, -0.01815197803080082, -0.04098188504576683, 0.003591132815927267, 0.01474353950470686, -0.0016843354096636176, -0.037842266261577606, 0.058739446103572845, 0.004192757420241833, -0.009891342371702194, -0.05047505721449852, 0.041389014571905136, -0.031265534460544586, 0.012459542602300644, -0.06087435781955719, 0.016935108229517937, -0.035317227244377136, 0.03938920795917511, -0.025775117799639702, -0.004354317206889391, 0.0719110369682312, -0.01809365302324295, 0.009835337288677692, -0.00769199151545763, 0.0680462196469307, 0.10145729035139084, 0.02735176868736744, 0.03304864838719368, 0.05786428973078728, -0.0037725840229541063, -0.03905592858791351, -0.013516955077648163, -0.04054144769906998, 0.00819177646189928, 0.01789182983338833, -0.04016783460974693, 0.053992558270692825, -0.010222415439784527, 0.10009244829416275, -0.0017837642226368189, 0.011945731937885284, -0.025838954374194145, -0.014139369130134583, 0.040526654571294785, 0.0445229634642601, 0.0157119482755661, 0.05165044963359833, -0.028519121930003166, -0.019363900646567345, 0.01978495717048645, 0.014567732810974121, -0.018152235075831413, 0.032804880291223526, -0.025565633550286293, -0.0074341390281915665, 0.0060265762731432915, 0.043574899435043335, 0.08118512481451035, -0.0337507463991642, -0.012552046217024326, 0.003214835887774825, 0.034850090742111206, -0.017565926536917686, 0.025711027905344963, -0.015168420970439911, -0.02925819531083107, -0.022446773946285248, -0.05156942456960678, -0.04075920209288597, -0.0006090510287322104, -0.03194357454776764, 0.0033772257156670094, -0.006820210255682468, 0.005201590713113546, 0.010549995116889477, 0.006162086967378855, -0.026124265044927597, -0.02032199501991272, -0.03607907146215439, -0.05145754665136337, -0.08198031783103943, -0.0017186979530379176, 0.004060390871018171, 0.0023411798756569624, -0.006770601961761713, -0.014358178712427616, -0.04008406028151512, -0.030251681804656982, 0.040789294987916946, -0.043519243597984314, 0.02216966263949871, -0.006174510344862938, 0.03481022268533707, 0.003355178516358137, 0.029720015823841095, 0.04063747450709343, 0.01290811225771904, 0.01257298607379198, -0.014059130102396011, 0.014002680778503418, 0.05100727453827858, -0.010032802820205688, 0.006704950705170631, -0.0724877119064331, 0.005646036006510258, 0.026651090011000633, -0.01218324899673462, -0.08072812110185623, -0.002399436431005597, 0.0651070848107338, -0.009702852927148342, 0.03877813741564751, 0.001244972343556583, -0.014567326754331589, -0.009504550136625767, -0.0002451636246405542, -0.03291001170873642, 0.002099413424730301, 0.019013237208127975, -0.012138104997575283, 0.06684719771146774, 0.05113742873072624, -0.012540348805487156, -0.03613509237766266, -0.021602096036076546, 0.007001189049333334, 0.015851836651563644, -0.0418221540749073, -0.004849094431847334, -0.05218120664358139, -0.08785948157310486, -0.014484049752354622, -0.004542422015219927, -0.003107819939032197, -0.022622015327215195, 0.001830221270211041, -0.004659488797187805, -0.042492739856243134, 0.021913638338446617, -0.043250322341918945, 0.010425155982375145, -0.03533819317817688, -0.03391087055206299, -0.026715727522969246, 0.02171052247285843, 0.010109332390129566, -0.026800908148288727, 0.020009668543934822, -0.038207508623600006, -0.007051927503198385, -0.03368106111884117, 0.008380386978387833, 0.056469958275556564, 0.01446321327239275, 0.04048324376344681 ]
[ -0.031106624752283096, -0.028468310832977295, -0.025249389931559563, -0.032725878059864044, 0.06015540659427643, -0.04677293822169304, -0.018935492262244225, 0.009860729798674583, 0.010489001870155334, -0.018928660079836845, 0.04010317847132683, -0.027660246938467026, -0.010095871984958649, -0.019949011504650116, 0.03967874497175217, 0.009470779448747635, -0.05265851318836212, -0.0780191421508789, -0.02526155672967434, 0.06081436574459076, -0.048488494008779526, -0.03500784933567047, -0.00596526637673378, -0.03846096992492676, -0.016200045123696327, 0.029995588585734367, 0.03416307643055916, -0.01730991154909134, -0.028529290109872818, -0.21554747223854065, -0.004510899540036917, 0.01486612856388092, -0.007651516702026129, -0.002674443880096078, 0.037987641990184784, 0.03111978806555271, 0.03836420178413391, -0.02860574796795845, 0.02146364375948906, 0.03907089680433273, 0.021102184429764748, -0.01699662394821644, -0.04830612987279892, -0.008463318459689617, 0.04566119238734245, 0.019864307716488838, -0.012876616790890694, -0.02006901055574417, -0.008057037368416786, 0.004001523833721876, -0.042721979320049286, 0.005743520800024271, -0.002741476520895958, -0.012667329050600529, -0.00851929746568203, 0.05399877950549126, 0.05610409751534462, 0.06908157467842102, 0.010382083244621754, 0.0633525475859642, 0.023721475154161453, 0.014684533700346947, -0.14282731711864471, 0.08493924885988235, 0.0017082117265090346, 0.00032777574961073697, -0.0818251222372055, -0.013212155550718307, -0.047332264482975006, 0.0704573318362236, -0.001498181140050292, -0.025844315066933632, -0.04701976105570793, 0.08091837912797928, -0.0021444163285195827, 0.027252819389104843, -0.011456946842372417, 0.01401706226170063, 0.025744428858160973, -0.02516755647957325, -0.022480318322777748, 0.003396095708012581, -0.04330248385667801, -0.037191055715084076, -0.0522964783012867, 0.05210702121257782, -0.022445976734161377, 0.05511734262108803, -0.004926864057779312, 0.025540905073285103, 0.02554965578019619, 0.02356443926692009, 0.09283538162708282, 0.03619902580976486, -0.08963577449321747, -0.03291097283363342, 0.03331597521901131, 0.01958485133945942, 0.007867974229156971, 0.3863976001739502, 0.01799430139362812, -0.030212774872779846, 0.017049377784132957, 0.06477320939302444, -0.0007373690605163574, -0.005807581357657909, -0.031049882993102074, -0.05315685644745827, 0.05785148963332176, -0.01425329502671957, -0.009124078787863255, -0.03386590629816055, 0.04828975722193718, -0.08947654068470001, 0.005907970946282148, 0.003907734528183937, 0.025546038523316383, -0.008062904700636864, -0.05150757357478142, 0.027586890384554863, 0.008900914341211319, 0.00561258802190423, 0.049680404365062714, 0.026876017451286316, 0.018540717661380768, 0.0003453734971117228, -0.0026630875654518604, 0.044454772025346756, 0.02968159131705761, 0.02629213221371174, 0.050790317356586456, 0.031454697251319885, -0.0648745745420456, 0.0337100625038147, -0.004630171228200197, -0.0015478612622246146, 0.010923287831246853, -0.020389681681990623, -0.033758532255887985, -0.0037441696040332317, -0.006112510338425636, -0.04153066501021385, -0.007225914392620325, 0.03210918977856636, -0.04164547845721245, 0.11281141638755798, -0.025845812633633614, -0.032191675156354904, -0.029450925067067146, -0.05165105685591698, 0.01477042119950056, 0.06116515025496483, -0.005749912466853857, -0.03354959562420845, -0.029741724953055382, -0.005130118224769831, 0.09104474633932114, -0.03920742869377136, -0.10663441568613052, 0.004272570367902517, 0.0020884317345917225, -0.04785696789622307, -0.027168473228812218, 0.08233825117349625, 0.06121126562356949, -0.09240062534809113, -0.03777938708662987, 0.010149871930480003, 0.03110354393720627, -0.06637196242809296, 0.018679656088352203, -0.015855582430958748, -0.06194339692592621, -0.00361427990719676, 0.05939777195453644, -0.019622571766376495, -0.019127609208226204, -0.01834472455084324, 0.02597825601696968, 0.004707709886133671, 0.02342355251312256, -0.007617289200425148, -0.05271710455417633, 0.003694205079227686, -0.06558319181203842, -0.06898699700832367, -0.08832608908414841, 0.022766880691051483, -0.035133473575115204, -0.027475176379084587, -0.031942807137966156, 0.032250210642814636, -0.04989209771156311, 0.06790237128734589, -0.04797980934381485, -0.013225171715021133, -0.006391891743987799, 0.03591432794928551, -0.0007391679682768881, -0.05882065370678902, 0.05730198696255684, 0.028768131509423256, -0.0035798519384115934, 0.017287379130721092, -0.06494810432195663, -0.003604224883019924, 0.070780910551548, -0.038825344294309616, 0.05368966981768608, 0.031029297038912773, -0.05058332532644272, 0.025134094059467316, -0.00770957674831152, 0.02069043554365635, -0.004608220886439085, -0.014193314127624035, -0.003638672176748514, -0.011372074484825134, 0.06154115870594978, 0.037630800157785416, -0.05244875326752663, 0.00015691880253143609, -0.019190926104784012, -0.34248989820480347, -0.021709471940994263, -0.02331228367984295, -0.008041677065193653, -0.019536098465323448, 0.006095256190747023, 0.02099761925637722, -0.011228421702980995, -0.003454818855971098, 0.04420679807662964, 0.06382565945386887, -0.007231356576085091, 0.006389669608324766, -0.0838828757405281, 0.009653029032051563, 0.04379311203956604, 0.008006399497389793, -0.0005918837268836796, -0.029352055862545967, 0.017213154584169388, -0.012876045890152454, -0.055772848427295685, -0.03727448731660843, -0.03510025516152382, 0.009398387745022774, -0.016216309741139412, 0.09821576625108719, 0.008698518387973309, 0.023561827838420868, -0.03843691945075989, 0.04072465002536774, 0.02153693325817585, -0.007268477696925402, -0.10546629130840302, 0.018732868134975433, -0.03018302284181118, 0.013073454611003399, 0.04404028132557869, -0.0033922598231583834, 0.014376944862306118, -0.03034832701086998, -0.03763924539089203, -0.03352063521742821, -0.026915594935417175, 0.0251464881002903, 0.012051782570779324, -0.04904193803668022, -0.011536802165210247, 0.00781876128166914, 0.07080986350774765, 0.002344283740967512, 0.047984711825847626, 0.007247096858918667, 0.05663033202290535, 0.0226264838129282, -0.0450325645506382, -0.06329673528671265, 0.013314712792634964, 0.04788493365049362, 0.03963245451450348, 0.012332497164607048, 0.025911374017596245, 0.05247999727725983, -0.07111616432666779, 0.019134607166051865, 0.0016372412210330367, -0.014324859715998173, 0.013342535123229027, 0.033823784440755844, -0.01160752959549427, -0.0315847247838974, 0.12429942935705185, 0.010164096020162106, 0.032033659517765045, 0.020125960931181908, 0.0652969479560852, -0.047564465552568436, 0.0009361769771203399, 0.04421333596110344, -0.0003228721325285733, 0.03612026572227478, -0.029378460720181465, 0.07948341965675354, -0.011354743503034115, -0.008795945905148983, 0.06041299179196358, 0.006490401923656464, -0.047085098922252655, 0.06524527072906494, -0.005706188268959522, -0.008916699327528477, -0.022243719547986984, -0.02193298190832138, -0.038610126823186874, 0.08319700509309769, -0.03352188691496849, -0.25508639216423035, 0.04150475561618805, 0.025414077565073967, 0.04838871210813522, 0.018716292455792427, 0.008349425159394741, 0.01631404086947441, -0.049801573157310486, 0.02613927610218525, 0.010819533839821815, 0.04140827804803848, 0.0329800508916378, -0.0041932594031095505, 0.01759800873696804, -0.00225915783084929, -0.012218133546411991, 0.023967649787664413, 0.03749004378914833, 0.05417089909315109, 0.01624966971576214, 0.031237253919243813, -0.03353654220700264, 0.17544202506542206, 0.03679301589727402, -0.016587041318416595, 0.015872180461883545, -0.039636287838220596, 0.022872699424624443, 0.06563623994588852, 0.0028060523327440023, -0.04091987386345863, 0.0572822280228138, 0.008293052203953266, 0.037248097360134125, 0.017891421914100647, -0.04009218513965607, -0.022356713190674782, 0.031110914424061775, 0.0429408997297287, -0.033344924449920654, -0.04463665187358856, 0.014341448433697224, -0.04496822878718376, 0.03254667669534683, 0.05479356274008751, -0.03223288059234619, -0.0020721307955682278, -0.02561948448419571, -0.06876859813928604, -0.01892044208943844, -0.04147810861468315, -0.041493143886327744, -0.04064130038022995, -0.028919845819473267, 0.000749864149838686, 0.039886828511953354, 0.025304196402430534, -0.027731003239750862, 0.02130972407758236, 0.01649513468146324, 0.0062173474580049515, -0.06451292335987091, 0.0980769619345665, 0.023998595774173737, -0.028860827907919884 ]
[ 0.04090747982263565, 0.058271318674087524, -0.0479862354695797, 0.031715575605630875, -0.00955903995782137, -0.009176066145300865, 0.004659430123865604, -0.017854254692792892, -0.032115835696458817, -0.006220611277967691, -0.04319528490304947, -0.007073699031025171, 0.07504075020551682, -0.03577606379985809, -0.004637500736862421, 0.0037631539162248373, -0.04434172436594963, 0.03489559516310692, 0.011526060290634632, -0.021759655326604843, -0.05308660492300987, -0.008860013447701931, 0.014366702176630497, -0.0010264040902256966, -0.017177864909172058, 0.012857967987656593, -0.0255302581936121, -0.014440725557506084, -0.014971384778618813, -0.12216956913471222, -0.03891728073358536, -0.030508093535900116, -0.022816449403762817, 0.029942456632852554, -0.015593931078910828, 0.020979801192879677, 0.057861823588609695, 0.05014178529381752, -0.019834524020552635, 0.03580409660935402, 0.03923863172531128, 0.004544972442090511, -0.04213564842939377, -0.007418700028210878, 0.015562416054308414, 0.013066580519080162, -0.02022562362253666, -0.01940932311117649, 0.043631233274936676, -0.00704839825630188, -0.07228738814592361, -0.021152522414922714, 0.007107640150934458, 0.0030204763170331717, -0.012123285792768002, 0.007478927727788687, 0.0026259878650307655, -0.005348868202418089, 0.004212888423353434, 0.02575412578880787, 0.03296937420964241, -0.03411247208714485, -0.050490766763687134, -0.011060752905905247, -0.0023773463908582926, -0.023570898920297623, -0.037602923810482025, 0.03486204147338867, -0.01501481980085373, 0.027524154633283615, -0.004069427959620953, 0.043587181717157364, -0.11511556059122086, -0.020445246249437332, -0.037553269416093826, 0.028035638853907585, 0.0510474294424057, -0.021053116768598557, -0.00013309727364685386, 0.011767505668103695, -0.06794526427984238, 0.01680612377822399, -0.014910023659467697, -0.03944820538163185, -0.05089089646935463, 0.04558834433555603, 0.0030338820070028305, -0.026730254292488098, 0.012402564287185669, 0.03585657849907875, -0.0035093550104647875, 0.01812070421874523, 0.0022804345935583115, -0.010028846561908722, -0.0922834724187851, -0.022057488560676575, 0.019805192947387695, 0.007562196347862482, 0.02406698651611805, 0.7918403148651123, 0.016841217875480652, -0.02768452651798725, -0.006547231692820787, 0.012603877112269402, -0.018730999901890755, -0.010617492720484734, 0.04590490832924843, 0.007366730831563473, -0.03132334724068642, 0.00790694821625948, -0.006465491838753223, -0.008313865400850773, 0.002157769165933132, -0.014669130556285381, -0.007157568819820881, 0.04928561672568321, 0.007975524291396141, -0.013574885204434395, -0.028279555961489677, -0.009847879409790039, 0.001498255180194974, 0.0073464782908558846, -0.030791113153100014, -0.02344967983663082, -0.011444169096648693, -0.14915890991687775, 0.002104417886584997, -6.824139966498843e-33, 0.028285304084420204, -0.003224013838917017, 0.05499795451760292, 0.03486006334424019, 0.04828565567731857, 0.03262269124388695, -0.019879816100001335, 0.0037165957037359476, -0.03629264235496521, 0.0038234686944633722, -0.011102470569312572, -0.020246705040335655, -0.008795930072665215, -0.01689450815320015, -0.012925336137413979, -0.021605011075735092, 0.02522999979555607, -0.01500119362026453, -0.014594356529414654, 0.0020649314392358065, 0.03197887912392616, 0.057096514850854874, -0.009213407523930073, 0.07492039352655411, -0.011805800721049309, 0.051854413002729416, -0.00024043138546403497, -0.009108872152864933, -0.0009237700141966343, -0.04002109915018082, -0.046319715678691864, 0.015053997747600079, -0.006340671330690384, -0.04279492422938347, -0.0016253053909167647, -0.06581500172615051, -0.03046279586851597, -0.008403426967561245, -0.027251828461885452, -0.030229125171899796, -0.05614089220762253, 0.007969861850142479, 0.010225151665508747, -0.012372875586152077, -0.031831856817007065, 0.020058080554008484, 0.004548698663711548, 0.019488012418150902, 0.006606400478631258, 0.013054369948804379, 0.013486282899975777, 0.04372914135456085, 0.028547318652272224, 0.026492619886994362, -0.039516329765319824, 0.006127503234893084, -0.0205471683293581, -0.028400136157870293, -0.0013235599035397172, 0.002627457957714796, 0.04682622104883194, -0.008305205032229424, -0.0037154974415898323, 0.044351767748594284, 0.04778241366147995, 0.026561537757515907, 0.06485526263713837, 0.05145667493343353, 0.0297668669372797, 0.02840496227145195, -0.016411861404776573, 0.038699690252542496, -0.0013240516418591142, -0.028165889903903008, 0.03735794499516487, -0.03705378249287605, -0.010761779733002186, -0.011561054736375809, 0.02194925956428051, 0.03887009248137474, -0.00992544088512659, -0.008250817656517029, 0.010558114387094975, -0.024226980283856392, -0.009242648258805275, 0.017445484176278114, 0.04585838317871094, 0.02273734286427498, 0.013309919275343418, 0.06290760636329651, 0.025711961090564728, 0.0672079548239708, -0.004575011786073446, -0.02382175624370575, -0.02868684008717537, 6.31823731994767e-33, 0.0255185067653656, -0.01486087404191494, -0.017484169453382492, -0.012404709123075008, 0.029305115342140198, 0.02851085551083088, -0.00874088704586029, -0.01563282683491707, -0.022865507751703262, 0.03684161603450775, 0.005952245090156794, -0.009057784453034401, 0.0052803149446845055, 0.042277369648218155, 0.032017018646001816, 0.01582675240933895, -0.013156527653336525, -0.06362414360046387, -0.00784657895565033, 0.005392222199589014, -0.02116691879928112, 0.004253015387803316, -0.015514298342168331, 0.0434243343770504, 0.06252562254667282, -0.002293718047440052, -0.023689409717917442, 0.018705466762185097, -0.02018001675605774, -0.006286790128797293, -0.02515476383268833, -0.04650620371103287, -0.020567195490002632, -0.018733199685811996, -0.02026875503361225, -0.006286753807216883, -0.013591362163424492, 0.04323726147413254, 0.026473358273506165, 0.031998299062252045, 0.004671071656048298, 0.038871876895427704, -0.013241814449429512, 0.053806185722351074, 0.021972835063934326, 0.009682239033281803, 0.005576122086495161, 0.017832065001130104, -0.010222554206848145, 0.03522481024265289, -0.016628120094537735, 0.03271324187517166, 0.0013315564719960093, 0.010754060000181198, 0.05011049285531044, -0.05958518013358116, 0.01400784682482481, 0.025862297043204308, -0.051804158836603165, 0.013967111706733704, -0.04643071070313454, -0.014159008860588074, -0.01481409277766943, 0.06186022236943245, -0.02353142574429512, 0.004409193992614746, -0.025415198877453804, -0.028359457850456238, 0.0013209347380325198, -0.060559894889593124, 0.03284203261137009, -0.0009882908780127764, -0.01532147079706192, 0.0036910329945385456, 0.00255622249096632, -0.02207987569272518, -0.024215219542384148, 0.0019801429007202387, -0.049800775945186615, 0.04361351951956749, 0.020365800708532333, -0.012327986769378185, 0.03385743126273155, -0.006176108028739691, 0.0012665212852880359, 0.020661011338233948, -0.02205418050289154, 0.0017830929718911648, -0.011492004618048668, 0.00737545033916831, 0.00610217172652483, -0.029001722112298012, -0.019510896876454353, 0.006351503077894449, -0.08798227459192276, -1.225267975968336e-8, -0.03714457526803017, 0.0020023416727781296, -0.01982513628900051, -0.03692947328090668, 0.006745141465216875, 0.014967056922614574, -0.013170373626053333, 0.004315195605158806, -0.015044867061078548, 0.026897644624114037, 0.03398113325238228, -0.016784435138106346, 0.021227212622761726, 0.011524087749421597, 0.007988751865923405, -0.033430393785238266, 0.01829875446856022, -0.025505758821964264, 0.008575650863349438, -0.007139683701097965, 0.002710017142817378, 0.08086834102869034, -0.05404907464981079, 0.019445259124040604, 0.020172979682683945, -0.008314801380038261, -0.004521426744759083, -0.06327925622463226, 0.0032051748130470514, -0.027051560580730438, 0.0030026857275515795, -0.03374103084206581, -0.009482805617153645, -0.03135215491056442, 0.0037840569857507944, -0.03652670979499817, 0.03555171564221382, 0.055697012692689896, 0.025643743574619293, 0.03094455972313881, -0.01356228906661272, 0.01303852628916502, -0.006806187331676483, -0.023702163249254227, -0.05725844204425812, -0.011426286771893501, -0.06895819306373596, -0.00024248973932117224, 0.041074130684137344, -0.03551685810089111, 0.01252937875688076, 0.012869670987129211, 0.049574222415685654, 0.03304552286863327, 0.023973751813173294, -0.001155564095824957, 0.01305833924561739, -0.002569441916421056, -0.017459837719798088, -0.03747009113430977, 0.022881189361214638, -0.019516104832291603, -0.006684108171612024, -0.007201293017715216 ]
neo4j-import-java-lang-illegalstateexception-mixing-specified-unspecified-group-belongings-single-import-isnt-supported
https://markhneedham.com/blog/2018/03/07/neo4j-import-java-lang-illegalstateexception-mixing-specified-unspecified-group-belongings-single-import-isnt-supported
false
2018-03-13 21:57:14
Running asciidoctor-pdf on TeamCity
[ "ruby", "asciidoc", "asciidoctor", "asciidoctor-pdf", "gemfile" ]
[ "Software Development" ]
I've been using https://asciidoctor.org/docs/asciidoctor-pdf/[asciidoctor-pdf] to generate PDF and while I was initially running the tool locally I eventually decided to setup a build on TeamCity. It was a bit trickier than I expected, mostly because I'm not that familiar with deploying Ruby applications, but I thought I'd capture what I've done for future me. I have the following +++<cite>+++Gemfile+++</cite>+++ that installs asciidoctor-pdf and its dependencies: +++<cite>+++Gemfile+++</cite>+++ [source,text] ---- source 'https://rubygems.org' gem 'prawn' gem 'addressable' gem 'prawn-svg' gem 'prawn-templates' gem 'asciidoctor-pdf' ---- I don't have permissions to install gems globally on the build agents so I'm bundling those up into the +++<cite>+++vendor+++</cite>+++ directory. It's been a long time since I worked on a Ruby application so perhaps that's par for the course. [source,bash] ---- bundle install --path vendor/ bundle package ---- On the build agent I'm running the following script: [source,bash] ---- export PATH="$PATH:/home/teamcity/.gem/ruby/2.3.0/bin" mkdir $PWD/gems export GEM_HOME="$PWD/gems" gem install bundler --user-install --no-rdoc --no-ri && bundle install ./vendor/ruby/2.3.0/bin/asciidoctor-pdf -a allow-uri-read blog.adoc ---- I override where gems should be installed and then execute the +++<cite>+++asciidoctor-pdf+++</cite>+++ executable from the vendor directory. It all seems to work quite nicely but if there's a better approach that I should be taking so let me know in the comments.
null
null
[ 0.029773807153105736, -0.003588728839531541, -0.01872331090271473, 0.054242704063653946, 0.0666329562664032, 0.017685508355498314, 0.008566942065954208, 0.03216841071844101, 0.01670048013329506, -0.04739845171570778, -0.04303710162639618, 0.006656363140791655, -0.05958661064505577, 0.008354722522199154, 0.008562374860048294, 0.08078674972057343, 0.038158196955919266, 0.029942259192466736, -0.005732715129852295, 0.00787945743650198, 0.03512465953826904, 0.07425317913293839, -0.005561415106058121, 0.015244110487401485, 0.026265911757946014, 0.02451891079545021, 0.039296168833971024, -0.0017962869023904204, -0.08478045463562012, -0.021866999566555023, 0.01776394620537758, -0.028220992535352707, 0.013280189596116543, -0.02783023938536644, 0.025003422051668167, 0.020088789984583855, -0.021543120965361595, 0.011106383055448532, -0.02003302052617073, -0.01720658876001835, -0.05553647503256798, 0.052276164293289185, 0.031912460923194885, -0.01208844780921936, -0.03223354369401932, 0.03817678242921829, -0.049916576594114304, 0.025330092757940292, -0.00830744206905365, -0.04040241613984108, -0.06458299607038498, 0.005948041565716267, -0.013079910539090633, -0.025676008313894272, 0.017802951857447624, 0.024360356852412224, 0.011554423719644547, -0.07995229214429855, 0.025646639987826347, -0.03541021794080734, 0.0008706627413630486, -0.008526619523763657, -0.0004496153851505369, 0.04817594960331917, 0.03675234690308571, -0.012719430960714817, 0.00045226409565657377, 0.03862292319536209, -0.0402003638446331, -0.026093129068613052, 0.03434404730796814, 0.00908245425671339, -0.03388938307762146, -0.009311866946518421, -0.00045132465311326087, -0.022565240040421486, -0.03234617039561272, 0.08505699038505554, 0.0034747046884149313, 0.04372429847717285, -0.037253689020872116, 0.01995333842933178, -0.008165242150425911, 0.024861177429556847, -0.02345593273639679, -0.03424818068742752, -0.03489390388131142, 0.03209633007645607, -0.04992205277085304, 0.07361789792776108, 0.027519816532731056, -0.055421434342861176, 0.024669833481311798, 0.011349932290613651, 0.001065168878994882, -0.00021027318143751472, -0.03172269091010094, 0.030741747468709946, -0.006483858916908503, -0.002712059998884797, -0.0575382299721241, 0.008815357461571693, 0.00673201959580183, 0.03654342517256737, -0.0657738670706749, 0.0037408466450870037, -0.009184487164020538, -0.030840789899230003, -0.004400590434670448, 0.008232515305280685, 0.009637934155762196, 0.0007054702145978808, -0.019922619685530663, -0.017464404925704002, -0.07087915390729904, 0.07821463793516159, 0.04081594944000244, -0.015970507636666298, -0.027891280129551888, 0.0031292664352804422, 0.05948447436094284, 0.048357848078012466, 0.01525199506431818, 0.056077662855386734, 0.002161822048947215, 0.030083153396844864, -0.026383601129055023, 0.03456895425915718, -0.01069667562842369, -0.056402720510959625, -0.0184894111007452, 0.06968086957931519, -0.025706686079502106, 0.007738780230283737, -0.00041122574475593865, 0.017555154860019684, -0.0027428276371210814, 0.0035946250427514315, 0.051595915108919144, 0.017038047313690186, -0.01975831389427185, 0.008715836331248283, -0.03205500543117523, -0.01837782748043537, 0.013365771621465683, 0.010911256074905396, -0.02446765825152397, -0.03387073799967766, -0.041847821325063705, 0.033634912222623825, 0.010960881598293781, -0.0035825681407004595, 0.06746518611907959, -0.031326744705438614, 0.012048053555190563, 0.10218796133995056, 0.0704517588019371, 0.03644615039229393, -0.03986644744873047, -0.014249932020902634, -0.0076270392164587975, 0.030022142454981804, 0.017985254526138306, 0.05464891344308853, 0.0028175904881209135, -0.02202882245182991, -0.02668803744018078, 0.011986025609076023, 0.0018202024511992931, -0.014577670954167843, -0.046781864017248154, -0.05022023618221283, 0.05449879541993141, -0.017863571643829346, 0.015085642226040363, 0.011231917887926102, 0.07360666990280151, 0.034852877259254456, 0.02851950190961361, -0.02229079231619835, -0.08554007858037949, 0.05550958961248398, -0.006668674293905497, 0.031331323087215424, 0.02937941625714302, -0.03742021694779396, 0.09691236913204193, 0.030920321121811867, 0.0023517252411693335, 0.0367366299033165, -0.08749176561832428, -0.09384292364120483, 0.03124282881617546, -0.0269099660217762, 0.06067401170730591, -0.01109753642231226, -0.03370076045393944, 0.040993839502334595, 0.040622495114803314, 0.013779985718429089, 0.0026470543816685677, 0.016439594328403473, 0.01933523453772068, -0.0707501694560051, -0.04853711649775505, 0.0389530323445797, 0.036408986896276474, -0.004221347160637379, -0.008100473321974277, 0.0016896026208996773, -0.014334026724100113, -0.00041976600186899304, 0.03360465541481972, -0.03959760069847107, 0.06251942366361618, 0.009476724080741405, 0.04380932077765465, -0.020309682935476303, 0.03166929632425308, -0.040235698223114014, 0.04140124097466469, 0.006289475131779909, 0.0045049432665109634, 0.007081431336700916, -0.013137763366103172, 0.11157400161027908, 0.04028264805674553, -0.012837108224630356, -0.06102066487073898, 0.01647765561938286, -0.011863376013934612, -0.02594456635415554, 0.01570534147322178, -0.017643826082348824, -0.0059615233913064, -0.0182816069573164, -0.06194467097520828, -0.03631991520524025, -0.007750935386866331, 0.0011664906051009893, 0.0231766439974308, 0.07067759335041046, -0.00939242634922266, 0.058017075061798096, 0.006752968765795231, -0.019864361733198166, 0.012505638413131237, -0.020090794190764427, -0.07273412495851517, -0.007439189590513706, 0.03007347695529461, -0.006189370062202215, 0.011460433714091778, -0.031009916216135025, -0.011731627397239208, -0.015837950631976128, -0.03750991076231003, 0.024317815899848938, 0.029344875365495682, 0.04568043351173401, -0.034774839878082275, 0.03985518217086792, -0.06687814742326736, 0.016115454956889153, -0.021534813567996025, -0.03336944058537483, -0.015259296633303165, 0.02303258329629898, -0.013567652553319931, 0.03361762315034866, 0.010680794715881348, 0.02500212751328945, 0.005399344954639673, -0.021465564146637917, 0.012884254567325115, 0.031293436884880066, -0.000763733230996877, -0.011647267267107964, 0.003039515810087323, -0.03625240549445152, -0.01948363147675991, 0.04442340508103371, -0.037421002984046936, -0.013094688765704632, -0.007314242888242006, -0.04312934726476669, 0.04142969474196434, -0.07905245572328568, -0.05410216376185417, -0.02604840323328972, -0.018766433000564575, 0.016629215329885483, 0.030363311991095543, 0.027036210522055626, 0.04511241614818573, 0.02299223653972149, 0.0019055388402193785, 0.008337918668985367, 0.008676845580339432, 0.03036036342382431, -0.0005573664093390107, 0.0066170166246593, 0.037820182740688324, 0.0031997687183320522, -0.010117413476109505, -0.0455373115837574, 0.029884634539484978, -0.052742648869752884, -0.26226845383644104, 0.051780831068754196, -0.04780815914273262, -0.06469778716564178, 0.020897863432765007, -0.029166260734200478, 0.003233225317671895, -0.07104085385799408, -0.04580869898200035, 0.014124143868684769, -0.053412578999996185, -0.02944774739444256, 0.021848125383257866, 0.023329364135861397, 0.014111128635704517, 0.004328930750489235, 0.017719727009534836, -0.02293659746646881, 0.01115757692605257, 0.032908469438552856, 0.009638157673180103, -0.054738905280828476, 0.021186063066124916, 0.04764791578054428, 0.02460203506052494, 0.04560495913028717, -0.05345684662461281, 0.07120361924171448, -0.024552909657359123, -0.03757381811738014, 0.03879569470882416, -0.01985093019902706, -0.0060182902961969376, 0.012707964517176151, -0.033337920904159546, -0.017924610525369644, 0.059077188372612, -0.0047191446647048, 0.03829570487141609, -0.010379787534475327, 0.011958152987062931, -0.04102424904704094, -0.0012608416145667434, -0.04132968559861183, 0.05863841250538826, -0.03649679198861122, -0.08932135999202728, -0.004490545019507408, -0.05029987543821335, 0.10239315032958984, -0.015415565110743046, -0.06276475638151169, -0.023051153868436813, 0.02456946298480034, -0.006802053190767765, -0.019292373210191727, -0.0011280280305072665, -0.004755189176648855, -0.04861804097890854, -0.016925424337387085, -0.008372348733246326, -0.022721147164702415, -0.010575474239885807, -0.04449993371963501, -0.0009091718820855021, -0.054039523005485535, -0.059605907648801804, -0.02160150185227394, 0.07070718705654144, 0.028094952926039696, -0.04852059856057167, 0.020897800102829933, -0.02052897959947586, -0.10815457999706268, 0.016779089346528053, -0.001824857434257865, -0.040013305842876434, -0.005063624586910009, -0.009179727174341679, 0.06837419420480728, -0.03977647423744202, -0.0424753874540329, 0.030781332403421402, 0.010065434500575066, -0.013825461268424988, 0.01277829334139824, 0.027534089982509613, 0.029018966481089592, 0.012197132222354412, -0.017916321754455566, 0.07119152694940567, -0.02554088644683361, -0.04234432801604271, 0.002666848711669445, 0.0027465971652418375, 0.011885076761245728, 0.04383932054042816, -0.02488008514046669, 0.04189696162939072, 0.02771497517824173, 0.037606991827487946, -0.03634197264909744, 0.0025142072699964046, -0.041880372911691666, -0.009699215181171894, 0.00014163489686325192, -0.05489392206072807, -0.012800732627511024, 0.011100788600742817, 0.02622693032026291, -0.00023834964667912573, -0.030588777735829353, 0.021682891994714737, -0.054334357380867004, -0.008921421132981777, 0.01705128140747547, 0.028952553868293762, 0.023341476917266846, 0.027515091001987457, 0.012657545506954193, -0.05512722209095955, -0.01288918312638998, -0.02425495535135269, -0.04106880724430084, -0.04198035970330238, 0.030254963785409927, 0.012379011139273643, -0.003086220473051071, -0.0014359139604493976, -0.0042394897900521755, -0.032967109233140945, -0.013719184324145317, 0.014403849840164185, -0.037705741822719574, -0.008143529295921326, 0.004860908258706331, -0.08467986434698105, -0.034798745065927505, -0.007162104360759258, 0.0092611787840724, 0.0033830965403467417, 0.0031797802075743675, 0.04132470116019249, 0.029277484863996506, 0.0737321525812149, -0.014443086460232735, 0.018689285963773727, 0.018121987581253052, 0.0054378570057451725, -0.0074671669863164425, 0.015111852437257767, -0.016947709023952484, 0.026089517399668694, -0.020882856100797653, -0.03815613314509392, -0.033944785594940186, 0.0452258326113224, -0.008395176380872726, -0.011898249387741089, -0.03877057880163193, 0.025638863444328308, -0.059584829956293106, -0.004138673655688763, -0.0077211493626236916, 0.034731704741716385, 0.04696433246135712, 0.008498521521687508, 0.03416920080780983, -0.019458582624793053, 0.0003413150261621922, -0.00042423204286023974, 0.028183553367853165, -0.0314323864877224, 0.00768692372366786, -0.007850036025047302, -0.00941077247262001, 0.009337164461612701, 0.010945016518235207, 0.05508950352668762, -0.007835149765014648, -0.008797680027782917, -0.019627610221505165, 0.028359483927488327, -0.0016924155643209815, 0.042270004749298096, 0.001887565478682518, -0.03977705165743828, -0.002702724188566208, -0.04206594079732895, -0.03485194221138954, -0.014411794021725655, 0.03313100337982178, -0.01036862749606371, 0.01673896797001362, -0.01618259958922863, -0.08734199404716492, 0.04150434955954552, 0.03954225033521652, -0.012967592105269432, -0.006423993967473507, -0.018385443836450577, -0.021004479378461838, -0.05413443222641945, 0.028623471036553383, 0.07909432053565979, -0.0696869045495987, -0.010592767037451267, 0.012584330514073372, -0.0031118157785385847, -0.003975456114858389, 0.032113008201122284, -0.05701526999473572, -0.01833701878786087, 0.010206797160208225, 0.02721877209842205, -0.0457705482840538, -0.0153017807751894, -0.039767004549503326, -0.015698246657848358, -0.005859984550625086, -0.005956359673291445, -0.007510742638260126, 0.017659641802310944, 0.006085083819925785, -0.026989711448550224, 0.00191374565474689, -0.00693119689822197, -0.013352731242775917, 0.0032817355822771788, -0.02003791742026806, 0.0532996766269207, -0.022236797958612442, 0.055812668055295944, 0.026607928797602654, -0.008801065385341644, -0.008449130691587925, -0.05378127843141556, -0.0012489586370065808, -0.03219297155737877, 0.008352288976311684, -0.005721776280552149, -0.004148097243160009, -0.0019551555160433054, 0.010675384663045406, -0.034168604761362076, -0.028758564963936806, -0.027666393667459488, -0.01325212512165308, 0.0033736880868673325, 0.05131459981203079, 0.0009332228801213205, 0.04358332231640816, -0.004481149837374687, -0.035816699266433716, 0.048481687903404236, -0.058613598346710205, -0.06005406752228737, 0.002468954073265195, -0.06846633553504944, 0.0436566136777401, 0.030817603692412376, -0.00028904492501169443, -0.0595480352640152, 0.05599137768149376, 0.011224936693906784, -0.023028522729873657, 0.02377021126449108, -0.027509845793247223, 0.020162997767329216, -0.037976887077093124, -0.025271065533161163, -0.06483208388090134, 0.04234152287244797, 0.0033570765517652035, -0.001727584283798933, -0.02255234308540821, 0.032387733459472656, -0.037033628672361374, 0.022083820775151253, -0.0421941764652729, -0.04140271246433258, 0.04554338753223419, -0.00006789257895434275, 0.006084228865802288, -0.00011476643703645095, -0.05945944786071777, 0.019896196201443672, 0.04298742115497589, -0.04672367125749588, -0.012785626575350761, -0.03166957199573517, 0.06485775113105774, -0.025063732638955116, 0.024183830246329308, -0.02650389075279236, -0.02347608469426632, 0.06735911220312119, 0.028913158923387527, -0.019696461036801338, 0.026405826210975647, 0.0019171128515154123, 0.057290732860565186, 0.027772556990385056, -0.0007589095621369779, 0.019422000274062157, 0.013680745847523212, -0.01922469586133957, -0.045572709292173386, 0.045654136687517166, -0.028602249920368195, 0.0006664891261607409, -0.012058823369443417, 0.05586894974112511, 0.010979955084621906, -0.05949772894382477, -0.06688875705003738, 0.042059335857629776, -0.03653593733906746, -0.020889442414045334, -0.028109269216656685, 0.012988978065550327, -0.027483398094773293, 0.044291023164987564, -0.01108754612505436, 0.008740728721022606, 0.07567986845970154, 0.017632335424423218, 0.010551344603300095, 0.0036471704952418804, 0.06262577325105667, 0.0733286663889885, 0.03959992900490761, 0.012594823725521564, 0.062165267765522, -0.022685155272483826, -0.05305987596511841, 0.002262907335534692, -0.016724253073334694, 0.011236665770411491, -0.008468467742204666, -0.003046254627406597, 0.05397317185997963, -0.025349104776978493, 0.08074241131544113, 0.005963580217212439, -0.014985756948590279, -0.008374776691198349, 0.03469398617744446, 0.014117924496531487, 0.05513272434473038, 0.021629128605127335, 0.022764256224036217, -0.020632177591323853, -0.02578459121286869, 0.016398238018155098, -0.04901175573468208, -0.020444069057703018, 0.013690895400941372, -0.007349777966737747, 0.005245680455118418, 0.005168157164007425, 0.04533005505800247, 0.0752309262752533, -0.05086667463183403, -0.009248152375221252, 0.0036017633974552155, 0.025344591587781906, -0.0031693819910287857, 0.01745658367872238, -0.0013162331888452172, -0.019626157358288765, -0.02598568983376026, -0.05309518426656723, -0.03216530382633209, 0.012414015829563141, -0.005638939794152975, 0.04695679247379303, -0.030794553458690643, 0.016960274428129196, 0.052567966282367706, -0.021065492182970047, -0.038542240858078, -0.0491979718208313, -0.027974531054496765, -0.029029786586761475, -0.02427481673657894, 0.016255078837275505, 0.003051626728847623, 0.007835187017917633, -0.03788108006119728, -0.02249903976917267, 0.0020033339969813824, 0.012953524477779865, 0.008614047430455685, -0.059129904955625534, -0.05318129435181618, -0.009449652396142483, 0.018103817477822304, 0.01403221394866705, 0.03568911924958229, 0.07089118659496307, -0.001970025012269616, -0.017100095748901367, 0.0018379989778622985, 0.0034983172081410885, 0.034016236662864685, 0.028702247887849808, 0.016324423253536224, -0.09179557859897614, 0.018894435837864876, 0.01882302388548851, 0.03549392521381378, -0.06239178031682968, 0.025999825447797775, 0.034129031002521515, -0.019585533067584038, 0.06661081314086914, 0.025835582986474037, 0.03936202824115753, -0.04671863839030266, 0.008487521670758724, -0.019145380705595016, 0.015466714277863503, 0.047990746796131134, -0.0009462909074500203, 0.10118250548839569, 0.023557165637612343, 0.005241712089627981, -0.04127653315663338, -0.031363312155008316, -0.019488267600536346, -0.016212109476327896, -0.00949950236827135, 0.0075617521069943905, -0.055545706301927567, -0.09314291924238205, -0.04687093198299408, -0.023514244705438614, -0.05303807556629181, -0.03735886141657829, 0.012521550990641117, -0.007715157698839903, -0.013032959774136543, 0.02762441150844097, -0.04144855588674545, 0.0070258076302707195, -0.011951771564781666, -0.014439329504966736, 0.004567792173475027, 0.019341688603162766, 0.026603378355503082, -0.01695636846125126, 0.0015661095967516303, -0.030580559745430946, 0.016133300960063934, 0.008575436659157276, 0.02677900344133377, 0.03990241512656212, 0.012866808101534843, 0.019081540405750275 ]
[ -0.07322782278060913, -0.0014304377837106586, -0.04388094320893288, 0.015139433555305004, 0.03164224326610565, -0.08053956180810928, -0.052544884383678436, 0.020888177677989006, -0.048799797892570496, -0.0001415526494383812, 0.030965115875005722, -0.04329274967312813, -0.02721474878489971, -0.033818893134593964, 0.05240955948829651, 0.004111547954380512, -0.00446737464517355, -0.034213099628686905, -0.005244085565209389, 0.0345526747405529, -0.005249012727290392, -0.021930523216724396, 0.020908677950501442, -0.028099743649363518, -0.006190448999404907, 0.06557255983352661, -0.005479735322296619, -0.06862062215805054, -0.02653561159968376, -0.19708587229251862, 0.0006838858244009316, -0.010441526770591736, 0.016354132443666458, -0.01263384148478508, -0.004609491676092148, 0.02614947222173214, 0.023944513872265816, 0.006904545705765486, -0.007368136662989855, 0.021207254379987717, -0.006051722448319197, 0.04536892846226692, -0.07013921439647675, -0.00842228438705206, 0.03888236731290817, -0.0024553360417485237, -0.0004709877248387784, -0.040794987231492996, 0.018208669498562813, 0.0012348316377028823, -0.05944693461060524, 0.04166361689567566, 0.018412986770272255, -0.05095399543642998, -0.03091491013765335, 0.025220364332199097, 0.06467713415622711, 0.07701176404953003, 0.015434241853654385, 0.024134313687682152, 0.002764360746368766, -0.004720110911875963, -0.15428411960601807, 0.0879131630063057, 0.06174328178167343, 0.05418805405497551, -0.07567060738801956, -0.046390630304813385, -0.0065567223355174065, 0.04697925224900246, 0.015397134236991405, -0.006699029356241226, -0.032801609486341476, 0.0804293155670166, 0.03312241658568382, -0.002929488429799676, -0.008592763915657997, 0.01467466726899147, 0.05215383321046829, -0.07250454276800156, -0.07959331572055817, -0.023152414709329605, -0.05553364381194115, -0.006761561147868633, -0.02101895585656166, -0.01118672639131546, 0.013102232478559017, 0.052850693464279175, 0.032403185963630676, 0.006378446705639362, 0.02697794884443283, -0.013891074806451797, -0.0008457383373752236, 0.03563718870282173, -0.09622407704591751, -0.032723646610975266, 0.005161248613148928, -0.014615630730986595, -0.03854910284280777, 0.41529467701911926, -0.008077558130025864, -0.023851189762353897, 0.03961228206753731, 0.03558534383773804, -0.03947381302714348, -0.012354526668787003, -0.010943633504211903, -0.03337178751826286, -0.023286107927560806, -0.04077060520648956, 0.020667053759098053, -0.006940591149032116, 0.033972010016441345, -0.08765748888254166, 0.04142983630299568, 0.012631257995963097, -0.00408954406157136, 0.03914078697562218, -0.016566263511776924, 0.03430403769016266, -0.011216571554541588, 0.029807662591338158, 0.006891925819218159, 0.06031614542007446, 0.0031857413705438375, 0.0028841011226177216, 0.04218432307243347, 0.05078709125518799, 0.032729409635066986, 0.03913569450378418, 0.03974827378988266, 0.03069121204316616, -0.08016051352024078, -0.01611376740038395, 0.011780284345149994, 0.04785863310098648, 0.029575077816843987, -0.008905372582376003, 0.0036077892873436213, 0.033927351236343384, -0.004165525548160076, 0.018835384398698807, -0.013148516416549683, 0.024092387408018112, -0.02095845155417919, 0.04409535601735115, -0.017983227968215942, 0.0037891974207013845, -0.02199127897620201, -0.035180576145648956, -0.030494878068566322, 0.02690177410840988, 0.028981905430555344, -0.005432432983070612, 0.017846141010522842, -0.018641246482729912, 0.022098887711763382, -0.04022415727376938, -0.05152914673089981, 0.03555558621883392, -0.024923859164118767, -0.044470496475696564, -0.014583677053451538, 0.08367908746004105, 0.039217013865709305, -0.09103970974683762, -0.05014801770448685, 0.011266273446381092, -0.0025088610127568245, -0.07962623983621597, -0.022741056978702545, 0.024544646963477135, 0.014450952410697937, 0.020130351185798645, 0.05134439468383789, -0.032163482159376144, -0.006464068312197924, 0.013867373578250408, 0.03927340358495712, -0.0033263489603996277, 0.052276547998189926, 0.043937813490629196, -0.013406362384557724, 0.003758970182389021, -0.05531585216522217, -0.08490393310785294, -0.0635601282119751, -0.028447918593883514, -0.03783499449491501, -0.014797842130064964, -0.017406363040208817, 0.02428361587226391, -0.030682796612381935, 0.07032058387994766, 0.02016475982964039, 0.019073951989412308, 0.0017700082389637828, -0.02662309631705284, -0.029206860810518265, -0.03476900979876518, 0.022467361763119698, 0.021962257102131844, -0.0011046904837712646, 0.03701484203338623, -0.07916849106550217, 0.004410082474350929, 0.05168706178665161, -0.04067163169384003, 0.042200103402137756, -0.014078157022595406, -0.05893019586801529, -0.014650184661149979, 0.031316954642534256, 0.050880298018455505, -0.07240957766771317, 0.025038156658411026, -0.016257841140031815, -0.008820791728794575, 0.014214789494872093, 0.02835199050605297, -0.02302536368370056, -0.006494361441582441, -0.012491362169384956, -0.3502202332019806, 0.030222320929169655, -0.02294720895588398, 0.016947364434599876, 0.03373587504029274, -0.05865470692515373, 0.01299284864217043, -0.01607143133878708, -0.029238032177090645, -0.009294412098824978, 0.07723598927259445, -0.00324734253808856, 0.03514966741204262, -0.07236021757125854, -0.04305066913366318, 0.03941988945007324, -0.03690725564956665, -0.02242855913937092, 0.015612444840371609, 0.06525390595197678, 0.021214298903942108, -0.03918081894516945, -0.027345890179276466, -0.02571188099682331, 0.04349908232688904, -0.05425760895013809, 0.08931513130664825, 0.02250073105096817, 0.0174400694668293, -0.038604170083999634, 0.037458352744579315, 0.037122778594493866, -0.008387702517211437, -0.11938196420669556, -0.026612283661961555, -0.049927886575460434, 0.012386135756969452, 0.013049277476966381, 0.02527160942554474, 0.01794346235692501, 0.0011245066998526454, 0.012263443320989609, -0.041480183601379395, -0.054868295788764954, -0.00330238975584507, -0.004019338637590408, -0.009062349796295166, 0.02159830555319786, 0.04497402533888817, 0.052174538373947144, 0.002178782131522894, 0.011458663269877434, 0.027315016835927963, 0.010545742698013783, -0.023762010037899017, -0.060489438474178314, -0.07724454253911972, -0.016620896756649017, -0.008749349042773247, -0.011790563352406025, 0.05129769444465637, 0.027148282155394554, 0.06341256946325302, -0.058710936456918716, 0.002924708416685462, 0.03606349229812622, -0.010392187163233757, -0.0020853367168456316, 0.03907460719347, -0.011716905049979687, 0.005974782630801201, 0.07958094775676727, -0.0015655423048883677, 0.025044167414307594, 0.019664371386170387, 0.05786607041954994, 0.04197614639997482, 0.025495273992419243, 0.02185811474919319, 0.0013025003718212247, 0.009029353968799114, -0.023360295221209526, 0.08207732439041138, -0.011645839549601078, -0.0032416568137705326, 0.04955953359603882, -0.034683115780353546, -0.036893125623464584, 0.02540520578622818, 0.054393041878938675, -0.035086505115032196, -0.020737508311867714, -0.031824931502342224, -0.008088736794888973, 0.05969864875078201, 0.000609797949437052, -0.25606757402420044, 0.011108417063951492, 0.07152863591909409, 0.044704683125019073, -0.01201556995511055, 0.0049695950001478195, 0.06154283508658409, -0.06637626886367798, 0.009786857292056084, 0.012488236650824547, -0.005526460241526365, 0.07240835577249527, 0.0019376440905034542, -0.03556175157427788, 0.05248068645596504, -0.017803393304347992, 0.07323578745126724, 0.02606540359556675, -0.005472266580909491, 0.008765031583607197, -0.0160224512219429, -0.021413246169686317, 0.17575187981128693, 0.0030950657092034817, -0.03401584550738335, 0.014575731940567493, 0.007478133775293827, -0.02223830483853817, 0.05062760412693024, 0.026988733559846878, -0.004786827601492405, 0.009303895756602287, 0.03573790565133095, 0.02050488442182541, 0.025611231103539467, -0.02866951748728752, -0.02609773352742195, 0.06577842682600021, 0.004995517898350954, -0.006190747953951359, -0.027446674183011055, 0.043068792670965195, -0.05799408257007599, 0.040276531130075455, 0.047415830194950104, -0.02134108357131481, -0.052367400377988815, -0.007779132109135389, -0.03828233852982521, 0.010049059987068176, -0.03195550665259361, -0.05900116264820099, -0.028029464185237885, -0.0017473315820097923, 0.0019382466562092304, 0.0545998215675354, -0.004726099781692028, -0.04145503044128418, -0.013174664229154587, -0.023107420653104782, 0.013068745844066143, -0.025716325268149376, 0.14912629127502441, 0.03953135758638382, 0.025189146399497986 ]
[ -0.01307880599051714, -0.005599189084023237, -0.1004752591252327, 0.0319177508354187, -0.0039369803853333, 0.029482252895832062, -0.027021603658795357, 0.002200279152020812, -0.07348988950252533, 0.01107798982411623, 0.058928217738866806, 0.01713082194328308, 0.026422731578350067, 0.022168517112731934, -0.000893396558240056, -0.02360464446246624, 0.03571688011288643, -0.03875880315899849, 0.019239740446209908, 0.009139375761151314, -0.0047304402105510235, 0.025730114430189133, 0.04323996603488922, 0.02080642618238926, 0.0241559911519289, -0.02948431484401226, -0.05857113003730774, -0.0028366909828037024, 0.020836278796195984, -0.17847876250743866, 0.053297702223062515, -0.013198183849453926, 0.04487894847989082, -0.006437792908400297, 0.01992734894156456, 0.005834394600242376, 0.0031207012943923473, 0.021035602316260338, 0.00474819540977478, 0.004244561307132244, -0.008564247749745846, -0.005916174501180649, -0.017114119604229927, 0.011637394316494465, -0.02809540368616581, -0.028815006837248802, 0.006205839104950428, -0.014658425934612751, 0.023567672818899155, 0.019197924062609673, -0.018531108275055885, 0.03223148733377457, 0.003393193706870079, -0.029835795983672142, -0.0055242860689759254, -0.006337643135339022, 0.0017007215647026896, -0.025413496419787407, 0.02421395108103752, -0.046727538108825684, 0.009362448938190937, 0.025709766894578934, -0.060075145214796066, 0.003006867365911603, -0.008507094345986843, -0.017797518521547318, -0.03272366151213646, 0.00724790059030056, -0.034616705030202866, 0.011669499799609184, 0.017910711467266083, 0.007868703454732895, 0.006153889000415802, -0.02302142046391964, 0.02226979471743107, 0.02372615970671177, 0.015468593686819077, 0.018206343054771423, -0.03591941297054291, -0.016777826473116875, -0.024070635437965393, 0.029639460146427155, 0.017351174727082253, 0.014190013520419598, -0.02123851329088211, 0.039447806775569916, 0.012942943722009659, -0.003459975589066744, 0.005695673171430826, 0.024372857064008713, 0.012545391917228699, 0.03257739171385765, 0.01100657507777214, 0.029384305700659752, -0.08370429277420044, -0.02918122336268425, 0.0640828087925911, -0.010249942541122437, -0.024085335433483124, 0.7964977025985718, 0.011393751949071884, -0.016016095876693726, 0.06373418867588043, -0.0075570992194116116, -0.04857473075389862, -0.023707598447799683, 0.005299958400428295, 0.015690505504608154, 0.01744779385626316, -0.0022821391467005014, 0.07977983355522156, -0.04139670357108116, -0.002575589343905449, -0.026395542547106743, 0.025647249072790146, 0.054100099951028824, 0.004772347863763571, 0.018852923065423965, 0.0031235236674547195, 0.021073566749691963, 0.028594886884093285, 0.0030940065626055002, -0.028590764850378036, 0.03772091865539551, 0.00395936006680131, -0.14356371760368347, 0.007276144344359636, -5.245491828304805e-33, 0.041290394961833954, 0.005752169992774725, -0.06104300171136856, 0.0061470880173146725, 0.015004696324467659, 0.03633449971675873, 0.006792799104005098, 0.010894621722400188, 0.008810402825474739, -0.03170805424451828, -0.02138395421206951, 0.018687352538108826, -0.031082162633538246, -0.01618286594748497, 0.0009016603580676019, -0.028408348560333252, -0.015130395069718361, 0.06672962009906769, -0.010907107964158058, 0.04124775156378746, 0.025416675955057144, -0.017050350084900856, -0.037329066544771194, 0.028788646683096886, 0.00472571887075901, 0.03150750696659088, 0.028697509318590164, -0.02605862356722355, 0.017389347776770592, -0.03041183017194271, 0.025522522628307343, 0.07389693707227707, -0.00902138464152813, -0.055344108492136, -0.006786542013287544, -0.03808378800749779, -0.04384086653590202, -0.005241283681243658, -0.05365334823727608, -0.06268512457609177, -0.024899175390601158, -0.015368836931884289, -0.056737467646598816, -0.0031456223223358393, 0.008280500769615173, -0.057303763926029205, 0.021031470969319344, 0.02713155560195446, 0.01612989790737629, -0.0498848482966423, 0.0015899118734523654, 0.004081408958882093, 0.04789924621582031, 0.04371142387390137, 0.03608844429254532, 0.021627197042107582, -0.039948947727680206, 0.03267984837293625, 0.0007206325535662472, -0.046791039407253265, 0.01716034859418869, 0.0075670452788472176, -0.03566327691078186, 0.023127054795622826, -0.019090889021754265, 0.007276556454598904, -0.0028624352999031544, 0.015891000628471375, 0.06691335141658783, 0.008831486105918884, -0.05375760793685913, 0.0059949173592031, 0.013474955223500729, -0.011148606427013874, -0.010775575414299965, -0.006236908491700888, 0.006164605263620615, 0.05159328132867813, 0.005781897343695164, 0.020984865725040436, -0.015955669805407524, -0.005367272533476353, -0.019571520388126373, -0.015959709882736206, 0.006945008412003517, 0.026325346902012825, 0.04858829826116562, -0.025060150772333145, -0.03664508834481239, 0.042883340269327164, 0.02746032178401947, 0.009164711460471153, 0.0020759813487529755, -0.00828928779810667, 0.020154550671577454, 5.873246953946185e-33, -0.0021566390059888363, -0.0563376322388649, 0.01894092746078968, 0.017046814784407616, 0.02885076403617859, -0.03773212432861328, -0.01829248107969761, -0.010196711868047714, -0.056928426027297974, 0.0037164960522204638, -0.05950077995657921, 0.013792677782475948, -0.014800299890339375, -0.05174095556139946, 0.04535764083266258, -0.03509300947189331, 0.050686225295066833, -0.017273861914873123, 0.04535350576043129, 0.003079089568927884, -0.024613186717033386, 0.01753474771976471, 0.010785186663269997, 0.0451943501830101, 0.038127146661281586, 0.04307655617594719, -0.02011372335255146, -0.01904420182108879, 0.008763236925005913, -0.009615615010261536, 0.028350040316581726, 0.03094848245382309, -0.02326122857630253, -0.009996244683861732, -0.04321319982409477, 0.048602283000946045, -0.026067456230521202, 0.04572651535272598, 0.0017312885029241443, -0.007268883287906647, 0.017900792881846428, 0.002079398138448596, -0.007802102714776993, -0.01306053064763546, 0.026422647759318352, 0.017836548388004303, 0.010501313954591751, -0.026937264949083328, -0.007735799066722393, 0.02569604478776455, -0.0024642390199005604, 0.016772279515862465, -0.008656220510601997, -0.0235305055975914, 0.014544516801834106, -0.013510669581592083, -0.024036699905991554, 0.0033014744985848665, -0.03018244169652462, 0.022888097912073135, 0.006027291063219309, 0.001494231284596026, 0.01184030156582594, 0.013322184793651104, -0.08748851716518402, -0.03770523518323898, -0.025702785700559616, 0.021034546196460724, 0.0248097013682127, 0.07032645493745804, -0.0031038406305015087, -0.0016509396955370903, -0.029319463297724724, 0.03728870302438736, 0.017725586891174316, -0.004646096378564835, 0.00003779439066420309, 0.004763894248753786, -0.044655390083789825, -0.011607412248849869, -0.002564280293881893, 0.003514306154102087, -0.026965010911226273, 0.01748822070658207, 0.025296585634350777, 0.03312104940414429, -0.017463646829128265, -0.0017434817273169756, 0.01038313377648592, 0.0047937314957380295, 0.020233159884810448, -0.026474155485630035, -0.003996043466031551, -0.026541385799646378, -0.001132583012804389, -1.1752350204119466e-8, 0.037898365408182144, 0.012704280205070972, -0.014182479120790958, 0.020035091787576675, 0.020675260573625565, 0.02264263480901718, 0.001577720744535327, -0.012631955556571484, -0.025298578664660454, 0.00001599989082023967, 0.026074914261698723, -0.0173863023519516, -0.0012577157467603683, 0.01990477740764618, 0.020120956003665924, 0.0012081866152584553, 0.023971378803253174, 0.005016549956053495, 0.005466552916914225, -0.026631362736225128, 0.03617890179157257, 0.01089775562286377, -0.026062851771712303, 0.014938642270863056, -0.05511106923222542, 0.015698222443461418, -0.010445499792695045, -0.06773320585489273, -0.006218015681952238, -0.0002743047953117639, 0.050397083163261414, -0.007804165128618479, -0.07466215640306473, 0.0001083148381439969, 0.012051899917423725, -0.029106372967362404, 0.02395043335855007, -0.017293261364102364, 0.019119493663311005, 0.019728034734725952, 0.012620257213711739, 0.04263857752084732, 0.008380692452192307, -0.010597276501357555, -0.050829850137233734, -0.022323649376630783, -0.02585865929722786, -0.011358245275914669, -0.01702587865293026, -0.034338485449552536, -0.009131478145718575, -0.00346990954130888, -0.03711383417248726, 0.018482793122529984, -0.015987655147910118, 0.007445026189088821, 0.03569876030087471, -0.001991122029721737, -0.03890890255570412, -0.01800050400197506, -0.0022016402799636126, -0.046157922595739365, -0.023840047419071198, -0.01904904469847679 ]
running-asciidoctor-pdf-teamcity
https://markhneedham.com/blog/2018/03/13/running-asciidoctor-pdf-teamcity
false
2018-03-14 16:53:33
Neo4j: Cypher - Neo.ClientError.Statement.TypeError: Don't know how to add Double and String
[ "neo4j", "cypher" ]
[ "neo4j" ]
I recently upgraded a Neo4j backed application from Neo4j 3.2 to Neo4j 3.3 and came across an interesting change in behaviour around type coercion which led to my application throwing a bunch of errors. In Neo4j 3.2 and earlier if you added a String to a Double it would coerce the Double to a String and concatenate the values. The following would therefore be valid Cypher: [source,cypher] ---- RETURN toFloat("1.0") + " Mark" ╒══════════╕ │"result" │ ╞══════════╡ │"1.0 Mark"│ └──────────┘ ---- This behaviour has changed in the 3.3 series and will instead throw an exception: [source,cypher] ---- RETURN toFloat("1.0") + " Mark" Neo.ClientError.Statement.TypeError: Don't know how to add `Double(1.000000e+00)` and `String(" Mark")` ---- We can workaround that by forcing our query to run in 3.2 mode: [source,cypher] ---- CYPHER 3.2 RETURN toFloat("1.0") + " Mark" AS result ---- or we can convert the Double to a String in our Cypher statement: [source,cypher] ---- RETURN toString(toFloat("1.0")) + " Mark" AS result ----
null
null
[ 0.0036464910954236984, -0.0319468192756176, -0.01761537231504917, 0.0338691771030426, 0.07278139889240265, 0.023292826488614082, 0.04108433425426483, -0.0027157387230545282, 0.020902369171380997, -0.03371896222233772, 0.0016374847618862987, -0.016800710931420326, -0.08138071000576019, 0.03135865181684494, -0.0035887358244508505, 0.06576791405677795, 0.06856029480695724, 0.005593537352979183, 0.02310006134212017, -0.022234652191400528, 0.002641982166096568, 0.04686244949698448, -0.019188053905963898, 0.024733178317546844, 0.050357937812805176, 0.02019188553094864, 0.008697818964719772, -0.019795650616288185, -0.051136426627635956, -0.009642159566283226, 0.08435840904712677, 0.023254647850990295, 0.017505399882793427, -0.007323372643440962, 0.016400516033172607, 0.03015449084341526, -0.0344855971634388, -0.004407619126141071, -0.005223327316343784, -0.003761797910556197, -0.05799252912402153, 0.026267826557159424, -0.006514354608952999, 0.01580636575818062, -0.042924124747514725, -0.009257467463612556, -0.04769488051533699, 0.01573144644498825, -0.025553809478878975, -0.0006755788344889879, -0.10003787279129028, 0.028448011726140976, -0.021604303270578384, -0.003915900830179453, 0.02647898718714714, 0.048546381294727325, -0.011220690794289112, -0.08687865734100342, 0.05914711952209473, -0.04136280715465546, -0.009293323382735252, -0.01220414787530899, -0.03006552904844284, 0.018386878073215485, -0.01042371615767479, -0.03469149395823479, 0.007718273438513279, 0.06470399349927902, -0.08727597445249557, -0.03911416605114937, 0.022153420373797417, 0.03470383584499359, -0.019126545637845993, -0.025522882118821144, -0.014866109937429428, -0.04005241394042969, -0.02806440182030201, 0.049544621258974075, 0.02991250343620777, 0.05029532313346863, -0.013681522570550442, 0.01960693672299385, 0.024148356169462204, -0.007092289626598358, 0.025816218927502632, -0.04580441117286682, -0.008240786381065845, 0.006304478272795677, -0.042179059237241745, 0.04467310383915901, 0.03841107711195946, -0.056639861315488815, 0.02216692455112934, -0.000004319252184359357, -0.03294844925403595, 0.00683968560770154, -0.0237160325050354, -0.00926134642213583, 0.0356268547475338, 0.0007273720693774521, -0.04674532264471054, -0.013826370239257812, 0.010306896641850471, 0.0069188610650599, -0.06992226839065552, -0.025407487526535988, -0.05240156129002571, -0.030705653131008148, 0.01471978984773159, -0.003009640146046877, -0.03403389826416969, 0.007062715943902731, -0.0008507309830747545, 0.009395526722073555, -0.08336526155471802, 0.06712828576564789, 0.025050733238458633, -0.009214682504534721, -0.031585730612277985, 0.031125055626034737, 0.04005598649382591, 0.015733959153294563, 0.002948335139080882, 0.07285340875387192, 0.01273682527244091, 0.04910070449113846, 0.008417616598308086, 0.056458745151758194, -0.0004015771555714309, -0.07822117954492569, -0.028608525171875954, 0.06829201430082321, -0.00589705677703023, 0.018862087279558182, -0.03795676678419113, -0.03014286607503891, -0.01576739177107811, 0.018856242299079895, 0.04996237903833389, 0.02000178024172783, 0.018194084987044334, -0.04931018501520157, 0.012618375942111015, 0.0258736964315176, 0.01518592331558466, 0.02917669713497162, -0.039063289761543274, -0.024599114432930946, -0.007985090836882591, 0.015092175453901291, -0.004268228076398373, 0.03943987190723419, 0.07146738469600677, -0.00423827301710844, -0.014380186796188354, 0.10983427613973618, 0.02379729598760605, 0.018782583996653557, -0.015205699019134045, 0.008246512152254581, 0.05670458450913429, 0.011193892918527126, -0.0007109724683687091, 0.05515380576252937, 0.026078632101416588, 0.008468955755233765, -0.029416166245937347, 0.057405952364206314, -0.021480055525898933, 0.011101302690804005, -0.04753066971898079, -0.06889552623033524, 0.0548134483397007, -0.05137782543897629, -0.0033397660590708256, 0.03236110880970955, 0.04723598435521126, 0.004049378912895918, 0.02821967750787735, 0.01581546850502491, -0.08177562803030014, 0.06172267347574234, 0.002254615304991603, 0.002386389998719096, 0.016406429931521416, 0.041737113147974014, 0.061207227408885956, 0.03261826932430267, 0.02406211569905281, 0.030013667419552803, -0.07765883207321167, -0.06340312212705612, -0.03223482146859169, -0.013850352726876736, 0.04697142541408539, -0.03847601264715195, -0.0053964960388839245, 0.034985486418008804, -0.010928327217698097, 0.025486717000603676, 0.015276947058737278, -0.017224648967385292, 0.04419497773051262, -0.01676369272172451, -0.02366730570793152, 0.03878549113869667, 0.03370433673262596, -0.009232910349965096, -0.04602367430925369, 0.036484427750110626, -0.018032217398285866, 0.009807801805436611, 0.005134494509547949, -0.0275157168507576, 0.03742106258869171, 0.0260955598205328, 0.027692778035998344, -0.030057430267333984, 0.014602898620069027, -0.07023918628692627, 0.04056353494524956, 0.015383956022560596, -0.015283058397471905, -0.029879560694098473, -0.018028218299150467, 0.12260916829109192, 0.05998695641756058, 0.0071429237723350525, -0.04375053569674492, 0.042096562683582306, -0.013548462651669979, -0.03593781962990761, 0.021209293976426125, -0.03529899939894676, -0.007403039839118719, 0.004102872684597969, -0.034049008041620255, -0.0005172790843062103, 0.004179166164249182, -0.028192251920700073, 0.031384073197841644, 0.07805058360099792, -0.0469413697719574, 0.05709787830710411, -0.03690711408853531, -0.0007246698951348662, 0.009895553812384605, -0.04978841543197632, -0.04089267924427986, 0.01455253642052412, 0.03323867544531822, 0.013616013340651989, 0.04054495692253113, -0.025954732671380043, -0.004078862722963095, -0.015855256468057632, -0.04068795591592789, 0.011713883839547634, 0.03853156045079231, 0.04075830057263374, 0.0012655246537178755, 0.031819481402635574, -0.022105557844042778, -0.0030181065667420626, -0.024480558931827545, -0.05579463765025139, -0.02886466309428215, 0.00698185246437788, 0.04019657522439957, -0.016740387305617332, 0.02244669385254383, -0.0011569350026547909, 0.026264170184731483, -0.0009726029238663614, 0.008371012285351753, -0.015430501662194729, 0.03481820970773697, -0.0063847764395177364, -0.013611529022455215, -0.050341300666332245, -0.019442252814769745, 0.05449594929814339, -0.057610027492046356, -0.05257398262619972, 0.01086168922483921, -0.039935775101184845, 0.04472515359520912, -0.05139598995447159, -0.025970280170440674, 0.0019894461147487164, 0.028423817828297615, 0.050328630954027176, 0.005956465378403664, 0.003092291997745633, 0.06253836303949356, -0.0005544775049202144, 0.01287959422916174, 0.01566554605960846, 0.03173244744539261, 0.060916341841220856, -0.002591883996501565, 0.03367816284298897, 0.03813809156417847, -0.011617914773523808, -0.004763081204146147, -0.03829279914498329, -0.011765177361667156, -0.014347108080983162, -0.2769702076911926, 0.047587715089321136, -0.04532361030578613, -0.04681974649429321, -0.0011520679108798504, -0.036615900695323944, 0.0073339808732271194, -0.03782070055603981, -0.026195712387561798, 0.030896790325641632, -0.0024149101227521896, -0.03842715173959732, -0.010498893447220325, 0.031213030219078064, -0.00998122338205576, -0.0023632338270545006, 0.0013475746382027864, -0.05615093186497688, -0.011279519647359848, 0.030413934960961342, -0.012624615803360939, -0.02960222400724888, 0.011688163504004478, 0.015394543297588825, 0.019381685182452202, 0.03250821679830551, -0.05721171945333481, 0.025143131613731384, -0.06081480160355568, -0.038998644798994064, -0.020718149840831757, 0.015618487261235714, 0.016171475872397423, 0.004034006968140602, -0.025514597073197365, -0.012129059061408043, 0.014409671537578106, 0.015428301878273487, 0.007491185795515776, 0.017328891903162003, -0.059689078480005264, -0.056136827915906906, 0.01363772340118885, -0.00943963322788477, 0.08708568662405014, -0.007436607498675585, -0.06506871432065964, 0.023291129618883133, -0.014894465915858746, 0.08231034129858017, -0.037947677075862885, -0.023767108097672462, -0.005504569970071316, 0.02769031748175621, -0.012212846428155899, -0.011753988452255726, -0.017577670514583588, -0.033181264996528625, -0.04726290702819824, -0.0029732093680649996, 0.01198728010058403, -0.04810044914484024, 0.002579872030764818, -0.04247242212295532, -0.005648424848914146, -0.057527583092451096, -0.07781963795423508, -0.03678179904818535, 0.07264387607574463, 0.0304416436702013, 0.0006844291347078979, 0.043995678424835205, 0.006401277147233486, -0.10189681500196457, -0.02964957058429718, -0.058824460953474045, -0.0058707804419100285, -0.010718194767832756, -0.017910461872816086, 0.05610731616616249, -0.05305279418826103, -0.05728933960199356, 0.0025992486625909805, 0.04249603673815727, 0.016817349940538406, 0.0068031055852770805, 0.003992687910795212, -0.03685104846954346, -0.03374525159597397, 0.009468678385019302, 0.07046674191951752, -0.015582402236759663, -0.020882995799183846, -0.014020889066159725, -0.011375092901289463, 0.03263765946030617, 0.004032408352941275, -0.023978378623723984, 0.02537287399172783, 0.03287338465452194, 0.036060985177755356, -0.04567759484052658, 0.04024215042591095, -0.03768763691186905, -0.013269145973026752, -0.010397259145975113, -0.06467848271131516, 0.01581634022295475, 0.02969502843916416, -0.004629894159734249, -0.006918282248079777, -0.009575944393873215, 0.01838609203696251, -0.02557177096605301, -0.06016560643911362, -0.01669931598007679, 0.010643730871379375, 0.023691652342677116, 0.020641246810555458, -0.046379122883081436, -0.025663843378424644, 0.014371095225214958, 0.03770998865365982, -0.003996274899691343, -0.07582860440015793, -0.03152796998620033, -0.04848848283290863, 0.004150779452174902, -0.027897775173187256, 0.012010615319013596, -0.04387272149324417, 0.04065438732504845, 0.010863356292247772, -0.02686861902475357, 0.04159746691584587, 0.01012189220637083, 0.0002480517723597586, -0.013104267418384552, -0.007340654265135527, -0.019171901047229767, 0.02422608807682991, 0.0008176462724804878, -0.004827374126762152, 0.04740103334188461, 0.023303143680095673, -0.012546167708933353, 0.0296278465539217, -0.003308480605483055, 0.01480459701269865, 0.007341738790273666, 0.014798915944993496, -0.029605263844132423, 0.02363189496099949, -0.03775161877274513, -0.025166701525449753, 0.003625147743150592, 0.03809653967618942, -0.01208212599158287, -0.011376632377505302, -0.03152374550700188, 0.021603211760520935, -0.04766763374209404, 0.0015398375689983368, -0.015123526565730572, 0.02371608465909958, 0.04802252724766731, -0.03127870336174965, 0.03884236887097359, -0.03673291206359863, -0.02011985145509243, 0.0034504595678299665, 0.03898611292243004, -0.026738911867141724, 0.020270252600312233, 0.002689252607524395, -0.00028328702319413424, -0.002890768926590681, 0.024331029504537582, 0.0301334410905838, 0.03623587265610695, 0.0041228593327105045, -0.01525855716317892, 0.017473479732871056, 0.028182724490761757, 0.03719692677259445, 0.014725935645401478, -0.020260212942957878, -0.0007384610362350941, -0.025752877816557884, 0.007360644638538361, -0.03365108370780945, -0.022074878215789795, -0.03245789557695389, 0.0338180847465992, -0.02711479365825653, -0.03828250244259834, 0.005964348092675209, 0.006553043145686388, 0.0009099856833927333, 0.04105127602815628, 0.030644267797470093, 0.013959959149360657, 0.014296047389507294, 0.022314026951789856, 0.02469060570001602, -0.054031986743211746, -0.01617153361439705, -0.004323769360780716, -0.0028085943777114153, 0.0017813106533139944, 0.026030924171209335, -0.06192630156874657, -0.03944655507802963, -0.0038725584745407104, 0.0031570778228342533, -0.00920407846570015, -0.04752267524600029, -0.0016323844902217388, -0.016655175015330315, -0.015411138534545898, 0.040527377277612686, 0.00036187327350489795, 0.00143477285746485, -0.024323057383298874, 0.026395168155431747, 0.05936337634921074, -0.03225112706422806, 0.016895681619644165, 0.03513161092996597, 0.002527755917981267, 0.028708582744002342, -0.02734781801700592, 0.03779644891619682, 0.014987364411354065, 0.017912263050675392, -0.012643256224691868, -0.07551193982362747, 0.03652670234441757, -0.032767098397016525, 0.022608567029237747, 0.004685262683779001, -0.009290379472076893, -0.027141500264406204, 0.0015526361530646682, -0.028249021619558334, 0.022537797689437866, 0.0015327897854149342, -0.03595623001456261, -0.013943763449788094, 0.025371434167027473, -0.0036052928771823645, 0.04953722283244133, -0.0183290746062994, -0.02332065999507904, 0.05186088755726814, -0.025056015700101852, -0.04146186262369156, 0.0015202292706817389, -0.043322332203388214, 0.014824293553829193, 0.020499756559729576, 0.03111158311367035, -0.032850150018930435, 0.04440617933869362, 0.05868230387568474, 0.02135465107858181, 0.027577152475714684, -0.014760447666049004, 0.03099392168223858, -0.01879892870783806, -0.03768720477819443, -0.07709057629108429, 0.017172811552882195, 0.031029267236590385, 0.016436055302619934, -0.014699996449053288, -0.017677105963230133, -0.05423641949892044, -0.02044481784105301, -0.053461357951164246, -0.009075761772692204, 0.031017795205116272, -0.0205742996186018, 0.036193620413541794, 0.015933260321617126, -0.07608919590711594, 0.025531195104122162, 0.01798383519053459, -0.030218053609132767, -0.06464710831642151, -0.017456773668527603, 0.05127822235226631, -0.020930776372551918, 0.03996928781270981, -0.025110535323619843, -0.015365153551101685, 0.0557451993227005, 0.02882007509469986, 0.03950444236397743, 0.027862774208188057, -0.044384490698575974, 0.02981526218354702, 0.05012631416320801, -0.007888296619057655, 0.005509054753929377, 0.03137883543968201, -0.013732906430959702, -0.07810632139444351, 0.038157202303409576, 0.02588036097586155, -0.014267237856984138, -0.03827745094895363, 0.04425883665680885, -0.0007881143828853965, -0.0002394868788542226, -0.04678821191191673, 0.03363650664687157, -0.02417892962694168, -0.0319574810564518, -0.0397525280714035, 0.011067570187151432, -0.03821980953216553, 0.058580171316862106, -0.019411465153098106, 0.01147354207932949, 0.06637213379144669, -0.0062225149013102055, 0.014495241455733776, 0.0018294895999133587, 0.08881881088018417, 0.06269087642431259, 0.04759993031620979, 0.017865564674139023, 0.05422056093811989, -0.02219557948410511, -0.05146317183971405, -0.0011139619164168835, -0.03043389692902565, -0.014141636900603771, 0.006530684418976307, -0.004021131433546543, 0.05761546269059181, -0.008506371639668941, 0.08261700719594955, -0.014085390605032444, 0.0021952667739242315, -0.03765438124537468, -0.018204109743237495, 0.040699683129787445, 0.05173024162650108, 0.030657116323709488, 0.03434738144278526, -0.03351175785064697, -0.05322384834289551, 0.0070484052412211895, 0.011084568686783314, -0.0042552039958536625, 0.02307109907269478, -0.022857293486595154, 0.01724078692495823, 0.036668810993433, 0.03241841122508049, 0.10770446807146072, -0.043049708008766174, -0.023464972153306007, 0.006710242945700884, 0.034187182784080505, 0.014960197731852531, -0.004040510393679142, -0.007482427638024092, -0.027041040360927582, -0.039860889315605164, -0.03451862558722496, -0.03541004657745361, -0.011020937003195286, -0.035970691591501236, 0.027263974770903587, -0.01774243265390396, 0.005350974854081869, 0.014786887913942337, -0.049867283552885056, -0.019111981615424156, -0.05517389625310898, -0.05823168158531189, -0.052426520735025406, -0.09308399260044098, 0.011515931226313114, -0.01891499012708664, -0.004969303961843252, -0.01369838509708643, -0.016402238979935646, -0.030206752941012383, -0.0032875463366508484, 0.05804961919784546, -0.02438129484653473, -0.017876381054520607, 0.039970748126506805, 0.012197674252092838, -0.01257246918976307, 0.03885946050286293, 0.05759565532207489, 0.007420404814183712, 0.018961315974593163, -0.019747985526919365, 0.020280277356505394, 0.0737493485212326, 0.045772045850753784, 0.00670309504494071, -0.06232696399092674, -0.025209935382008553, 0.021833837032318115, -0.014754485338926315, -0.07204047590494156, 0.004190365318208933, 0.028478002175688744, -0.007514487486332655, 0.03713693097233772, -0.018586037680506706, -0.01999043859541416, -0.015297765843570232, -0.004208714235574007, 0.03983867168426514, 0.006479292176663876, 0.02495928481221199, -0.028196316212415695, 0.0693255141377449, 0.0422627292573452, -0.03418659046292305, -0.024676010012626648, -0.026448821648955345, -0.002376739401370287, 0.014558336697518826, -0.06070300564169884, -0.05183279886841774, -0.05622003227472305, -0.09085658192634583, -0.015899604186415672, -0.01503781322389841, -0.037724919617176056, -0.016664570197463036, -0.022610101848840714, 0.021594785153865814, -0.010613642632961273, 0.03385563939809799, -0.041556429117918015, 0.0530470535159111, -0.006262410897761583, -0.007062646094709635, -0.009267392568290234, 0.009609954431653023, 0.012151938863098621, 0.009271226823329926, 0.015835346654057503, -0.05364222452044487, 0.008220190182328224, -0.04485101252794266, 0.02849939465522766, 0.01726183481514454, 0.01972632110118866, 0.029521506279706955 ]
[ -0.07186084985733032, -0.035097815096378326, -0.04529407247900963, -0.00005005930142942816, 0.01839081197977066, -0.05462008714675903, -0.019526274874806404, 0.021603921428322792, 0.021949922665953636, -0.03669797629117966, 0.020490895956754684, -0.03205404058098793, -0.007730291690677404, 0.005659162532538176, 0.08236858993768692, 0.003969418816268444, -0.03515319526195526, -0.0587787888944149, -0.04195043817162514, 0.055320434272289276, 0.016829339787364006, -0.026748741045594215, -0.006738370284438133, -0.040995433926582336, 0.015026423148810863, 0.033275071531534195, 0.02381688728928566, -0.014598523266613483, -0.011701862327754498, -0.217561736702919, 0.010051495395600796, 0.022560516372323036, -0.029574008658528328, -0.026523513719439507, 0.013003220781683922, 0.004716250114142895, -0.008415634743869305, -0.016825789585709572, 0.02520158886909485, 0.04940364137291908, 0.005615566857159138, 0.017160754650831223, -0.039588432759046555, -0.02713923715054989, 0.034704551100730896, 0.0029461842495948076, -0.02064500004053116, 0.000945987761951983, -0.020340196788311005, 0.008290572091937065, -0.03350195288658142, 0.007354401051998138, 0.025287440046668053, 0.0012823623837903142, 0.02193511463701725, 0.06499110162258148, 0.037327706813812256, 0.09555374830961227, 0.03350701928138733, 0.038142625242471695, 0.02040277235209942, -0.0007688305340707302, -0.13270600140094757, 0.0826357901096344, 0.011178478598594666, 0.02658170834183693, -0.02382552996277809, -0.004667914006859064, -0.03846175968647003, 0.07997803390026093, 0.021767213940620422, -0.013723964802920818, -0.05639861524105072, 0.07587147504091263, 0.007250424940139055, 0.0420750193297863, -0.016901623457670212, -0.005630092695355415, 0.029286962002515793, -0.0233097393065691, -0.04113603010773659, -0.0017109299078583717, -0.03618365526199341, -0.007489479146897793, -0.025620726868510246, 0.03650366887450218, -0.0358564518392086, 0.07112671434879303, 0.022481316700577736, 0.01749827153980732, 0.03851579129695892, 0.005444119684398174, 0.039831411093473434, 0.058675844222307205, -0.10800175368785858, 0.038657017052173615, 0.003249959321692586, 0.018920760601758957, -0.0057924711145460606, 0.405028373003006, 0.02892209030687809, -0.0076384590938687325, -0.00544167822226882, 0.049001920968294144, 0.025937320664525032, -0.034940920770168304, -0.01073350477963686, -0.05749048292636871, 0.043449386954307556, -0.040676720440387726, 0.004929874092340469, -0.014304401353001595, 0.03529885783791542, -0.09055087715387344, -0.035559359937906265, 0.024464566260576248, 0.052023354917764664, 0.004111557267606258, -0.021484991535544395, 0.023579327389597893, -0.016559012234210968, 0.015685752034187317, 0.03110765665769577, 0.02591066062450409, 0.021200234070420265, 0.026614172384142876, -0.0005518326652236283, 0.060303959995508194, 0.015365412458777428, 0.038296569138765335, 0.035302434116601944, -0.005615457892417908, -0.07619103044271469, 0.017027664929628372, -0.017305053770542145, 0.008249737322330475, 0.011813056655228138, -0.03831455856561661, 0.00483244564384222, 0.025628484785556793, -0.023774659261107445, -0.05624737590551376, -0.0020134360529482365, 0.02155100740492344, -0.02145364321768284, 0.10748331248760223, -0.032662488520145416, -0.036925122141838074, 0.002071889117360115, -0.008591034449636936, -0.030879151076078415, 0.030603203922510147, -0.027757922187447548, -0.08285996317863464, -0.008322534151375294, 0.029589131474494934, 0.08434383571147919, -0.019999733194708824, -0.08318042755126953, -0.01549410168081522, -0.008296570740640163, -0.018381165340542793, -0.07257167994976044, 0.09367948025465012, 0.020614566281437874, -0.09905547648668289, 0.000850346521474421, 0.02926299348473549, 0.008180740289390087, -0.059353165328502655, 0.00001869054904091172, 0.005348746664822102, -0.05077331140637398, -0.05086146295070648, 0.06926821172237396, -0.003032979089766741, -0.03470185026526451, -0.03549643233418465, 0.02265830710530281, 0.011363957077264786, -0.009243982844054699, 0.017034290358424187, -0.04031854122877121, 0.0069085643626749516, -0.04850652068853378, -0.04649803787469864, -0.07706198841333389, 0.021434685215353966, -0.013022279366850853, -0.04169188812375069, -0.020740795880556107, 0.011760225519537926, -0.08394929766654968, 0.08120817691087723, -0.03549361601471901, -0.025173472240567207, -0.007303543388843536, 0.012350143864750862, 0.014235228300094604, -0.024238375946879387, 0.05680439621210098, 0.048977311700582504, 0.013068687170743942, 0.01877015084028244, -0.03662770986557007, -0.0004709032364189625, 0.0726655051112175, -0.03238716721534729, 0.028310131281614304, 0.0334867499768734, -0.030800826847553253, 0.02278025634586811, -0.009179295971989632, 0.03739482909440994, -0.012420211918652058, -0.005262690596282482, -0.0006228956626728177, 0.007727793883532286, 0.01390344649553299, 0.024091733619570732, -0.048901040107011795, -0.02927708625793457, -0.039040111005306244, -0.3591996729373932, -0.0684366300702095, -0.010683619417250156, -0.03333394601941109, 0.021711116656661034, -0.021169787272810936, 0.031323909759521484, -0.035354264080524445, -0.021798592060804367, -0.005779384635388851, 0.05038446560502052, -0.001019781455397606, -0.027977686375379562, -0.07287821918725967, -0.0032019764184951782, 0.03632169961929321, -0.027930157259106636, 0.0010554189793765545, -0.0040904157795012, 0.03177947178483009, -0.020366618409752846, -0.05600593984127045, -0.022660119459033012, -0.03093673475086689, -0.00452466169372201, -0.008315705694258213, 0.11696239560842514, -0.004093367140740156, 0.04576154798269272, -0.07521035522222519, 0.04419807717204094, -0.001440886757336557, 0.005884020589292049, -0.04344264790415764, 0.01201553549617529, -0.025478430092334747, 0.011017891578376293, 0.014321694150567055, -0.008906276896595955, -0.0024997449945658445, -0.035714201629161835, -0.0159914530813694, -0.04834260419011116, -0.044053737074136734, 0.017682995647192, 0.016162637621164322, -0.013692853972315788, -0.017813559621572495, 0.01599525846540928, 0.1036641076207161, 0.0008268933743238449, 0.03120560571551323, 0.0012145056389272213, 0.056247420608997345, 0.02324250526726246, 0.0033993844408541918, -0.08164292573928833, -0.023426078259944916, 0.04724818468093872, -0.0068285902962088585, 0.03006056323647499, 0.032652657479047775, 0.03853730484843254, -0.06650547683238983, 0.024706004187464714, 0.02607738971710205, 0.005902672186493874, -0.020010821521282196, 0.024618450552225113, -0.04109609127044678, -0.018645111471414566, 0.11295022815465927, -0.00246540829539299, 0.0007492759032174945, 0.004184488207101822, 0.054499682039022446, -0.035009924322366714, -0.010774540714919567, 0.01251938845962286, 0.01553045678883791, 0.03139200806617737, -0.0089535191655159, 0.06273467093706131, -0.04130750149488449, -0.033335693180561066, 0.04602799937129021, 0.006858698558062315, -0.03194045275449753, 0.059937335550785065, -0.023371251299977303, -0.04304967075586319, 0.004374164622277021, -0.021512286737561226, -0.026610972359776497, 0.06269119679927826, -0.02118748426437378, -0.28216421604156494, 0.024105872958898544, 0.018063459545373917, 0.04981618747115135, -0.007716600317507982, 0.025983044877648354, 0.015713384374976158, -0.03809531033039093, -0.07278063148260117, -0.00424512242898345, 0.026436278596520424, 0.04191017150878906, 0.0000045980073082318995, 0.013279976323246956, 0.019445184618234634, 0.005249276757240295, 0.03337687626481056, 0.021871700882911682, 0.03904863819479942, -0.010309138335287571, 0.04423725977540016, 0.009946289472281933, 0.19688044488430023, 0.06005755066871643, -0.0012262713862583041, 0.023740461096167564, -0.020491547882556915, 0.03915446996688843, 0.04735947400331497, 0.00921357050538063, -0.05610445514321327, 0.05290636420249939, 0.004390880465507507, -0.0008674557320773602, 0.01348194107413292, -0.03481436148285866, -0.013975352048873901, 0.02208196558058262, 0.03798433020710945, -0.031226638704538345, 0.017058515921235085, 0.032218825072050095, -0.05098028853535652, 0.04653330519795418, 0.07840596139431, 0.005481313448399305, 0.0015422607539221644, -0.001956680789589882, -0.043380219489336014, 0.005304755177348852, -0.03694470226764679, -0.020843710750341415, -0.008398515172302723, -0.019729848951101303, -0.021976493299007416, 0.05820872262120247, -0.0011013280600309372, -0.021770711988210678, -0.0013567404821515083, 0.01012710202485323, -0.0008353731827810407, -0.04521084204316139, 0.07887837290763855, -0.02025144174695015, 0.012463174760341644 ]
[ 0.039788685739040375, 0.03430062532424927, 0.0440627746284008, 0.030841674655675888, -0.024055972695350647, -0.018278127536177635, -0.028302794322371483, 0.012278185226023197, -0.02243330515921116, 0.003758777631446719, -0.040862075984478, -0.0038952254690229893, 0.025786884129047394, 0.01240260899066925, 0.0012575824512168765, -0.0010017339373007417, 0.010849503800272942, 0.04666959121823311, 0.0456453301012516, -0.03735819831490517, -0.0037513223942369223, -0.0363323837518692, 0.05235662683844566, -0.004641501698642969, 0.00903843343257904, -0.021868186071515083, -0.014408661052584648, 0.03013366274535656, 0.01984020322561264, -0.08855871856212616, -0.03373277932405472, -0.04251893237233162, -0.021051466464996338, 0.009188792668282986, -0.024557756260037422, -0.003384146373718977, 0.058319833129644394, 0.038016289472579956, -0.012081228196620941, 0.01986890472471714, 0.014596465975046158, -0.014087866060435772, -0.020852191373705864, 0.011273943819105625, 0.01444756519049406, -0.04837207496166229, 0.0013118336210027337, -0.02486095204949379, -0.0027453447692096233, -0.01682216301560402, -0.0023590559139847755, -0.007384365424513817, -0.010809809900820255, -0.01604571007192135, 0.03207342326641083, 0.03649577125906944, -0.05927480757236481, 0.00547713041305542, 0.014172637835144997, -0.004063817206770182, 0.025121159851551056, -0.027920052409172058, -0.0650629773736, -0.03535107150673866, 0.0012940947199240327, 0.007820169441401958, 0.0033490490168333054, 0.0143289715051651, 0.00032355301664210856, 0.007467865012586117, -0.018456928431987762, 0.04370034113526344, -0.048267435282468796, -0.033502571284770966, -0.006384477484971285, 0.025250205770134926, 0.01575126126408577, -0.028531016781926155, -0.010286635719239712, 0.007356530055403709, 0.016038069501519203, -0.027446037158370018, -0.01954897679388523, 0.0037580477073788643, -0.026649542152881622, 0.01334186177700758, -0.037873733788728714, -0.0029048053547739983, 0.0084926662966609, 0.05619348958134651, -0.008296913467347622, 0.00033018735121004283, -0.010123737156391144, 0.006072733085602522, -0.10563381016254425, -0.00968084391206503, -0.006911538541316986, 0.029829323291778564, 0.04017271846532822, 0.7939273715019226, 0.050987277179956436, -0.03867383673787117, 0.01853308454155922, 0.028885893523693085, 0.035548433661460876, -0.0007395286811515689, 0.03328314796090126, 0.0021485446486622095, -0.01653142273426056, 0.009587581269443035, -0.00911277811974287, 0.019653378054499626, -0.00042088524787686765, 0.0068440865725278854, -0.01085395272821188, 0.049674876034259796, 0.027253704145550728, -0.011119160801172256, -0.02001742273569107, -0.0006633384618908167, -0.01655184105038643, 0.017613636329770088, 0.011213898658752441, 0.031385235488414764, -0.002553678350523114, -0.1552221179008484, -0.05921529233455658, -6.797121963529162e-33, 0.012360110878944397, 0.04577242210507393, 0.08084312081336975, -0.007717405911535025, -0.03168605640530586, 0.03928155452013016, -0.00645848223939538, -0.016766991466283798, -0.021851781755685806, -0.045744024217128754, -0.0022851661778986454, 0.007660031784325838, 0.004610660020262003, 0.008917496539652348, -0.026089811697602272, -0.034617096185684204, 0.03678145259618759, 0.013324105180799961, -0.03131301328539848, -0.0012899491703137755, -0.015093591995537281, 0.051068924367427826, -0.018212221562862396, 0.048650745302438736, 0.020588111132383347, 0.014804328791797161, 0.008320647291839123, -0.01787211373448372, 0.00829737912863493, -0.03813226521015167, -0.07246658951044083, -0.022129058837890625, 0.012438460253179073, 0.026863867416977882, -0.005096129607409239, -0.03424195200204849, -0.016216538846492767, 0.0051621245220303535, -0.010637632571160793, -0.05352187529206276, -0.06392369419336319, 0.00824019592255354, 0.052559927105903625, -0.030430646613240242, -0.02870619297027588, -0.02815924398601055, -0.03304864093661308, 0.02640710584819317, 0.02010001242160797, -0.02315732277929783, 0.005570282228291035, 0.0517665259540081, -0.044391609728336334, 0.03510467708110809, -0.047525279223918915, -0.005806267727166414, 0.027663256973028183, 0.015888385474681854, -0.011225063353776932, 0.030933918431401253, 0.012817436829209328, 0.015611873008310795, -0.02370106615126133, 0.021214399486780167, -0.0024743888061493635, 0.02730793133378029, 0.015093833208084106, 0.008613760583102703, -0.021793847903609276, 0.07336464524269104, -0.029693661257624626, 0.03492162749171257, -0.006053558550775051, -0.015032419003546238, 0.0296439528465271, -0.04082384705543518, -0.020116835832595825, -0.06788967549800873, 0.02358437329530716, 0.04011141508817673, -0.0538749173283577, -0.04725786671042442, 0.03582720458507538, 0.0021204312797635794, -0.0045442222617566586, -0.0329773873090744, 0.012858407571911812, 0.014329211786389351, 0.05725407227873802, 0.028887704014778137, 0.03403596207499504, -0.0016706272726878524, -0.016663337126374245, -0.014354689978063107, -0.020888518542051315, 5.930800994072368e-33, -0.008782777935266495, 0.03759795054793358, -0.048373106867074966, 0.025621742010116577, 0.005166865885257721, 0.017581773921847343, -0.045047760009765625, -0.01046161912381649, -0.0244748517870903, -0.0029952083714306355, 0.007726043462753296, -0.02169116958975792, 0.003598333802074194, 0.0466097854077816, 0.04503535106778145, -0.0366152822971344, 0.02151523157954216, 0.0029811288695782423, -0.0065711792558431625, 0.0021182959899306297, -0.004592058714479208, -0.00263505382463336, 0.0316794253885746, 0.04651781544089317, 0.023617012426257133, -0.010503370314836502, 0.03120138682425022, 0.004035070072859526, -0.025324812158942223, 0.02572423778474331, -0.01222394872456789, -0.05934197083115578, 0.008223352953791618, -0.035300713032484055, 0.04330167919397354, -0.017591414973139763, 0.013823329471051693, -0.0038531480822712183, -0.0124042434617877, 0.0023267348296940327, -0.011511102318763733, 0.007074019871652126, -0.05504204332828522, 0.08437413722276688, 0.009567451663315296, 0.009825298562645912, 0.01869584619998932, 0.024432851001620293, 0.04649105668067932, 0.010926522314548492, -0.0041725365445017815, 0.021069472655653954, 0.0006289898883551359, 0.04464888200163841, 0.013035040348768234, -0.04756094515323639, 0.0007866017986088991, 0.034116435796022415, 0.012555315159261227, 0.017326273024082184, -0.04351845011115074, -0.031077131628990173, -0.033006325364112854, -0.021221749484539032, 0.01838216371834278, -0.015842348337173462, -0.029492899775505066, -0.012111878022551537, -0.04620742052793503, -0.021940648555755615, 0.013801002874970436, 0.014246426522731781, -0.024151764810085297, 0.025223398581147194, 0.01583101600408554, -0.008862350136041641, -0.031548090279102325, -0.01556271780282259, -0.042946089059114456, 0.017529331147670746, 0.02554377354681492, -0.007242653984576464, 0.06133205071091652, 0.03454476222395897, 0.010566163808107376, -0.032325949519872665, -0.007226140704005957, 0.05795437470078468, -0.08029965311288834, -0.03741264343261719, 0.022691400721669197, 0.027809323742985725, -0.06790602952241898, 0.07903401553630829, -0.06349797546863556, -1.2102862712026763e-8, -0.03965262323617935, -0.009640250355005264, -0.047605957835912704, 0.010941483080387115, -0.029866250231862068, -0.000027695092285284773, -0.027293149381875992, -0.012839109636843204, -0.012791577726602554, 0.0036059280391782522, -0.04773254692554474, -0.021295582875609398, 0.004866269417107105, -0.039681125432252884, 0.028719481080770493, -0.026862425729632378, -0.00586840370669961, 0.012381311506032944, -0.0011586035834625363, 0.02439238876104355, -0.012882377952337265, 0.04615350812673569, -0.03713414445519447, 0.006848069839179516, -0.00029873132007196546, -0.01316529605537653, 0.017108101397752762, -0.03856112062931061, 0.03437010198831558, -0.006970435380935669, 0.0007013254216872156, -0.03547998517751694, -0.010507283732295036, 0.027844062075018883, -0.05311410501599312, -0.022822992876172066, 0.03506719693541527, 0.03686746582388878, 0.05151171237230301, 0.04508820176124573, -0.01942218840122223, 0.02072688192129135, -0.006185830105096102, -0.011151522397994995, 0.0036153076216578484, -0.017844771966338158, -0.03956497460603714, -0.013164279982447624, 0.0497007817029953, -0.03194228932261467, -0.013392077758908272, 0.026763301342725754, 0.031694237142801285, 0.04014189913868904, 0.03217498958110809, 0.010702763684093952, -0.03820108249783516, 0.012056139297783375, 0.0058931815437972546, -0.015671346336603165, 0.03886672109365463, -0.03440055251121521, -0.04299909248948097, -0.008214123547077179 ]
neo4j-cypher-neo-clienterror-statement-typeerror-dont-know-add-double-string
https://markhneedham.com/blog/2018/03/14/neo4j-cypher-neo-clienterror-statement-typeerror-dont-know-add-double-string
false
2018-03-14 08:53:04
Yelp: Reverse geocoding businesses to extract detailed location information
[ "yelp", "yelp-dataset-challenge", "geocoding", "reverse-geocode" ]
[ "Python" ]
I've been playing around with the https://www.yelp.co.uk/dataset[Yelp Open Dataset] and wanted to extract more detailed location information for each business. This is an example of the JSON representation of one business: [source,bash] ---- $ cat dataset/business.json | head -n1 | jq { "business_id": "FYWN1wneV18bWNgQjJ2GNg", "name": "Dental by Design", "neighborhood": "", "address": "4855 E Warner Rd, Ste B9", "city": "Ahwatukee", "state": "AZ", "postal_code": "85044", "latitude": 33.3306902, "longitude": -111.9785992, "stars": 4, "review_count": 22, "is_open": 1, "attributes": { "AcceptsInsurance": true, "ByAppointmentOnly": true, "BusinessAcceptsCreditCards": true }, "categories": [ "Dentists", "General Dentistry", "Health & Medical", "Oral Surgeons", "Cosmetic Dentists", "Orthodontists" ], "hours": { "Friday": "7:30-17:00", "Tuesday": "7:30-17:00", "Thursday": "7:30-17:00", "Wednesday": "7:30-17:00", "Monday": "7:30-17:00" } } ---- The businesses reside in different countries so I wanted to extract the area/county/state and the country for each of them. I found the https://github.com/thampiman/reverse-geocoder[reverse-geocoder] library which is perfect for this problem. You give the library a lat/long or list of lat/longs and it returns you back a list containing the nearest lat/long to your points along with the name of the place, Admin regions, and country code. It's way quicker to pass in a list of lat/longs than to call the function individually for each lat/long so we'll do that. We can write the following code to extract location information for a list of lat/longs: [source,python] ---- import reverse_geocoder as rg lat_longs = { "FYWN1wneV18bWNgQjJ2GNg": (33.3306902, -111.9785992), "He-G7vWjzVUysIKrfNbPUQ": (40.2916853, -80.1048999), "KQPW8lFf1y5BT2MxiSZ3QA": (33.5249025, -112.1153098) } business_ids = list(lat_longs.keys()) locations = rg.search(list(lat_longs.values())) for business_id, location in zip(business_ids, locations): print(business_id, lat_longs[business_id], location) ---- This is the output we get from running the script: [source,bash] ---- $ python blog.py Loading formatted geocoded file... FYWN1wneV18bWNgQjJ2GNg (33.3306902, -111.9785992) OrderedDict([('lat', '33.37088'), ('lon', '-111.96292'), ('name', 'Guadalupe'), ('admin1', 'Arizona'), ('admin2', 'Maricopa County'), ('cc', 'US')]) He-G7vWjzVUysIKrfNbPUQ (40.2916853, -80.1048999) OrderedDict([('lat', '40.2909'), ('lon', '-80.10811'), ('name', 'Thompsonville'), ('admin1', 'Pennsylvania'), ('admin2', 'Washington County'), ('cc', 'US')]) KQPW8lFf1y5BT2MxiSZ3QA (33.5249025, -112.1153098) OrderedDict([('lat', '33.53865'), ('lon', '-112.18599'), ('name', 'Glendale'), ('admin1', 'Arizona'), ('admin2', 'Maricopa County'), ('cc', 'US')]) ---- It seems to work fairly well! Now we just need to tweak our script to read in the values from the Yelp JSON file and generate a new JSON file containing the locations: [source,python] ---- import json import reverse_geocoder as rg lat_longs = {} with open("dataset/business.json") as business_json: for line in business_json.readlines(): item = json.loads(line) if item["latitude"] and item["longitude"]: lat_longs[item["business_id"]] = { "lat_long": (item["latitude"], item["longitude"]), "city": item["city"] } result = {} business_ids = list(lat_longs.keys()) locations = rg.search([value["lat_long"] for value in lat_longs.values()]) for business_id, location in zip(business_ids, locations): result[business_id] = { "country": location["cc"], "name": location["name"], "admin1": location["admin1"], "admin2": location["admin2"], "city": lat_longs[business_id]["city"] } with open("dataset/businessLocations.json", "w") as business_locations_json: json.dump(result, business_locations_json, indent=4, sort_keys=True) ---- And that's it!
null
null
[ 0.0075283837504684925, -0.014093791134655476, 0.008360904641449451, 0.04612179100513458, 0.08274617046117783, 0.03193187713623047, 0.02074635960161686, 0.055379461497068405, 0.02857253886759281, 0.005583230406045914, -0.046455658972263336, -0.00905430968850851, -0.07274168729782104, -0.00010796966671478003, -0.023343214765191078, 0.06767020374536514, 0.07381191104650497, 0.026550255715847015, 0.014910310506820679, 0.00886533036828041, 0.03339062258601189, 0.06855104118585587, 0.007241820450872183, 0.030863124877214432, 0.021614309400320053, 0.010097196325659752, 0.018965285271406174, 0.017667822539806366, -0.07001271098852158, 0.002306596376001835, 0.03563201054930687, 0.0004919189377687871, 0.005886783357709646, 0.022686734795570374, 0.013632647693157196, 0.015111135318875313, -0.018807748332619667, 0.0013155619380995631, 0.0030511573422700167, 0.02841395139694214, -0.05671113356947899, 0.04248689487576485, -0.013201232068240643, 0.02436135523021221, -0.05131690576672554, 0.015579438768327236, -0.06817211210727692, 0.027119437232613564, -0.022665230557322502, -0.010564452968537807, -0.04982774704694748, 0.039232898503541946, -0.036946870386600494, -0.0036332395393401384, -0.017944132909178734, 0.06499405950307846, 0.009333939291536808, -0.09405885636806488, 0.033077992498874664, -0.023701004683971405, 0.015279318206012249, -0.018606366589665413, 0.024073882028460503, 0.013548547402024269, 0.03253979608416557, -0.018296655267477036, -0.010469919070601463, 0.05659779906272888, -0.029094228520989418, -0.009584971703588963, -0.024059318006038666, 0.027093639597296715, -0.004799617920070887, -0.006448233500123024, -0.017969083040952682, -0.048545386642217636, 0.006036470178514719, 0.06239335983991623, 0.006559532601386309, 0.05842844769358635, -0.04301423579454422, 0.008609816431999207, 0.020718272775411606, 0.03226925805211067, -0.009275752119719982, -0.051516495645046234, -0.046026960015296936, -0.03843064606189728, -0.048167966306209564, 0.027689596638083458, 0.014413545839488506, -0.02429511584341526, 0.002108342945575714, 0.01713467389345169, -0.006219915580004454, -0.02267366833984852, 0.020138313993811607, 0.0030894966330379248, -0.012255855835974216, -0.02454405650496483, -0.04559792950749397, -0.023589933291077614, 0.040316563099622726, 0.013615905307233334, -0.06406080722808838, -0.008978954516351223, 0.01039446797221899, 0.010204673744738102, 0.008657865226268768, 0.00500416848808527, -0.03514210134744644, 0.001394423539750278, -0.02810969576239586, 0.019235385581851006, -0.05467181280255318, 0.049067992717027664, 0.023748645558953285, -0.061414800584316254, -0.016681578010320663, -0.0122424541041255, 0.048931363970041275, 0.013026640750467777, -0.020451541990041733, 0.07366345077753067, 0.01875993050634861, 0.03794354572892189, -0.009882890619337559, 0.03743518516421318, -0.010495577938854694, -0.06064949929714203, -0.014892317354679108, 0.043541837483644485, -0.012561056762933731, 0.016340648755431175, 0.000870482821483165, -0.03147372975945473, -0.009073219262063503, -0.007012085523456335, 0.07230159640312195, -0.0035948266740888357, 0.005777809768915176, -0.026963727548718452, -0.026743758469820023, -0.009863718412816525, 0.044782932847738266, 0.0022614847403019667, -0.011351067572832108, -0.03891933336853981, -0.037953052669763565, 0.004139880184084177, 0.014584971591830254, 0.0310475155711174, 0.03857790306210518, -0.03324706107378006, 0.008316314779222012, 0.07802562415599823, 0.030388982966542244, 0.03462303802371025, -0.016352824866771698, 0.013557042926549911, 0.040200505405664444, 0.04748095944523811, 0.006193532142788172, 0.037890881299972534, -0.016497468575835228, -0.03873293101787567, 0.017345910891890526, 0.05639047175645828, 0.0032084910199046135, 0.015794098377227783, -0.0494416207075119, -0.06450449675321579, 0.08614102751016617, -0.026813341304659843, -0.021911686286330223, 0.03653062880039215, 0.08840560168027878, 0.04554750397801399, 0.004466623533517122, 0.014112917706370354, -0.07151567935943604, 0.04134953394532204, 0.0338648222386837, -0.0010518715716898441, 0.052977439016103745, -0.002425702754408121, 0.09027758240699768, 0.04326548054814339, 0.011827212758362293, 0.043705206364393234, -0.07072070240974426, -0.07824066281318665, -0.048971883952617645, -0.004704317077994347, 0.04220152646303177, -0.026231134310364723, 0.010601216927170753, 0.05978074669837952, 0.006206425838172436, 0.04180913418531418, -0.022865111008286476, -0.006140524987131357, 0.048485320061445236, -0.03856874629855156, -0.03799990192055702, 0.02883797138929367, 0.03656673803925514, -0.005927057936787605, -0.003739856882020831, 0.016189012676477432, -0.028181223198771477, -0.016179505735635757, 0.02742747962474823, -0.01799536868929863, 0.0041109006851911545, 0.008305693045258522, 0.08223028481006622, -0.03363465517759323, 0.046778950840234756, -0.050387244671583176, 0.0585399866104126, 0.030054301023483276, -0.03289991617202759, -0.017277605831623077, 0.011533878743648529, 0.12782354652881622, 0.06747133284807205, 0.008726266212761402, -0.04281613603234291, 0.033045873045921326, 0.010082867927849293, -0.04469846561551094, 0.002360530197620392, -0.046946801245212555, -0.0071402015164494514, -0.0038763496559113264, -0.0342685841023922, -0.03804769739508629, 0.021849114447832108, -0.0474262610077858, -0.017976706847548485, 0.05313767492771149, -0.014003428630530834, 0.03654434159398079, 0.02684054709970951, -0.019210705533623695, -0.02248430997133255, -0.025499943643808365, -0.039319656789302826, -0.010786116123199463, 0.0019480260089039803, -0.013157786801457405, 0.02295050583779812, -0.009298006072640419, 0.014542248100042343, -0.026070041581988335, -0.030657628551125526, 0.04650476947426796, 0.05139300972223282, 0.0403815321624279, -0.021571971476078033, 0.08913381397724152, -0.005340578965842724, 0.017465488985180855, -0.00316744321025908, -0.031118297949433327, -0.03830087184906006, -0.03614659607410431, 0.01221093162894249, 0.016529206186532974, 0.04862046614289284, 0.023602500557899475, 0.0035156302619725466, 0.017193133011460304, 0.016169343143701553, 0.007182583678513765, 0.046097349375486374, 0.0054862345568835735, 0.002140928292647004, -0.01916109025478363, -0.016035940498113632, 0.043921418488025665, -0.0479731522500515, -0.05123160034418106, 0.005342971067875624, -0.11232644319534302, 0.050470806658267975, -0.0482269823551178, -0.058806076645851135, 0.004613345954567194, 0.003647641511633992, 0.02307046949863434, 0.017246991395950317, -0.0007028505206108093, 0.04759899899363518, 0.004152465146034956, 0.03054785542190075, 0.026841022074222565, -0.010428064502775669, 0.026392845436930656, -0.010262293741106987, 0.02080754190683365, 0.052975550293922424, -0.018202193081378937, 0.008013522252440453, -0.049142275005578995, 0.009641003794968128, -0.015580950304865837, -0.2829442322254181, 0.030559953302145004, -0.007779256906360388, -0.05154887214303017, 0.029689190909266472, -0.03214816004037857, 0.014885020442306995, -0.033220984041690826, -0.005708802491426468, 0.01337001845240593, -0.004576824139803648, -0.0640522912144661, -0.01635647378861904, 0.02700202912092209, 0.006554732099175453, 0.008800268173217773, -0.027389148250222206, -0.02906695194542408, 0.011980191804468632, 0.03563183918595314, 0.01984800398349762, -0.06805265694856644, -0.007842835038900375, 0.06750278174877167, 0.013697020709514618, 0.08661869913339615, -0.04346707463264465, 0.0008624651236459613, -0.05011257901787758, -0.031301919370889664, 0.043465420603752136, -0.010219830088317394, -0.002947005210444331, -0.006029980257153511, -0.01501148659735918, -0.016384106129407883, 0.04289896413683891, 0.006749130319803953, -0.0010938129853457212, 0.009863808751106262, -0.03317059203982353, -0.008774860762059689, -0.00530910724774003, 0.012977533042430878, 0.0979905053973198, -0.009801642969250679, -0.05286082997918129, -0.010939612984657288, -0.034421324729919434, 0.06232716888189316, -0.0031730500049889088, -0.028043633326888084, -0.045111797749996185, 0.05688532069325447, -0.02235775627195835, -0.019719824194908142, -0.028262007981538773, 0.003823561128228903, -0.066599041223526, -0.024133438244462013, 0.014987637288868427, -0.028160184621810913, -0.024292614310979843, -0.05744726583361626, -0.02232746221125126, -0.06098639592528343, -0.06299145519733429, -0.022466957569122314, 0.06466104090213776, 0.012088801711797714, -0.05604710429906845, -0.0016800183802843094, -0.016081014648079872, -0.10923212766647339, -0.00755282212048769, -0.02705744095146656, -0.033505916595458984, 0.01200660690665245, 0.010691598989069462, 0.05047032982110977, -0.03501070663332939, -0.03901161625981331, 0.017554597929120064, 0.024682113900780678, 0.0026828169357031584, -0.04973224923014641, 0.009787707589566708, 0.01905912719666958, -0.020922772586345673, -0.02651778608560562, 0.06921853870153427, -0.021939903497695923, -0.030320925638079643, -0.00981915183365345, -0.01690022647380829, 0.03465171158313751, -0.005271955393254757, -0.03143560513854027, 0.00008529906335752457, 0.0540609210729599, -0.0012800259282812476, -0.0631188303232193, 0.0027252668514847755, -0.0425197072327137, 0.01202533021569252, -0.01698661595582962, -0.03753922879695892, 0.01974164880812168, 0.01593761146068573, -0.0015316125936806202, 0.010598079301416874, -0.009402802214026451, 0.005384593736380339, -0.043495289981365204, -0.006705631501972675, -0.023620836436748505, 0.015089391730725765, 0.03100397065281868, 0.04006125405430794, -0.0247966218739748, -0.04204690456390381, 0.02564235031604767, 0.037673141807317734, -0.0009907141793519258, -0.05643729493021965, -0.04598609730601311, -0.026249175891280174, 0.005726479925215244, 0.01980152353644371, 0.03150688484311104, 0.004637334495782852, 0.020130041986703873, 0.012266319245100021, -0.01377380546182394, 0.023447135463356972, -0.007165446411818266, -0.03763493523001671, -0.044140782207250595, 0.007628356572240591, 0.05019504949450493, 0.004917548969388008, -0.015595268458127975, 0.002853356534615159, 0.0536532998085022, 0.033434949815273285, 0.014094472862780094, 0.01852770522236824, -0.027121666818857193, 0.01118373591452837, -0.003982718102633953, -0.05799904093146324, -0.049810320138931274, 0.0016068259719759226, -0.03242858126759529, 0.0032481623347848654, -0.01794273778796196, 0.04449589177966118, -0.003415391081944108, -0.04516465961933136, -0.026582593098282814, 0.02765892632305622, -0.05652722343802452, -0.017468251287937164, 0.014253661967813969, -0.016279609873890877, 0.028294917196035385, -0.012725108303129673, 0.03569993004202843, -0.003121759044006467, 0.021014943718910217, 0.02823006361722946, 0.012844744138419628, -0.016379883512854576, 0.006464825477451086, -0.02265305444598198, -0.02072933316230774, 0.009534305892884731, 0.027158863842487335, 0.020899726077914238, 0.008772400207817554, -0.02125321701169014, -0.01220046728849411, 0.010502426885068417, 0.036455899477005005, 0.05005744472146034, 0.042883120477199554, -0.030827006325125694, -0.0015267335111275315, 0.0017213152023032308, -0.04776565358042717, -0.03734122961759567, -0.0076982490718364716, -0.043122388422489166, 0.007534324191510677, -0.015737658366560936, -0.08580400049686432, 0.03584287315607071, -0.0074177817441523075, -0.00660648662596941, 0.04336339235305786, -0.015296757221221924, -0.007752992678433657, -0.03485522419214249, 0.017757337540388107, 0.039892058819532394, -0.056258734315633774, -0.003924975637346506, -0.009032532572746277, 0.0030811757314950228, 0.0006859101704321802, -0.009507189504802227, -0.04696307331323624, 0.006289157550781965, -0.02158271335065365, 0.021920323371887207, -0.03617672249674797, -0.039089322090148926, -0.02048020251095295, 0.01002751849591732, -0.028635941445827484, 0.020182937383651733, -0.013228046707808971, -0.018986999988555908, -0.017175400629639626, -0.0008844916010275483, 0.0493367463350296, -0.03538447991013527, -0.016704589128494263, 0.028289074078202248, -0.02735028974711895, -0.013845264911651611, -0.0245780348777771, 0.023429367691278458, 0.03704357147216797, -0.018263941630721092, 0.017663490027189255, -0.04712400212883949, -0.028349531814455986, 0.0006661502993665636, 0.08541110157966614, -0.021192293614149094, -0.02001749351620674, -0.022451912984251976, 0.004901322536170483, -0.015945693477988243, 0.010349944233894348, 0.0022649974562227726, -0.0029722207691520452, 0.029034214094281197, 0.040790166705846786, 0.01847180165350437, -0.0037689057644456625, -0.0130021832883358, -0.023844635114073753, 0.05736929178237915, -0.03846816346049309, -0.028292348608374596, -0.004235933069139719, -0.054600510746240616, 0.04013415426015854, 0.016180915758013725, 0.011749636381864548, -0.032144080847501755, 0.05984624847769737, 0.027637355029582977, 0.03708621859550476, 0.025981219485402107, -0.0005061979754827917, 0.01804509200155735, -0.025468219071626663, -0.006104069761931896, -0.08700887113809586, 0.01968449167907238, 0.028882065787911415, -0.007219372782856226, -0.02885805442929268, 0.01806221343576908, -0.048441082239151, 0.023835700005292892, -0.062226541340351105, -0.029616793617606163, 0.056309591978788376, -0.02662944607436657, -0.03240351006388664, 0.004315919242799282, -0.045979179441928864, 0.007371040992438793, 0.048199739307165146, -0.06177281215786934, -0.016759853810071945, -0.03830192610621452, 0.07447447627782822, -0.0115925632417202, 0.037409815937280655, -0.03266423940658569, -0.019600247964262962, 0.05736532062292099, 0.025210969150066376, 0.013332600705325603, 0.0337505042552948, -0.03673836216330528, 0.01950913295149803, 0.011147594079375267, -0.027870144695043564, -0.011937218718230724, 0.03581196814775467, -0.003715998725965619, -0.05793815106153488, 0.04245545342564583, -0.005746197421103716, -0.02010921761393547, -0.026222078129649162, 0.08643854409456253, 0.029223047196865082, -0.025907421484589577, -0.043096572160720825, 0.025547267869114876, -0.043071527034044266, -0.033815898001194, -0.009707135148346424, -0.034314241260290146, -0.04735495522618294, 0.05809522792696953, 0.007120857946574688, 0.03189179301261902, 0.07534479349851608, -0.0013852289412170649, -0.003123283851891756, 0.026257434859871864, 0.09252223372459412, 0.07583559304475784, 0.017691360786557198, 0.003996831830590963, 0.06975771486759186, -0.001541836652904749, -0.030432704836130142, -0.002257383894175291, -0.03147368133068085, -0.0195396039634943, -0.02069217711687088, -0.03363369032740593, 0.0605132058262825, -0.01712476648390293, 0.05957774445414543, -0.026487423107028008, -0.0230100080370903, 0.01877937652170658, 0.03183833137154579, 0.040907762944698334, 0.03640541061758995, 0.00020359519112389535, 0.030374513939023018, -0.01559330802410841, -0.04283859208226204, 0.05701124295592308, -0.007596024312078953, -0.04888635501265526, 0.0349264070391655, -0.03032616525888443, 0.032619819045066833, -0.02405432239174843, 0.05865709111094475, 0.06658729165792465, -0.030689533799886703, -0.02552374079823494, -0.01512964628636837, 0.046920958906412125, 0.0008943839347921312, 0.029370876029133797, 0.0037385374307632446, -0.0123387286439538, -0.006636026315391064, -0.038848575204610825, -0.009471427649259567, -0.012885897420346737, -0.017939036712050438, 0.014522135257720947, -0.02703503705561161, 0.018968211486935616, 0.01379783172160387, 0.00605712179094553, -0.01661152020096779, -0.057649191468954086, -0.05275999754667282, -0.019102057442069054, -0.06127762049436569, -0.026962213218212128, 0.01194895338267088, -0.01707351580262184, -0.029904184862971306, -0.012397907674312592, -0.016293717548251152, 0.010722840204834938, 0.020680347457528114, -0.0475827120244503, -0.00227980874478817, 0.01825464889407158, -0.0052572875283658504, 0.03265906870365143, 0.010082037188112736, 0.045402124524116516, -0.0030505734030157328, -0.005705701652914286, -0.015192393213510513, 0.014699163846671581, 0.06353717297315598, 0.033374443650245667, 0.0160038061439991, -0.06437106430530548, -0.001854468951933086, -0.01237922441214323, 0.006973214913159609, -0.06748028844594955, 0.008099798113107681, 0.03812243789434433, 0.007031257729977369, 0.05009303614497185, -0.009523208253085613, -0.011218617670238018, -0.04652608931064606, -0.019810443744063377, -0.014752409420907497, -0.012254917994141579, 0.025628581643104553, -0.03235757723450661, 0.0755578950047493, 0.01972465217113495, -0.03832332789897919, -0.05070219933986664, -0.0003419495769776404, 0.02436872571706772, -0.005066833458840847, -0.0420130230486393, -0.05620770528912544, -0.03255854919552803, -0.08323841542005539, -0.05555609613656998, 0.02321278676390648, -0.02879747748374939, -0.036482568830251694, 0.015586718916893005, 0.015415839850902557, -0.05826442316174507, 0.02921510860323906, -0.032631129026412964, 0.044487420469522476, -0.020856723189353943, -0.013930290937423706, -0.03420745208859444, 0.02237904630601406, -0.006239918060600758, -0.003010756568983197, 0.004491868428885937, -0.03680257871747017, 0.03014606609940529, -0.008604759350419044, 0.018782705068588257, 0.03466136008501053, 0.0067048994824290276, -0.003339121351018548 ]
[ -0.013597561046481133, -0.05304468795657158, -0.0008124397136271, -0.008538533002138138, 0.08201734721660614, -0.04840705171227455, -0.0011912478366866708, 0.023567836731672287, 0.003111929167062044, -0.02274307608604431, -0.03092910721898079, -0.023165222257375717, 0.010742556303739548, -0.006008089054375887, 0.0662994459271431, -0.008183910511434078, 0.01023594569414854, -0.08321889489889145, -0.015212515369057655, 0.02435113862156868, 0.003113833721727133, -0.0049131447449326515, -0.031193016096949577, -0.007490960415452719, 0.012596630491316319, -0.013338322751224041, 0.036365170031785965, -0.00027731998125091195, -0.03221368417143822, -0.1755988597869873, 0.012180961668491364, -0.009150556288659573, 0.054303981363773346, 0.0038541588000953197, 0.0035785017535090446, 0.05196508392691612, 0.0275903157889843, 0.0266803577542305, 0.038923345506191254, 0.02854611538350582, 0.059896353632211685, -0.022654717788100243, -0.01913781836628914, -0.023109929636120796, 0.017146315425634384, 0.005804417654871941, -0.00820230133831501, 0.003959276247769594, -0.03599707409739494, 0.002356103155761957, -0.04900295287370682, -0.012794583104550838, -0.026302369311451912, 0.004227863624691963, 0.013048963621258736, 0.03814433142542839, 0.01985575072467327, 0.07500182092189789, -0.0025391194503754377, 0.03290434181690216, 0.04354202002286911, -0.02996378391981125, -0.15659071505069733, 0.1003047525882721, -0.027876457199454308, 0.04202530160546303, -0.029693523421883583, 0.023234562948346138, -0.06467816978693008, 0.03231114521622658, 0.013390989974141121, -0.017800619825720787, -0.050671227276325226, 0.06807821244001389, 0.009610000066459179, -0.012236960232257843, 0.001712518627755344, 0.06597506254911423, 0.027002127841114998, -0.012220950797200203, -0.011433273553848267, 0.007598937954753637, -0.01510306354612112, -0.013484456576406956, -0.01981811597943306, 0.008365290239453316, -0.0263424851000309, 0.06706704199314117, 0.04023599252104759, 0.020858826115727425, 0.03851139172911644, -0.04092370346188545, 0.01657141000032425, -0.00039806595304980874, -0.0940588042140007, -0.061853598803281784, -0.01109941117465496, 0.017685776576399803, -0.014965166337788105, 0.40649649500846863, -0.030240297317504883, -0.010009359568357468, 0.042459338903427124, 0.006480122450739145, 0.0006610655691474676, -0.052105627954006195, -0.009700513444840908, -0.05665471777319908, 0.02828322909772396, 0.006794484797865152, -0.01090763509273529, -0.012794422917068005, 0.064034104347229, -0.04562192037701607, -0.016112269833683968, 0.012865765020251274, 0.05689401924610138, 0.04454152658581734, -0.016383076086640358, -0.016031144186854362, -0.01794624887406826, 0.025216294452548027, 0.002202790230512619, 0.025841712951660156, -0.016620434820652008, -0.01769101805984974, 0.05253581702709198, 0.0647534504532814, 0.049836885184049606, 0.02868981473147869, 0.033099494874477386, -0.027289800345897675, -0.07606896758079529, 0.013990289531648159, -0.01772347278892994, 0.013953011482954025, 0.03440139442682266, -0.003174782497808337, 0.007727957330644131, 0.03445374220609665, -0.009950069710612297, -0.011616799049079418, -0.01906377635896206, -0.005715291481465101, -0.028447436168789864, 0.14854879677295685, -0.010832980275154114, -0.04554612562060356, -0.04166386276483536, -0.07932059466838837, 0.013235206715762615, 0.05521836131811142, 0.0103076146915555, -0.06427991390228271, -0.006331184878945351, 0.05121595785021782, 0.09349069744348526, -0.037406448274850845, -0.03876930847764015, -0.01351168006658554, 0.03446951135993004, -0.043834663927555084, -0.010732419788837433, 0.04608411714434624, 0.04222457855939865, -0.14297260344028473, -0.02200857177376747, 0.004009218420833349, -0.010166976600885391, -0.04571757838129997, 0.029658300802111626, 0.026423808187246323, -0.02492782101035118, 0.0396781861782074, 0.06190801039338112, -0.010667640715837479, -0.014231906272470951, 0.0515483021736145, 0.021305935457348824, -0.02923898957669735, -0.055731434375047684, 0.0052938880398869514, -0.03681950643658638, -0.016066282987594604, -0.03212100639939308, -0.06548526883125305, -0.06940986961126328, -0.004009359050542116, -0.031062016263604164, 0.012992697767913342, -0.028163522481918335, -0.061853840947151184, -0.08478923887014389, 0.03201295807957649, -0.005694393068552017, -0.012822302058339119, 0.004325319081544876, 0.021563492715358734, 0.03289791941642761, -0.04701358079910278, 0.012303875759243965, 0.02599913254380226, -0.03919657692313194, 0.01995108649134636, -0.03717869892716408, 0.01799563504755497, 0.07331595569849014, -0.02113562636077404, 0.04348524287343025, 0.025491096079349518, 0.00401829369366169, 0.017941860482096672, 0.022251097485423088, -0.012479194439947605, 0.040865473449230194, -0.026758965104818344, 0.015976158902049065, 0.0021414957009255886, -0.0006007931078784168, 0.05066424235701561, -0.03043958730995655, -0.037014130502939224, 0.003893144428730011, -0.36936384439468384, -0.044370993971824646, 0.0014135966775938869, 0.05062249302864075, -0.018853643909096718, -0.05412573367357254, -0.0027900636196136475, 0.01342433039098978, 0.012613107450306416, 0.08850011229515076, 0.09123826771974564, -0.024229083210229874, 0.020606350153684616, -0.024275990203022957, -0.007340251002460718, 0.0549936518073082, -0.01704714074730873, 0.04220699518918991, -0.011163538321852684, 0.004142622463405132, 0.029467182233929634, -0.024559834972023964, -0.03318881243467331, -0.05873258039355278, 0.028969138860702515, -0.027308765798807144, 0.1236964538693428, -0.015407344326376915, 0.03393745794892311, -0.06271249055862427, 0.061840157955884933, -0.015042901039123535, 0.011813187040388584, -0.07087501138448715, 0.0023747156374156475, -0.026622485369443893, 0.02760256826877594, 0.037118099629879, -0.018086625263094902, -0.01682465523481369, -0.08214741945266724, 0.044040169566869736, -0.04621630534529686, -0.023870088160037994, -0.005501193925738335, 0.010375995188951492, -0.033016595989465714, -0.00413484824821353, -0.03798982873558998, 0.06327658891677856, -0.006519608199596405, -0.037742991000413895, 0.05050043389201164, 0.002206717384979129, 0.0071434383280575275, -0.03337341547012329, -0.04386938735842705, -0.0117741534486413, -0.03422514721751213, -0.011690372601151466, 0.02242438867688179, 0.017302414402365685, 0.031241226941347122, -0.02973812073469162, 0.020794184878468513, 0.006901164073497057, -0.011970064602792263, 0.026658007875084877, 0.009535927325487137, -0.007788782007992268, -0.0710751935839653, 0.06932705640792847, 0.008379469625651836, 0.021466154605150223, 0.0009553908021189272, 0.01282163430005312, 0.004262099042534828, 0.0010261870920658112, 0.025748252868652344, -0.023139163851737976, 0.05716405063867569, -0.013058348558843136, 0.037318866699934006, -0.020824071019887924, 0.019583774730563164, 0.06797664612531662, 0.026076020672917366, -0.0012284902622923255, 0.06337590515613556, 0.03397740051150322, -0.00507115013897419, -0.030355306342244148, -0.018645107746124268, -0.07335799187421799, 0.07272989302873611, -0.020181355997920036, -0.28319165110588074, 0.012670308351516724, 0.018647482618689537, 0.030649438500404358, 0.02290387451648712, -0.012829086743295193, 0.010190784931182861, -0.021870829164981842, 0.03127383068203926, 0.013794747181236744, 0.02864753268659115, 0.014945159666240215, 0.02179897390305996, -0.06152049079537392, 0.020943867042660713, -0.015168516896665096, 0.034670885652303696, 0.026712751016020775, 0.04185362905263901, -0.00028103511431254447, 0.034749291837215424, -0.0021368367597460747, 0.1740969568490982, 0.03337915614247322, -0.004851524718105793, 0.01922318898141384, -0.014807654544711113, -0.03149641305208206, 0.06811501085758209, -0.00007216088124550879, 0.028918469324707985, -0.01938515342772007, 0.05057276040315628, 0.00009139419125858694, 0.02235778421163559, -0.05581891909241676, -0.07215465605258942, 0.02408297173678875, -0.0011055570794269443, -0.03213803097605705, -0.01401667483150959, 0.00034936703741550446, -0.05591580271720886, 0.03333909064531326, 0.046389222145080566, -0.009157459251582623, -0.0019343872554600239, -0.02667716145515442, -0.02523321658372879, 0.009793839417397976, 0.004678670316934586, -0.06528660655021667, -0.02662213146686554, -0.018751302734017372, -0.0007314645918086171, 0.05823514983057976, 0.019963910803198814, -0.040819939225912094, -0.02560216374695301, 0.025633694604039192, -0.03725696727633476, -0.07942751795053482, 0.08507441729307175, -0.021389173343777657, 0.007333423476666212 ]
[ 0.017672933638095856, 0.03913123905658722, -0.042235128581523895, -0.001785000436939299, -0.02124270610511303, -0.014044741168618202, -0.003229393158107996, -0.018665285781025887, -0.027466753497719765, -0.03561439365148544, 0.007287589367479086, 0.005757532548159361, -0.02072856016457081, -0.015376756899058819, 0.0395786315202713, -0.022325575351715088, -0.014631947502493858, 0.005499131046235561, 0.04161164164543152, -0.03723670169711113, -0.010896575637161732, 0.026466095820069313, 0.002858812687918544, 0.01147704292088747, 0.0038400893099606037, 0.016436196863651276, 0.015301095321774483, 0.014113286510109901, 0.012513302266597748, -0.13708142936229706, -0.023071739822626114, -0.023802870884537697, -0.012115922756493092, 0.03481774404644966, 0.01304103247821331, -0.016176903620362282, 0.02188258059322834, 0.011107187718153, 0.05858421325683594, 0.014848737046122551, 0.031524330377578735, -0.009853514842689037, -0.003289624582976103, -0.008832057006657124, -0.011679255403578281, 0.009092407301068306, -0.023802217096090317, 0.034213464707136154, 0.01104823686182499, 0.028743494302034378, -0.04723624885082245, 0.005856169853359461, -0.005896337330341339, 0.01406300812959671, 0.019819315522909164, 0.0029255435802042484, -0.05985098332166672, 0.02823987603187561, -0.032582368701696396, -0.02262636460363865, -0.0024631128180772066, 0.0007604363490827382, -0.031649813055992126, -0.00851251557469368, -0.018185757100582123, -0.03022049181163311, -0.0705384761095047, -0.00567547557875514, -0.04831536486744881, -0.036405570805072784, 0.01693842001259327, -0.007761173415929079, -0.07633612304925919, -0.03453964367508888, -0.010992971248924732, -0.006189817562699318, 0.005400358699262142, -0.017668835818767548, -0.010068622417747974, -0.011798257939517498, 0.0028359335847198963, 0.0256347618997097, 0.0036873144563287497, 0.024408696219325066, -0.06215156614780426, -0.05064817890524864, 0.012655828148126602, 0.010706663131713867, 0.05207126587629318, -0.011732308194041252, 0.02187725529074669, -0.015655800700187683, 0.007521920371800661, -0.011140813119709492, -0.07342759519815445, -0.0335431732237339, 0.013414374552667141, -0.016837332397699356, -0.02316855639219284, 0.8206389546394348, 0.004390709102153778, -0.01084459014236927, 0.01848432794213295, 0.020470155403017998, -0.02063126489520073, 0.008627490140497684, -0.027338823303580284, 0.030560415238142014, 0.006883399561047554, -0.03540286421775818, -0.004912286531180143, 0.03189392015337944, 0.0031977063044905663, -0.00947799813002348, -0.01529128197580576, 0.002878331346437335, 0.02811492793262005, 0.006979355122894049, -0.007877605967223644, 0.025289854034781456, 0.039136774837970734, 0.018505696207284927, -0.038900308310985565, -0.0189884752035141, 0.005865961778908968, -0.16264362633228302, -0.013368305750191212, -6.497603798887735e-33, 0.033998049795627594, -0.029544077813625336, 0.02628524973988533, -0.014969046227633953, 0.011408180929720402, 0.007816093042492867, -0.0008788763079792261, 0.002960305428132415, -0.014539671130478382, 0.006388447713106871, 0.011915943585336208, 0.0034920580219477415, -0.00605738814920187, -0.015512924641370773, 0.020863909274339676, 0.009960745461285114, 0.017159681767225266, 0.03848443180322647, -0.008844425901770592, 0.0014843615936115384, 0.024296732619404793, 0.0025075769517570734, 0.014033385552465916, 0.039843782782554626, 0.014042752794921398, 0.014798822812736034, -0.009586615487933159, 0.006414355244487524, -0.009594311937689781, -0.030519574880599976, 0.011616525240242481, 0.014795818366110325, 0.011408376507461071, 0.004493530839681625, 0.005653305910527706, -0.04575774073600769, -0.027911506593227386, -0.019193215295672417, -0.0016777819255366921, -0.035382941365242004, -0.055119168013334274, 0.0011305486550554633, -0.01820952631533146, 0.010779481381177902, 0.015525051392614841, 0.01062680035829544, -0.003945347853004932, 0.025667550042271614, 0.006612010300159454, 0.07843761891126633, 0.03289008140563965, -0.0022896472364664078, -0.032823596149683, 0.016551177948713303, 0.01874762587249279, -0.00039563249447382987, -0.009394189342856407, 0.0077152433805167675, 0.012539024464786053, 0.014022248797118664, -0.012600489892065525, -0.010290851816534996, -0.0005403790855780244, 0.025462167337536812, -0.005719715263694525, -0.005257486365735531, 0.021752752363681793, 0.02221076190471649, -0.0018453513039276004, -0.002155858092010021, -0.018579566851258278, 0.030422993004322052, 0.027332153171300888, 0.011046433821320534, 0.03689679130911827, -0.03561459109187126, -0.0026222888845950365, 0.025077782571315765, 0.00986010953783989, 0.006601868197321892, 0.030126459896564484, -0.011968821287155151, -0.002216542139649391, -0.01324115227907896, -0.021783098578453064, 0.024317411705851555, 0.06082826852798462, -0.0032682002056390047, -0.011270606890320778, 0.03535079210996628, -0.025687528774142265, 0.08022885024547577, -0.012093666940927505, -0.021322134882211685, 0.0037475198041647673, 6.443196042859926e-33, -0.012899060733616352, -0.09867030382156372, -0.00440035667270422, -0.025317177176475525, -0.03914668783545494, -0.05319548770785332, 0.0333910807967186, 0.017973806709051132, -0.01920275017619133, 0.052739497274160385, -0.046585991978645325, -0.04090655967593193, -0.007785127032548189, 0.010820048861205578, 0.07193755358457565, 0.025616999715566635, 0.04569413885474205, -0.00472749350592494, -0.006479734554886818, 0.06254567950963974, -0.020747322589159012, -0.0009066242491826415, 0.007417805027216673, 0.05795137956738472, 0.005588084924966097, 0.010932509787380695, -0.03262465447187424, -0.01003613043576479, -0.0032516203355044127, -0.009338999167084694, -0.03145850449800491, -0.02102476730942726, 0.0023226928897202015, 0.00372492172755301, -0.05173230171203613, 0.019361674785614014, -0.00012063339090673253, 0.013511010445654392, 0.06639415770769119, -0.04018747806549072, 0.026213357225060463, -0.006030005868524313, -0.0048021613620221615, 0.00014829632709734142, -0.019266773015260696, -0.007975184358656406, -0.006947533693164587, -0.021446403115987778, -0.010650898329913616, -0.011429919861257076, -0.011808402836322784, 0.07181399315595627, -0.032899193465709686, 0.04649660736322403, 0.0007094762986525893, -0.01181449182331562, -0.013585598208010197, -0.010305855423212051, -0.027719538658857346, -0.007967500016093254, -0.025679444894194603, -0.01194679643958807, 0.01222817599773407, 0.03716925531625748, 0.016136152669787407, -0.04403075575828552, 0.007299235090613365, -0.047461818903684616, 0.06251958012580872, -0.010058663785457611, -0.0034498749300837517, -0.00542626203969121, -0.023747093975543976, 0.009416130371391773, -0.009239927865564823, -0.0018858889816328883, -0.0038597132079303265, 0.0183340422809124, -0.011730281636118889, 0.03987404704093933, 0.025024311617016792, -0.024590887129306793, 0.011179681867361069, -0.028031859546899796, 0.027635416015982628, 0.04286687448620796, -0.01971924677491188, 0.007203537039458752, 0.04460988938808441, 0.01359540969133377, -0.020064175128936768, -0.035384152084589005, -0.005564758088439703, 0.02161230705678463, -0.0366467647254467, -1.2396695225902477e-8, -0.06926532089710236, -0.021224601194262505, -0.019833635538816452, 0.03881733864545822, 0.0005472237826324999, -0.0036087206099182367, 0.012147888541221619, 0.007163229398429394, -0.007866430096328259, 0.020480219274759293, 0.05614159628748894, 0.01620381511747837, -0.015415748581290245, 0.02962792105972767, 0.010618537664413452, -0.02473408170044422, 0.014513388276100159, -0.007415174972265959, 0.048916641622781754, 0.0458921380341053, 0.04671233519911766, 0.03558284789323807, 0.0021585633512586355, -0.019754022359848022, 0.028370467945933342, -0.016064967960119247, -0.013708534650504589, -0.056397050619125366, 0.026575470343232155, -0.005567515734583139, 0.04468325525522232, -0.03602416813373566, -0.00031793935340829194, 0.0024698087945580482, -0.03060910664498806, -0.0751473605632782, 0.034317318350076675, 0.02690352313220501, -0.02207021787762642, -0.010912375524640083, -0.008263534866273403, -0.006494481582194567, -0.061788029968738556, -0.024090683087706566, -0.03581558167934418, -0.036162346601486206, 0.009044031612575054, 0.0011384247336536646, 0.047809142619371414, -0.03875860199332237, -0.009442322887480259, 0.002980471821501851, 0.013806888833642006, 0.00521714985370636, 0.041654039174318314, 0.004188462160527706, 0.033881060779094696, -0.04789475351572037, -0.011793632991611958, 0.035129379481077194, -0.007572799455374479, 0.00860990583896637, -0.0058638411574065685, -0.012592841871082783 ]
yelp-reverse-geocoding-businesses-extract-detailed-location-information
https://markhneedham.com/blog/2018/03/14/yelp-reverse-geocoding-businesses-extract-detailed-location-information
false
2018-04-29 11:54:02
PyData London 2018 Conference Experience Report
[ "python", "pydata", "pydata2018", "pydatalondon", "conferences", "data-science" ]
[ "Python" ]
Over the last few days I attended https://pydata.org/london2018/schedule/[PyData London 2018^] and wanted to share my experience. The PyData series of conferences aim to bring together users and developers of data analysis tools to share ideas and learn from each other. I presented a talk on https://www.youtube.com/watch?v=VGCCVNlZmRI[building a recommendation with Python and Neo4j^] at the 2016 version but didn't attend last year. The organisers said there were ~ 550 attendees spread over 1 day of tutorials and 2 days of talks. From what I could tell most attendees were Data Scientists so I was in the minority as a Software Developer. == tl;dr * Text Analysis using Tensorflow is the (new) hotness. * Everything else seems to centre around scikit-learn's API. * The on site childcare the conference provided was a great idea. Hopefully that will catch on at other conferences. * This is a great conference for learning how to apply technology to solve data problems. There were a lot of talks so I'll just give a shoutout to a few of my favourite ones. == Friday Gilbert François Duivesteijn's tutorial about https://pydata.org/london2018/schedule/presentation/9/[tagging his team's Slack messages^] was very interesting and something that I hadn't thought about before. Gilbert's team have a channel where they indicate if they're working from home, off sick, at a client meeting, etc and he wanted to automatically classify these messages. It was mostly standard scikit-learn stuff except Gilbert wrote his own tokenizer because people often don't punctuate Slack messages properly and this was messing up the classifier. After getting an introduction to text analysis by Gilbert I was hoping to attend Kajal Puri's talk about https://pydata.org/london2018/schedule/presentation/12/[building text classification models^], but that one was cancelled. At the last minute Vincent D. Warmerdam stepped in and did a mini tutorial showing how to use the https://github.com/jmschrei/pomegranate[pomegranate^] library to do probabilistic modelling. It was very cool but I'm not sure that I have a problem to use it on at the moment. In the afternoon I attended a session on https://pydata.org/london2018/schedule/presentation/8/[Network Science with NetworkX^] run by https://twitter.com/mridul_seth[Mridul Seth^] which used the https://www.macalester.edu/~abeverid/thrones.html[Game of Thrones^] dataset - the exact same one that we've been using in our network science training sessions, so I was quite excited about that. The room was absolutely packed for this one and most people hadn't done anything with graphs yet based on a show of hands at the beginning of the session. Most of the session was spent https://github.com/MridulS/pydata-networkx/blob/master/Game%20of%20Thrones%20-%20Lecture%20.ipynb[exploring the changing influence of Game of Thrones characters^] over the different books. I'm currently working on a NetworkX API for Neo4j Graph Algorithms so if you like NetworkX and want to try out Neo4j take a look at the https://github.com/neo4j-graph-analytics/networkx-neo4j[neo4j-graph-analytics/networkx-neo4j^] repository and let me know what you think. == Saturday http://theowindebank.co.uk/cv.html[Theo Windebank^] spoke about https://pydata.org/london2018/schedule/presentation/26/[how the BBC are using semantic web and linked data technologies to build a content graph^] of the data they have inside the BBC. There was an interesting discussion about why these technologies haven't taken off as they were expected to, and Theo observed that companies probably aren't going to open up all their data but that the tools are still useful for making sense of data inside an organisation. image::{{<siteurl>}}/uploads/2018/04/IMG_20180428_144134.jpg[width="600px", alt="BBC Connected Data"] Mike Walmsley explained how the https://www.zooniverse.org/[Zooniverse^] are https://pydata.org/london2018/schedule/presentation/33/[using a combination of deep learning and humans to help label galaxies^]. This is a technique called Active Learning, which I first came across when playing around with the https://github.com/dedupeio/dedupe[dedupe^] library. I also watched https://twitter.com/arplynn/[Alistair Lynn^]'s https://pydata.org/london2018/schedule/presentation/19/[talk about A/B testing^] in which he talked through his experience A/B testing features https://www.thread.com/[thread.com^]. My main take away was that it's much easier to manage multiple tests if you assign users into buckets and assign the control or test based on the bucket rather than dealing with users individually. He also emphasised the need to be aware of our own tendency to confirmation bias when looking at test results. https://thuijskens.github.io/about/[Thomas Huijskens^] gave a great overview of the different ways that we can https://pydata.org/london2018/schedule/presentation/31/[select features for our machine learning models^]. Apart from scikit-learn he suggested using http://rasbt.github.io/mlxtend/[mlxtend^] and https://github.com/skggm/skggm[skggm^] to help with this process. Now I need to enter some Kaggle competitions so I can give them a try! == Sunday Sunday opened with a https://pydata.org/london2018/schedule/presentation/51/[keynote^] by https://twitter.com/EGouillart[Emmanuelle Gouillart^] about her experience working on http://scikit-image.org/[scikit-image^] and encouraged others to get involved with open source science. There was also an excellent section on the importance of well written documentation to help get people ramped up on your project. Emmanuelle also thanked the PyData organisers for having onsite childcare, without which she may have been unable to attend. image::{{<siteurl>}}/uploads/2018/04/IMG_20180429_090920_small.jpg[width="600px", alt="On Site Childcare #ftw"] As one of my side projects I'm trying to work out how to parse ingredient names from recipes and I'm not sure where to start, so I was quite happy to attend a talk by Carsten van Weelden where he https://pydata.org/london2018/schedule/presentation/55/[showed how to use Tensorflow to solve a similar problem^]. https://www.textkernel.com/[Carsten's team^] are pulling job titles and company names out of resumes using Recurrent Neural Networks and I think I now know enough to get started with my problem. The https://drive.google.com/file/d/1dJ4nKTvoxslMsckgPMzgG23WPbeEK32T/view[slides from this talk^] were very helpful. https://twitter.com/astroadamh[Adam Hill^] presented https://pydata.org/london2018/schedule/presentation/17/[Searching for Shady Patterns: Shining a light on UK corporate ownership^], in which he showed how DataKind and Global Witness used Neo4j to find leads for investigative journalism to expose corrupt practices from the corporate ownership dataset. Adam presented his early work on this project at the https://www.meetup.com/graphdb-london/[Neo4j London Meetup^] in March 2017 so it was really cool to see how far it's come along. I also attended Aileen Nielsen's talk about fairness and inclusion in our work. Aileen went through many different examples of how unconscious bias can creep into algorithms if we're not careful. It reminded me of a book I recently read - https://www.amazon.co.uk/Weapons-Math-Destruction-Increases-Inequality-ebook/dp/B01LDFCP0S/[Weapons of Math Destruction: How Big Data Increases Inequality and Threatens Democracy^] - which was actually referenced towards the end of the talk. Overall it was a really enjoyable conference and I'm looking forward to the 2019 version! If you can't wait that long there's always https://pydata.org/berlin2018/[PyData Berlin^] which is on 6-8 July 2018.
null
null
[ 0.015434241853654385, -0.026359379291534424, -0.014301630668342113, 0.052855655550956726, 0.05996377393603325, 0.027035128325223923, 0.006682347506284714, 0.029661260545253754, 0.01469280757009983, 0.005401404108852148, -0.033952321857213974, 0.0018573137931525707, -0.05592258647084236, 0.03557631000876427, -0.014015831053256989, 0.06406710296869278, 0.06148343160748482, -0.014860613271594048, 0.01630166359245777, 0.0058986712247133255, 0.04320898279547691, 0.054944537580013275, 0.026870757341384888, 0.03054828941822052, 0.017936456948518753, -0.01134148146957159, 0.015534189529716969, -0.005690084770321846, -0.0380127914249897, -0.018285688012838364, 0.018528379499912262, 0.019383959472179413, 0.003763368586078286, 0.0143514946103096, 0.048377688974142075, 0.01004825346171856, -0.008288254030048847, 0.04063126817345619, 0.0036935810931026936, 0.030222119763493538, -0.06646455824375153, 0.03446988761425018, -0.04054602235555649, 0.0206903163343668, -0.04428267478942871, 0.009809599258005619, -0.04864608868956566, 0.013878223486244678, 0.015682151541113853, -0.010064889676868916, -0.075456403195858, 0.025577016174793243, 0.011716509237885475, 0.013173318468034267, -0.023442164063453674, 0.03663542494177818, 0.008033144287765026, -0.07709994912147522, 0.015451435931026936, -0.013031912967562675, -0.014262853190302849, 0.0035883986856788397, -0.01332076732069254, 0.024920450523495674, 0.02546059340238571, -0.03117312490940094, -0.013272468000650406, 0.04305891692638397, -0.03751564025878906, -0.0008560160058550537, -0.007905053906142712, 0.05437349155545235, -0.018962500616908073, 0.008906307630240917, -0.010258393362164497, -0.051367614418268204, 0.0010703288717195392, 0.05381598696112633, 0.04859042912721634, 0.023518100380897522, -0.014149349182844162, -0.013242321088910103, 0.03062457963824272, 0.04671920835971832, -0.009360572323203087, -0.028322912752628326, -0.026578091084957123, -0.04416671022772789, -0.07051120698451996, 0.04337499663233757, 0.013031478971242905, -0.06044517457485199, 0.02679416723549366, 0.020904170349240303, -0.007485180161893368, 0.025128308683633804, 0.01978195644915104, -0.021304484456777573, -0.008633317425847054, -0.02786063589155674, -0.021455416455864906, -0.03300916776061058, -0.00263632507994771, 0.012037212960422039, -0.08244092762470245, -0.007932525128126144, -0.031566549092531204, -0.0027092716190963984, 0.006938289850950241, 0.009978371672332287, -0.02141810953617096, 0.006919813808053732, 0.005777115933597088, -0.005412648897618055, -0.06637122482061386, 0.03594671189785004, 0.008098479360342026, -0.0540524423122406, -0.020303500816226006, -0.023655293509364128, 0.03940124809741974, 0.04993271827697754, -0.014791774563491344, 0.07722886651754379, -0.025068944320082664, 0.021005041897296906, -0.002995114540681243, 0.04942001402378082, -0.024125415831804276, -0.048539500683546066, 0.0035403200890868902, 0.04772351309657097, -0.008533863350749016, -0.019259152933955193, 0.011918596923351288, -0.038908928632736206, -0.007973172701895237, 0.021679606288671494, 0.06280666589736938, 0.04349509999155998, 0.009544719010591507, -0.02904536761343479, 0.0030017124954611063, 0.03369102627038956, 0.009469149634242058, 0.008437592536211014, -0.030446816235780716, -0.026747437193989754, -0.03445727750658989, -0.017563296481966972, -0.006600367836654186, -0.008640382438898087, 0.010739907622337341, -0.05465632677078247, 0.03310532495379448, 0.06442444771528244, 0.027653031051158905, 0.02233211323618889, -0.011831695213913918, 0.010927748866379261, 0.017645690590143204, 0.03286091610789299, -0.00040862197056412697, 0.02907077595591545, -0.0077759441919624805, -0.029296204447746277, 0.00461673503741622, 0.05288003757596016, -0.007134233135730028, 0.020311545580625534, -0.04118487983942032, -0.045112840831279755, 0.041810013353824615, -0.0357310026884079, -0.020193200558423996, 0.03816544637084007, 0.07832202315330505, 0.036628566682338715, 0.025820517912507057, 0.0002985586761496961, -0.08832820504903793, 0.02421434596180916, 0.004010458942502737, 0.031374797224998474, 0.03753919154405594, -0.027552591636776924, 0.08343173563480377, 0.024919459596276283, 0.0056325397454202175, 0.042588505893945694, -0.08279450237751007, -0.06842725723981857, -0.029377615079283714, -0.011370879597961903, 0.05403328314423561, -0.020235948264598846, 0.049518149346113205, 0.05046442523598671, 0.0018180669285356998, 0.05578428506851196, 0.029919937252998352, 0.0021083371248096228, 0.011857918463647366, -0.032492294907569885, -0.060103606432676315, 0.04323473200201988, 0.02479487471282482, -0.0296477098017931, -0.056496936827898026, 0.0019881995394825935, -0.02307899296283722, -0.010721279308199883, 0.04169313982129097, -0.017946552485227585, 0.02442290633916855, 0.02478167787194252, 0.05521909520030022, -0.00024663133081048727, 0.01741858571767807, -0.03428615629673004, 0.02499026246368885, -0.0011474851053208113, -0.01568964496254921, 0.003608071943745017, 0.021090013906359673, 0.12350907176733017, 0.06205650046467781, -0.012989128939807415, -0.03677922859787941, 0.003233080729842186, 0.010359308682382107, -0.030732491984963417, -0.0015273268800228834, -0.0071021635085344315, -0.006623410619795322, -0.021243076771497726, -0.06379470974206924, -0.055403415113687515, 0.009118037298321724, -0.04740843176841736, 0.013225658796727657, 0.06737444549798965, -0.02345189079642296, 0.06162222847342491, -0.005783780012279749, 0.018432436510920525, -0.0033546150662004948, -0.024253157898783684, -0.04244273155927658, 0.002828370314091444, 0.003380974754691124, -0.016226552426815033, 0.024695375934243202, -0.0288095623254776, -0.010220801457762718, -0.02022288367152214, -0.03213769942522049, 0.03171610087156296, 0.0770658478140831, 0.06610466539859772, -0.00020334740111138672, 0.06045747548341751, -0.04658859595656395, 0.024544784799218178, 0.011442063376307487, -0.06291922926902771, -0.05001993849873543, -0.06142374500632286, 0.006121685728430748, 0.021392758935689926, 0.059742871671915054, 0.007724386639893055, 0.015483925119042397, 0.000029354512662393972, -0.023116353899240494, -0.02586805820465088, 0.0404692143201828, 0.009967035613954067, -0.030746066942811012, -0.034913208335638046, -0.02160022035241127, 0.06265076994895935, -0.025511043146252632, -0.0036884250584989786, -0.010190156288444996, -0.06426581740379333, 0.023390434682369232, -0.06537239253520966, -0.021606292575597763, -0.010831695050001144, 0.014140934683382511, 0.036957062780857086, 0.029713772237300873, -0.004123738035559654, 0.05174431949853897, 0.004492857959121466, 0.014741376042366028, -0.00835135392844677, -0.038443345576524734, 0.02586107701063156, -0.014961755834519863, 0.021582094952464104, 0.03417243808507919, 0.009922507219016552, -0.0024900445714592934, -0.06777463853359222, 0.04266189783811569, -0.03908859193325043, -0.29173794388771057, 0.024407407268881798, 0.00261480244807899, -0.018654175102710724, 0.013940185308456421, -0.014352717436850071, 0.014898279681801796, -0.030811063945293427, -0.017025351524353027, -0.028838030993938446, -0.03803404048085213, -0.024793364107608795, -0.036873698234558105, 0.031466204673051834, 0.03072703443467617, 0.02892201766371727, 0.012973601929843426, -0.03534138575196266, 0.03386367857456207, 0.06191272661089897, -0.0028015593998134136, -0.03349991887807846, -0.006513965781778097, 0.06174212321639061, 0.004566730931401253, 0.03899286687374115, -0.0640789344906807, 0.025724537670612335, -0.0705597996711731, -0.022089799866080284, 0.019454071298241615, -0.014481468126177788, 0.011470493860542774, 0.0036817998625338078, -0.0030513214878737926, -0.005635522305965424, 0.06232895702123642, 0.017330780625343323, -0.007392204366624355, 0.009133598767220974, -0.00074584229150787, -0.031352583318948746, 0.00020036177011206746, 0.0006975113647058606, 0.09163819998502731, 0.028860148042440414, -0.08506006747484207, -0.01150337141007185, -0.026510270312428474, 0.05388016253709793, -0.03660288825631142, -0.029931746423244476, -0.0218022633343935, 0.0391097329556942, -0.024995267391204834, -0.0003367230237927288, -0.03334004059433937, -0.01747310720384121, -0.03947407379746437, -0.031675562262535095, -0.027927767485380173, -0.043243978172540665, 0.0017656313721090555, -0.06331885606050491, -0.017664605751633644, -0.04294905811548233, -0.05690391734242439, -0.01568375714123249, 0.06207036226987839, 0.01829962432384491, -0.045724742114543915, 0.022039374336600304, -0.01711772382259369, -0.10101679712533951, 0.010903362184762955, 0.005234753247350454, 0.00008082114072749391, 0.007879381999373436, 0.04163336008787155, 0.06501974910497665, -0.04544207826256752, -0.09627826511859894, 0.028818674385547638, -0.009577596560120583, 0.03388092294335365, -0.015608641318976879, 0.03976648300886154, -0.00026984745636582375, -0.015968265011906624, 0.0048707774840295315, 0.03968348354101181, -0.01481994055211544, -0.029904916882514954, 0.007615961134433746, -0.0003453150566201657, 0.03573552519083023, 0.008703353814780712, 0.028030360117554665, 0.022953975945711136, 0.05114242061972618, -0.0008703764178790152, -0.06492286920547485, -0.0017328434623777866, -0.042266421020030975, -0.0024911181535571814, 0.016645096242427826, -0.05156868323683739, -0.006392129696905613, 0.04339427500963211, 0.0009069337393157184, 0.009226636961102486, -0.01593487337231636, 0.021605292335152626, -0.05320899561047554, -0.015006770379841328, -0.008260815404355526, 0.03300118073821068, 0.035345256328582764, 0.009566687978804111, 0.004781126044690609, -0.06759188324213028, 0.002344632986932993, -0.00569789158180356, 0.012816645205020905, -0.03659713268280029, -0.014238794334232807, -0.0185666736215353, -0.01956980489194393, 0.014612467959523201, 0.00003263682810938917, -0.02245890162885189, 0.0002663701889105141, 0.02841136045753956, -0.03293348476290703, 0.027981622144579887, -0.03716383874416351, -0.05734874680638313, -0.019783277064561844, 0.010399309918284416, 0.009616034105420113, 0.0016456947196274996, 0.015406457707285881, -0.028318630531430244, 0.0190147552639246, 0.04795633628964424, 0.026091616600751877, -0.008792344480752945, 0.009027905762195587, 0.032418299466371536, -0.005687290336936712, 0.020976383239030838, -0.03831418603658676, 0.0002070155751425773, -0.007974781095981598, -0.00883895717561245, 0.007536767981946468, 0.06162523478269577, -0.010971777141094208, -0.020165037363767624, -0.007482824381440878, 0.008841759525239468, -0.03393600881099701, -0.03446041792631149, -0.015353254973888397, 0.040652692317962646, 0.05219277739524841, -0.006917940452694893, 0.0015931747620925307, 0.0019792295061051846, -0.00691617326810956, 0.00008730964327696711, 0.02457105554640293, -0.04836837947368622, 0.008386296220123768, 0.015307721681892872, -0.013276832178235054, 0.011441897600889206, 0.033246900886297226, 0.028605541214346886, 0.012203714810311794, -0.0037642682436853647, -0.022341392934322357, -0.002603379311040044, 0.019463086500763893, 0.06282336264848709, 0.067818284034729, -0.014486858621239662, 0.01262038853019476, -0.010964940302073956, -0.0012493988033384085, -0.03620193898677826, 0.002734476001933217, -0.008240182884037495, -0.013658588752150536, -0.02060074917972088, -0.07926086336374283, 0.07000337541103363, 0.0029145816806703806, 0.01575499214231968, -0.0009694453328847885, -0.0184475164860487, 0.0062109194695949554, -0.018064266070723534, 0.02976168692111969, 0.03427742421627045, -0.08325137943029404, -0.020164038985967636, -0.012478693388402462, -0.013560518622398376, -0.011266877874732018, 0.011083412915468216, -0.025788689032197, -0.03087139129638672, -0.012482247315347195, 0.001255765906535089, -0.04588623344898224, -0.03579877316951752, -0.01375873014330864, 0.03640124574303627, -0.004346942529082298, 0.025916580110788345, -0.016654888167977333, -0.022898545488715172, -0.018807651475071907, -0.03151511400938034, 0.03715735301375389, -0.010734262876212597, 0.012486488558351994, -0.024099308997392654, -0.038103312253952026, 0.016303619369864464, -0.019915077835321426, -0.009252915158867836, 0.031249867752194405, -0.02521815523505211, 0.006867869291454554, -0.0353132039308548, -0.014549783430993557, -0.0132194384932518, 0.053266990929841995, -0.023118162527680397, -0.026580646634101868, -0.05784565210342407, -0.008378689177334309, -0.0695183053612709, 0.03220394626259804, -0.01920654997229576, 0.01564626768231392, 0.020863234996795654, 0.01877346634864807, 0.016984477639198303, 0.053846023976802826, -0.02908407151699066, -0.03324205055832863, 0.03440793976187706, -0.04888050630688667, -0.017668964341282845, -0.07381589710712433, -0.04993161931633949, -0.008808638900518417, -0.003921912983059883, 0.01719837449491024, -0.0411963015794754, 0.05392710492014885, 0.0033563864417374134, 0.02678871899843216, 0.05206301063299179, -0.01047136727720499, 0.0058752805925905704, -0.029906945303082466, -0.004990858491510153, -0.07876285165548325, -0.029643509536981583, 0.038412973284721375, -0.014926665462553501, -0.018030967563390732, 0.022638624534010887, -0.04541996493935585, 0.04232967644929886, -0.07895693928003311, -0.022024719044566154, 0.03385443612933159, -0.00609112624078989, 0.01627974584698677, 0.0029956470243632793, -0.06262528151273727, -0.0017770295962691307, 0.0369575098156929, -0.04091217741370201, -0.00036049142363481224, -0.0029740342870354652, 0.06679785251617432, -0.04224306717514992, 0.022034425288438797, -0.012785899452865124, -0.013239662162959576, 0.07817103713750839, 0.015033734031021595, 0.005069310311228037, 0.0493307039141655, -0.00472928024828434, 0.04225178435444832, 0.021624187007546425, -0.0005591300432570279, -0.012492763809859753, 0.02261141873896122, 0.003921083640307188, -0.058320052921772, 0.04777626693248749, 0.01039000041782856, -0.02125317044556141, -0.016259552910923958, 0.07188811153173447, 0.015075244940817356, -0.03838670998811722, -0.04508001357316971, 0.027217229828238487, -0.06721308082342148, -0.005306838545948267, -0.03953060507774353, 0.010510622523725033, -0.0321759395301342, 0.03583773598074913, -0.0016310601495206356, -0.0065245614387094975, 0.06616928428411484, 0.005531140603125095, -0.01051220204681158, 0.00706818699836731, 0.0889439657330513, 0.08819043636322021, 0.07469343394041061, 0.011552030220627785, 0.06919148564338684, -0.029252363368868828, -0.05275615304708481, 0.012009887956082821, 0.001244306331500411, -0.03542663902044296, -0.04335315153002739, 0.03637317195534706, 0.07931633293628693, -0.014907562173902988, 0.08040595799684525, -0.02816944010555744, 0.009108238853514194, -0.02245379611849785, 0.03152726963162422, 0.022991502657532692, 0.06759724766016006, 0.013615433126688004, 0.03159497678279877, -0.02184958942234516, -0.0691450908780098, 0.04239889234304428, -0.02220628224313259, -0.026094000786542892, 0.02643938735127449, -0.018750809133052826, 0.02388184890151024, 0.012606490403413773, 0.05171805992722511, 0.07061006873846054, -0.027756158262491226, 0.01918070577085018, -0.0028865367639809847, 0.029755620285868645, -0.014020746573805809, 0.03731871768832207, -0.028164317831397057, -0.0015111491084098816, 0.005379245150834322, -0.052330709993839264, -0.015322593040764332, -0.017106248065829277, -0.04368693754076958, 0.03999984636902809, -0.05308514088392258, -0.008549983613193035, 0.010278827510774136, -0.003944816533476114, -0.02478472702205181, -0.054281193763017654, -0.029982710257172585, -0.03540080785751343, -0.07724110782146454, -0.027403132990002632, 0.037170086055994034, -0.0021465083118528128, -0.036716826260089874, -0.027866395190358162, -0.028275087475776672, -0.02187100239098072, 0.03150339797139168, -0.06818972527980804, -0.00855339877307415, 0.013961408287286758, 0.007250379770994186, -0.0067732869647443295, 0.02193734049797058, 0.03562014177441597, -0.00764720793813467, -0.006368723232299089, -0.004272464197129011, 0.051127541810274124, 0.027469690889120102, 0.03411206975579262, 0.005228627938777208, -0.09607475250959396, 0.03027559258043766, 0.0364278145134449, -0.0360674224793911, -0.07092727720737457, 0.04511803761124611, 0.04180736467242241, 0.02769535966217518, 0.04018218442797661, -0.0006694621406495571, -0.008089297451078892, -0.03411376476287842, -0.004588381387293339, -0.02932075597345829, 0.029545705765485764, 0.03600374981760979, -0.004943452309817076, 0.08655380457639694, 0.058427635580301285, 0.007548412308096886, -0.04669862985610962, -0.01395738311111927, 0.003766959300264716, -0.000283676665276289, -0.02296822890639305, -0.04586036503314972, -0.05350431427359581, -0.07563090324401855, -0.02761882171034813, 0.027634045109152794, -0.02955549582839012, -0.021192902699112892, 0.03383595496416092, -0.003257047850638628, 0.004711458925157785, 0.028042469173669815, -0.03977410867810249, 0.015173280611634254, -0.0191314946860075, -0.019876349717378616, -0.028118956834077835, 0.027784042060375214, -0.016775663942098618, 0.024606281891465187, -0.005458789877593517, -0.0496651791036129, -0.022525783628225327, -0.016616037115454674, 0.03474387526512146, 0.018435832113027573, 0.010351882316172123, 0.002984775695949793 ]
[ -0.0628090500831604, -0.010138208977878094, -0.03763571009039879, -0.011232230812311172, 0.044531483203172684, -0.04272385314106941, -0.02147049270570278, 0.04603678360581398, -0.01686161383986473, -0.026881244033575058, 0.007375336717814207, -0.04561842605471611, -0.006977187469601631, -0.012495866045355797, 0.06733814626932144, -0.0020381880458444357, 0.009852075949311256, -0.09777401387691498, 0.004957849625498056, 0.03279101848602295, -0.012624126859009266, -0.032381389290094376, -0.03147101774811745, -0.039879173040390015, 0.0013894124422222376, 0.04321178048849106, 0.057111721485853195, -0.053206946700811386, -0.0018609478138387203, -0.21644391119480133, 0.008982254192233086, 0.005596254486590624, 0.07176721841096878, -0.013035578653216362, -0.0013327590422704816, 0.048785340040922165, 0.028831180185079575, 0.006484166253358126, -0.02889718860387802, 0.05153476074337959, -0.004333093296736479, -0.022381247952580452, -0.04149669408798218, -0.006258285604417324, 0.08296149969100952, -0.013464177958667278, -0.001268554711714387, -0.03534862399101257, -0.03772922232747078, 0.013830487616360188, -0.05179627239704132, -0.031163174659013748, -0.009997445158660412, -0.023591969162225723, -0.0062589761801064014, 0.028783882036805153, 0.02091246284544468, 0.06797816604375839, 0.03505345806479454, 0.008645015768706799, 0.004328103736042976, 0.02487138845026493, -0.1352464258670807, 0.08436181396245956, 0.03968320041894913, 0.022265642881393433, -0.05202126130461693, -0.022793520241975784, 0.03461487591266632, 0.05185767263174057, 0.04347145929932594, -0.0191960446536541, -0.007018418051302433, 0.028513800352811813, 0.0009902585297822952, 0.011264029890298843, 0.012921636924147606, 0.011760181747376919, 0.01741025038063526, -0.035250499844551086, 0.01198137179017067, 0.0268991831690073, -0.01580149680376053, -0.032777827233076096, -0.025372173637151718, 0.0009246619883924723, -0.022003287449479103, 0.06449650973081589, -0.0055451709777116776, 0.02121531404554844, 0.031219253316521645, 0.016109010204672813, 0.024263430386781693, 0.003254721174016595, -0.06709437072277069, -0.026672109961509705, 0.03072829358279705, 0.016631068661808968, 0.001516785123385489, 0.49324771761894226, -0.030142391100525856, 0.01034922432154417, 0.04272716864943504, 0.058863259851932526, -0.013551618903875351, -0.029320349916815758, 0.0014500620309263468, -0.07725388556718826, 0.013521277345716953, -0.028823096305131912, 0.039740514010190964, -0.00011197521962458268, 0.0637521743774414, -0.039726827293634415, 0.015123852528631687, 0.01598341017961502, 0.05514269322156906, 0.03048161417245865, 0.0015529324300587177, -0.007273397874087095, -0.02855025604367256, 0.004314308520406485, 0.03378457948565483, -0.018139371648430824, 0.014237098395824432, -0.03326387330889702, 0.0191221684217453, 0.06979089230298996, 0.019237615168094635, -0.0017529517645016313, 0.0767674520611763, -0.0009701905073598027, -0.09572779387235641, 0.008073288947343826, 0.0161068607121706, -0.00668234983459115, 0.02642921544611454, -0.04024500772356987, 0.023708496242761612, 0.03858635947108269, -0.0018962215399369597, -0.006608609575778246, 0.020717548206448555, -0.0031397920101881027, -0.04272545501589775, 0.12536071240901947, 0.0005229109665378928, -0.03949817642569542, -0.019911501556634903, -0.0455879382789135, 0.02649068459868431, 0.0045218514278531075, -0.008243022486567497, -0.06146271526813507, 0.042626142501831055, 0.011411945335566998, 0.11580860614776611, -0.013406869024038315, -0.050196561962366104, 0.013910561800003052, -0.028261525556445122, -0.024333825334906578, -0.03019305132329464, 0.07651592046022415, 0.04666135460138321, -0.10085037350654602, 0.008678078651428223, 0.0019135961774736643, 0.014973605051636696, -0.05617291480302811, 0.016565890982747078, 0.016252029687166214, -0.017802929505705833, 0.02231321670114994, 0.03132835775613785, -0.04290395602583885, -0.04795067012310028, 0.01488526165485382, 0.06567677110433578, -0.015732280910015106, 0.014961759559810162, -0.016769109293818474, -0.017572779208421707, 0.006095427554100752, -0.03874870762228966, -0.06534915417432785, -0.04504186660051346, -0.010629268363118172, -0.026156669482588768, 0.005098980851471424, -0.013111875392496586, -0.02355021983385086, -0.07733535021543503, 0.05531630292534828, -0.05435510724782944, -0.038573868572711945, 0.016806459054350853, -0.009363973513245583, -0.03314260020852089, -0.03609071671962738, -0.04792269319295883, 0.02475713938474655, -0.02806703746318817, 0.04549767076969147, -0.03401068225502968, 0.025682803243398666, 0.025887859985232353, -0.006268102675676346, 0.10549090057611465, 0.038134317845106125, -0.005731665529310703, -0.05295172706246376, 0.02508440800011158, 0.004371725022792816, -0.017538338899612427, -0.01972975581884384, 0.016553159803152084, 0.0019243594724684954, -0.019565032795071602, 0.0226524006575346, -0.008321289904415607, 0.015041602775454521, -0.05037369951605797, -0.3268457353115082, -0.02845965325832367, -0.010967692360281944, -0.01958026923239231, 0.028235631063580513, -0.05314430966973305, 0.035252418369054794, -0.007403952069580555, 0.008569834753870964, 0.03553076833486557, 0.07823823392391205, 0.03738433122634888, 0.013084622099995613, -0.08610989153385162, -0.017316317185759544, 0.03248225897550583, -0.023377949371933937, 0.004581604152917862, -0.040915437042713165, -0.012348794378340244, -0.00978876743465662, 0.009035817347466946, -0.017505265772342682, -0.03819771483540535, -0.03556670993566513, -0.042206015437841415, 0.09040211886167526, 0.04022221639752388, 0.058013666421175, -0.01646445505321026, 0.0057000708766281605, -0.014235459268093109, 0.016781404614448547, -0.10746478289365768, -0.0008092016214504838, 0.001796590629965067, 0.04562051594257355, -0.00035193155054003, 0.010728464461863041, -0.0472823828458786, -0.016612067818641663, 0.04100995883345604, -0.016952836886048317, -0.06108182296156883, -0.0709252804517746, 0.02359280362725258, -0.0251654963940382, -0.03471214324235916, -0.03911556303501129, 0.0775659829378128, 0.012497198767960072, -0.015475421212613583, 0.030908361077308655, -0.00019371988310012966, -0.016459491103887558, -0.01180928386747837, -0.07915010303258896, 0.012971923686563969, 0.0005102910799905658, 0.016023308038711548, 0.0047612241469323635, 0.04090956971049309, 0.009507846087217331, -0.0678112730383873, -0.013478449545800686, -0.004965758416801691, -0.005869591608643532, -0.005282174795866013, 0.03645141050219536, -0.010954970493912697, -0.01847636140882969, 0.10382004082202911, -0.007309807930141687, 0.006064567714929581, 0.03042372316122055, 0.02189655601978302, 0.006184517405927181, 0.023168811574578285, 0.00950433686375618, 0.00941908173263073, 0.047271981835365295, -0.00234312005341053, 0.03757132962346077, -0.021644217893481255, 0.0054611326195299625, 0.019124595448374748, 0.015329654328525066, -0.03245570883154869, 0.02981097623705864, 0.03956775367259979, -0.02139103226363659, 0.012415441684424877, -0.030594363808631897, -0.024766767397522926, 0.07232259213924408, 0.018097100779414177, -0.2744831442832947, 0.024092620238661766, 0.059511568397283554, 0.029641564935445786, 0.018568797037005424, 0.006328567862510681, 0.027252649888396263, -0.05156669765710831, 0.009422730654478073, 0.006797969341278076, 0.028070880100131035, 0.010867802426218987, 0.019250737503170967, -0.0023522041738033295, 0.014454931020736694, 0.008948998525738716, 0.025063689798116684, -0.020459452643990517, -0.01428044494241476, 0.02153690531849861, -0.0014901384711265564, 0.004430348519235849, 0.13759884238243103, -0.017095135524868965, 0.016427604481577873, 0.029542729258537292, -0.020621825009584427, -0.0020136504899710417, 0.0554204024374485, -0.0015189858386293054, -0.016190513968467712, -0.018741657957434654, -0.010366038419306278, -0.016994068399071693, 0.0061105843633413315, -0.032640792429447174, -0.034529369324445724, 0.008650177158415318, 0.02982863038778305, -0.007922790013253689, 0.0439550019800663, 0.008744160644710064, -0.03702985495328903, 0.01776270754635334, 0.02485768496990204, 0.029187675565481186, 0.03607049956917763, -0.0624244324862957, -0.03476105257868767, -0.00812810193747282, -0.03905438259243965, -0.04421614482998848, -0.00648467056453228, -0.018458981066942215, -0.0027926857583224773, 0.08648517727851868, 0.025251109153032303, -0.01567067764699459, 0.017513738945126534, -0.026411540806293488, -0.016059160232543945, -0.03949088603258133, 0.08113817125558853, 0.004102450795471668, 0.014261951670050621 ]
[ 0.016585994511842728, 0.016580533236265182, -0.006969836074858904, 0.0226106196641922, -0.01308743841946125, -0.011955458670854568, 0.02119072712957859, 0.004807621706277132, -0.015675919130444527, -0.013158585876226425, -0.018577003851532936, 0.019117457792162895, -0.009207983501255512, 0.0006702461396344006, 0.011648396030068398, -0.02323056198656559, 0.01878325827419758, -0.02422211691737175, 0.03228564187884331, -0.009559579193592072, -0.026890529319643974, 0.02645166777074337, 0.017599133774638176, 0.017114192247390747, 0.0028420586604624987, 0.040523696690797806, 0.0015477747656404972, 0.004080615937709808, 0.03151719644665718, -0.10816542059183121, -0.01637836918234825, -0.02259810082614422, -0.0070289121940732, 0.013538177125155926, 0.011418978683650494, 0.0006091662799008191, -0.02661835215985775, 0.019442496821284294, -0.012986080721020699, 0.03419537469744682, 0.00272930134087801, -0.03698062151670456, -0.007955004461109638, 0.01420509908348322, 0.00977284274995327, 0.01099350955337286, -0.001098709530197084, -0.034384217113256454, -0.011297697201371193, -0.020240720361471176, -0.03141321986913681, -0.01845294050872326, -0.011626914143562317, 0.028541401028633118, -0.012460906058549881, 0.012818188406527042, -0.0028623128309845924, -0.006586777046322823, 0.00745179271325469, -0.014649927616119385, -0.014268358238041401, -0.014285368844866753, -0.04865734279155731, -0.01478292141109705, -0.03199993073940277, -0.0043378667905926704, 0.0018857723334804177, 0.020987490192055702, 0.007686916273087263, 0.0022918579634279013, -0.024830251932144165, 0.048763178288936615, -0.046654872596263885, -0.003262229496613145, -0.0005039065144956112, 0.00630653603002429, 0.02269204892218113, -0.04511626064777374, 0.013793027959764004, 0.0007721955771557987, -0.03085397742688656, 0.014439528807997704, -0.01051329355686903, 0.007267816457897425, -0.013503814116120338, -0.02352987974882126, 0.010254514403641224, -0.0006692750030197203, 0.011722822673618793, -0.018398171290755272, 0.002165289595723152, 0.026326710358262062, -0.01166363712400198, 0.0221632681787014, -0.1035211831331253, -0.014295515604317188, -0.012512396089732647, -0.0176464281976223, 0.01962871663272381, 0.879082202911377, -0.021196601912379265, 0.0010712372604757547, -0.00364804919809103, 0.015805838629603386, -0.01943979784846306, -0.0046222154051065445, 0.02132776752114296, -0.017829079180955887, 0.015886710956692696, -0.015080159530043602, -0.007564257830381393, 0.025882704183459282, 0.03149666264653206, 0.004726072307676077, 0.029763933271169662, 0.027234898880124092, 0.002145707607269287, 0.025141270831227303, 0.0033654174767434597, 0.01404627226293087, -0.010187340900301933, -0.004122035577893257, -0.0006383494473993778, 0.025172295048832893, -0.0003905113262590021, -0.18465550243854523, -0.0019451221451163292, -7.306745049700687e-33, 0.029215386137366295, -0.00429267855361104, 0.02710583060979843, 0.016363833099603653, 0.017958927899599075, 0.003013890003785491, -0.007141701877117157, -0.01579234004020691, 0.03163015842437744, -0.018860798329114914, -0.016330260783433914, 0.00854151975363493, 0.018506446853280067, -0.030903296545147896, 0.00441323034465313, -0.018168717622756958, 0.011771143414080143, 0.03896069899201393, -0.02377164363861084, 0.04212899133563042, 0.006135491654276848, 0.03327915444970131, 0.012962952256202698, 0.011706718243658543, 0.01887642778456211, 0.045928001403808594, 0.016902830451726913, 0.004202573094516993, 0.011374123394489288, -0.04078054428100586, -0.044293660670518875, 0.00839444063603878, 0.012384592555463314, -0.007621727883815765, -0.007432122714817524, -0.038880977779626846, -0.05002053081989288, -0.00045212203986011446, 0.0009153496939688921, -0.026790181174874306, -0.0296682920306921, -0.0016690134070813656, -0.01091458834707737, -0.0373445563018322, -0.01668255217373371, 0.007259082514792681, -0.0008392446325160563, 0.04098663479089737, -0.010206099599599838, -0.001082685892470181, 0.021467873826622963, -0.02532993070781231, -0.01992197521030903, 0.006998788565397263, -0.016185466200113297, 0.01821436919271946, 0.01998077519237995, 0.011354967020452023, 0.03138398379087448, 0.03206777572631836, 0.010395712219178677, 0.007256635464727879, -0.005247794557362795, 0.01536587905138731, 0.007881544530391693, -0.023735247552394867, 0.0007633173372596502, 0.019453110173344612, 0.017239529639482498, -0.009929386898875237, -0.04867292940616608, 0.046469323337078094, -0.041831351816654205, -0.0024534801486879587, 0.019926778972148895, -0.016833171248435974, 0.008327815681695938, 0.009893819689750671, -0.003996156621724367, 0.04950211942195892, 0.004214701242744923, -0.03844070807099342, 0.0394035279750824, -0.029738593846559525, -0.011089611798524857, -0.028805630281567574, 0.017242593690752983, 0.014944725669920444, -0.014086944982409477, 0.025989359244704247, 0.024022269994020462, 0.004653367679566145, 0.027378877624869347, 0.01069245208054781, -0.008776622824370861, 7.546895606837804e-33, -0.00009627112740417942, -0.009504917077720165, -0.03405023738741875, -0.004875540733337402, 0.023718593642115593, 0.015749335289001465, 0.008328951895236969, 0.00326798134483397, -0.05153953284025192, 0.0380864292383194, -0.01884962059557438, -0.020436590537428856, -0.019317062571644783, 0.004711270332336426, 0.04579784721136093, -0.0019443712662905455, 0.003104917937889695, -0.020351054146885872, -0.011148336343467236, 0.030055388808250427, 0.0016808122163638473, 0.020570937544107437, -0.003078279783949256, -0.005339900963008404, 0.02360784448683262, 0.040631651878356934, -0.003989288117736578, 0.019617725163698196, -0.004416620824486017, 0.0032627834007143974, -0.018464477732777596, -0.013897271826863289, -0.00582287460565567, 0.009718189015984535, -0.0004181617696303874, 0.008320370689034462, 0.014362091198563576, -0.017691565677523613, 0.012799988500773907, 0.0022237172815948725, 0.030694851651787758, 0.036413490772247314, -0.018356939777731895, 0.030397063121199608, 0.00261463550850749, 0.034587595611810684, -0.0002491352497600019, -0.008834858424961567, -0.019067473709583282, 0.01755520887672901, -0.012540867552161217, 0.01748567260801792, 0.007941974326968193, 0.002087029628455639, -0.0030432536732405424, -0.02834508940577507, 0.002785275923088193, -0.006732734851539135, -0.0225265771150589, -0.009474474005401134, -0.03440297767519951, -0.036814335733652115, 0.004807912278920412, 0.022114237770438194, -0.030798062682151794, -0.014497824013233185, -0.001966024050489068, 0.011768227443099022, -0.0011038180673494935, -0.010675005614757538, 0.003726833499968052, -0.008969086222350597, -0.0017300298204645514, 0.01781853288412094, 0.006778710056096315, -0.010872477665543556, -0.025565162301063538, -0.0017853889148682356, -0.031365036964416504, 0.018245132640004158, 0.012251540087163448, -0.0021434996742755175, 0.012641825713217258, 0.03463942930102348, 0.006235907319933176, 0.007551379036158323, -0.007907445542514324, 0.028668947517871857, 0.007771424949169159, -0.002529287477955222, -0.005351646337658167, -0.01008126512169838, 0.011291196569800377, 0.021999269723892212, 0.016222583130002022, -1.3221266748075777e-8, -0.024671752005815506, -0.0041905599646270275, -0.021449966356158257, -0.0009208906558342278, 0.02797866426408291, 0.008257544599473476, -0.02473677508533001, 0.014886670745909214, -0.026385489851236343, 0.02703116461634636, 0.042428649961948395, -0.01848764531314373, -0.004132505971938372, 0.003336481284350157, 0.020710797980427742, -0.010173036716878414, -0.021366527304053307, -0.015180373564362526, 0.03052353486418724, -0.0009485749760642648, 0.034834932535886765, 0.040382977575063705, -0.020209776237607002, 0.017303822562098503, 0.013450258411467075, 0.0035055424086749554, 0.014599733985960484, -0.0671067163348198, -0.012864863499999046, -0.042756691575050354, -0.015303559601306915, -0.04098649322986603, -0.05259791761636734, 0.02846486307680607, -0.017405668273568153, -0.012067277915775776, 0.041164737194776535, -0.005369075108319521, 0.01239803247153759, 0.004312911536544561, -0.01961367391049862, -0.013521683402359486, -0.018750280141830444, -0.039177581667900085, -0.03012249432504177, 0.010567881166934967, -0.025015072897076607, -0.03889096900820732, 0.01743747480213642, -0.023886119946837425, 0.00602476391941309, 0.00823112204670906, 0.0036879798863083124, 0.034945957362651825, 0.0030508588533848524, 0.01357672642916441, -0.01214556209743023, -0.02707749791443348, -0.03901276737451553, -0.007127486634999514, -0.007075183559209108, 0.036312635987997055, -0.03755564987659454, -0.01587107963860035 ]
pydata-london-2018
https://markhneedham.com/blog/2018/04/29/pydata-london-2018
false
2018-05-04 22:03:08
Python via virtualenv on Mac OS X: RuntimeError: Python is not installed as a framework.
[ "python", "virtualenv", "matplotlib" ]
[ "Python" ]
I've previously written https://markhneedham.com/blog/2016/08/14/python-matplotlibseabornvirtualenv-python-is-not-installed-as-a-framework/[a couple^] https://markhneedham.com/blog/2015/03/26/python-matplotlib-hangs-and-shows-nothing-mac-os-x/[of blog posts^] about my troubles getting matplotlib to play nicely and I run into a slightly different variant today while following Sidath Asiri's https://towardsdatascience.com/hello-world-in-tensorflow-973e6c38e8ed[Hello World in TensorFlow^] tutorial. When I ran the script using a version of Python installed via virtualenv I got the following exception: [source,bash] ---- Traceback (most recent call last): File "iris.py", line 4, in <module> from matplotlib import pyplot as plt File "/Users/markneedham/projects/tensorflow-playground/a/lib/python3.6/site-packages/matplotlib/pyplot.py", line 116, in <module> _backend_mod, new_figure_manager, draw_if_interactive, _show = pylab_setup() File "/Users/markneedham/projects/tensorflow-playground/a/lib/python3.6/site-packages/matplotlib/backends/__init__.py", line 60, in pylab_setup [backend_name], 0) File "/Users/markneedham/projects/tensorflow-playground/a/lib/python3.6/site-packages/matplotlib/backends/backend_macosx.py", line 17, in <module> from matplotlib.backends import _macosx RuntimeError: Python is not installed as a framework. The Mac OS X backend will not be able to function correctly if Python is not installed as a framework. See the Python documentation for more information on installing Python as a framework on Mac OS X. Please either reinstall Python as a framework, or try one of the other backends. If you are using (Ana)Conda please install python.app and replace the use of 'python' with 'pythonw'. See 'Working with Matplotlib on OSX' in the Matplotlib FAQ for more information. ---- The solution this time was actually the same as it was in my post where I https://markhneedham.com/blog/2015/03/26/python-matplotlib-hangs-and-shows-nothing-mac-os-x/[described matplotlib hanging^]. Instead of: [source,python] ---- from matplotlib import pyplot as plt ---- We need to define a different backend, like this: [source,python] ---- import matplotlib matplotlib.use('TkAgg') import matplotlib.pyplot as plt ---- I also learnt an even simpler way of solving the problem via https://stackoverflow.com/questions/34977388/matplotlib-runtimeerror-python-is-not-installed-as-a-framework[this StackOverflow post^]. We can achieve the same outcome by creating a file at `~/.matplotlib/matplotlibrc` and populating it with the following text: [source,bash] ---- $ cat ~/.matplotlib/matplotlibrc backend: TkAgg ---- Now we can go back to importing matplotlib without the need to define the backend each time. Success!
Learn how to work around the RuntimeError: Python is not installed as a framework. error that you might see running matplotlib on Mac OS X.
null
[ 0.009244776330888271, -0.02568620629608631, -0.010640798136591911, 0.02176176942884922, 0.08083857595920563, 0.016674693673849106, -0.0014552143402397633, 0.03871488943696022, -0.02377275377511978, -0.012052959762513638, -0.03377525880932808, 0.0026959581300616264, -0.05840729922056198, 0.029508382081985474, -0.02473563142120838, 0.07891847938299179, 0.09637761861085892, -0.011811607517302036, 0.017707429826259613, 0.04338543862104416, 0.04629216715693474, 0.039819519966840744, -0.029602721333503723, 0.03435811027884483, -0.02418348751962185, -0.024866051971912384, 0.03717303276062012, -0.0006466491613537073, -0.03838115930557251, -0.017058629542589188, 0.012737346813082695, -0.010035709477961063, 0.0022668757010251284, -0.020583514124155045, 0.02068682387471199, 0.03903181105852127, -0.045921843498945236, 0.05278091877698898, 0.004759436938911676, 0.016279835253953934, -0.06492523103952408, 0.021892383694648743, 0.0025282956194132566, 0.020073462277650833, -0.05525539070367813, 0.03225938603281975, -0.04929223284125328, 0.013224095106124878, 0.007674684282392263, -0.00581257464364171, -0.06244222819805145, 0.02525784634053707, 0.005410198587924242, -0.02874980866909027, 0.012349958531558514, 0.021879145875573158, 0.0007052422151900828, -0.10139942914247513, 0.04513221234083176, -0.017083825543522835, -0.00486278161406517, -0.0182231105864048, 0.021712735295295715, 0.052868764847517014, 0.0032577901147305965, -0.023429499939084053, -0.004747879225760698, 0.026562543585896492, -0.052986402064561844, 0.0038596128579229116, 0.0008567136246711016, 0.025078322738409042, -0.043112676590681076, -0.004079083912074566, 0.0221667792648077, -0.0243837833404541, -0.004317871760576963, 0.051846373826265335, 0.01622595824301243, 0.05026834458112717, -0.005404888652265072, -0.0035756134893745184, 0.05848216637969017, 0.05452469736337662, -0.0057410080917179585, -0.02325398288667202, -0.027069581672549248, -0.0006081543397158384, -0.0533452183008194, 0.07177578657865524, 0.02967682294547558, -0.07384796440601349, 0.037525538355112076, -0.002384347142651677, -0.005413800477981567, -0.010537583380937576, -0.020689385011792183, -0.005304734222590923, -0.007285548374056816, -0.0037579922936856747, -0.026181740686297417, -0.028646320104599, 0.0009000110439956188, 0.02634570375084877, -0.05341194570064545, -0.028373343870043755, 0.010862537659704685, -0.010121256113052368, -0.024350551888346672, 0.00636405311524868, -0.022582126781344414, 0.00981399416923523, -0.0067549338564276695, -0.037098247557878494, -0.07292713969945908, 0.059688590466976166, -0.015816638246178627, -0.027071410790085793, -0.046710554510354996, 0.018947863951325417, 0.07092810422182083, 0.03443022444844246, -0.031052907928824425, 0.06520403176546097, 0.03361878544092178, 0.07552675157785416, 0.007465290371328592, 0.042429063469171524, -0.002708336105570197, -0.0627417117357254, -0.003385942429304123, 0.036339957267045975, -0.03372781723737717, -0.007395997643470764, 0.027575114741921425, -0.04629221558570862, -0.010046707466244698, -0.008041569963097572, 0.03322539106011391, 0.03285450115799904, -0.016404561698436737, -0.027257047593593597, 0.01245645247399807, 0.00039446799200959504, 0.03385397046804428, 0.022042736411094666, -0.019706254824995995, -0.02541261911392212, -0.03902994096279144, -0.01056807953864336, -0.02599962428212166, -0.004800352733582258, 0.04320688545703888, -0.027659401297569275, 0.026621054857969284, 0.07877811789512634, 0.0645374059677124, 0.013836667872965336, -0.032760825008153915, 0.009610280394554138, 0.04913809895515442, 0.043879810720682144, -0.0007988379802554846, 0.0355343334376812, 0.007587734144181013, -0.01363853458315134, 0.029285909608006477, 0.03165123611688614, -0.0038050194270908833, 0.011870352551341057, -0.07190734148025513, -0.06003745645284653, 0.06481538712978363, -0.05018354952335358, -0.015257667750120163, 0.030585799366235733, 0.1014023944735527, 0.015814296901226044, 0.0411740317940712, -0.004541089758276939, -0.07970988750457764, 0.06823642551898956, 0.010323990136384964, 0.044699013233184814, 0.025639165192842484, -0.011400126852095127, 0.08217883110046387, -0.03325306624174118, 0.011393904685974121, 0.020559875294566154, -0.03975357487797737, -0.056845974177122116, -0.02223171293735504, 0.0019637146033346653, 0.04626737907528877, -0.031161511316895485, -0.05253086984157562, 0.04085567593574524, 0.03392104059457779, 0.019768156111240387, 0.003909403458237648, -0.025103984400629997, -0.003729171585291624, -0.06149720773100853, -0.04162593558430672, 0.023861445486545563, 0.0338941290974617, -0.03893837705254555, -0.019206272438168526, 0.024781154468655586, 0.006912493612617254, -0.01608625054359436, 0.03430865332484245, -0.004313270095735788, 0.07944094389677048, 0.028853174299001694, 0.030080001801252365, -0.027164533734321594, 0.05817878618836403, -0.040577612817287445, 0.012602224946022034, -0.05563585087656975, 0.0025037922896444798, -0.06059988588094711, 0.015873391181230545, 0.1179439052939415, 0.06809235364198685, -0.04425479844212532, -0.038018349558115005, 0.0163592416793108, -0.0022064191289246082, -0.022148441523313522, -0.005795693956315517, -0.02201918140053749, -0.02206581085920334, -0.007027604151517153, -0.045081742107868195, -0.035392653197050095, -0.004469228908419609, -0.026747822761535645, -0.003566897241398692, 0.09310445189476013, -0.031199196353554726, 0.04430970177054405, -0.01721651293337345, -0.020623331889510155, 0.00040376270771957934, -0.011285130865871906, -0.07299170643091202, 0.0077786557376384735, 0.02363044209778309, 0.003409269032999873, 0.053762324154376984, -0.019832678139209747, -0.06452154368162155, -0.014982594177126884, -0.06550506502389908, 0.010347622446715832, 0.045678749680519104, 0.04645577445626259, 0.01622973568737507, 0.056302979588508606, -0.03935341164469719, 0.016762608662247658, -0.022463904693722725, -0.05567741021513939, -0.04043446481227875, -0.02299748919904232, 0.018289092928171158, 0.01981385238468647, 0.02407267317175865, -0.01779203861951828, 0.0008474596543237567, 0.002671512309461832, 0.015211237594485283, 0.01626620814204216, 0.04166693985462189, 0.001509619178250432, -0.01888602413237095, -0.055528972297906876, 0.011170382611453533, 0.05001714825630188, -0.02763560600578785, -0.014255428686738014, -0.011590476147830486, -0.05695832893252373, 0.030808163806796074, -0.0644456073641777, -0.011502543464303017, -0.015438663773238659, 0.018513906747102737, 0.043198779225349426, 0.008012973703444004, -0.0005558808916248381, 0.024865703657269478, 0.044751569628715515, -0.003965562675148249, 0.0209808349609375, -0.0009187209070660174, 0.05478421598672867, 0.008247116580605507, 0.05197698995471001, 0.03927554190158844, -0.01680672913789749, -0.004857957828789949, -0.009982557967305183, 0.008685814216732979, -0.04561838507652283, -0.277425616979599, 0.003488706424832344, 0.010333132930099964, -0.03463293984532356, 0.007992014288902283, -0.04010281711816788, -0.032809779047966, -0.040980324149131775, -0.012187611311674118, -0.004511026665568352, -0.018151530995965004, -0.04392702877521515, -0.004658576101064682, 0.034520089626312256, 0.0019348831847310066, -0.017827099189162254, 0.007824944332242012, -0.03954247757792473, 0.0185488723218441, 0.02456086128950119, -0.010903739370405674, -0.06102455034852028, -0.0052671669982373714, 0.05176800489425659, 0.03438135236501694, 0.05893401801586151, -0.06330970674753189, 0.07232198119163513, -0.0841735377907753, -0.010507922619581223, 0.000491082202643156, -0.01515955664217472, -0.022479312494397163, -0.011322932317852974, -0.0014501119730994105, -0.026488717645406723, 0.009443392977118492, -0.016298644244670868, 0.037163086235523224, -0.00046270358143374324, -0.029008323326706886, -0.04578739032149315, -0.0028281977865844965, -0.026544146239757538, 0.06507406383752823, -0.016886446624994278, -0.07156235724687576, 0.007440043613314629, -0.05210370570421219, 0.061058420687913895, -0.023761214688420296, -0.02553384006023407, -0.007324683014303446, 0.017680121585726738, -0.031045252457261086, -0.005401172675192356, -0.007947689853608608, 0.00612774770706892, -0.030515426769852638, -0.011397290974855423, -0.005907400045543909, -0.02007891610264778, -0.03305467590689659, -0.025163695216178894, 0.0018457240657880902, -0.04069611802697182, -0.02427035942673683, -0.01190798170864582, 0.03460162878036499, 0.046122223138809204, -0.043584976345300674, -0.019208485260605812, -0.027786890044808388, -0.10912786424160004, 0.028466634452342987, -0.03680620342493057, -0.029107021167874336, 0.007768174167722464, 0.042791903018951416, 0.013919413089752197, -0.045959778130054474, -0.07369589805603027, 0.05449182167649269, -0.021243847906589508, -0.02144411951303482, 0.004611275624483824, -0.030593715608119965, -0.0018807608867064118, 0.004874153062701225, 0.0015612236456945539, 0.047019943594932556, -0.008975043892860413, 0.00631680665537715, -0.011453111656010151, -0.05507998168468475, 0.017191097140312195, 0.04603850096464157, 0.02001926302909851, 0.01775375008583069, 0.056531909853219986, 0.030350884422659874, -0.06808245182037354, -0.039125680923461914, -0.012989182025194168, -0.0335470512509346, 0.0027397728990763426, -0.04226649925112724, 0.019156556576490402, 0.029426313936710358, 0.010581698268651962, -0.017237229272723198, -0.025835823267698288, 0.022289197891950607, -0.07106586545705795, -0.006311149336397648, -0.012359919026494026, 0.03217926248908043, 0.004153627436608076, 0.01273638941347599, -0.016159044578671455, -0.06224741041660309, 0.015610053203999996, 0.01995103619992733, 0.003005530685186386, -0.03021111711859703, -0.011240996420383453, 0.019930467009544373, -0.01093844510614872, 0.03136461600661278, -0.018769240006804466, -0.045214347541332245, 0.04879428446292877, 0.06716213375329971, -0.0014445263659581542, 0.024180598556995392, -0.014900478534400463, -0.039673835039138794, -0.005647906102240086, 0.039494335651397705, -0.016945576295256615, 0.013280930928885937, 0.021853720769286156, -0.017406396567821503, 0.0036907244939357042, 0.03198756277561188, 0.028897671028971672, 0.013526078313589096, 0.007630439009517431, -0.008101916871964931, -0.018534237518906593, 0.06061375513672829, -0.01913013681769371, 0.011790437623858452, -0.006814137101173401, -0.06292866170406342, -0.019245170056819916, 0.007547258399426937, -0.008144279941916466, -0.023615697398781776, -0.05235893279314041, 0.03290063515305519, -0.02736246958374977, -0.003829228226095438, -0.009280220605432987, -0.0182819664478302, 0.04949555918574333, 0.03722161427140236, 0.010576440952718258, -0.0016348784556612372, -0.009196987375617027, 0.017693400382995605, 0.018875012174248695, -0.004472438246011734, 0.01927405782043934, -0.027010558173060417, -0.0040156543254852295, 0.029619555920362473, -0.004522256553173065, 0.03640688583254814, 0.02439805120229721, -0.02341204322874546, -0.03418644517660141, 0.037471506744623184, 0.013986477628350258, 0.02808740921318531, 0.03816434368491173, -0.03212115541100502, 0.0045989761129021645, -0.005871295928955078, -0.00672101229429245, -0.015125120058655739, 0.005454266909509897, -0.007771620061248541, 0.019131584092974663, -0.032685186713933945, -0.04814104735851288, -0.0004845203075092286, 0.02332688868045807, 0.01752985082566738, 0.0021372155752032995, -0.053707968443632126, 0.009369044564664364, -0.03781852871179581, 0.036999646574258804, 0.10089518874883652, -0.04284605756402016, 0.0007899610209278762, 0.017609471455216408, 0.026634959504008293, -0.005277324002236128, 0.04570019245147705, -0.04898283630609512, -0.03837599232792854, -0.02146712876856327, -0.03916554152965546, -0.014007890596985817, -0.018535377457737923, -0.015061000362038612, 0.019831234589219093, 0.013231576420366764, 0.008105418644845486, 0.007063065655529499, 0.01703430339694023, -0.0168960802257061, -0.05142343044281006, 0.04396095126867294, 0.027038006111979485, -0.00013209012104198337, 0.028275104239583015, 0.008905837312340736, 0.05158265307545662, -0.04955076798796654, 0.02113746665418148, 0.0265625212341547, -0.024723470211029053, -0.016509730368852615, -0.06885313987731934, -0.0025857866276055574, 0.0018914026441052556, -0.0005306419916450977, 0.01156594417989254, 0.0014456273056566715, -0.0533006452023983, 0.021953999996185303, -0.036132171750068665, -0.027580901980400085, 0.010727481916546822, -0.041579585522413254, 0.013042918406426907, 0.044082436710596085, 0.021685892716050148, 0.010299655608832836, 0.013959975913167, -0.023209886625409126, 0.03628049045801163, -0.05616486072540283, -0.03383135423064232, -0.032709650695323944, -0.03779421001672745, 0.02232052944600582, 0.0022709090262651443, 0.037622660398483276, -0.08299373835325241, 0.044533416628837585, 0.021659042686223984, 0.01332380436360836, 0.07873823493719101, -0.01206038799136877, 0.01669822260737419, -0.041390880942344666, -0.017066212370991707, -0.08988526463508606, -0.010345196351408958, 0.03016260452568531, -0.002212547929957509, -0.047426629811525345, 0.03002890571951866, -0.08177126944065094, 0.044608090072870255, -0.060823746025562286, -0.042472418397665024, 0.05682702735066414, 0.015045354142785072, -0.013605549931526184, 0.015443823300302029, -0.028200706467032433, 0.04169514775276184, 0.04003068804740906, -0.03976602107286453, -0.021702328696846962, -0.00435358053073287, 0.06801553815603256, 0.006741916295140982, -0.025159263983368874, 0.013827306218445301, 0.000060751634009648114, 0.06755363196134567, 0.028085986152291298, 0.010309883393347263, 0.03284677118062973, -0.013953406363725662, 0.05983464792370796, 0.046318892389535904, 0.030581196770071983, -0.012132696807384491, -0.0048247468657791615, 0.01006239838898182, -0.055950459092855453, 0.03564364090561867, 0.030828775838017464, 0.015776244923472404, -0.04458686709403992, 0.04092312231659889, 0.0036891959607601166, -0.021128302440047264, -0.03484968841075897, 0.011269062757492065, -0.06478576362133026, -0.010261503048241138, -0.0244709812104702, 0.016777988523244858, 0.006225204095244408, 0.03909802809357643, -0.01876021735370159, -0.01807079277932644, 0.05604160577058792, 0.014293004758656025, -0.007636640686541796, 0.024297844618558884, 0.050172578543424606, 0.061354439705610275, 0.0482504665851593, 0.00540672754868865, 0.05675090104341507, -0.009027653373777866, -0.0524519607424736, -0.007475271821022034, -0.03189411759376526, -0.027911756187677383, -0.040110182017087936, 0.008075058460235596, 0.07760055363178253, 0.0093330517411232, 0.0527942031621933, -0.009976079687476158, 0.02181803062558174, -0.0049692923203110695, -0.0023234954569488764, -0.003025796264410019, 0.054886408150196075, 0.006972822826355696, 0.04160955175757408, -0.0017356367316097021, -0.05802707001566887, 0.00932332593947649, -0.021460819989442825, 0.0073470440693199635, 0.02698439732193947, -0.02223857492208481, 0.006372788920998573, 0.023954130709171295, 0.0448320172727108, 0.0824362263083458, -0.038222141563892365, -0.020930033177137375, 0.00654851458966732, 0.0539206899702549, 0.007606917060911655, 0.02332327328622341, 0.005588891915977001, -0.007442967034876347, -0.004922874737530947, -0.027592219412326813, -0.00702256802469492, -0.007895033806562424, -0.030666187405586243, 0.03745092451572418, -0.04572286084294319, -0.003955048508942127, 0.03557249903678894, -0.023970238864421844, -0.02451298199594021, -0.04126104339957237, -0.040580373257398605, -0.06680097430944443, -0.07063329219818115, -0.00583305861800909, 0.012050054967403412, -0.03880353644490242, -0.04857936501502991, -0.04124123603105545, 0.014223911799490452, -0.0006080354214645922, 0.007940110750496387, -0.03655542433261871, -0.0378447026014328, 0.000585215981118381, 0.009055008180439472, -0.022070324048399925, 0.009222228080034256, 0.04933004081249237, 0.01336670108139515, -0.039774443954229355, 0.00343998777680099, 0.019280586391687393, 0.01890173740684986, 0.006581748370081186, 0.058483727276325226, -0.08836205303668976, -0.0009127491503022611, 0.017962699756026268, 0.028639361262321472, -0.056626684963703156, 0.01739169843494892, 0.05792791023850441, -0.010466758161783218, 0.0211257915943861, -0.015357652679085732, -0.003580858465284109, -0.039856284856796265, 0.0027989449445158243, -0.02574714832007885, 0.012091477401554585, 0.035248007625341415, 0.009935032576322556, 0.07897691428661346, 0.029488326981663704, 0.0024052192457020283, -0.0023275825660675764, -0.0178219024091959, 0.0041429428383708, -0.0002235376014141366, -0.027343913912773132, -0.032943859696388245, -0.050502926111221313, -0.07020554691553116, 0.02535068430006504, -0.0028178950306028128, -0.04834815114736557, -0.041042689234018326, 0.0013496074825525284, -0.012960835359990597, -0.0156383216381073, 0.04426265135407448, -0.04143537953495979, -0.039284929633140564, -0.0009209940326400101, -0.029576072469353676, 0.0009078019065782428, 0.023188212886452675, 0.018434220924973488, 0.027936628088355064, 0.011307690292596817, -0.0484163798391819, -0.023958908393979073, 0.028460698202252388, 0.03912733495235443, 0.03796320781111717, 0.010124853812158108, 0.03015254996716976 ]
[ -0.057716306298971176, -0.036543022841215134, -0.03423861786723137, 0.00021828596072737128, 0.020808925852179527, -0.06755270063877106, -0.04987705871462822, -0.0015736861387267709, 0.009412828832864761, 0.024459630250930786, 0.03906211256980896, -0.07954472303390503, 0.036372896283864975, -0.014484526589512825, 0.08064568042755127, 0.0175855103880167, -0.025617258623242378, -0.06148276850581169, -0.03429622948169708, 0.0017419153591617942, -0.007977299392223358, -0.029902487993240356, -0.014575633220374584, -0.06316497921943665, 0.0023523331619799137, 0.10574072599411011, -0.006829399149864912, -0.0406232587993145, 0.0005565693136304617, -0.19477127492427826, 0.020386463031172752, -0.022036390379071236, 0.00591215630993247, -0.04995425045490265, 0.05331660062074661, 0.04737351834774017, 0.014799652621150017, 0.03661632165312767, 0.005534385330975056, 0.02866041287779808, 0.0033136531710624695, -0.009959126822650433, -0.06976564973592758, 0.014966841787099838, 0.06369845569133759, -0.025434128940105438, -0.023223239928483963, -0.0259826872497797, -0.009948613122105598, -0.0023785140365362167, -0.03434505686163902, -0.028926456347107887, -0.02326330542564392, -0.02825421653687954, -0.00202287663705647, 0.021473227068781853, 0.03976205736398697, 0.05049358308315277, 0.045749273151159286, 0.0031738916877657175, 0.002964486600831151, 0.016309458762407303, -0.13851624727249146, 0.1009071096777916, 0.04546600207686424, 0.03468916192650795, -0.03854710981249809, -0.05824029818177223, 0.013364615850150585, 0.02971995435655117, -0.021370282396674156, -0.020709747448563576, 0.0009479200816713274, 0.03702852502465248, 0.007380236871540546, -0.031273700296878815, 0.03167388215661049, -0.01175694540143013, 0.07420489192008972, -0.037773068994283676, -0.02617734670639038, -0.008364123292267323, -0.024339834228157997, -0.01774127595126629, 0.0031090693082660437, 0.04708302021026611, -0.017853261902928352, 0.08146708458662033, 0.007934905588626862, 0.0047078183852136135, -0.0008850221056491137, -0.013994277454912663, 0.03996073454618454, 0.036992963403463364, -0.07245927304029465, -0.021127531304955482, 0.049075204879045486, 0.004644257947802544, -0.027557991445064545, 0.3812026381492615, -0.0262568648904562, -0.020009463652968407, 0.024565471336245537, 0.10904131829738617, 0.006463050376623869, -0.058221060782670975, -0.03037211298942566, -0.025851374492049217, 0.011439451016485691, -0.04288759455084801, 0.027316324412822723, -0.03198801353573799, 0.1013399064540863, -0.06015954539179802, 0.030124302953481674, -0.08050881326198578, -0.056212957948446274, 0.018280625343322754, -0.04003247991204262, 0.04837531968951225, -0.018657365813851357, -0.0075188856571912766, 0.04409449175000191, 0.02615758590400219, 0.018641924485564232, 0.047327034175395966, -0.009400145150721073, 0.06479183584451675, 0.01213083416223526, -0.027324771508574486, 0.039025213569402695, -0.04805658757686615, -0.07204251736402512, -0.017491521313786507, 0.002550445729866624, 0.018957773223519325, -0.00003288903826614842, -0.002088753506541252, 0.018122153356671333, 0.004533009137958288, -0.02186446450650692, -0.013028555549681187, 0.04925413429737091, 0.03804562985897064, -0.007760141510516405, 0.10190487653017044, 0.01057477481663227, 0.028082778677344322, -0.06258730590343475, -0.020049825310707092, -0.03248962387442589, 0.028080187737941742, -0.042091745883226395, -0.0116194449365139, 0.014315127395093441, 0.05496430769562721, 0.05261365696787834, -0.003632480511441827, -0.06822358071804047, 0.012247866950929165, -0.05516874045133591, -0.06882151961326599, -0.041123371571302414, -0.0014960741391405463, 0.04643230512738228, -0.11254744976758957, -0.014654938131570816, 0.012108223512768745, -0.013224485330283642, -0.05174364149570465, -0.018483571708202362, -0.019498951733112335, -0.03095911256968975, -0.02024831622838974, 0.039969708770513535, -0.07489302009344101, -0.05168658867478371, -0.00997664500027895, 0.09247686713933945, 0.032208289951086044, 0.018797529861330986, -0.0006862710579298437, 0.005360665265470743, -0.03643100708723068, -0.04306361451745033, -0.07016130536794662, -0.029561566188931465, -0.005021363962441683, 0.002915566321462393, -0.08376802504062653, -0.008961101062595844, -0.019853638485074043, -0.0388110876083374, 0.020201852545142174, -0.013375901617109776, 0.006443052086979151, 0.05740412697196007, -0.000834217353258282, -0.015710078179836273, -0.029165351763367653, 0.02057584561407566, 0.05443185195326805, 0.019767416641116142, 0.01817714422941208, -0.049192313104867935, 0.03842417150735855, 0.03359207883477211, 0.007258915808051825, 0.04652103781700134, 0.034071557223796844, -0.018607785925269127, -0.02716456726193428, -0.016887767240405083, 0.006123726721853018, -0.04345741495490074, -0.029434725642204285, -0.022993458434939384, 0.013557806611061096, -0.006514955777674913, 0.01869688369333744, -0.02426566742360592, -0.051003482192754745, -0.03635217621922493, -0.35538312792778015, -0.002416094997897744, 0.005197558086365461, -0.008574104867875576, 0.010691379196941853, -0.05882056802511215, 0.014047227799892426, -0.03831423819065094, -0.04661162197589874, 0.09400620311498642, 0.09252016991376877, -0.0011360571952536702, 0.02650091052055359, -0.121422678232193, 0.017261408269405365, 0.023117389529943466, -0.017039816826581955, -0.025848854333162308, -0.03317848592996597, 0.00010425890650367364, 0.0006522643379867077, -0.04280702769756317, -0.02281893603503704, -0.02970358543097973, -0.04388893395662308, -0.03785853087902069, 0.14313960075378418, 0.03124881722033024, 0.07878565043210983, -0.0303658414632082, 0.009278304874897003, 0.02060914970934391, -0.020649785175919533, -0.087330162525177, -0.024878043681383133, 0.009309363551437855, 0.041566915810108185, 0.031563855707645416, -0.01032241526991129, -0.02376127801835537, 0.01658204384148121, 0.04601051285862923, -0.0014161677099764347, -0.027524998411536217, -0.004442003555595875, 0.04391486942768097, -0.01205881405621767, -0.000026950914616463706, -0.006145897321403027, 0.07872766256332397, -0.006895595230162144, 0.02165929786860943, -0.009520595893263817, 0.029887180775403976, -0.004240111913532019, 0.02669365704059601, -0.07246556878089905, 0.01497714128345251, -0.0027798369992524385, 0.001298920949921012, 0.022461721673607826, 0.03503355011343956, 0.05183994770050049, -0.0671207383275032, 0.006148223299533129, 0.013415776193141937, 0.017146730795502663, -0.04499351233243942, 0.07078912854194641, 0.04091784358024597, 0.007524402812123299, 0.10477273911237717, 0.027282826602458954, 0.031762879341840744, 0.04594951495528221, 0.0438297763466835, 0.03538379818201065, 0.04770877957344055, 0.04162266477942467, -0.02514217607676983, 0.01297836098819971, -0.005247169639915228, 0.03389623388648033, -0.007388177793473005, 0.024026812985539436, -0.015694763511419296, -0.059011802077293396, -0.025372518226504326, 0.005498535931110382, -0.014601591043174267, -0.011966228485107422, 0.0006424374296329916, -0.02202293649315834, -0.006805919110774994, 0.08172358572483063, 0.01158987171947956, -0.24097806215286255, 0.008730879053473473, 0.06902002543210983, 0.046484511345624924, -0.01972329244017601, 0.01104499027132988, 0.054273899644613266, -0.027463383972644806, 0.0035188107285648584, -0.024510571733117104, -0.016905613243579865, 0.021869320422410965, 0.019873179495334625, -0.022341322153806686, 0.0006230027065612376, -0.035133443772792816, 0.08060424774885178, 0.0068279895931482315, 0.03455854207277298, -0.004156328272074461, -0.002160758012905717, -0.02639544941484928, 0.1261252611875534, 0.002411771100014448, -0.02985086850821972, -0.03467686101794243, -0.0034858956933021545, -0.0005299627664498985, 0.07396326959133148, 0.006372933741658926, 0.015682769939303398, 0.02279151976108551, 0.02137167938053608, 0.0014227806823328137, 0.021957023069262505, -0.024131087586283684, 0.0005595479160547256, 0.03681572526693344, 0.05765466019511223, -0.04042525961995125, -0.011322641745209694, 0.03246951848268509, -0.06349790841341019, 0.05793577805161476, 0.021604808047413826, -0.004929761867970228, 0.043426644057035446, -0.006706178653985262, -0.03883984312415123, -0.0035277416463941336, -0.014460847713053226, -0.03994722291827202, 0.020206311717629433, 0.013416185975074768, 0.023083355277776718, 0.051177728921175, 0.04766196012496948, 0.033815715461969376, -0.012937544845044613, 0.0138356639072299, 0.017075296491384506, -0.08949253708124161, 0.14099140465259552, -0.013065197505056858, -0.02902417629957199 ]
[ 0.046910084784030914, 0.010451005771756172, -0.0029700598679482937, -0.022458113729953766, 0.03180704638361931, -0.01741837151348591, -0.01500357873737812, 0.013493425212800503, -0.026127291843295097, -0.02783730998635292, -0.005467609036713839, 0.010082884691655636, 0.001768902875483036, -0.011669508181512356, 0.029255446046590805, -0.006873391102999449, -0.0024198670871555805, 0.015922825783491135, 0.049076762050390244, 0.033343397080898285, -0.035665981471538544, 0.032259825617074966, 0.020658956840634346, 0.007484724745154381, -0.00176324846688658, 0.009589504450559616, -0.0522010438144207, 0.020924514159560204, 0.025044279173016548, -0.0937485322356224, -0.005612455774098635, -0.01719662733376026, 0.017754757776856422, -0.01596895046532154, 0.017170127481222153, 0.04476035013794899, -0.01582745835185051, -0.01579323224723339, -0.08251439779996872, 0.009450496174395084, -0.004692454822361469, -0.004339363891631365, 0.011915750801563263, 0.014829793944954872, -0.006888995412737131, -0.027417877689003944, 0.02128184773027897, -0.02504311501979828, 0.005582060664892197, 0.019643226638436317, -0.041998058557510376, 0.007209045346826315, -0.007599091622978449, 0.025624550879001617, 0.0041670906357467175, 0.039956606924533844, -0.008512236177921295, -0.023059122264385223, 0.02949747070670128, -0.03773817420005798, -0.024011872708797455, 0.026006249710917473, -0.0083870068192482, -0.03349801152944565, -0.02688111551105976, -0.024433881044387817, -0.009509740397334099, -0.01246730238199234, 0.004124488215893507, 0.02517804689705372, -0.009502812288701534, 0.02808642014861107, -0.015294487588107586, -0.02211739681661129, -0.026886437088251114, 0.002034695353358984, -0.001533155795186758, -0.04990340769290924, 0.022235391661524773, 0.002544761635363102, -0.036558736115694046, 0.016922838985919952, 0.014619397930800915, 0.019942985847592354, 0.013869951479136944, -0.027597174048423767, 0.023860620334744453, 0.010844090953469276, 0.035949788987636566, -0.017233891412615776, -0.015602221712470055, 0.02589641697704792, -0.028634799644351006, 0.051397912204265594, -0.06313557922840118, -0.024032458662986755, 0.016056664288043976, -0.022515101358294487, -0.01067076064646244, 0.8174567222595215, 0.005120042711496353, -0.04029228910803795, 0.03935433551669121, 0.03614600747823715, 0.05129140987992287, 0.013531160540878773, 0.007582776248455048, -0.016006186604499817, -0.012620924971997738, -0.014908896759152412, 0.013460866175591946, 0.004139729309827089, 0.05303025245666504, 0.05318375304341316, 0.08808861672878265, 0.03780497610569, 0.008489313535392284, 0.024543777108192444, -0.012155096977949142, 0.00854515377432108, 0.010563385672867298, -0.003110330319032073, 0.027041997760534286, 0.021913645789027214, 0.002386166714131832, -0.19314619898796082, 0.011337364092469215, -7.409519255477049e-33, -0.03120279312133789, -0.03636583685874939, 0.03978583216667175, -0.006621658336371183, 0.031194880604743958, -0.01417709793895483, -0.01692807301878929, -0.0014252586988732219, -0.012907042168080807, -0.017481006681919098, -0.03851756080985069, -0.02044590748846531, -0.007078671827912331, 0.043925754725933075, 0.040306832641363144, -0.021082282066345215, 0.012652475386857986, 0.039450712502002716, -0.016405312344431877, 0.03064487688243389, 0.03436698764562607, 0.023065930232405663, -0.024359330534934998, 0.025050733238458633, -0.021868618205189705, 0.02923627942800522, 0.04613034427165985, 0.019021371379494667, 0.012213768437504768, -0.037430185824632645, -0.05091262608766556, -0.015940744429826736, -0.010753801092505455, -0.06542550027370453, -0.013381888158619404, -0.03699502721428871, -0.03384097293019295, -0.007321897428482771, -0.050845108926296234, 0.013688898645341396, -0.05659923329949379, -0.005978557746857405, -0.02115950547158718, -0.050459641963243484, -0.03629917651414871, 0.013056953437626362, -0.014640348963439465, 0.0917314887046814, 0.015517267398536205, 0.005156751722097397, -0.0008965617744252086, 0.011455913074314594, -0.023247143253684044, -0.01364089734852314, 0.0028547027613967657, 0.009761804714798927, -0.0249591376632452, 0.005799128208309412, -0.021011436358094215, -0.00034298974787816405, 0.03930390626192093, -0.0361926443874836, 0.005587981082499027, 0.015539426356554031, -0.007249363232403994, -0.010462143458425999, 0.025096608325839043, -0.014000224880874157, -0.028946034610271454, 0.02957695908844471, -0.08935923874378204, 0.02649693749845028, -0.04994601756334305, -0.03323904424905777, 0.03347643464803696, -0.04468020424246788, 0.002036494668573141, 0.005543602164834738, 0.0033469933550804853, 0.03818149119615555, -0.012885257601737976, -0.013155425898730755, -0.0010768364882096648, -0.06157572567462921, -0.03202684596180916, -0.0021808254532516003, 0.0350487157702446, 0.010712074115872383, -0.01782810315489769, -0.00781953614205122, 0.02822176180779934, 0.010913839563727379, 0.0071054561994969845, 0.0019529765704646707, -0.05178520083427429, 7.514914813655745e-33, -0.021964795887470245, 0.020557580515742302, -0.018058616667985916, 0.025684276595711708, 0.008148150518536568, -0.006808652076870203, 0.06443929672241211, 0.000030187969969119877, -0.024618329480290413, -0.006110696122050285, -0.032912202179431915, -0.04338831454515457, -0.017873071134090424, 0.020069284364581108, 0.04627182334661484, 0.022666195407509804, -0.0038224647287279367, 0.034552592784166336, 0.024185972288250923, -0.02303553931415081, -0.044824667274951935, 0.015689242631196976, 0.019652102142572403, 0.004913948941975832, -0.0015376120572909713, 0.04427613690495491, 0.013393055647611618, -0.010004979558289051, -0.035567644983530045, 0.00023678288562223315, -0.019809188321232796, -0.000318051315844059, -0.015281091444194317, -0.027427369728684425, 0.026797618716955185, 0.05413094162940979, -0.0023041474632918835, -0.029439115896821022, -0.027614200487732887, 0.015284692868590355, 0.028432514518499374, 0.02841874212026596, -0.037828102707862854, 0.012327154166996479, -0.027920134365558624, 0.028682883828878403, -0.003505358938127756, 0.044338904321193695, 0.011580205522477627, -0.019409725442528725, -0.042708851397037506, 0.024536101147532463, 0.053248513489961624, 0.009160897694528103, 0.020873606204986572, -0.028546415269374847, -0.0026389912236481905, 0.0777084082365036, -0.033722132444381714, -0.011353103443980217, -0.019253281876444817, -0.024140391498804092, -0.017038516700267792, 0.011119680479168892, -0.013607800006866455, 0.006884570699185133, -0.06606486439704895, -0.017411284148693085, 0.005955573637038469, -0.005654914770275354, 0.011561542749404907, -0.00023962173145264387, -0.010303693823516369, 0.030214495956897736, 0.010116429068148136, 0.014564352110028267, 0.011694223619997501, -0.013300595805048943, -0.03188337758183479, 0.0022804290056228638, 0.03735271096229553, 0.012742528691887856, 0.05428895354270935, 0.014221252873539925, -0.03177008032798767, 0.02416233904659748, -0.028584035113453865, -0.010609009303152561, 0.01786482147872448, 0.00783482939004898, 0.013448555953800678, -0.007143402472138405, -0.0224738921970129, 0.026770247146487236, -0.001692460966296494, -1.2873667465385097e-8, -0.02106231451034546, 0.018464481458067894, 0.0022275783121585846, -0.007174197118729353, 0.014720338396728039, 0.05476576089859009, 0.0004608035378623754, 0.03226722404360771, -0.009250976145267487, 0.02710726670920849, 0.006114085204899311, -0.021093197166919708, -0.01705261319875717, 0.006353573873639107, 0.0020694390404969454, 0.012118378654122353, -0.03240275755524635, 0.011631468310952187, 0.02973310835659504, -0.019083106890320778, 0.009569051675498486, 0.046020157635211945, -0.014275099150836468, 0.012204007245600224, -0.029477113857865334, 0.006840394344180822, 0.025506898760795593, -0.07182411849498749, -0.009168516844511032, 0.009874416515231133, -0.007506792899221182, -0.048506785184144974, -0.05250062793493271, 0.019620882347226143, -0.03624112904071808, -0.0011995206587016582, -0.030392194166779518, 0.031365275382995605, 0.04058072343468666, 0.015730271115899086, -0.03411678597331047, 0.011526782996952534, 0.03309495002031326, -0.05494673550128937, 0.0007059507188387215, 0.023699689656496048, -0.03301406279206276, 0.010186771862208843, 0.0027312980964779854, 0.002082051010802388, 0.03291545808315277, -0.004466014448553324, 0.01604527421295643, 0.007287632208317518, 0.012617958709597588, -0.008260022848844528, -0.002388632856309414, -0.03276646509766579, -0.03263755887746811, -0.007632547058165073, -0.01108932588249445, 0.018636047840118408, 0.001571183791384101, -0.019766218960285187 ]
python-runtime-error-osx-matplotlib-not-installed-as-framework-mac
https://markhneedham.com/blog/2018/05/04/python-runtime-error-osx-matplotlib-not-installed-as-framework-mac
false
2018-05-05 00:31:34
Tensorflow 1.8: Hello World using the Estimator API
[ "python", "machine-learning", "tensorflow", "data-science" ]
[ "Machine Learning" ]
Over the last week I've been going over various Tensorflow tutorials and one of the best ones when getting started is Sidath Asiri's https://towardsdatascience.com/hello-world-in-tensorflow-973e6c38e8ed[Hello World in TensorFlow^], which shows how to build a simple linear classifier on the Iris dataset. I'll use the same data as Sidath, so if you want to follow along you'll need to download these files: * http://download.tensorflow.org/data/iris_training.csv[iris_training.csv^] * http://download.tensorflow.org/data/iris_test.csv[iris_test.csv] == Loading data The way we load data will remain exactly the same - we'll still be reading it into a Pandas dataframe: [source,python] ---- import pandas as pd import tensorflow as tf train_data = pd.read_csv("iris_training.csv", names=['f1', 'f2', 'f3', 'f4', 'f5']) test_data = pd.read_csv("iris_test.csv", names=['f1', 'f2', 'f3', 'f4', 'f5']) ---- The next bit is slightly different though. We want to split these dataframes into features ('X') and labels ('Y'). The label is a value 1, 2, or 3, which indicates which type of flower that row represents. In Sidath's tutorial he created a one hot encoding for those values, such that: [source,text] ---- 0 -> [1,0,0] 1 -> [0,1,0] 2 -> [0,0,1] ---- We won't do that. Instead we'll leave that column as a single value. [source,python] ---- train_x = train_data[['f1', 'f2', 'f3', 'f4']] train_y = train_data.ix[:, 'f5'] test_x = test_data[['f1', 'f2', 'f3', 'f4']] test_y = test_data.ix[:, 'f5'] ---- == Defining features Next we need to define our features in terms of Tensors. There are some quite nice helper functions that can help us out here: [source,python] ---- feature_columns = [tf.feature_column.numeric_column(key=key) for key in train_x.keys()] ---- == Creating the classifier And finally we can create our classifier! [source,python] ---- classifier = tf.estimator.LinearClassifier(feature_columns=feature_columns, n_classes=3) ---- We feed in the features that we created above and we tell the classifier that it should be predicting 3 classes. == Training the classifier Now we need to train our model. To do this we need to https://www.tensorflow.org/programmers_guide/estimators[create an input function^] that returns a tuple containing: * a dictionary in which the keys are feature names and the values are Tensors (or SparseTensors) containing the corresponding feature data * a Tensor containing one or more labels I spent a while going around in circles trying to figure out how to do this but eventually stumbled across a helpful example from the https://github.com/tensorflow/models/blob/master/samples/core/get_started/iris_data.py#L30[Tensorflow samples^] repository. This is what our function looks like: [source,python] ---- def train_input_fn(features, labels, batch_size): dataset = tf.data.Dataset.from_tensor_slices((dict(features), labels)) return dataset.shuffle(1000).repeat().batch(batch_size) ---- And now we can use it to feed data into the `train` function: [source,python] ---- classifier.train( input_fn=lambda: train_input_fn(train_x, train_y, 100), steps=2000) ---- So far so good! == Evaluating the classifier Finally we can evaluate how well our model is doing. We'll create another input function, but this one won't bother shuffling the data: [source,python] ---- def eval_input_fn(features, labels, batch_size): features = dict(features) inputs = (features, labels) dataset = tf.data.Dataset.from_tensor_slices(inputs) assert batch_size is not None, "batch_size must not be None" return dataset.batch(batch_size) ---- And now we can call the `evaluate` function: [source,python] ---- eval_result = classifier.evaluate( input_fn=lambda: eval_input_fn(test_x, test_y, 100)) print('\nTest set accuracy: {accuracy:0.3f}\n'.format(**eval_result)) ---- If we run the program we'll see the following output: [source,python] ---- $ python iris_estimator.py Test set accuracy: 0.967 ---- == All the codez Below you can see https://gist.github.com/mneedham/12754c600fc99c8cbaa626e126337966[all the code in one script^] that you can try out yourself. ++++ <script src="https://gist.github.com/mneedham/12754c600fc99c8cbaa626e126337966.js"></script> ++++
A simple tutorial to help you get started with Tensorflow using the Estimator API released in Tensorflow 1.4, using the Iris dataset.
null
[ 0.004375511780381203, -0.026113979518413544, -0.03948641195893288, 0.05936083197593689, 0.0771714299917221, 0.028498975560069084, -0.004119947087019682, 0.04531378671526909, 0.011574743315577507, -0.006215131375938654, -0.011588925495743752, 0.00585898058488965, -0.08415583521127701, 0.027271416038274765, -0.029573142528533936, 0.07907990366220474, 0.07839185744524002, -0.0017739995382726192, 0.03676030784845352, 0.03504880890250206, 0.013717777095735073, 0.04306761547923088, -0.019153764471411705, 0.03466811776161194, 0.024891361594200134, -0.012339120730757713, 0.010496978648006916, 0.018405525013804436, -0.031933676451444626, 0.0020701640751212835, 0.03716793283820152, -0.002197908703237772, -0.011670548468828201, -0.02007633075118065, 0.0381336435675621, 0.015348591841757298, -0.03298374265432358, 0.03310655429959297, 0.010462763719260693, 0.01636509783565998, -0.0780731588602066, 0.031339555978775024, -0.029898514971137047, 0.025763504207134247, -0.06254389137029648, 0.009733959101140499, -0.050161994993686676, 0.013695623725652695, -0.011901754885911942, 0.006855296436697245, -0.05288153886795044, 0.01938461884856224, 0.005222037434577942, -0.047202106565237045, 0.019464654847979546, 0.028049437329173088, 0.00035318711888976395, -0.0776943564414978, 0.041724663227796555, -0.020319698378443718, 0.010684497654438019, -0.012754649855196476, 0.02039921097457409, 0.02131476067006588, 0.010572499595582485, -0.04152374714612961, 0.008392425253987312, 0.042007479816675186, -0.043100275099277496, -0.010592782869935036, 0.003946330398321152, 0.033216241747140884, -0.019108939915895462, 0.014627688564360142, -0.017236197367310524, -0.04062289372086525, -0.018611406907439232, 0.03946980834007263, 0.03701482713222504, 0.027029259130358696, -0.02714420296251774, 0.001952477963641286, 0.04237990081310272, 0.0079721100628376, 0.004356157034635544, -0.031760070472955704, -0.05608588457107544, -0.02178037539124489, -0.06412024796009064, 0.042536649852991104, 0.014227920211851597, -0.04515878111124039, 0.02397557534277439, 0.012936047278344631, -0.04065313935279846, 0.013908800669014454, -0.0002843774273060262, -0.023113926872611046, -0.005965905729681253, -0.003120115725323558, -0.033879078924655914, -0.021874981001019478, 0.003916087094694376, 0.029971309006214142, -0.0705181285738945, -0.004048984497785568, -0.01248202845454216, -0.0193172600120306, 0.026437992230057716, 0.011429905891418457, -0.02926158532500267, -0.019253943115472794, -0.016897102817893028, -0.03066720999777317, -0.11032810807228088, 0.029079435393214226, 0.003206170629709959, -0.0246738214045763, -0.020886655896902084, 0.00508651090785861, 0.06735266000032425, 0.049107279628515244, -0.018881164491176605, 0.050120994448661804, 0.011296185664832592, 0.031227778643369675, 0.0000761595438234508, 0.061689574271440506, -0.0052077891305089, -0.0645129531621933, -0.029500886797904968, 0.03784280642867088, -0.009941347874701023, 0.001538615208119154, 0.009274299256503582, -0.040669605135917664, -0.009075670503079891, 0.010620134882628918, 0.04895204305648804, 0.015283913351595402, 0.0318605937063694, -0.004923990927636623, 0.007254252675920725, -0.0013369574444368482, 0.029229339212179184, 0.00941382721066475, 0.0025791593361645937, -0.023589298129081726, -0.05327710509300232, 0.006599383428692818, -0.004637254402041435, 0.0037833789829164743, 0.05004239082336426, -0.037984076887369156, -0.00007496938633266836, 0.08272188901901245, 0.019556401297450066, 0.014833187684416771, -0.003366363001987338, 0.015346672385931015, 0.03882076218724251, 0.026310019195079803, 0.002035300014540553, 0.029718877747654915, 0.010949759744107723, -0.03702002763748169, 0.04154137894511223, 0.05667659640312195, -0.04181026667356491, 0.03030703403055668, -0.05649342015385628, -0.0426802933216095, 0.06068338453769684, -0.027106383815407753, -0.009513436816632748, 0.04015262797474861, 0.0724019780755043, 0.032249122858047485, 0.04146363586187363, -0.008871929720044136, -0.08571397513151169, 0.046977728605270386, 0.01313293818384409, 0.04600017890334129, 0.026715155690908432, -0.007443580776453018, 0.08353443443775177, 0.0012231942964717746, 0.018233342096209526, 0.03570903092622757, -0.0676274523139, -0.030500689521431923, -0.03847446292638779, 0.006224131677299738, 0.04745035246014595, -0.04279185086488724, 0.02059764973819256, 0.06956274807453156, -0.00023025553673505783, 0.03251687064766884, 0.04607938602566719, -0.01391358021646738, 0.0169505774974823, -0.03891074284911156, -0.043443113565444946, 0.042801786214113235, 0.036108192056417465, -0.038839615881443024, -0.01305344421416521, 0.010844120755791664, -0.0026501852553337812, -0.007074223831295967, 0.015900464728474617, -0.017363935708999634, 0.049146492034196854, 0.042517829686403275, 0.016295885667204857, 0.0025175190530717373, 0.056692805141210556, -0.049842581152915955, 0.029549576342105865, -0.007819999940693378, -0.02370113879442215, -0.040722303092479706, -0.007242200896143913, 0.1350872963666916, 0.05940134450793266, 0.0011430116137489676, -0.05567462369799614, -0.0008499940158799291, 0.0028833323158323765, -0.04927484318614006, 0.0032986088190227747, -0.008760398253798485, -0.0011813382152467966, -0.0019008528906852007, -0.03612707555294037, -0.047456517815589905, 0.0344434529542923, -0.02397315390408039, -0.005042921751737595, 0.06401986628770828, -0.029757047072052956, 0.0421789325773716, 0.010476439259946346, -0.02765001356601715, 0.009657499380409718, -0.01936640404164791, -0.06443876773118973, 0.004947187379002571, 0.0035864878445863724, 0.005609188694506884, 0.023014234378933907, -0.017749886959791183, -0.03872636705636978, -0.012118560262024403, -0.07279946655035019, 0.03155769035220146, 0.06538889557123184, 0.06584513187408447, 0.0039624436758458614, 0.061744023114442825, -0.04363582655787468, 0.017429163679480553, -0.010234575718641281, -0.05979946255683899, -0.027025671675801277, -0.04346879944205284, 0.04387696832418442, 0.028508134186267853, 0.023806963115930557, 0.013181605376303196, 0.010613889433443546, 0.024097340181469917, -0.01953277923166752, 0.006816372741013765, 0.04186619073152542, 0.013197774067521095, -0.026893168687820435, -0.04866774380207062, -0.020014116540551186, 0.056661225855350494, -0.01602485403418541, -0.002348726848140359, -0.012720233760774136, -0.07004434615373611, 0.03809693828225136, -0.04588084667921066, -0.03975904732942581, -0.030381396412849426, -0.008712594397366047, 0.055654674768447876, 0.016709119081497192, -0.007564664352685213, 0.030916379764676094, 0.04528564214706421, 0.004620109684765339, 0.033587660640478134, 0.013090604916214943, 0.04789429157972336, 0.002203162759542465, 0.03451104834675789, 0.06574537605047226, 0.00841914489865303, -0.03294502943754196, -0.04693223908543587, 0.017361097037792206, -0.01743881218135357, -0.26938557624816895, 0.024650799110531807, 0.01182340644299984, -0.035069540143013, 0.010452202521264553, -0.05714234709739685, 0.002634872682392597, -0.024632981047034264, -0.014973754063248634, 0.0025721024721860886, -0.0475558377802372, -0.022031405940651894, -0.01332209911197424, 0.042160674929618835, 0.0015795809449627995, 0.01667221635580063, 0.007483163382858038, -0.04111532121896744, 0.04029806703329086, 0.07712182402610779, -0.009340946562588215, -0.058257635682821274, -0.021680323407053947, 0.0942465215921402, 0.013768195174634457, 0.05759625509381294, -0.08033767342567444, 0.00817033089697361, -0.06646861881017685, -0.012495435774326324, -0.008944513276219368, -0.023332083597779274, -0.0053216880187392235, 0.0029214408714324236, 0.004603520501405001, -0.04260721430182457, 0.02513287216424942, -0.0008577529806643724, 0.003230106318369508, 0.010197347030043602, -0.01677708327770233, -0.03016168251633644, -0.0011252027470618486, -0.012090225704014301, 0.07115031033754349, -0.0013416747096925974, -0.060161348432302475, 0.004631299525499344, -0.028317317366600037, 0.05907236412167549, -0.04657427966594696, -0.05113996937870979, -0.02101726457476616, 0.040670085698366165, -0.027265746146440506, 0.017502261325716972, 0.016952315345406532, -0.007638451177626848, -0.0193596500903368, -0.02431027963757515, -0.025741038843989372, -0.04913749545812607, -0.009836765006184578, -0.07320147007703781, -0.016383768990635872, -0.04748719930648804, -0.06698166579008102, -0.013650321401655674, 0.04479271546006203, 0.055541157722473145, -0.04185490310192108, 0.008789530955255032, -0.0034082583151757717, -0.09898525476455688, 0.02347642369568348, -0.027041945606470108, -0.009521531872451305, -0.002985979663208127, 0.028306543827056885, 0.07361295819282532, -0.046167194843292236, -0.10456912219524384, 0.05944600701332092, -0.01311530265957117, 0.0053075337782502174, -0.022120917215943336, 0.041404422372579575, -0.005430467426776886, 0.015646426007151604, -0.01692061685025692, 0.053538862615823746, -0.025217995047569275, -0.010806441307067871, -0.025886651128530502, -0.02849455177783966, 0.04678264260292053, 0.03446607664227486, 0.02292799763381481, 0.012521992437541485, 0.04207894578576088, 0.029001707211136818, -0.061006367206573486, -0.027782415971159935, -0.04246475175023079, -0.023494690656661987, -0.007577382493764162, -0.04948839917778969, 0.007886418141424656, 0.0468817800283432, 0.00546589819714427, -0.022148871794342995, -0.03994244709610939, 0.017498847097158432, -0.053089648485183716, -0.00023486913414672017, -0.012756788171827793, 0.03368657827377319, -0.0002119338751072064, -0.005009562708437443, 0.005988782737404108, -0.03926889970898628, 0.026390137150883675, -0.010547860525548458, -0.026652058586478233, -0.03880907967686653, -0.02908172458410263, 0.011251462623476982, -0.02671368233859539, -0.024583574384450912, -0.008025758899748325, -0.03243173658847809, 0.03049808368086815, 0.012527733109891415, -0.028196481987833977, 0.01959322579205036, -0.020201975479722023, -0.0190335214138031, -0.031079623848199844, 0.017590878531336784, 0.012185482308268547, 0.0003607498074416071, -0.0027850810438394547, -0.003064206335693598, 0.005826018285006285, 0.040051136165857315, 0.04677896574139595, -0.005817057099193335, -0.004091448150575161, 0.013751251623034477, -0.025176020339131355, 0.027081623673439026, -0.02766307257115841, -0.001389954937621951, -0.003030981868505478, -0.036560069769620895, 0.0029575759544968605, 0.011800355277955532, -0.018284758552908897, -0.013447035104036331, -0.03227003291249275, 0.012856381013989449, -0.022136596962809563, -0.01017842348664999, -0.03296051174402237, 0.02963431365787983, 0.06090622767806053, 0.021511070430278778, -0.014593193307518959, 0.002276601968333125, -0.010783235542476177, 0.009802538901567459, 0.008596793748438358, -0.01613681949675083, 0.00007595806528115645, -0.007329350337386131, -0.006566893775016069, 0.03432006016373634, 0.02647634968161583, 0.0313158743083477, 0.01901119202375412, -0.022080693393945694, -0.007555834949016571, 0.014255496673285961, -0.0020968050230294466, 0.06069116294384003, 0.07699640095233917, -0.03833762928843498, 0.008958615362644196, -0.035753220319747925, -0.016076115891337395, -0.03445325791835785, 0.01351376622915268, -0.025013092905282974, 0.006604245398193598, -0.026168309152126312, -0.05848046392202377, 0.0060719712637364864, 0.0208909809589386, -0.00025188771542161703, -0.0019665760919451714, -0.03123674914240837, 0.0023209387436509132, -0.01817290484905243, 0.024296682327985764, 0.05613984540104866, -0.05810435116291046, -0.011821167543530464, 0.02090846747159958, 0.006712747737765312, -0.007856656797230244, 0.037725191563367844, -0.06523071974515915, -0.015964796766638756, -0.04066569358110428, 0.0033084372989833355, -0.03781440109014511, -0.04983723163604736, -0.031459785997867584, 0.029396194964647293, -0.013872823677957058, 0.021027566865086555, -0.016405900940299034, 0.027561498805880547, -0.02259829081594944, -0.01807004027068615, 0.02197258360683918, 0.021445950493216515, -0.002811536891385913, 0.008089140988886356, 0.002238648245111108, -0.006384058855473995, -0.015184533782303333, 0.04102323576807976, 0.027734413743019104, -0.043007753789424896, -0.025353077799081802, -0.03353015333414078, 0.019900746643543243, -0.010365243069827557, 0.029651949182152748, 0.0070145875215530396, -0.0004829544050153345, -0.04944201558828354, 0.013052182272076607, -0.032071467489004135, 0.007414217572659254, 0.0012210420100018382, -0.027292435988783836, 0.019916905090212822, 0.009304904378950596, 0.022061534225940704, 0.02820468321442604, -0.01784083992242813, -0.0640198290348053, 0.051020365208387375, -0.05655506253242493, -0.021374700590968132, -0.03313319757580757, -0.0418555922806263, 0.012833472341299057, 0.016825474798679352, 0.010757828131318092, -0.0329059362411499, 0.047426383942365646, 0.03842932730913162, 0.01498654205352068, 0.05204405635595322, 0.013268762268126011, 0.04441823065280914, -0.03515682741999626, -0.014058518223464489, -0.084388867020607, -0.0139002725481987, 0.0551944300532341, -0.008327953517436981, -0.011676475405693054, -0.014116588979959488, -0.03205696865916252, 0.025519132614135742, -0.06380417197942734, -0.034352343529462814, 0.019688613712787628, -0.014917735010385513, 0.013933753594756126, -0.01476035825908184, -0.04827897623181343, 0.031940001994371414, 0.04370790719985962, -0.05203089118003845, -0.013133476488292217, -0.02525891736149788, 0.06326286494731903, -0.029543045908212662, -0.0022773698437958956, -0.005759764928370714, 0.009181931614875793, 0.06759753078222275, 0.02554955706000328, 0.019619056954979897, 0.03249942511320114, -0.0015483490424230695, 0.06811518222093582, 0.005394601263105869, -0.047669075429439545, -0.010571659542620182, 0.029966289177536964, 0.007298803888261318, -0.07331229746341705, 0.04805004224181175, 0.004799223504960537, -0.008876494131982327, -0.04700322076678276, 0.07119765877723694, 0.022413266822695732, -0.03362444043159485, -0.043462954461574554, 0.01784243807196617, -0.0374874472618103, -0.00240052561275661, 0.007498260587453842, 0.0013156312052160501, -0.02211000584065914, 0.06795798242092133, -0.010436154901981354, -0.027833299711346626, 0.06060656160116196, -0.004951900336891413, -0.009603179059922695, 0.01592801697552204, 0.07080719619989395, 0.08031593263149261, 0.04875217378139496, -0.0028491776902228594, 0.05324667692184448, -0.007356878370046616, -0.06509280204772949, 0.057501696050167084, -0.020240575075149536, -0.005386986304074526, -0.01872246153652668, 0.014192703180015087, 0.07400845736265182, 0.005291011184453964, 0.05841824412345886, -0.030490241944789886, 0.028826989233493805, 0.00006132364069344476, 0.04138487949967384, -0.0038218258414417505, 0.03103403002023697, -0.003721709130331874, 0.004835471045225859, -0.0036763136740773916, -0.059019625186920166, 0.016835926100611687, -0.006001144181936979, -0.015763074159622192, 0.009871279820799828, -0.031125182285904884, 0.0027034080121666193, 0.0038930908776819706, 0.0633508712053299, 0.08652181178331375, -0.03918285667896271, -0.016705816611647606, 0.003266461892053485, 0.022428341209888458, -0.015355595387518406, 0.02065732330083847, 0.00034451609826646745, -0.02867887169122696, 0.0003518017765600234, -0.04067520424723625, -0.011717102490365505, -0.007613458205014467, -0.008420290425419807, -0.004770142026245594, -0.030554654076695442, -0.01874261535704136, 0.055942270904779434, 0.01462494395673275, -0.02748483419418335, -0.04575777426362038, -0.04542239010334015, -0.04529885575175285, -0.07197173684835434, -0.030666451901197433, 0.004450591746717691, -0.0108713423833251, -0.01883724331855774, -0.04829774796962738, -0.033244527876377106, -0.01394609920680523, 0.0350189283490181, -0.04101817309856415, -0.02101472020149231, 0.0012459433637559414, 0.030539968982338905, 0.004779016133397818, 0.003514146665111184, 0.04110824316740036, 0.023964902386069298, -0.01512423250824213, -0.010345185175538063, 0.02234436757862568, 0.047930989414453506, 0.014417453669011593, 0.013691277243196964, -0.092693991959095, 0.007896484807133675, 0.014757132157683372, -0.0203902255743742, -0.09256351739168167, 0.024253787472844124, 0.0479603186249733, 0.017015021294355392, 0.03383854776620865, 0.010914783924818039, -0.011204072274267673, -0.05413918197154999, -0.05026843398809433, 0.008032320067286491, 0.003573331981897354, 0.047099534422159195, -0.01092758122831583, 0.07502669841051102, 0.054923828691244125, 0.0159728042781353, -0.04448998346924782, -0.013287670910358429, 0.002897080732509494, 0.016118232160806656, -0.0450202152132988, -0.03622037172317505, -0.050898678600788116, -0.06849700212478638, -0.0037388496566563845, 0.025203274562954903, -0.04595999792218208, -0.03604849800467491, 0.01876109279692173, -0.006984045263379812, -0.016104815527796745, 0.024329179897904396, -0.04084521904587746, -0.020672088488936424, -0.01976710930466652, -0.025193072855472565, -0.027637897059321404, 0.09101767838001251, -0.0054200561717152596, 0.038096826523542404, 0.018639029935002327, -0.03359005227684975, -0.013125426135957241, -0.0024946846533566713, 0.042145390063524246, 0.04757048934698105, -0.016515275463461876, 0.025052765384316444 ]
[ -0.053674302995204926, -0.02965516969561577, -0.027824508026242256, 0.0009769781026989222, 0.06380809843540192, -0.03480313718318939, -0.004481674171984196, 0.005380221642553806, 0.008498365990817547, -0.001184904482215643, 0.002683996455743909, -0.09777576476335526, -0.01810051128268242, -0.01741003431379795, 0.07946634292602539, 0.0029101839754730463, 0.005846391431987286, -0.05659615620970726, -0.07041427493095398, 0.016945071518421173, 0.011837592348456383, -0.05092713609337807, -0.048810843378305435, -0.038751162588596344, -0.004543870687484741, 0.02003483474254608, 0.0414445698261261, -0.06131601333618164, -0.009051368571817875, -0.21228963136672974, 0.03766050562262535, 0.00709670502692461, 0.03494657948613167, -0.017084795981645584, 0.015238787978887558, 0.016318760812282562, 0.021603217348456383, 0.031246038153767586, -0.036941614001989365, 0.0333922915160656, 0.00436773058027029, -0.02586267702281475, -0.07524597644805908, -0.03721322491765022, 0.0661272183060646, -0.011613830924034119, -0.01674341969192028, -0.026408037170767784, -0.01770811527967453, -0.005607954692095518, -0.051300425082445145, -0.023478668183088303, -0.013642467558383942, -0.03091260977089405, 0.0038868787232786417, 0.027688540518283844, 0.061776112765073776, 0.050683505833148956, 0.04305174574255943, 0.02107691392302513, -0.004158297553658485, 0.004419529810547829, -0.13173522055149078, 0.08693521469831467, -0.0012416837271302938, 0.03282647579908371, -0.02966647781431675, -0.0570857934653759, -0.011000469326972961, 0.08190590888261795, 0.003320606192573905, -0.0026554670184850693, -0.018627671524882317, 0.026946209371089935, 0.013960540294647217, 0.0012386917369440198, 0.015315302647650242, 0.014440163038671017, 0.05158690735697746, -0.004052069969475269, -0.04090069234371185, 0.023118633776903152, -0.025302274152636528, -0.021689023822546005, 0.015338320285081863, 0.017856094986200333, -0.018955541774630547, 0.044936493039131165, 0.005598500836640596, 0.013755456544458866, 0.011987912468612194, -0.027823444455862045, -0.0013682395219802856, 0.03980688378214836, -0.03820602223277092, -0.04759952425956726, 0.014068104326725006, 0.019505273550748825, -0.0266670323908329, 0.37415701150894165, -0.053713664412498474, -0.022088393568992615, 0.010419616475701332, 0.04434674233198166, 0.003938639536499977, -0.024096591398119926, -0.0027327043935656548, -0.048354703933000565, -0.003396090818569064, -0.04598157852888107, -0.014550657011568546, -0.008117889985442162, 0.0374361127614975, -0.07185762375593185, -0.017851846292614937, 0.005518501624464989, -0.014244086109101772, -0.0016998847713693976, -0.017090141773223877, 0.039074063301086426, 0.008496730588376522, -0.023996777832508087, 0.04425143450498581, 0.010428198613226414, 0.022126207128167152, 0.02697613649070263, 0.02937288023531437, 0.06651966273784637, 0.025824202224612236, 0.027892548590898514, 0.03784237056970596, -0.025796670466661453, -0.10521738976240158, -0.013932060450315475, 0.02004406414926052, 0.018225714564323425, 0.045575227588415146, -0.01588999107480049, -0.012302818708121777, 0.04350568726658821, -0.014170789159834385, -0.0043256087228655815, 0.07895714044570923, 0.0025683664716780186, -0.020184101536870003, 0.1586110144853592, -0.036574751138687134, -0.014109115116298199, -0.020147908478975296, -0.054582372307777405, 0.0007110002916306257, 0.03500184044241905, -0.0003429125063121319, -0.050627633929252625, 0.033515799790620804, 0.05130642652511597, 0.08628492057323456, -0.02876390889286995, -0.08833961933851242, -0.009901411831378937, -0.02902105450630188, -0.07589783519506454, -0.04084552824497223, 0.03678102791309357, 0.05587983503937721, -0.10677409172058105, -0.03181132674217224, 0.0073093450628221035, 0.007831997238099575, -0.04408396780490875, 0.028754716739058495, -0.01115931011736393, -0.020464420318603516, 0.0010159002849832177, 0.05165044590830803, -0.02480553276836872, -0.04163172096014023, 0.006741603370755911, 0.058355290442705154, 0.0285255815833807, -0.015592285431921482, 0.008278599940240383, -0.004552978556603193, 0.014006632380187511, -0.061121586710214615, -0.058547429740428925, -0.022524593397974968, -0.0248839370906353, -0.04916151240468025, -0.05088569223880768, -0.0208126213401556, 0.0008464472484774888, -0.055000972002744675, 0.05915532633662224, -0.026289060711860657, -0.015092043206095695, 0.0438687689602375, 0.017038267105817795, -0.045796364545822144, -0.033615317195653915, -0.025327228009700775, 0.059212639927864075, 0.011003810912370682, 0.012270241044461727, -0.05756128951907158, 0.04280298948287964, 0.029994506388902664, -0.02613348886370659, 0.0702260211110115, 0.05380326136946678, 0.008704916574060917, -0.016093581914901733, -0.007292746566236019, 0.007911563850939274, -0.04023084416985512, -0.0004514052998274565, 0.00683418707922101, -0.001097978325560689, -0.0077197658829391, 0.046104028820991516, -0.002582767279818654, -0.05328528583049774, -0.036162033677101135, -0.3631835877895355, -0.025953691452741623, 0.008209441788494587, -0.04280915856361389, 0.0206748079508543, -0.054726727306842804, 0.03647671639919281, 0.010327404364943504, 0.00623730942606926, 0.02610633708536625, 0.11872554570436478, -0.0018292104359716177, -0.002850280376151204, -0.11332523822784424, -0.016142074018716812, 0.02282712422311306, -0.001727319322526455, -0.038973983377218246, -0.04570308327674866, 0.037645917385816574, 0.010670099407434464, 0.007454925216734409, 0.03183609992265701, -0.04747231677174568, -0.004532140679657459, -0.025331757962703705, 0.1284140944480896, -0.013081790879368782, 0.08007263392210007, -0.052606455981731415, 0.027065971866250038, 0.016767719760537148, 0.0005698255263268948, -0.05233223736286163, 0.04209190979599953, -0.06115446239709854, 0.011179144494235516, 0.019496697932481766, 0.010114778764545918, -0.012842580676078796, -0.015057561919093132, 0.04783756658434868, -0.008340143598616123, -0.06275071948766708, -0.028039751574397087, 0.02124526910483837, -0.01745244860649109, -0.028194133192300797, -0.028079893440008163, 0.07537607103586197, 0.0047554513439536095, 0.0077680908143520355, 0.019835665822029114, 0.00841501634567976, 0.027106042951345444, -0.01782993972301483, -0.07955567538738251, 0.016672935336828232, -0.02904319390654564, -0.02396908402442932, 0.04408003017306328, 0.0115693723782897, 0.056751612573862076, -0.06956421583890915, -0.0023911292664706707, -0.009190019220113754, -0.006640209350734949, -0.009156675077974796, 0.05644862726330757, -0.014537586830556393, -0.03534979373216629, 0.0760602205991745, 0.014254089444875717, 0.027003198862075806, 0.09291685372591019, 0.043923795223236084, -0.019020816311240196, 0.024058522656559944, 0.013352886773645878, 0.009943622164428234, 0.04835924878716469, -0.018401730805635452, 0.02967379428446293, -0.002633738564327359, 0.039921004325151443, 0.017314983531832695, 0.006878472398966551, -0.024776386097073555, 0.04180141165852547, 0.023053094744682312, -0.006464178673923016, -0.0061536370776593685, -0.023740550503134727, -0.00022651524341199547, 0.08632249385118484, -0.018865490332245827, -0.2595386505126953, 0.03877366706728935, 0.07945568859577179, 0.08486790210008621, 0.0018201314378529787, -0.012834611348807812, 0.04977205768227577, -0.06777689605951309, -0.008586149662733078, -0.016465650871396065, -0.004759005270898342, 0.025946417823433876, 0.05760997161269188, -0.005471029784530401, -0.012011098675429821, -0.001197321806102991, 0.07607783377170563, -0.010160560719668865, 0.028031662106513977, -0.022113123908638954, 0.0034789463970810175, -0.020543234422802925, 0.16269941627979279, 0.004275958985090256, -0.026739202439785004, -0.01913091540336609, -0.03986983001232147, -0.03754797205328941, 0.0807022973895073, 0.0334945023059845, 0.02795051597058773, -0.0015850233612582088, 0.0587451346218586, 0.047935690730810165, 0.038661304861307144, -0.02423189952969551, -0.019781144335865974, 0.016163324937224388, 0.04238426312804222, -0.03878346085548401, 0.05024510622024536, 0.003842668142169714, -0.050707727670669556, 0.008037466555833817, 0.02426169067621231, -0.03157871961593628, 0.025430021807551384, -0.013794094324111938, -0.06848196685314178, -0.012562597170472145, 0.018131624907255173, -0.016891544684767723, 0.0027179301250725985, 0.0003196476900484413, 0.018252896144986153, 0.06455836445093155, 0.0417260080575943, -0.020776240155100822, 0.002320585772395134, 0.001066335360519588, -0.00037381736910901964, -0.06161121651530266, 0.10438405722379684, -0.0003047172795049846, -0.014348674565553665 ]
[ -0.003759463084861636, 0.016732780262827873, -0.028811093419790268, 0.03575899451971054, 0.018296457827091217, -0.0008425309206359088, -0.004993707872927189, -0.01178390346467495, -0.024036699905991554, -0.03295722231268883, -0.021033095195889473, -0.0024966078344732523, 0.001539726392365992, -0.04859864339232445, -0.020158952102065086, 0.004114626906812191, -0.028591588139533997, -0.0068008555099368095, 0.013276522979140282, -0.012049281969666481, -0.02703525312244892, 0.041333191096782684, 0.030096903443336487, 0.04462530091404915, -0.041996173560619354, 0.028135281056165695, 0.009640122763812542, 0.0034744960721582174, 0.0239031370729208, -0.11579325050115585, -0.02960648387670517, 0.0015424665762111545, -0.0035755003336817026, 0.011586646549403667, -0.06309109926223755, -0.006959619466215372, -0.05197015777230263, 0.02439688704907894, -0.0033901927527040243, 0.03463161364197731, 0.0033050745259970427, -0.0309204813092947, -0.005102796480059624, -0.008332577534019947, -0.013269388116896152, -0.012150838971138, 0.008060837164521217, -0.04331813007593155, 0.016847817227244377, 0.0006417794502340257, -0.07173927128314972, -0.01313626766204834, -0.03489113226532936, 0.016551028937101364, -0.019569510594010353, -0.04288420081138611, 0.026717765256762505, 0.004545473027974367, -0.03466543182730675, 0.01760260947048664, -0.005124092102050781, -0.009784876368939877, -0.0212206169962883, -0.015321275219321251, 0.004003744572401047, -0.019057543948292732, -0.0681636855006218, -0.0035266864579170942, 0.02368115819990635, -0.028450703248381615, -0.012550381012260914, 0.02271239645779133, -0.05196336656808853, -0.012426299974322319, -0.005150627810508013, -0.00443744333460927, 0.018177403137087822, -0.015442371368408203, 0.03627176582813263, 0.007855637930333614, -0.03490233048796654, 0.009839260019361973, 0.0620485357940197, -0.007413878571242094, 0.027659818530082703, -0.03333158418536186, -0.0049507394433021545, 0.018707387149333954, 0.001892426167614758, -0.01094224862754345, -0.0005831880844198167, 0.016895145177841187, -0.02332654595375061, 0.03184158354997635, -0.08092892915010452, 0.031642694026231766, 0.001106680603697896, -0.02702973783016205, -0.00988876074552536, 0.8225345015525818, -0.0269697904586792, 0.0048736343160271645, -0.004270513541996479, 0.041479043662548065, 0.022557316347956657, 0.021837769076228142, 0.03556928038597107, -0.03425798565149307, 0.020618543028831482, -0.050989486277103424, 0.010413938201963902, 0.003347802208736539, 0.026524392887949944, 0.007593220099806786, 0.02474411204457283, 0.042288292199373245, -0.03062054142355919, 0.02418067678809166, 0.00786055251955986, 0.03400115296244621, -0.013383150100708008, -0.03195459023118019, -0.0007483768276870251, 0.03269316628575325, 0.02086676098406315, -0.19356366991996765, -0.034332435578107834, -6.250618476784557e-33, 0.000024544728148612194, 0.009778656996786594, 0.0149263646453619, 0.008771042339503765, 0.02034948579967022, -0.03287198394536972, 0.03284212201833725, -0.02533050626516342, -0.013428956270217896, -0.030673930421471596, -0.015656612813472748, 0.017186691984534264, -0.011598104611039162, -0.014601725153625011, 0.013926765881478786, -0.03312503173947334, -0.013047664426267147, 0.04478897526860237, -0.0016402944456785917, 0.025639241561293602, 0.08773351460695267, 0.03052358515560627, 0.016512954607605934, 0.0070592667907476425, 0.01890549063682556, 0.01198633387684822, -0.01729731075465679, 0.036510076373815536, -0.020678166300058365, -0.034966178238391876, -0.049238964915275574, 0.009059829637408257, -0.018797971308231354, -0.06966493278741837, 0.032697342336177826, -0.06069021672010422, -0.010835991241037846, 0.017156356945633888, -0.05883708968758583, 0.015856249257922173, -0.00019421346951276064, 0.03762250393629074, 0.0035199937410652637, -0.020574379712343216, -0.026841899380087852, 0.03313946723937988, 0.0035021845251321793, 0.07182488590478897, 0.006287802942097187, 0.008694041520357132, -0.0013744572643190622, -0.013751237653195858, 0.0206154678016901, -0.014622083865106106, 0.00808250717818737, 0.025680843740701675, -0.005965849384665489, 0.016521362587809563, 0.014686441980302334, 0.011790942400693893, 0.01151969376951456, -0.011951640248298645, -0.018821489065885544, 0.022711824625730515, 0.012067407369613647, -0.009323346428573132, 0.03268894925713539, 0.020167754963040352, 0.04098585620522499, 0.0008943394641391933, -0.05595826357603073, 0.035243742167949677, -0.054991114884614944, -0.04601447284221649, 0.06916088610887527, -0.03919116035103798, 0.013241877779364586, -0.004062268882989883, 0.015858609229326248, 0.012591338716447353, 0.012030848301947117, -0.011361869983375072, -0.0027760195080190897, -0.014798875898122787, -0.020090023055672646, -0.02060292288661003, 0.018942968919873238, 0.018236499279737473, -0.02504468895494938, -0.01428175251930952, 0.028112933039665222, 0.0608089305460453, -0.001579081523232162, 0.009118126705288887, -0.029555343091487885, 6.722741089112943e-33, 0.010508758015930653, -0.004450695589184761, -0.022595366463065147, 0.015852492302656174, 0.02040719799697399, 0.0106252022087574, 0.04530976712703705, 0.03326838091015816, -0.006266983691602945, 0.045411478728055954, 0.02815389260649681, -0.012088811956346035, 0.011076696217060089, -0.002593826735392213, 0.03301451727747917, -0.002904320601373911, -0.023771878331899643, 0.03556098788976669, -0.0011527691967785358, 0.024824397638440132, -0.04505638778209686, 0.023802857846021652, -0.005993031896650791, -0.026003550738096237, -0.009671187028288841, 0.06498490273952484, -0.005690607242286205, 0.01047617755830288, -0.012703006155788898, 0.015023017302155495, 0.004253219347447157, -0.038382623344659805, -0.020254474133253098, -0.02804848551750183, -0.02924400009214878, 0.043561991304159164, 0.0030241329222917557, -0.024045776575803757, -0.011532532051205635, 0.031347453594207764, 0.04258708655834198, 0.02648434042930603, -0.03984466940164566, 0.024397488683462143, -0.007319835480302572, -0.013812154531478882, -0.0071936300955712795, 0.0245746411383152, -0.01952645182609558, 0.0025249901227653027, -0.010701103135943413, -0.0009999728063121438, 0.0017595391254872084, 0.01716528832912445, 0.013616456650197506, -0.02614528313279152, 0.010725360363721848, 0.01633731834590435, -0.04411898925900459, 0.0029114235658198595, -0.0395464189350605, 0.0046119350008666515, -0.01327543519437313, 0.023615160956978798, -0.020754335448145866, 0.005246924702078104, -0.040740273892879486, 0.019222784787416458, -0.0016515273600816727, 0.027284199371933937, -0.001835153205320239, 0.007116315420717001, 0.03329978138208389, 0.01445678249001503, -0.015578599646687508, 0.01273939199745655, -0.015389014035463333, -0.01883046142756939, -0.02095051482319832, 0.048874396830797195, 0.013655027374625206, -0.03739714249968529, 0.03143468126654625, 0.014822293072938919, -0.012964833527803421, 0.0019923318177461624, 0.010952581651508808, 0.0013392578111961484, 0.05311310663819313, -0.026482950896024704, 0.01748342253267765, -0.013784251175820827, 0.010309576988220215, 0.014082022942602634, 0.0086831608787179, -1.2299972595997133e-8, -0.035774774849414825, 0.023074030876159668, -0.010626766830682755, 0.017687899991869926, 0.02175750955939293, 0.019824551418423653, -0.026267284527420998, -0.008163761347532272, -0.02376614697277546, 0.03594055771827698, 0.024549445137381554, 0.029805468395352364, 0.000022879379685036838, -0.020680347457528114, 0.029148196801543236, -0.039408136159181595, 0.01459362544119358, 0.010975213721394539, 0.038729023188352585, -0.022204501554369926, 0.013332596980035305, 0.022456925362348557, -0.017500177025794983, -0.003074506064876914, 0.014714577235281467, -0.034532368183135986, 0.019273070618510246, -0.09970441460609436, 0.013531477190554142, 0.010050547309219837, 0.00089625408872962, -0.03765758499503136, 0.029616786167025566, 0.025980396196246147, -0.014687523245811462, -0.03393246605992317, 0.018267331644892693, -0.0009193102014251053, 0.017284786328673363, 0.02949225716292858, -0.012881376780569553, 0.002514014719054103, -0.017552580684423447, -0.04516665264964104, -0.0016556491609662771, 0.013032904826104641, -0.02035960927605629, -0.009667499922215939, 0.02213793620467186, -0.029681244865059853, 0.018825072795152664, -0.005194550380110741, -0.0030758401844650507, 0.031986821442842484, 0.04673802852630615, 0.0008061235421337187, -0.03182198107242584, -0.019495079293847084, -0.054895851761102676, -0.014988916926085949, 0.0041261822916567326, 0.022640598937869072, -0.014747999608516693, -0.04947085678577423 ]
tensorflow-18-hello-world-using-estimator-api
https://markhneedham.com/blog/2018/05/05/tensorflow-18-hello-world-using-estimator-api
false
2018-05-11 08:08:21
Exploring node2vec - a graph embedding algorithm
[ "python", "machine-learning", "data-science", "node2vec", "t-sne" ]
[ "Machine Learning" ]
In my explorations of graph based machine learning, one algorithm I came across is called http://snap.stanford.edu/node2vec/[node2Vec^]. The https://cs.stanford.edu/~jure/pubs/node2vec-kdd16.pdf[paper^] describes it as "an algorithmic framework for learning continuous feature representations for nodes in networks". So what does the algorithm do? From the website: ____ The node2vec framework learns low-dimensional representations for nodes in a graph by optimizing a neighborhood preserving objective. The objective is flexible, and the algorithm accommodates for various definitions of network neighborhoods by simulating biased random walks. ____ [[running-node2vec]] == Running node2Vec We can try out an implementation of the algorithm by executing the following instructions: [source, bash] ---- git clone git@github.com:snap-stanford/snap.git cd snap/examples/node2vec make ---- We should end up with an executable file named `node2vec`: [source, bash] ---- $ ls -alh node2vec -rwxr-xr-x 1 markneedham staff 4.3M 11 May 08:14 node2vec ---- The download includes the https://en.wikipedia.org/wiki/Zachary%27s_karate_club[Zachary Karate Club^] dataset. We can inspect that dataset to see what format of data is expected. The data lives in `graph/karate.edgelist`. The contents of that file are as follows: [source, bash] ---- cat graph/karate.edgelist | head -n10 1 32 1 22 1 20 1 18 1 14 1 13 1 12 1 11 1 9 1 8 ---- The algorithm is then executed like this: [source, bash] ---- ./node2vec -i:graph/karate.edgelist -o:emb/karate.emb -l:3 -d:24 -p:0.3 -dr -v ---- [source, bash] ---- $ cat emb/karate.emb | head -n5 35 24 31 -0.0419165 0.0751558 0.0777881 -0.13651 -0.0723484 0.131121 -0.133643 0.0329049 0.0891693 0.0898324 0.0177763 -0.0947387 0.0152228 -0.00862188 0.0383254 0.222333 0.117794 0.189328 0.0327467 0.142506 -0.0787722 0.0757344 -0.0127497 -0.0305164 33 -0.105675 0.287809 0.20373 -0.247271 -0.222551 0.257689 -0.258127 0.0844224 0.182316 0.178839 0.0792992 -0.166362 0.114856 0.0422123 0.152787 0.551674 0.332224 0.487846 0.0619851 0.386913 -0.142459 0.173472 0.0184598 -0.100818 34 0.0121748 0.0941794 0.20482 -0.430609 -0.08399 0.293788 -0.322655 0.0704057 0.116873 0.214754 0.138378 -0.207141 -0.0159013 -0.238914 0.037141 0.541439 0.324653 0.458905 0.0216556 0.270057 -0.204671 0.135203 -0.0818273 -0.122353 14 -0.0722407 0.162659 0.111612 -0.20907 -0.11984 0.15896 -0.175391 0.0642012 0.094021 0.125609 0.0465577 -0.131715 0.0683675 -0.0097801 0.0467595 0.340551 0.210111 0.279932 0.0283343 0.231359 -0.112208 0.114253 0.00908989 -0.0907061 ---- We now have an embedding for each of our people. These embeddings aren't very interesting on their own but we can do interesting things with them. One approach when doing exploratory data analysis is to reduce each of the vectors to 2 dimensions so that we can visualise them more easily. == t-SNE https://lvdmaaten.github.io/tsne/[t-Distributed Stochastic Neighbor Embedding^] (t-SNE) is a popular technique for doing this and has implementations in many languages. We'll give the https://lvdmaaten.github.io/tsne/code/tsne_python.zip[Python version^] a try, but there is also a https://github.com/lejon/T-SNE-Java[Java version^] if you prefer that. Once we've downloaded that we can create a script containing the following code: [source, bash] ---- from tsne import tsne import numpy as np import pylab X = np.loadtxt("karate.emb", skiprows=1) X = np.array([x[1:] for x in X]) Y = tsne(X, 2, 50, 20.0) pylab.scatter(Y[:, 0], Y[:, 1], 20) pylab.show() ---- We load the embeddings from the file we created earlier, making sure to skip the first row since that contains the node id which we aren't interested in here. If we run the script it will output this chart: image::{{<siteurl>}}/uploads/2018/05/2018-05-11_09-46-36.png[] It's not all that interesting to be honest! This type of visualisation will often reveal a clustering between items but that isn't the case here. Now I need to give this a try on a bigger dataset to see if I can find some interesting insights!
A worked example showing how to run the node2Vec algorithm and visualise the output using the t-SNE algorithm.
null
[ 0.007911935448646545, -0.060089875012636185, 0.0023369884584099054, 0.0389692522585392, 0.050027620047330856, 0.028160393238067627, 0.020225029438734055, 0.025794396176934242, 0.018084464594721794, -0.013762548565864563, 0.0014714476419612765, -0.027627650648355484, -0.07134023308753967, 0.0007782272878102958, -0.023853443562984467, 0.052595555782318115, 0.08354789018630981, 0.04297366365790367, 0.01629515364766121, 0.010085571557283401, 0.0005147694027982652, 0.05189942196011543, 0.017898807302117348, 0.05200556665658951, 0.03374335914850235, 0.010550578124821186, 0.03562764823436737, -0.017715977504849434, -0.028451822698116302, 0.007007393054664135, 0.0401107557117939, 0.005284308455884457, -0.0034610580187290907, -0.023081203922629356, 0.04250049963593483, 0.009536256082355976, -0.05213910713791847, 0.00942565780133009, 0.01393189374357462, 0.019851047545671463, -0.07335377484560013, 0.07065556198358536, -0.017589623108506203, 0.0454377718269825, -0.017956925556063652, 0.025661379098892212, -0.09921210259199142, 0.02093840390443802, -0.003390603931620717, -0.022545142099261284, -0.07432102411985397, 0.01733517087996006, -0.025539778172969818, -0.0026986650191247463, 0.006065820809453726, 0.0484221987426281, 0.015869468450546265, -0.07552222162485123, 0.046296626329422, -0.040179044008255005, -0.007848430424928665, -0.016481449827551842, 0.0015230260323733091, 0.04454272985458374, 0.005647101905196905, -0.016536276787519455, 0.007849614135921001, 0.06729660928249359, -0.02724648267030716, -0.025812704116106033, 0.00596301443874836, 0.04605350270867348, -0.0416901558637619, 0.009497938677668571, -0.009533490054309368, -0.04332100600004196, 0.007392216473817825, 0.041816383600234985, 0.03932296857237816, 0.046545952558517456, -0.011202344670891762, 0.03733650967478752, -0.0011777234030887485, 0.0165594220161438, -0.007834194228053093, -0.007750651333481073, -0.046276964247226715, -0.02759547531604767, -0.09019824862480164, 0.04145221784710884, 0.002228238619863987, -0.050732098519802094, -0.019083112478256226, 0.014755348674952984, -0.015985725447535515, 0.015324155800044537, 0.007131172344088554, -0.021314311772584915, 0.005148810800164938, -0.031043460592627525, -0.04793505743145943, 0.0013553813332691789, -0.006662766914814711, -0.010243830271065235, -0.0922132283449173, -0.029923833906650543, -0.014813365414738655, 0.004303895868360996, -0.008852005004882812, -0.0058420090936124325, -0.03363725543022156, -0.012371591292321682, -0.006573250982910395, -0.01573137380182743, -0.08673495799303055, 0.06111956760287285, -0.009432820603251457, -0.03502822667360306, -0.058501191437244415, 0.031545817852020264, 0.03658381104469299, 0.03231285139918327, -0.000347248453181237, 0.07410527020692825, -0.011884205043315887, 0.037329066544771194, 0.036289509385824203, 0.039905156940221786, -0.0012333523482084274, -0.06533108651638031, -0.01704108528792858, 0.039292238652706146, 0.007105207536369562, 0.02480413019657135, -0.015269549563527107, -0.06261125206947327, 0.01718241162598133, 0.0011472635669633746, 0.03211188688874245, 0.034033384174108505, 0.0086728036403656, -0.055569376796483994, 0.027706816792488098, -0.01864941045641899, 0.043993815779685974, -0.02917410060763359, -0.01442987285554409, -0.033371686935424805, -0.021674809977412224, -0.017093757167458534, 0.009840046055614948, 0.032666467130184174, 0.04343653470277786, -0.024740692228078842, -0.009611766785383224, 0.09954763948917389, 0.039448898285627365, 0.014408865012228489, 0.014716359786689281, -0.005682086572051048, 0.051787253469228745, 0.020931212231516838, 0.02944023720920086, 0.060820382088422775, 0.01466761901974678, -0.0514821857213974, 0.029207756742835045, 0.05889599025249481, -0.01617155410349369, -0.004091236740350723, -0.011227045208215714, -0.05408438295125961, 0.0364646315574646, -0.038739245384931564, 0.007547305431216955, 0.024857018142938614, 0.05392972379922867, 0.045853499323129654, 0.031691938638687134, 0.003140984335914254, -0.07898163795471191, 0.08213131874799728, 0.019625898450613022, -0.0008045433205552399, -0.0017784284427762032, 0.0022206243593245745, 0.07959666848182678, 0.02396182343363762, 0.01662736013531685, 0.04710092768073082, -0.06255476921796799, -0.05975552275776863, -0.01923682540655136, -0.019934404641389847, 0.0721144825220108, -0.040165144950151443, 0.0026368352118879557, 0.03419286385178566, 0.021070415154099464, 0.04445916414260864, 0.002777439309284091, -0.03557787835597992, 0.012892583385109901, -0.034358568489551544, -0.0490511953830719, 0.025520097464323044, 0.04858984053134918, -0.06370095163583755, -0.07855720818042755, 0.008714263327419758, -0.020239274948835373, -0.009865691885352135, -0.012750048190355301, -0.03782150521874428, 0.039314720779657364, 0.021169448271393776, 0.0250984039157629, 0.009935601614415646, 0.07622499018907547, -0.05521281063556671, 0.0071171969175338745, -0.009407002478837967, -0.032848868519067764, -0.021132439374923706, 0.007918920367956161, 0.1122613400220871, 0.06485633552074432, -0.024243000894784927, -0.05626621097326279, 0.0347786471247673, 0.01526885200291872, -0.030719831585884094, 0.005557280965149403, -0.025367535650730133, -0.003556717187166214, 0.01595013216137886, -0.04012313485145569, -0.03138568997383118, 0.03475196659564972, -0.03621436282992363, -0.009554697200655937, 0.05394277721643448, -0.015219717286527157, 0.049365218728780746, 0.03210228681564331, -0.029434476047754288, 0.01496198307722807, -0.0350048802793026, -0.058895330876111984, 0.027007974684238434, 0.0008670691750012338, -0.0052605560049414635, 0.03908197954297066, -0.03872019797563553, -0.025665199384093285, -0.012755041010677814, 0.0012722115498036146, 0.007932656444609165, 0.04139731451869011, 0.04649806395173073, 0.02671627514064312, 0.03892789036035538, -0.050915706902742386, 0.018669480457901955, -0.0079951835796237, -0.060015588998794556, -0.03470943495631218, -0.03488113731145859, 0.03099285066127777, -0.006194362882524729, 0.026238679885864258, -0.013033383525907993, 0.04347908869385719, -0.014439957216382027, -0.006072512362152338, -0.029827482998371124, 0.03275217488408089, 0.011847714893519878, -0.028316877782344818, -0.043351441621780396, -0.013946298509836197, 0.0591963529586792, -0.03349513188004494, -0.00640434306114912, -0.020652081817388535, -0.06562671810388565, 0.05644766613841057, -0.07880406826734543, -0.027397938072681427, -0.014897283166646957, 0.03412008658051491, 0.04091208800673485, -0.029451463371515274, 0.003068034304305911, 0.03519571200013161, 0.014913552440702915, 0.029859380796551704, 0.012503419071435928, 0.0016882360214367509, 0.01908758096396923, 0.01557427179068327, 0.0268818661570549, 0.04984411224722862, -0.03594241291284561, -0.008921047672629356, -0.02792447619140148, 0.016424063593149185, 0.006370075512677431, -0.2760462164878845, 0.049229592084884644, -0.018647249788045883, -0.0457165353000164, 0.020429939031600952, -0.04553753137588501, -0.004080288577824831, -0.02670096978545189, 0.005150640849024057, -0.01313429232686758, -0.03098435141146183, -0.0377737432718277, -0.03002779185771942, 0.04348267242312431, 0.008492725901305676, -0.047195009887218475, -0.004466066602617502, -0.024377701804041862, 0.007425134535878897, 0.05005277320742607, -0.006119354162365198, -0.06099409610033035, -0.02143790014088154, 0.022267069667577744, 0.005765646696090698, 0.045504264533519745, -0.10143347829580307, -0.0008659996674396098, -0.04524429142475128, -0.03520340844988823, 0.0012775948271155357, -0.020001940429210663, -0.003892709966748953, 0.010339750908315182, -0.021441452205181122, -0.009784448891878128, 0.029552234336733818, -0.025812380015850067, 0.010457166470587254, 0.040124766528606415, -0.03549906611442566, -0.03671472519636154, 0.004595103207975626, 0.020700113847851753, 0.10054520517587662, 0.014504430815577507, -0.052605148404836655, -0.0027288999408483505, -0.0277190413326025, 0.05847139656543732, -0.019835690036416054, -0.02055559679865837, -0.01598321460187435, 0.04888205602765083, -0.0053826286457479, -0.02870078757405281, 0.004917909391224384, -0.016969328746199608, -0.04117288067936897, -0.023278268054127693, -0.014179222285747528, -0.06336876004934311, 0.02032441832125187, -0.08148663491010666, -0.011537975631654263, -0.041151322424411774, -0.06986325979232788, -0.05538288131356239, 0.024302547797560692, 0.004009006544947624, -0.042473725974559784, 0.008042242377996445, -0.036844976246356964, -0.09847156703472137, -0.013710417784750462, -0.004752280656248331, -0.013422636315226555, 0.010083217173814774, 0.018882067874073982, 0.06936174631118774, -0.03346573933959007, -0.057425741106271744, -0.00522564398124814, 0.007369401399046183, 0.0075371153652668, -0.0004020073974970728, 0.0089180376380682, -0.022494377568364143, -0.01221754401922226, -0.002873527817428112, 0.05766301602125168, -0.0029570842161774635, -0.02538016438484192, -0.0028109929990023375, -0.005147183313965797, 0.052140235900878906, 0.016148224472999573, -0.014174158684909344, -0.008214705623686314, 0.02634545974433422, 0.04415066912770271, -0.037677615880966187, -0.00832600612193346, -0.0042615775018930435, -0.023594332858920097, -0.0042903549037873745, -0.059397824108600616, -0.010472097434103489, 0.05140862613916397, -0.005043966230005026, -0.02149106003344059, -0.03647465631365776, 0.030000681057572365, -0.04057005047798157, -0.020031018182635307, -0.005579727701842785, 0.01127858180552721, 0.009449876844882965, 0.05939419940114021, -0.029817283153533936, -0.056132279336452484, 0.01988038793206215, 0.007258330471813679, -0.003368113422766328, -0.04955628886818886, -0.0427689366042614, -0.028271321207284927, 0.001499570906162262, 0.006929952185600996, 0.00864266324788332, 0.004773118533194065, 0.06687413156032562, 0.028204621747136116, -0.00023345743829850107, 0.05205104872584343, 0.011101621203124523, -0.01848321594297886, -0.03548988699913025, 0.02170017547905445, 0.007189603988081217, -0.017838798463344574, 0.02191976085305214, 0.0029620982240885496, 0.03283729404211044, 0.04626674950122833, 0.0279218852519989, 0.02234688214957714, -0.00792183168232441, -0.00017719896277412772, -0.03259047865867615, 0.016009729355573654, -0.026652725413441658, -0.0072053163312375546, -0.03489511460065842, 0.018244119361042976, -0.016418129205703735, 0.02552727609872818, -0.02096324972808361, -0.054275911301374435, -0.030888453125953674, 0.05612463131546974, -0.009463902562856674, 0.013579021207988262, -0.020925244316458702, -0.0064446525648236275, 0.07672934234142303, -0.0055482895113527775, 0.010193247348070145, -0.034606993198394775, -0.03467952832579613, 0.007397168315947056, -0.029746489599347115, -0.037671949714422226, 0.001917396322824061, -0.02064778283238411, -0.03472258150577545, 0.018497318029403687, 0.03157168626785278, -0.013207958079874516, 0.009823231026530266, -0.003948867321014404, -0.0006176138413138688, 0.01900440827012062, 0.03478590399026871, 0.040123432874679565, 0.04315576329827309, -0.021622175350785255, 0.00814744457602501, -0.03883098438382149, 0.0009846324101090431, -0.004197235684841871, 0.002570223994553089, -0.03570832684636116, -0.0032015936449170113, -0.015004521235823631, -0.037270184606313705, 0.021986018866300583, 0.014478722587227821, 0.01328826043754816, 0.011064836755394936, -0.03707845136523247, 0.024844154715538025, -0.007047693245112896, 0.03110627271234989, 0.08215880393981934, -0.036252573132514954, -0.021132616326212883, 0.021222136914730072, 0.006496143992990255, -0.024169689044356346, 0.020209603011608124, -0.06562402844429016, -0.012667383067309856, -0.020281687378883362, 0.00442642392590642, -0.02961844764649868, -0.03784874826669693, -0.021586470305919647, 0.004734779242426157, 0.0025697972159832716, 0.024409960955381393, 0.0018011042848229408, -0.009076138027012348, -0.02371259033679962, 0.012022802606225014, 0.038214340806007385, -0.004486980848014355, -0.006998291704803705, 0.006068098358809948, -0.010610639117658138, 0.009810534305870533, -0.03329017758369446, 0.0336143933236599, 0.04025804623961449, -0.014905114658176899, 0.0004185506550129503, -0.06372011452913284, 0.01662549003958702, -0.005176204722374678, 0.03481258079409599, 0.0011368854902684689, 0.0014126782771199942, -0.05778111144900322, 0.023729467764496803, -0.028487151488661766, 0.01775907538831234, 0.0013030209811404347, -0.025392916053533554, 0.010219801217317581, 0.037115659564733505, -0.0006131565314717591, 0.019968248903751373, 0.010178500786423683, -0.04814158380031586, 0.05854262784123421, -0.03909478336572647, -0.016096001490950584, -0.015306606888771057, -0.026866408064961433, 0.008342443034052849, -0.024887816980481148, 0.01668832078576088, -0.02190595306456089, 0.06087784841656685, 0.026310227811336517, 0.018204092979431152, 0.00800626166164875, -0.02081008441746235, 0.01610439084470272, -0.01658288575708866, -0.015782497823238373, -0.0899764895439148, -0.017538687214255333, 0.045020006597042084, 0.004311460070312023, -0.009874694980680943, -0.018977174535393715, -0.018148425966501236, -0.025959206745028496, -0.056438546627759933, -0.006268208380788565, 0.04765249043703079, -0.0032882236409932375, 0.004746825434267521, 0.001041756826452911, -0.06830280274152756, 0.05450029671192169, 0.04400446638464928, -0.04260725900530815, -0.010827708058059216, -0.03478771075606346, 0.049746301025152206, -0.004992435220628977, 0.03315901756286621, -0.009649790823459625, -0.012285315431654453, 0.07898452132940292, 0.047305475920438766, 0.026083100587129593, 0.03079121559858322, -0.016457878053188324, 0.03212243691086769, 0.0301679614931345, 0.024922721087932587, -0.0028276056982576847, 0.06174787878990173, -0.03234719857573509, -0.04341006651520729, 0.057750653475522995, 0.010281899012625217, -0.03322930261492729, -0.024865323677659035, 0.05461777374148369, 0.025585662573575974, -0.04214724525809288, -0.03921999782323837, 0.029844678938388824, -0.05083274096250534, 0.0023813038133084774, -0.04982221871614456, 0.0021456561516970396, -0.031549736857414246, 0.08591051399707794, -0.04120413959026337, 0.006624557077884674, 0.07239732891321182, -0.013485434465110302, -0.0025747003965079784, -0.002554996171966195, 0.10645948350429535, 0.0978834331035614, 0.05732698738574982, 0.02485460415482521, 0.08679262548685074, -0.011066630482673645, -0.03638956695795059, -0.02663826011121273, 0.00210558227263391, -0.008682706393301487, -0.010246447287499905, 0.016163432970643044, 0.06783753633499146, -0.010134569369256496, 0.06860018521547318, -0.055788133293390274, 0.000296491984045133, 0.023929322138428688, 0.012281342409551144, 0.011797252111136913, 0.041782788932323456, 0.016774894669651985, 0.010883152484893799, -0.030168799683451653, -0.009661481715738773, 0.033264484256505966, -0.016829755157232285, -0.006747980136424303, 0.029110204428434372, -0.010331591591238976, 0.03135892003774643, 0.003426521085202694, 0.022107435390353203, 0.1140201985836029, -0.04504072666168213, -0.03638689965009689, 0.017000727355480194, -0.01239261869341135, 0.003227085340768099, 0.00953348632901907, -0.00472235307097435, -0.029699701815843582, -0.007809861563146114, -0.03955458477139473, -0.027130192145705223, 0.0065925708040595055, -0.016075389459729195, -0.005960109643638134, -0.009336492978036404, 0.006098033394664526, 0.011825150810182095, 0.013633138500154018, -0.01707107573747635, -0.03535820171236992, -0.04357612878084183, -0.02946600317955017, -0.052961044013500214, -0.0290072038769722, 0.018065813928842545, -0.002596549689769745, -0.034503642469644547, -0.03981722146272659, 0.03086625039577484, -0.001713290112093091, 0.050065554678440094, -0.052369918674230576, 0.03525954484939575, -0.008207780309021473, 0.05036307871341705, 0.04113740473985672, 0.017595447599887848, 0.023672636598348618, 0.000015582314517814666, -0.005436141975224018, 0.007769160438328981, -0.01020127348601818, 0.014610045589506626, 0.018908023834228516, 0.022386688739061356, -0.04781598225235939, -0.012542965821921825, 0.018019912764430046, -0.04012569412589073, -0.07893974334001541, 0.010456440970301628, 0.047454994171857834, 0.04616151377558708, 0.03258686140179634, -0.025386083871126175, -0.021683191880583763, -0.03894798830151558, -0.007596920244395733, -0.023027656599879265, -0.019804462790489197, 0.027938203886151314, -0.009046468883752823, 0.09333914518356323, 0.001546833198517561, -0.009972172789275646, -0.04542208090424538, -0.021627768874168396, -0.007489401381462812, 0.0009362369310110807, -0.03988436609506607, -0.024704791605472565, -0.02448575757443905, -0.08361266553401947, -0.035559505224227905, 0.03374548256397247, -0.010170676745474339, -0.04319433867931366, 0.02073877677321434, 0.021156683564186096, -0.01572345942258835, 0.04044575244188309, -0.033610083162784576, 0.008766562677919865, -0.0234411358833313, -0.009271522983908653, 0.001650649937801063, 0.011450718156993389, -0.020230231806635857, 0.023689253255724907, 0.02486049197614193, -0.037352606654167175, -0.01930493675172329, -0.022091025486588478, 0.017727158963680267, 0.028401700779795647, 0.020122425630688667, 0.015466498211026192 ]
[ -0.08089951425790787, -0.02936655655503273, -0.049693722277879715, -0.013852468691766262, 0.05149432271718979, -0.01345968060195446, -0.00559921795502305, 0.0038941181264817715, 0.005068738479167223, -0.017081860452890396, 0.028856491670012474, -0.0825420618057251, 0.015204875729978085, -0.002007819712162018, 0.08886417746543884, 0.020273825153708458, -0.005204878747463226, -0.03912653401494026, 0.004981587175279856, 0.014508210122585297, -0.006335090845823288, -0.04318917915225029, -0.04157270863652229, -0.047261402010917664, 0.02778327278792858, 0.014681271277368069, 0.048287320882081985, -0.042423952370882034, 0.003486047266051173, -0.22692936658859253, 0.04181942716240883, -0.00724720349535346, 0.06488848477602005, -0.013413227163255215, 0.003292685141786933, 0.014343311078846455, 0.058018434792757034, 0.009488184005022049, -0.04233139753341675, 0.03705286979675293, 0.009920279495418072, 0.0046564205549657345, -0.025565188378095627, -0.00776945473626256, 0.06006297469139099, 0.025528039783239365, -0.0022857910953462124, -0.02677016146481037, -0.0313158817589283, -0.013755490072071552, -0.042838044464588165, -0.039911363273859024, -0.0016342736780643463, -0.007114032749086618, 0.02014889381825924, 0.036301348358392715, 0.031036341562867165, 0.0647345706820488, 0.023892229422926903, 0.037035319954156876, 0.014786005951464176, 0.019635256379842758, -0.12722250819206238, 0.06073879450559616, 0.01723852939903736, 0.05972343683242798, -0.0513928085565567, -0.012263967655599117, 0.004137087147682905, 0.09655171632766724, 0.05383947491645813, -0.00814047735184431, -0.019856873899698257, 0.018330223858356476, 0.012311263009905815, 0.019486021250486374, 0.016011187806725502, 0.04886533319950104, 0.02357793040573597, -0.055763114243745804, -0.029379742220044136, 0.01105623971670866, -0.014609869569540024, -0.012964606285095215, -0.011103917844593525, 0.015028271824121475, -0.032539431005716324, 0.019567230716347694, -0.026286810636520386, 0.02080724760890007, 0.026165584102272987, 0.035134777426719666, 0.02781498245894909, 0.0015282158274203539, -0.07936160266399384, -0.022326402366161346, 0.008898901753127575, 0.013596415519714355, -0.017308035865426064, 0.4104230999946594, -0.016048697754740715, -0.019411306828260422, 0.05324487015604973, 0.03687160462141037, -0.001998929074034095, -0.0397413969039917, -0.001549328095279634, -0.0702686607837677, -0.010095898993313313, -0.021489065140485764, 0.0016719251871109009, -0.020918985828757286, 0.025445515289902687, -0.05275093764066696, 0.003003954654559493, -0.0075021120719611645, 0.045897647738456726, 0.07550039142370224, 0.006421154364943504, 0.0015936674317345023, -0.028498956933617592, 0.024064619094133377, 0.024345049634575844, -0.010272275656461716, 0.028492337092757225, -0.01308953482657671, -0.009301727637648582, 0.05310940369963646, 0.047476403415203094, 0.006581243127584457, 0.047049783170223236, -0.0043599726632237434, -0.07075466215610504, 0.0048193600960075855, 0.0006536726141348481, -0.007544684689491987, 0.0393308661878109, -0.02233913354575634, -0.03118620440363884, 0.03460182994604111, 0.002625701017677784, 0.03380730375647545, 0.06543932855129242, -0.002295370679348707, -0.06745588779449463, 0.13587048649787903, -0.0006092832772992551, -0.04818897321820259, -0.014265422709286213, -0.06251068413257599, 0.03299429640173912, 0.012276572175323963, -0.017582962289452553, -0.05881321057677269, 0.008975249715149403, 0.017659960314631462, 0.058740753680467606, -0.029194224625825882, -0.07887444645166397, 0.01796562410891056, -0.04204907268285751, -0.018147889524698257, -0.05233956500887871, 0.07036694139242172, 0.07608327269554138, -0.09868140518665314, -0.017744876444339752, 0.014327384531497955, 0.009851601906120777, -0.07927680015563965, 0.04147256910800934, 0.03560352697968483, -0.03434086591005325, 0.006545284762978554, 0.013554026372730732, -0.01504959724843502, -0.07883772253990173, -0.02648220956325531, 0.04792838171124458, -0.026907790452241898, 0.0073724365793168545, -0.017876088619232178, -0.032936565577983856, -0.0010240079136565328, -0.05002477765083313, -0.057382043451070786, -0.056856948882341385, -0.006030891090631485, -0.03568807244300842, -0.025155041366815567, -0.012136824429035187, -0.011708040721714497, -0.050681617110967636, 0.05487606301903725, -0.03938701003789902, -0.0442303866147995, 0.021491510793566704, 0.0008351842407137156, -0.04526737704873085, -0.02132895588874817, -0.021832551807165146, 0.023457037284970284, -0.010987807996571064, 0.004221873823553324, -0.0704130157828331, 0.015424314886331558, 0.030229397118091583, -0.024484684690833092, 0.06399425119161606, 0.041908007115125656, -0.001309467712417245, -0.04128513112664223, -0.0144609734416008, 0.015296116471290588, -0.013770497404038906, -0.01777903363108635, 0.014890295453369617, 0.004789247177541256, 0.01104552298784256, 0.040091123431921005, -0.023334605619311333, 0.0012836705427616835, -0.038940370082855225, -0.33435675501823425, -0.07172705978155136, 0.003622577991336584, 0.03777357563376427, 0.030198274180293083, -0.06313404440879822, -0.0000426104488724377, -0.029553918167948723, 0.02331453561782837, 0.025594843551516533, 0.07200195640325546, 0.013413488864898682, -0.02215796522796154, -0.08933068066835403, 0.009673181921243668, 0.04777756333351135, -0.0003954197745770216, -0.02630811743438244, -0.04045373946428299, 0.011685363948345184, 0.005594245158135891, 0.005320143420249224, 0.0018491324735805392, -0.058898892253637314, -0.022678358480334282, -0.020967459306120872, 0.11591213941574097, -0.017998846247792244, 0.07411802560091019, -0.05126642808318138, 0.0016713107470422983, -0.012558573856949806, -0.003015662543475628, -0.05676312372088432, 0.021407486870884895, -0.024665549397468567, 0.013736716471612453, 0.00036337069468572736, 0.0087472228333354, -0.040988996624946594, -0.0792599692940712, 0.004547593183815479, -0.03320460394024849, -0.053784701973199844, -0.0545472577214241, 0.05041182413697243, -0.025997068732976913, -0.008741842582821846, -0.007426248397678137, 0.05534833297133446, 0.02792021445930004, 0.02939516305923462, 0.026613349094986916, -0.01716308295726776, -0.02691846713423729, -0.0428461916744709, -0.09094110131263733, -0.008404219523072243, -0.011650503613054752, 0.0014619348803535104, 0.019396129995584488, 0.01769554615020752, 0.026041831821203232, -0.07117913663387299, 0.03583122044801712, 0.007822920568287373, 0.01765618659555912, -0.021786000579595566, 0.021937508136034012, -0.013192982412874699, -0.006571189966052771, 0.1051357239484787, 0.029787981882691383, 0.009775247424840927, 0.06330878287553787, 0.018664196133613586, 0.0016534257447347045, 0.01359914243221283, 0.007102642673999071, 0.004211955703794956, 0.0756094753742218, -0.03792043775320053, 0.045736681669950485, -0.03033619187772274, 0.011254825629293919, 0.01762869767844677, 0.008662685751914978, -0.025945289060473442, 0.0499725341796875, 0.06968215852975845, -0.008143873885273933, -0.0023112024646252394, -0.0163846705108881, -0.0757204070687294, 0.06470970809459686, -0.009331095963716507, -0.2683122456073761, 0.016741743311285973, 0.06000915914773941, 0.07841985672712326, 0.0056682974100112915, 0.013512582518160343, 0.06485867500305176, -0.045982539653778076, 0.025226444005966187, -0.0013043687213212252, 0.01680978387594223, 0.05204250290989876, 0.040339551866054535, 0.009828598238527775, -0.006459319498389959, -0.0329570546746254, 0.06905518472194672, -0.01653461903333664, 0.030623428523540497, 0.004094891715794802, 0.03392389789223671, 0.004394755698740482, 0.18466049432754517, -0.014900630339980125, 0.022356417030096054, 0.025871900841593742, -0.043817732483148575, -0.030712421983480453, 0.07936250418424606, -0.03407220169901848, -0.009388742968440056, 0.0283188596367836, 0.04618338122963905, -0.01963367871940136, 0.027368836104869843, -0.009939730167388916, -0.011472942307591438, 0.035405483096838, 0.012428469024598598, -0.00962763000279665, 0.03823373094201088, -0.0020450956653803587, -0.02745126187801361, 0.01899617724120617, 0.06536734104156494, -0.006990411318838596, 0.018258169293403625, -0.009241475723683834, -0.04910234361886978, 0.02743670344352722, -0.035461071878671646, -0.04830853268504143, -0.02188272587954998, -0.021710984408855438, 0.031033173203468323, 0.066339410841465, 0.020814718678593636, -0.03344578295946121, -0.030510270968079567, -0.019105495885014534, -0.005589568987488747, -0.05006156861782074, 0.10570885986089706, 0.014793209731578827, 0.03647925332188606 ]
[ 0.019115863367915154, 0.0005137345870025456, -0.003168793162330985, 0.006058130878955126, 0.017327215522527695, -0.011156255379319191, -0.02929345704615116, 0.02229350246489048, -0.013886100612580776, 0.0008928595925681293, 0.025532377883791924, 0.0010365681955590844, 0.01973177306354046, -0.023557255044579506, 0.009733994491398335, 0.019162794575095177, 0.014033951796591282, -0.002012777142226696, 0.04141303896903992, -0.01401649508625269, -0.04299204424023628, 0.007760055363178253, 0.019535813480615616, -0.018285833299160004, -0.01043695118278265, 0.029458392411470413, -0.038511645048856735, 0.03908872976899147, 0.0324711874127388, -0.1165761724114418, 0.04448091238737106, -0.032889269292354584, -0.009431308135390282, 0.01559845358133316, 0.015085005201399326, 0.008518071845173836, 0.006565475836396217, 0.0011727736564353108, -0.04136210307478905, 0.020484084263443947, 0.020715707913041115, 0.01627027429640293, -0.006813975982367992, 0.0017148287734016776, 0.026340780779719353, 0.029262274503707886, -0.01784111186861992, -0.022696536034345627, -0.0012434585951268673, 0.009334842674434185, -0.048158492892980576, -0.01758047752082348, -0.006158458534628153, 0.0064437803812325, 0.017848985269665718, 0.004404693841934204, 0.007081234361976385, 0.0457148477435112, 0.04320631921291351, 0.01662624627351761, 0.028008293360471725, 0.010844065807759762, -0.0454878993332386, -0.009324923157691956, -0.02243644744157791, -0.025407716631889343, -0.018616730347275734, 0.004741642624139786, -0.0031788265332579613, 0.008166764862835407, 0.019860675558447838, 0.019349006935954094, -0.02048560045659542, -0.033119041472673416, -0.002627946902066469, -0.03275134041905403, 0.013376324437558651, 0.0038446064572781324, -0.014840219169855118, 0.001290287240408361, -0.04939207434654236, -0.012415076605975628, 0.012670217081904411, -0.026870286092162132, -0.03477450832724571, 0.020154282450675964, 0.013422428630292416, -0.021004877984523773, 0.011698408052325249, 0.03300899639725685, -0.0051292297430336475, 0.04601142555475235, -0.011688022874295712, -0.007824193686246872, -0.07276635617017746, 0.00443275086581707, 0.013582861050963402, 0.003126471070572734, -0.012234179303050041, 0.8185651302337646, -0.03549875319004059, -0.017265090718865395, 0.006610502488911152, -0.03044753521680832, 0.0458490252494812, -0.04410940036177635, -0.016127347946166992, -0.033370815217494965, 0.040553949773311615, -0.006004696246236563, 0.05614182725548744, 0.05292593315243721, 0.0003991762350779027, 0.025773288682103157, 0.025778330862522125, 0.024273790419101715, 0.060245104134082794, 0.009678525850176811, 0.008941788226366043, 0.019746925681829453, -0.009677987545728683, -0.0043987007811665535, -0.03879641741514206, 0.004341320134699345, -0.026817988604307175, -0.2080209106206894, 0.008167517371475697, -7.732622979583756e-33, 0.029318703338503838, -0.05190853774547577, 0.004778872709721327, 0.004395490512251854, -0.012661421671509743, -0.015642808750271797, -0.008706741034984589, -0.04657064378261566, 0.004534450359642506, -0.013360007666051388, -0.024177834391593933, -0.007367751095443964, 0.02404230833053589, 0.020567039027810097, 0.056043848395347595, -0.023164642974734306, 0.007942251861095428, 0.003971574828028679, 0.04417363926768303, -0.014546661637723446, 0.053446680307388306, 0.015169832855463028, 0.017719481140375137, 0.003511986928060651, -0.0188156645745039, 0.02273104153573513, 0.026602445170283318, -0.03331441432237625, 0.0375516302883625, -0.032381974160671234, -0.05766507238149643, 0.017290189862251282, 0.024125831201672554, -0.03800130635499954, 0.0123825054615736, -0.027081308886408806, 0.0062948293052613735, 0.010096123442053795, 0.012976683676242828, -0.04441692680120468, -0.019336732104420662, 0.010597930289804935, -0.0012911449884995818, -0.0664837658405304, -0.0231589674949646, -0.05693143606185913, 0.03932861611247063, 0.009594726376235485, 0.010140920989215374, -0.013553419150412083, 0.010904990136623383, -0.0438586063683033, 0.030667195096611977, 0.010366929695010185, 0.012497207149863243, 0.013965540565550327, 0.020694876089692116, 0.02622525580227375, 0.0003339801332913339, 0.06582693010568619, 0.03565361350774765, -0.03126548230648041, 0.00368117680773139, 0.02265647053718567, 0.003300338052213192, -0.01913248933851719, -0.043721821159124374, 0.0002543473965488374, 0.015559510327875614, 0.031025433912873268, -0.05694834887981415, 0.029754506424069405, -0.008932042866945267, -0.03739131987094879, 0.019214391708374023, -0.03922053053975105, -0.002133122645318508, 0.003519653342664242, 0.005940128117799759, 0.05286058783531189, -0.005280731711536646, -0.028119901195168495, -0.016707800328731537, -0.020253051072359085, 0.0020361822098493576, -0.038822706788778305, 0.006200420670211315, -0.024036886170506477, -0.0053773196414113045, 0.03157155588269234, -0.002985000377520919, 0.03841153532266617, -0.02657967060804367, 0.012561224400997162, -0.0024896070826798677, 7.18388458420465e-33, -0.004371569957584143, 0.02480103075504303, -0.01750822179019451, 0.0032269954681396484, 0.01964535377919674, -0.000683015794493258, 0.009625682607293129, 0.004418511874973774, -0.06342046707868576, 0.026587344706058502, -0.022777898237109184, -0.020509667694568634, -0.006116441451013088, 0.01854557916522026, 0.05385882034897804, -0.031564727425575256, 0.005362070631235838, 0.003950930666178465, -0.008167790248990059, -0.0037865308113396168, -0.0024747508578002453, 0.001782714854925871, 0.019254213199019432, 0.00151755940169096, 0.057419758290052414, 0.025633659213781357, 0.003569080261513591, 0.005876960698515177, -0.002164339181035757, -0.016101256012916565, -0.019938692450523376, -0.03352966532111168, -0.010273781605064869, 0.006854927632957697, 0.009698903188109398, 0.03082234412431717, 0.00412842957302928, -0.006763300858438015, 0.015275362879037857, -0.007700815796852112, 0.03304356336593628, 0.02893425151705742, -0.05477945879101753, 0.03381194546818733, -0.008730700239539146, 0.024661386385560036, 0.01423235610127449, 0.021884437650442123, -0.026166722178459167, -0.005776213016360998, -0.0029380908235907555, 0.015784364193677902, 0.014931934885680676, 0.048977579921483994, -0.02139480970799923, -0.028643079102039337, -0.0352170392870903, 0.03260454162955284, -0.037234365940093994, 0.006551604252308607, -0.005038610193878412, -0.033608607947826385, -0.03353992477059364, 0.029790489003062248, -0.02149992063641548, -0.03256385028362274, -0.04173685237765312, -0.018374141305685043, -0.07113425433635712, 0.016250653192400932, -0.016048995777964592, 0.010945327579975128, -0.009570547379553318, -0.010702078230679035, -0.006970081478357315, -0.040463637560606, -0.007695883046835661, 0.02296438068151474, -0.005179749336093664, 0.021723030135035515, 0.022417627274990082, 0.05521611124277115, 0.01149509847164154, -0.007648133207112551, 0.026519646868109703, 0.011751364916563034, -0.04388590157032013, 0.03150743618607521, 0.046849630773067474, -0.01539628580212593, 0.012494707480072975, -0.018426815047860146, -0.024964505806565285, 0.014211107045412064, -0.007482578512281179, -1.2718379238663147e-8, -0.07443121075630188, 0.017087744548916817, 0.011713545769453049, 0.039258163422346115, 0.00832869578152895, 0.03416481241583824, 0.0025860967580229044, 0.041509635746479034, -0.024927707388997078, 0.021179677918553352, 0.05740765109658241, -0.008944082073867321, -0.01587299443781376, -0.018047861754894257, 0.012299058958888054, -0.015384354628622532, 0.01774810627102852, 0.0019343649037182331, 0.04306168481707573, 0.02611383982002735, 0.018891440704464912, -0.0038262302987277508, -0.007217356003820896, 0.009751721285283566, -0.02718939818441868, -0.05120227485895157, -0.02577160857617855, -0.08912952244281769, -0.03037881664931774, 0.021986357867717743, -0.031246814876794815, -0.0353759229183197, -0.004702936392277479, -0.023712923750281334, -0.029121033847332, -0.004916689824312925, 0.008396590128540993, 0.008166611194610596, 0.030111834406852722, -0.004552251659333706, -0.03617991879582405, 0.0290293637663126, -0.017569275572896004, -0.02958841435611248, -0.03587658703327179, 0.024085335433483124, 0.031214293092489243, 0.022790662944316864, 0.055606015026569366, -0.03808608651161194, 0.01995770074427128, -0.023361558094620705, 0.005284619517624378, -0.01178564503788948, 0.032962433993816376, 0.0341658741235733, -0.012855138629674911, -0.05297621712088585, -0.013553631491959095, 0.006545894779264927, 0.03878170624375343, -0.002086229156702757, -0.04055451229214668, -0.006180863827466965 ]
exploring-node2vec-graph-embedding-algorithm
https://markhneedham.com/blog/2018/05/11/exploring-node2vec-graph-embedding-algorithm
false
2018-05-11 08:12:21
Predicting movie genres with node2Vec and Tensorflow
[ "python", "machine-learning", "tensorflow", "data-science", "node2vec" ]
[ "Machine Learning" ]
In my previous post we looked at how to get https://www.markhneedham.com/blog/2018/05/exploring-node2vec-graph-embedding-algorithm[up and running with the node2Vec algorithm^], and in this post we'll learn how we can feed graph embeddings into a simple Tensorflow model. Recall that node2Vec takes in a list of edges (or relationships) and gives us back an embedding (array of numbers) for each node. This time we're going to run the algorithm over a movies recommendation dataset from the https://neo4j.com/sandbox-v2/[Neo4j Sandbox^]. If you want to follow along you'll need to launch the 'recommendations' sandbox. You should see something like this once it's started: image::{{<siteurl>}}/uploads/2018/05/2018-05-11_10-02-20.png[] == Building an edge list Our first job is to generate a file containing edges that we can feed to node2Vec. The following code will do the trick: [source, python] ---- import csv from neo4j.v1 import GraphDatabase, basic_auth host = "bolt://localhost" # replace this with your Sandbox host password = "neo" # replace this with your Sandbox password driver = GraphDatabase.driver(, auth=basic_auth("neo4j", password)) with driver.session() as session, open("graph/movies.edgelist", "w") as edges_file: result = session.run("""\ MATCH (m:Movie)--(other) RETURN id(m) AS source, id(other) AS target """) writer = csv.writer(edges_file, delimiter=" ") for row in result: writer.writerow([row["source"], row["target"]]) ---- We're getting back all the relationships from movies to anything else. The `id()` function returns the internal identifier for each of the nodes returned in the `MATCH` clause. We end up with a file that looks like this: [source, bash] ---- $ cat graph/movies.edgelist | head -n10 0 1 0 2 0 3 0 4 0 6 0 9774 0 9780 0 9785 0 9791 0 9790 ---- == Running node2Vec Now we're ready to run node2Vec to get embeddings for each of our nodes. I explained https://www.markhneedham.com/blog/2018/05/exploring-node2vec-graph-embedding-algorithm[how to install the Stanford implementation of the algorithm in the previous post^] so revisit that one if you want to follow along. Running the following script will create an embedding of 100 elements for each node. The length of the random walk component of the algorithm will be 80 hops. These numbers are guesswork so it might be that some other values would work better. [source, bash] ---- ./node2vec -i:graph/movies.edgelist -o:emb/movies.emb -l:80 -d:100 -p:0.3 -dr -v ---- Our output should look like this: [source, bash] ---- $ cat emb/movies.emb | head -n5 32314 100 14243 0.002886 -0.0009521 0.0224149 0.0211797 -0.0234808 0.0465503 -0.0242661 -0.0108606 0.0124484 -0.0342895 0.0115387 0.0243817 0.00805514 0.0080248 0.0051944 0.025798 -0.00788376 -0.0251952 -0.048099 0.0127707 0.0194209 0.00763978 -0.0130131 -0.0230401 0.0147994 -0.00373403 0.00196932 -0.000321203 0.0118537 0.00496018 -0.0114329 0.00832536 0.00903396 -0.00277039 0.0143092 0.0031493 -0.016161 -0.0124357 0.00809057 0.0129928 -0.0158231 0.0282883 -0.0114194 0.00480747 -0.000219177 0.0172819 -0.0402172 -0.0281593 -0.00179042 0.0272349 -0.00990981 -0.00709573 -0.0323773 0.0208203 -0.0316696 0.00452456 -0.0253643 0.00837943 -0.0234769 0.00504737 0.0120566 -0.00537971 -0.00255093 0.0209391 0.020711 0.016786 0.0271043 0.00830118 0.0131981 0.00775244 -0.00629482 -0.0149914 0.0269024 -0.00378804 0.00938015 0.0264441 0.00919089 0.0158234 0.00182008 0.00721888 0.0101987 -0.00948434 -0.00220668 0.00522284 -0.00246156 0.0209852 -0.0178339 -0.0028442 0.00806226 -0.0066889 -0.00723828 0.0461259 0.00875541 0.0062631 0.0104947 -0.0140804 0.0241079 -0.026269 0.0136609 -0.00429287 0 0.14308 0.573671 0.696905 0.382039 -0.63165 0.690953 -0.127411 -0.325989 0.219356 -0.810672 0.0769492 0.69869 0.475756 0.56377 0.0867368 0.243866 -0.495199 0.10085 -0.759924 0.500157 0.693239 0.508205 -0.861352 -0.919493 0.537185 0.176292 0.146458 -0.413557 0.408049 0.0471144 -0.14392 0.20072 0.470296 0.197094 0.238148 -0.296311 -0.275903 0.248415 0.00279996 0.204512 0.415326 0.658922 0.576313 0.364277 -0.515041 0.387918 -0.566269 -0.46252 0.125421 0.734148 -0.0903596 -0.313846 -0.741623 0.428222 -0.534838 0.0441242 -0.6724 0.513446 -0.71289 -0.0973926 0.269651 0.179949 0.495639 0.56465 0.79435 0.708972 0.947383 -0.124569 0.420107 0.559592 -0.19149 -0.440302 0.657272 -0.0282963 -0.100281 0.251455 0.251974 0.646931 -0.29645 -0.175667 -0.459531 -0.269747 -0.182972 0.345404 0.0459218 0.676589 -0.38854 0.0952728 0.623066 0.323733 0.426018 0.569366 0.670057 0.796834 0.778748 -0.850252 0.674652 -0.857651 0.466597 -0.184641 6881 -0.0069373 -0.0182842 -0.00250641 -0.014827 0.0238218 -0.0157951 0.0105609 0.0134582 -0.000478559 0.0159776 0.0134371 -0.0187747 -0.0202883 -0.0192247 0.00997851 -0.0037014 0.0228678 -0.0110792 0.0168576 -0.00694089 -0.0279912 -0.00846954 0.032771 0.0334678 -0.00983781 -0.0208949 -0.00198547 0.0237212 -0.00677631 -0.000485477 -0.00211323 0.00385676 -0.00488553 -0.00991322 0.00616214 0.0130523 -0.00123142 -0.00466244 -0.000123816 -0.00937801 -0.0159647 -0.0217866 -0.0255627 -0.00232269 0.00521148 0.00464528 0.00146591 0.0133423 -0.0116764 -0.0231797 0.001886 0.0194517 0.00968319 -0.013389 0.00238838 -0.00150677 0.0145389 -0.00695154 0.0159505 0.0100921 -0.0126679 -0.00703088 -0.0191637 -0.0116676 -0.0216134 -0.0155858 -0.0348786 0.00824809 -0.0160402 -0.0156108 0.00222316 0.00565494 -0.0203139 -0.00169975 0.0151738 0.000105578 -0.00196151 -0.0137246 0.00352464 0.00306386 0.03115 -0.000200159 0.00276833 -0.013697 -0.00134814 -0.0108099 0.014244 -0.00102111 -0.016965 -0.00954926 -0.0113966 -0.0187811 -0.0243734 -0.032553 -0.0277708 0.0208017 -0.0119544 0.0282654 -0.00253335 0.00411899 9192 -0.0418675 -0.0748957 -0.0349762 -0.0232418 0.0997403 -0.080086 0.0267859 0.00144486 -0.0365908 0.109965 0.0383626 -0.0673113 -0.0882356 -0.0720804 0.0537256 0.012303 0.0671034 -0.00490223 0.094077 -0.0517411 -0.100004 -0.0413149 0.182336 0.156172 -0.0471807 -0.052455 -0.00689152 0.115385 -0.0458524 0.0432888 -0.000982105 -0.00449935 -0.0189335 -0.0173315 -0.011708 0.0074369 -0.000439496 -0.0179856 0.0218096 -0.046571 -0.0639089 -0.146104 -0.0937443 0.0258947 0.049675 0.011432 0.0380184 0.08526 -0.0637881 -0.134194 -0.0146248 0.125638 0.0744331 -0.0212793 0.0790646 0.0457259 0.0857937 -0.0283405 0.0413922 0.0467135 -0.0517976 -0.032048 -0.105124 -0.0454983 -0.133484 -0.0705029 -0.170737 0.0544806 -0.0954872 -0.108356 0.0558612 0.0175526 -0.0754161 -0.0118317 0.0332381 -0.016054 0.0207899 -0.0376508 0.0160112 0.0250085 0.140147 0.0043331 -0.0227054 -0.0986077 -0.0284764 -0.0404766 0.0583791 -0.00450137 -0.0354385 -0.0644349 -0.0747603 -0.0906304 -0.128325 -0.175729 -0.0978647 0.119311 -0.0859975 0.137831 0.00438728 0.000827815 ---- == Storing node2Vec embeddings Next we're going to store these embeddings back into Neo4j so that we can use them later. The following code will do the trick: [source, cypher] ---- with open("movies.emb", "r") as movies_file, driver.session() as session: next(movies_file) reader = csv.reader(movies_file, delimiter=" ") params = [] for row in reader: movie_id = row[0] params.append({ "id": int(movie_id), "embedding": [float(item) for item in row[1:]] }) session.run("""\ UNWIND {params} AS param MATCH (m:Movie) WHERE id(m) = param.id SET m.embedding = param.embedding """, {"params": params}) ---- Now we're ready to do some machine learning. [[pandas]] == Loading our data into Pandas Each of the movies in our dataset has one or more genres and we're going to create a Tensorflow model that tries to predict the genres for a given movie. We'll first load our dataset into a Pandas DataFrame. Each row will represent a movie and will have 100 columns containing the embeddings we created above, as well as another column containing an array indicating which genres it has. That array will be a variant of a https://hackernoon.com/what-is-one-hot-encoding-why-and-when-do-you-have-to-use-it-e3c6186d008f[one hot encoding^] (multi hot encoding?!). The following code will construct our DataFrame: [source, python] ---- import pandas as pd movies_genres_query = """\ MATCH (genre:Genre) WITH genre ORDER BY genre.name WITH collect(id(genre)) AS genres MATCH (m:Movie)-[:IN_GENRE]->(genre) WITH genres, id(m) AS source, m.embedding AS embedding, collect(id(genre)) AS target RETURN source, embedding, [g in genres | CASE WHEN g in target THEN 1 ELSE 0 END] AS genres """ with driver.session() as session: result = session.run(movies_genres_query) df = pd.DataFrame([dict(row) for row in result]) ---- What does our DataFrame look like at the moment? [source, python] ---- >>> everything.head() embedding source \ 0 [0.14308, 0.573671, 0.696905, 0.382039, -0.631... 0 1 [-0.0069373, -0.0182842, -0.00250641, -0.01482... 6881 2 [-0.000760393, -0.00128913, -0.0139862, -0.006... 8435 3 [-0.00199855, -0.00427414, -0.0113419, -0.0027... 4009 4 [0.00647937, -0.00590963, -0.00502976, 0.00046... 3057 genres 0 [0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, ... 1 [0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, ... 2 [0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, ... 3 [0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, ... 4 [0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, ... ---- At the moment the embeddings are in an array within one column. We'll fix that in the next step. == Splitting training/test sets We're going to split our DataFrame into training and test sets. We'll just do a simple 90/10 split here but if we were doing this for real we'd want to do something more sophisticated such as http://scikit-learn.org/stable/modules/generated/sklearn.model_selection.KFold.html[K-Fold validation^]. [source,python] ---- train_index = int(len(df) * 0.9) train_data = df[:train_index] test_data = df[train_index:] train_x = train_data.ix[:, "embedding"] train_x = pd.DataFrame(np.array([np.array(item) for item in train_x.values])) train_x.columns = [str(col) for col in train_x.columns.get_values()] train_y = train_data.ix[:, 'genres'] # separate test data test_x = test_data.ix[:, "embedding"] test_x = pd.DataFrame(np.array([np.array(item) for item in test_x.values])) test_x.columns = [str(col) for col in train_x.columns.get_values()] test_y = test_data.ix[:, 'genres'] ---- The reason for this slightly insane data massaging is so that we can easily feed our data into a https://www.tensorflow.org/programmers_guide/datasets[Tensorflow DataSet^] in the next section. If there's an easier way to do this please let me know in the comments and I'll update the example. == Building Tensorflow model Now we're ready to create our Tensorflow model. First up, our imports: [source, python] ---- import tensorflow as tf from tensorflow.python.feature_column import feature_column_lib from tensorflow.python.training import training_util from tensorflow.python.training.ftrl import FtrlOptimizer ---- We're going to create a simple multi label classifier because a movie can have more than one genre associated with it. [source, python] ---- feature_columns = [tf.feature_column.numeric_column(key=key) for key in train_x.keys()] LEARNING_RATE = 0.3 loss_reduction = tf.losses.Reduction.SUM_OVER_BATCH_SIZE head = tf.contrib.estimator.multi_label_head(20, weight_column=none, label_vocabulary=none, loss_reduction=loss_reduction) classifier = tf.estimator.Estimator(model_fn=model_fn) classifier.train( input_fn=lambda: train_input_fn(train_x, train_y, 100), steps=2000) eval_result = classifier.evaluate( input_fn=lambda: eval_input_fn(test_x, test_y, 100)) print(eval_result) print('\nTest set AUC: {auc:0.3f}\n'.format(**eval_result)) ---- We called a few functions in the previous section so let's look into those in more detail. We have two functions for passing data into the `train` and `eval` functions of our classifier: [source, python] ---- def train_input_fn(features, labels, batch_size): labels = tf.constant(np.array([np.array(item) for item in labels.values])) dataset = tf.data.Dataset.from_tensor_slices((dict(features), labels)) return dataset.shuffle(1000).repeat().batch(batch_size) def eval_input_fn(features, labels, batch_size): labels = tf.constant(np.array([np.array(item) for item in labels.values])) features = dict(features) inputs = (features, labels) dataset = tf.data.Dataset.from_tensor_slices(inputs) assert batch_size is not none, "batch_size must not be None" return dataset.batch(batch_size) ---- I took most of this directly from the Tensorflow documentation and https://github.com/tensorflow/tensorflow/blob/master/tensorflow/contrib/learn/python/learn/estimators/head_test.py#L380[tests^], except the first line which I ended up with after a lot of trial and error. We also have a model function: [source, python] ---- def model_fn(features, labels, mode, config): def train_op_fn(loss): opt = FtrlOptimizer(learning_rate=LEARNING_RATE) return opt.minimize(loss, global_step=training_util.get_global_step()) def logit_fn(features): return feature_column_lib.linear_model( features=features, feature_columns=feature_columns, units=head.logits_dimension) return head.create_estimator_spec( features=features, mode=mode, logits=logit_fn(features=features), labels=labels, train_op_fn=train_op_fn) ---- I got most of this code from reverse engineering the https://www.tensorflow.org/api_docs/python/tf/estimator/LinearClassifier[LinearClassifier^] that I wrote about in https://markhneedham.com/blog/2018/05/05/tensorflow-18-hello-world-using-estimator-api/[a previous post^]. Now it's time to actually run this thing! This is the output we get: [source,bash] ---- $ python movies_multi_label_custom_estimator.py {'auc': 0.7855524, 'auc_precision_recall': 0.354057, 'average_loss': 0.29183877, 'loss': 0.2946557, 'global_step': 2000} Test set AUC: 0.786 ---- The `auc_precision_recall` is probably the most interesting one here and we're not doing very well in that respect, which is perhaps not surprising given the simplicity of our model. The next step would be to replace the model with a more complex Deep Neural Network that might be able to find some patterns in the embeddings. I'll leave that for another post, but we'll concluded by looking at how we could use this model to predict which genres a movie should have. The following code does the trick: [source,python] ---- genres_query = """\ MATCH (genre:Genre) WITH genre ORDER BY genre.name RETURN collect(genre.name) AS genres """ with driver.session() as session: result = session.run(genres_query) genres = result.peek()["genres"] movies_genres_predict_query = """\ MATCH (genre:Genre) WITH genre ORDER BY genre.name WITH collect(id(genre)) AS genres MATCH (m:Movie)-[:IN_GENRE]->(genre) WITH genres, m.title AS movie, id(m) AS source, m.embedding AS embedding, collect(id(genre)) AS target RETURN source, movie, embedding, [g in genres | CASE WHEN g in target THEN 1 ELSE 0 END] AS genres ORDER BY rand() LIMIT 3 """ with driver.session() as session: result = session.run(movies_genres_predict_query) predict_df = pd.DataFrame([dict(row) for row in result]) expected_df = predict_df[["genres", "source", "movie"]] predict_x = predict_df.ix[:, "embedding"] predict_x = pd.DataFrame(np.array([np.array(item) for item in predict_x.values])) predict_x.columns = [str(col) for col in predict_x.columns.get_values()] predictions = classifier.predict( input_fn=lambda: predict_input_fn(predict_x, 100)) for pred_dict, expec in zip(predictions, expected_df.as_matrix()): expected, source, movie = expec print("Movie: {0}".format(movie)) for idx, label in enumerate(expected): print(label, genres[idx], pred_dict["probabilities"][idx]) print("--") ---- And if we run it we'll see this output: [source, bash] ---- Movie: Someone Like You 0 (no genres listed) 0.013719821 0 Action 0.16868685 0 Adventure 0.119703874 0 Animation 0.049339224 0 Children 0.06293545 1 Comedy 0.3655233 0 Crime 0.119378164 0 Documentary 0.05467411 0 Drama 0.47860712 0 Fantasy 0.07273513 0 Film-Noir 0.021085216 0 Horror 0.09513151 0 IMAX 0.022415701 0 Musical 0.044788927 0 Mystery 0.060783025 1 Romance 0.16936173 0 Sci-Fi 0.08559853 0 Thriller 0.18862277 0 War 0.042249877 0 Western 0.024629481 -- Movie: Cyrus 0 (no genres listed) 0.013714926 0 Action 0.16862866 0 Adventure 0.11968786 0 Animation 0.04933899 0 Children 0.06292239 1 Comedy 0.36660013 0 Crime 0.1192929 0 Documentary 0.05456238 1 Drama 0.47862184 0 Fantasy 0.072761126 0 Film-Noir 0.021083448 0 Horror 0.09523407 0 IMAX 0.022410033 0 Musical 0.044797856 0 Mystery 0.060746994 1 Romance 0.1696445 0 Sci-Fi 0.085707955 0 Thriller 0.18862824 0 War 0.042215005 0 Western 0.024633398 -- Movie: Hugo 0 (no genres listed) 0.013695647 0 Action 0.16891125 0 Adventure 0.11970882 0 Animation 0.049290065 1 Children 0.062867686 0 Comedy 0.36590067 0 Crime 0.11941985 0 Documentary 0.05452773 1 Drama 0.4786238 0 Fantasy 0.07270951 0 Film-Noir 0.021058151 0 Horror 0.09517987 0 IMAX 0.022390224 0 Musical 0.04475778 1 Mystery 0.06075114 0 Romance 0.169593 0 Sci-Fi 0.08562877 0 Thriller 0.18874636 0 War 0.04222341 0 Western 0.024609018 -- ---- The movies we've used to test the model already have a node2Vec embedding. I'm not sure how we'd make predictions for a brand new movie that wasn't included in our initial embedding calculation. That's my next thing to research but let me know if you have any ideas. If you want to play with this all the code is in my https://github.com/mneedham/tensorflow-playground/blob/master/movies_multi_label_custom_estimator.py#L122[tensorflow-playground^] repository
Learn how to combine the node2Vec feature representation algorithm and Tensorflow machine learning library.
null
[ 0.019154665991663933, -0.039927925914525986, -0.0006958668236620724, 0.05678442120552063, 0.08045543730258942, 0.022941043600440025, 0.026210306212306023, 0.02749195694923401, 0.02886943891644478, -0.017559045925736427, 0.014396632090210915, -0.006274742539972067, -0.0636911541223526, 0.02040351927280426, -0.021572059020400047, 0.04944001883268356, 0.06750711053609848, 0.021630944684147835, 0.024667304009199142, 0.011931751854717731, 0.004541183356195688, 0.03845923766493797, 0.0020524964202195406, 0.03923124074935913, 0.01774672605097294, -0.02068520523607731, 0.004088127054274082, -0.004635041579604149, -0.03821846470236778, -0.01293917465955019, 0.017477041110396385, 0.005569801200181246, -0.0003185204113833606, -0.031051483005285263, 0.03574221208691597, -0.014479007571935654, -0.07199893146753311, 0.02829108200967312, 0.001472275354899466, 0.014719204977154732, -0.06790868192911148, 0.045494407415390015, -0.017298098653554916, 0.026887236163020134, -0.05734656751155853, 0.024410458281636238, -0.05227464810013771, 0.030326146632432938, 0.02875099889934063, -0.007345064543187618, -0.07786083966493607, 0.0319662019610405, -0.021007435396313667, -0.001888848259113729, 0.026906609535217285, 0.02691868133842945, 0.03128078952431679, -0.0781405046582222, 0.04536843299865723, -0.01614532433450222, -0.012135719880461693, 0.013900507241487503, -0.00013091767323203385, 0.04073306545615196, -0.009440100751817226, -0.029768969863653183, 0.01401533093303442, 0.07350906729698181, -0.04654043912887573, -0.022063905373215675, 0.001151848933659494, 0.034336015582084656, -0.022097839042544365, 0.018138108775019646, 0.005516417324542999, -0.04241775721311569, 0.0033593003172427416, 0.0408683679997921, 0.05369661748409271, 0.027876077219843864, -0.02138640359044075, 0.019641023129224777, 0.015634791925549507, 0.012037786655128002, 0.0010652320925146341, -0.025364715605974197, -0.025326494127511978, -0.0252512339502573, -0.06870454549789429, 0.03441084176301956, -0.005089260637760162, -0.04898925498127937, -0.01899048127233982, 0.008473677560687065, -0.018124621361494064, 0.020699970424175262, 0.0055822995491325855, -0.012449427507817745, 0.03178178146481514, -0.013909047469496727, -0.03344351053237915, -0.042989522218704224, -0.027917776256799698, -0.0058493828400969505, -0.08242899924516678, -0.03573643043637276, -0.024921325966715813, -0.027970103546977043, 0.004860605113208294, -0.004322717897593975, -0.035448528826236725, -0.02098066359758377, -0.021417127922177315, -0.00996424350887537, -0.09856463223695755, 0.04459523782134056, 0.0016730868956074119, -0.02916649356484413, -0.051342569291591644, 0.016779305413365364, 0.0591130331158638, 0.0367736741900444, 0.0006572272977791727, 0.07845459878444672, 0.000009461269655730575, 0.05808521807193756, 0.02639555186033249, 0.04506709426641464, -0.01689799502491951, -0.05810236185789108, -0.002903053304180503, 0.05231413245201111, -0.007264045998454094, 0.03063480742275715, -0.003096504369750619, -0.05624768137931824, -0.010919730179011822, 0.002766976598650217, 0.0374080054461956, 0.017986705526709557, 0.01982945203781128, -0.038413599133491516, 0.03712089732289314, 0.0063219633884727955, 0.04442872107028961, 0.0005396728520281613, -0.028691481798887253, -0.01949675939977169, -0.032515063881874084, 0.0047014919109642506, 0.014628452248871326, 0.03256066516041756, 0.03573114424943924, -0.037767134606838226, 0.008482263423502445, 0.11269302666187286, 0.043395400047302246, 0.03546407073736191, -0.020030826330184937, 0.028142187744379044, 0.07190392166376114, 0.03595241904258728, 0.014294162392616272, 0.059809546917676926, -0.0019477540627121925, -0.044836509972810745, 0.008612744510173798, 0.04562508314847946, -0.021663563326001167, -0.001711299060843885, -0.024779081344604492, -0.049215737730264664, 0.054082632064819336, -0.0258786603808403, -0.023654909804463387, 0.04147952422499657, 0.06443171948194504, 0.013621109537780285, 0.03909946233034134, 0.004715884570032358, -0.08641772717237473, 0.06455518305301666, 0.03217630088329315, 0.013793707825243473, 0.0011724556097760797, -0.01836099848151207, 0.06912442296743393, 0.022172534838318825, -0.0025668961461633444, 0.03598631173372269, -0.07811207324266434, -0.06919897347688675, -0.01710241287946701, -0.015277699567377567, 0.06882833689451218, -0.030786573886871338, 0.013380653224885464, 0.04589221253991127, 0.0015333748888224363, 0.022958874702453613, 0.02233833074569702, -0.04464149847626686, 0.013911250047385693, -0.040580715984106064, -0.06214749813079834, 0.04345555603504181, 0.03723739832639694, -0.057379741221666336, -0.06167471036314964, 0.02057448960840702, -0.020897632464766502, 0.01970125362277031, 0.0038321351166814566, -0.037872470915317535, 0.05559922754764557, 0.055739372968673706, 0.011240687221288681, 0.0028408169746398926, 0.05157418176531792, -0.03876110911369324, 0.03783806785941124, -0.017247404903173447, -0.02626260370016098, -0.007180944550782442, -0.011026754975318909, 0.1329161673784256, 0.05369305983185768, -0.03911206126213074, -0.07522851973772049, 0.026383541524410248, -0.004907183349132538, -0.013415038585662842, 0.00300648994743824, -0.02640194445848465, -0.014148886315524578, 0.0030137673020362854, -0.029072249308228493, -0.026539605110883713, 0.016433654353022575, -0.036380331963300705, 0.011505229398608208, 0.0701366737484932, -0.031379152089357376, 0.037272438406944275, -0.005839208140969276, -0.0009802835993468761, 0.015033965930342674, -0.04329785704612732, -0.0629107728600502, 0.01815730892121792, 0.005350049585103989, -0.0128061817958951, 0.05594394728541374, -0.01756160892546177, -0.0077256374061107635, -0.019090961664915085, -0.039946962147951126, 0.011959701776504517, 0.04752206429839134, 0.06266608834266663, 0.01425360981374979, 0.041085854172706604, -0.06563455611467361, 0.033607590943574905, -0.020490556955337524, -0.049835219979286194, -0.056307412683963776, -0.0471714548766613, 0.03569556400179863, 0.0226636603474617, 0.027715610340237617, -0.020707571879029274, 0.03150613605976105, -0.0009449580102227628, 0.0035146474838256836, -0.02258429117500782, 0.02580050565302372, 0.016724344342947006, -0.026786623522639275, -0.04725439473986626, -0.0056334068067371845, 0.06742443144321442, -0.05333975702524185, -0.006731388159096241, -0.018110955134034157, -0.05422183871269226, 0.028613083064556122, -0.06846070289611816, -0.019380521029233932, -0.04120820388197899, 0.028989873826503754, 0.058446381241083145, -0.0028733443468809128, 0.0054487925954163074, 0.03451742231845856, 0.03544386103749275, 0.021660462021827698, 0.008134403266012669, 0.006551022175699472, 0.045606374740600586, 0.01224291417747736, 0.045608457177877426, 0.029547685757279396, -0.022123336791992188, -0.03040045127272606, -0.025539495050907135, 0.03826013579964638, -0.03978178650140762, -0.27924296259880066, 0.03591667488217354, -0.016874490305781364, -0.02665405347943306, 0.01378818228840828, -0.048170071095228195, -0.002411691937595606, -0.025822628289461136, -0.013489576987922192, -0.014961098320782185, -0.031301479786634445, -0.01968405954539776, -0.035512201488018036, 0.03470174968242645, 0.01704220287501812, -0.005555493291467428, -0.0015562132466584444, -0.03728245198726654, 0.02207701839506626, 0.04571491479873657, -0.0019290762720629573, -0.04898438602685928, -0.019535576924681664, 0.02618985064327717, -0.007377334404736757, 0.02685694210231304, -0.10238680243492126, 0.03387213498353958, -0.043397460132837296, -0.02842230349779129, -0.022708263248205185, -0.03162511810660362, 0.02357316017150879, -0.000852218538057059, -0.016761615872383118, -0.009377045556902885, 0.03594523295760155, -0.010920383036136627, -0.006687329150736332, 0.01779201813042164, -0.03176200017333031, -0.03774060308933258, -0.013168537989258766, -0.003907714504748583, 0.09010443091392517, -0.01706116460263729, -0.05259651690721512, 0.004797660745680332, -0.00946793518960476, 0.07062286883592606, -0.030154554173350334, -0.020567694678902626, -0.014675243757665157, 0.04397837445139885, -0.018646351993083954, -0.015012179501354694, -0.01569141447544098, -0.0010229138424620032, -0.021666184067726135, -0.006949572823941708, -0.023951122537255287, -0.05427723005414009, 0.013914979994297028, -0.0642668604850769, -0.008377114310860634, -0.04652176797389984, -0.0727996826171875, -0.0427447147667408, 0.030032461509108543, 0.043159447610378265, -0.01647302508354187, 0.029067356139421463, -0.016483057290315628, -0.10819826275110245, -0.005159246269613504, -0.020938009023666382, -0.007963511161506176, 0.0014360741479322314, 0.02128881774842739, 0.06786665320396423, -0.04593803361058235, -0.07654202729463577, 0.00017416125047020614, 0.0012139173923060298, 0.004871952347457409, 0.003495698096230626, 0.005616191774606705, -0.04217454418540001, -0.006973785348236561, -0.021632883697748184, 0.051869358867406845, -0.02561688795685768, -0.008943715132772923, -0.008781262673437595, -0.006135636009275913, 0.049799758940935135, 0.0213273074477911, 0.00032070110319182277, 0.008464754559099674, 0.052254363894462585, 0.06338424235582352, -0.02857663296163082, -0.0013173242332413793, -0.04504760354757309, -0.028255024924874306, -0.006239763461053371, -0.02457370236515999, 0.008986924774944782, 0.023105844855308533, 0.009692659601569176, -0.04299168661236763, -0.026604413986206055, 0.028753003105521202, -0.05145498365163803, -0.024226756766438484, 0.004928440321236849, 0.017748618498444557, 0.014493456110358238, 0.04001663252711296, -0.03820454701781273, -0.05559821054339409, 0.030266959220170975, 0.021761298179626465, 0.010420232079923153, -0.0350971594452858, -0.038030050694942474, -0.0013092933222651482, -0.026942800730466843, 0.01875346340239048, 0.011278847232460976, -0.01999835856258869, 0.04592986777424812, 0.02192755788564682, -0.011928015388548374, 0.057869803160429, -0.035064540803432465, -0.0013089077547192574, -0.01987137459218502, 0.02004319801926613, 0.0028733047656714916, -0.013274885714054108, -0.009482277557253838, -0.0149827366694808, 0.019240746274590492, 0.04142284020781517, 0.031100153923034668, 0.017163049429655075, 0.011140644550323486, -0.00653908820822835, -0.010311384685337543, 0.0013238751562312245, -0.027638468891382217, 0.002577119739726186, -0.025483770295977592, -0.01914651319384575, -0.012900271452963352, 0.041863661259412766, -0.029558980837464333, 0.003953783772885799, -0.025921626016497612, 0.05519801378250122, -0.026720235124230385, -0.007830722257494926, 0.01350151002407074, 0.0004887043032795191, 0.05227494239807129, -0.0033110356889665127, -0.015049267560243607, -0.013819172978401184, -0.0027089647483080626, 0.017660701647400856, 0.017016040161252022, -0.026343926787376404, -0.007900661788880825, -0.006010344717651606, -0.004991358146071434, 0.003116919659078121, 0.022152850404381752, 0.0004176641523372382, 0.010774962604045868, -0.007352904882282019, -0.010348072275519371, 0.014763878658413887, 0.009430444799363613, 0.05946686118841171, 0.05238514766097069, -0.024768216535449028, 0.016979005187749863, -0.019451292231678963, 0.00227830046787858, -0.011083783581852913, 0.007013884838670492, -0.013567118905484676, -0.010938415303826332, -0.013290933333337307, -0.03985341265797615, 0.043618425726890564, 0.003478767117485404, -0.000981288612820208, 0.011448034085333347, -0.02725157141685486, 0.01753993146121502, -0.027248771861195564, 0.0557238794863224, 0.060297027230262756, -0.04093264788389206, -0.022187689319252968, 0.010566357523202896, 0.0011106322053819895, -0.013421403244137764, 0.040821537375450134, -0.05649792030453682, -0.03405974432826042, -0.024425670504570007, 0.00506786722689867, -0.016028737649321556, -0.041729412972927094, -0.01657130755484104, 0.01984081044793129, 0.008578303270041943, 0.014720747247338295, 0.012667863629758358, 0.0012547015212476254, -0.02277981862425804, -0.02898038923740387, 0.022150717675685883, -0.004433265421539545, -0.013441276736557484, -0.011493844911456108, -0.016576794907450676, 0.028181016445159912, -0.027738988399505615, 0.021921774372458458, 0.037457216531038284, -0.02178093232214451, -0.006120120175182819, -0.06209457665681839, 0.033716101199388504, 0.0034474926069378853, 0.031470343470573425, 0.008356130681931973, 0.0002978513657581061, -0.07152704149484634, 0.02135661616921425, -0.0328025259077549, 0.0070538208819925785, -0.0225191880017519, -0.002234308747574687, 0.016185829415917397, 0.025831667706370354, 0.021999366581439972, 0.05510441213846207, -0.007733303587883711, -0.026194434612989426, 0.04586752876639366, -0.04883068799972534, -0.022890115156769753, -0.00561803812161088, -0.04735255986452103, 0.010205885395407677, 0.003360255854204297, 0.015721123665571213, -0.030783772468566895, 0.06201595067977905, 0.03738442808389664, 0.001085094059817493, 0.0375029519200325, 0.002242050599306822, 0.02556282840669155, -0.026856180280447006, -0.012454744428396225, -0.07635209709405899, -0.019866105169057846, 0.05949893966317177, -0.0004516637709457427, -0.010536502115428448, -0.004373905248939991, -0.03659404441714287, 0.006917939521372318, -0.062068670988082886, -0.03919059783220291, 0.05831056833267212, -0.02750552073121071, 0.019501326605677605, -0.02131790481507778, -0.03959286957979202, 0.025643842294812202, 0.04581748694181442, -0.04243539646267891, -0.018559113144874573, -0.014727149158716202, 0.04423624649643898, -0.04117927700281143, 0.045839279890060425, 0.001120937173254788, -0.010274192318320274, 0.07668423652648926, 0.027920080348849297, 0.030794158577919006, 0.040564969182014465, -0.004738200921565294, 0.043476495891809464, 0.03792611509561539, -0.019476380199193954, 0.006927270907908678, 0.04109566658735275, -0.006241308990865946, -0.052440300583839417, 0.03672671690583229, 0.0065455627627670765, -0.020949941128492355, -0.046223822981119156, 0.0650186762213707, 0.014479940757155418, -0.05016816407442093, -0.03173540532588959, 0.049371249973773956, -0.0376543365418911, -0.009966053999960423, -0.04519364610314369, -0.0005374103202484548, -0.03576861321926117, 0.046215519309043884, -0.03735337406396866, -0.012653800658881664, 0.0694805309176445, -0.008365456014871597, -0.014132861979305744, 0.005207151174545288, 0.07319500297307968, 0.0786515325307846, 0.05590340122580528, 0.011161668226122856, 0.08813001960515976, -0.010845283046364784, -0.025209980085492134, -0.006218741647899151, -0.012739880941808224, -0.017472626641392708, -0.0032479797955602407, 0.018198678269982338, 0.0766717717051506, -0.023139145225286484, 0.08534205704927444, -0.03511552885174751, -0.007760343607515097, 0.002089556073769927, 0.00400183442980051, -0.006018480286002159, 0.04353960603475571, 0.01633867435157299, -0.0019073118455708027, -0.03952760621905327, -0.029366910457611084, -0.00018448398623149842, -0.023429542779922485, -0.0002033792552538216, 0.046754926443099976, -0.005971891805529594, 0.030335478484630585, -0.0047860401682555676, 0.053164247423410416, 0.0979386642575264, -0.03978315368294716, -0.0035513569600880146, 0.0016657544765621424, 0.007727470248937607, -0.013478352688252926, 0.030110256746411324, -0.02850743569433689, -0.03687131404876709, -0.0012479680590331554, -0.05008292570710182, -0.012091517448425293, -0.021039679646492004, -0.022596774622797966, -0.026173310354351997, -0.0437907837331295, -0.029270771890878677, 0.00791106279939413, 0.00003169661795254797, -0.014415574260056019, -0.030343562364578247, -0.03381405398249626, -0.06385649740695953, -0.09867524355649948, -0.025174809619784355, 0.004566657356917858, 0.0051383343525230885, -0.047628093510866165, -0.026205522939562798, -0.0283039677888155, -0.010964345186948776, 0.06703173369169235, -0.05792631581425667, 0.015906285494565964, -0.001977828098461032, 0.0341818705201149, 0.01016609463840723, 0.01505428645759821, 0.03981233760714531, 0.024125317111611366, -0.013832580298185349, 0.00013962227967567742, 0.033929284662008286, 0.02402349002659321, 0.0002470980689395219, 0.005730419419705868, -0.0927988588809967, -0.0026941075921058655, 0.038618527352809906, -0.017463723197579384, -0.08275014162063599, -0.0006034295656718314, 0.05126865953207016, 0.03715086355805397, 0.0556909441947937, -0.012761822901666164, 0.001205284963361919, -0.049085833132267, -0.0024221036583185196, -0.018668223172426224, -0.009465987794101238, 0.040703095495700836, 0.0008487298036925495, 0.07148195803165436, 0.02929944172501564, -0.012515506707131863, -0.014178684912621975, -0.01893908530473709, -0.0009925456251949072, 0.02767796255648136, -0.04326946660876274, -0.017515666782855988, -0.033237338066101074, -0.07691703736782074, -0.02065115049481392, 0.019456082955002785, -0.00687758345156908, -0.01522001437842846, 0.02106449380517006, 0.032327018678188324, -0.03087770566344261, 0.05063770338892937, -0.03942027688026428, 0.012326871044933796, -0.021055620163679123, -0.02435094676911831, -0.03604430705308914, 0.019732650369405746, 0.002589734038338065, 0.014457982033491135, 0.014111734926700592, -0.06286077201366425, -0.030268073081970215, -0.011068275198340416, 0.019443830475211143, 0.02816573716700077, 0.02101851813495159, 0.03743283823132515 ]
[ -0.06636597961187363, -0.03203996643424034, -0.04420352727174759, -0.025160521268844604, 0.048753753304481506, -0.005966124124825001, -0.04374511539936066, -0.002350590890273452, -0.012223516590893269, -0.021228699013590813, 0.02646995149552822, -0.07579704374074936, 0.009202446788549423, -0.00143256108276546, 0.09865283221006393, 0.021267186850309372, -0.024939371272921562, -0.026601430028676987, -0.03513111546635628, 0.02722170762717724, -0.004506588447839022, -0.055713020265102386, -0.01705878973007202, -0.06364116072654724, -0.006018726155161858, 0.017625896260142326, 0.04204800724983215, -0.03472032770514488, -0.020328478887677193, -0.2141485959291458, 0.027834543958306313, -0.003961039707064629, 0.03134658560156822, -0.004512092098593712, 0.007861164398491383, -0.020509768277406693, 0.06332433968782425, -0.013592466711997986, -0.024456093087792397, 0.014760646037757397, 0.0010770732769742608, -0.004414606373757124, -0.0466860868036747, -0.034385599195957184, 0.08523476868867874, 0.027798879891633987, 0.0007010020781308413, -0.011393981985747814, -0.019762994721531868, -0.006230244878679514, -0.018325427547097206, -0.03301336243748665, -0.0009343813289888203, -0.015363765880465508, -0.0024466097820550203, 0.02300087735056877, 0.026759503409266472, 0.053299546241760254, 0.043622083961963654, 0.044728606939315796, -0.002134172013029456, 0.016237033531069756, -0.10437889397144318, 0.06416617333889008, 0.039816826581954956, 0.04905953258275986, -0.05886761471629143, -0.012117249891161919, -0.010736582800745964, 0.10308846831321716, 0.024627679958939552, -0.0005510746850632131, -0.03601260110735893, 0.03211754560470581, 0.006453001871705055, 0.0298237893730402, 0.030632462352514267, 0.04064469411969185, 0.04288018122315407, -0.051428377628326416, -0.05451951175928116, 0.03119501657783985, -0.025710880756378174, 0.0006898335996083915, -0.014978596940636635, 0.03672441095113754, -0.005664343945682049, 0.0409826897084713, -0.009249205701053143, 0.051790036261081696, 0.021353261545300484, 0.013112192042171955, 0.024107303470373154, 0.01907655969262123, -0.07784118503332138, -0.022537730634212494, 0.02319706417620182, 0.014346868731081486, 0.004153698682785034, 0.4122941792011261, 0.003455766476690769, -0.023614179342985153, 0.05360569432377815, 0.056391116231679916, 0.002737190807238221, -0.04683117941021919, -0.00631300313398242, -0.044114481657743454, 0.015809714794158936, -0.010071189142763615, -0.022600818425416946, -0.024277886375784874, 0.028856197372078896, -0.0936620682477951, 0.018133603036403656, 0.009011095389723778, 0.01610112190246582, 0.06210218369960785, -0.019752424210309982, 0.0027132160030305386, -0.017202474176883698, 0.006900151260197163, 0.03564560413360596, -0.006906681228429079, 0.038765352219343185, 0.012835363857448101, 0.01086489763110876, 0.04120650514960289, 0.06059827283024788, 0.032878194004297256, 0.033259570598602295, 0.03427868336439133, -0.08056086301803589, 0.04471203312277794, 0.0025395923294126987, 0.022159196436405182, 0.01397167518734932, -0.04707247391343117, -0.03641389310359955, 0.01262421440333128, 0.007375441957265139, 0.016633762046694756, 0.04760211706161499, 0.008193315006792545, -0.020930573344230652, 0.1269814819097519, -0.013018843717873096, -0.03249584510922432, -0.036620113998651505, -0.07473674416542053, 0.015957718715071678, 0.043706100434064865, -0.023951243609189987, -0.05460205301642418, 0.00747638801112771, 0.013373665511608124, 0.08058519661426544, -0.04063849896192551, -0.0978725403547287, 0.03404032066464424, -0.03230864182114601, -0.03428179770708084, -0.037299249321222305, 0.06497567147016525, 0.06001028046011925, -0.11866176128387451, -0.015883585438132286, 0.013947281055152416, 0.019861454144120216, -0.06392209976911545, 0.0036755960900336504, 0.00533453980460763, -0.043451275676488876, -0.03278716653585434, 0.0348258838057518, -0.02282896637916565, -0.07864359766244888, -0.03436582162976265, 0.05296832323074341, 0.002917033387348056, -0.02046618051826954, -0.02840712107717991, -0.044452592730522156, -0.00749306520447135, -0.07239877432584763, -0.07113118469715118, -0.05612975358963013, 0.0009996405569836497, -0.04173947498202324, -0.031768545508384705, -0.03328419476747513, -0.02375836856663227, -0.055320486426353455, 0.055579137057065964, -0.02465779148042202, -0.0026436117477715015, -0.0013277659891173244, 0.015630241483449936, -0.03871806710958481, -0.030613822862505913, 0.030471978709101677, 0.00911045167595148, -0.005251394584774971, 0.016366684809327126, -0.08970928192138672, 0.015382211655378342, 0.0393294133245945, -0.03069274313747883, 0.056268829852342606, 0.03624405711889267, -0.041208505630493164, -0.033154670149087906, -0.007878758944571018, 0.027081063017249107, -0.03236660361289978, -0.0048421211540699005, 0.019568677991628647, 0.00006125650543253869, 0.03445481136441231, 0.055544525384902954, -0.0227082297205925, -0.02619531750679016, -0.027206959202885628, -0.33112382888793945, -0.052283164113759995, -0.014866876415908337, 0.0030271168798208237, 0.024618100374937057, -0.04448118805885315, 0.011957904323935509, -0.015282800421118736, 0.01674307882785797, 0.01734398491680622, 0.09912753850221634, -0.002379793906584382, 0.0047010695561766624, -0.100323885679245, 0.013073908165097237, 0.05081305652856827, 0.007389608770608902, -0.02044668048620224, -0.012613917700946331, 0.026842422783374786, -0.003595147281885147, -0.041509777307510376, 0.01835135743021965, -0.045433372259140015, -0.02102392166852951, -0.009467066265642643, 0.13480693101882935, -0.002456679241731763, 0.047803401947021484, -0.05280265584588051, 0.02220640517771244, 0.023190626874566078, -0.030345680192112923, -0.07478296011686325, 0.006730079650878906, -0.03219388425350189, 0.035947684198617935, 0.03694314509630203, 0.008427547290921211, -0.025926165282726288, -0.056115902960300446, 0.008007258176803589, -0.0279646348208189, -0.07524033635854721, -0.027554741129279137, 0.039647843688726425, -0.05315685272216797, 0.0033204553183168173, 0.0019074169686064124, 0.05694336071610451, 0.02278589829802513, 0.015894152224063873, 0.015321771614253521, 0.008244047872722149, -0.022158149629831314, -0.012619066052138805, -0.045465633273124695, -0.028824402019381523, 0.00922259222716093, 0.039563070982694626, 0.003096013329923153, 0.0011065186699852347, 0.014095083810389042, -0.0907062217593193, 0.03460361808538437, 0.010506575927138329, 0.00009720765228848904, -0.006260542664676905, 0.03402351960539818, -0.018046408891677856, -0.012588487938046455, 0.07664988934993744, 0.01785108633339405, 0.022663215175271034, 0.06755922734737396, 0.040341462939977646, -0.0003531607799232006, 0.04434651508927345, 0.021125173196196556, -0.0044925641268491745, 0.0472048856317997, -0.024260545149445534, 0.0669192373752594, -0.023604033514857292, 0.011496801860630512, 0.03804774209856987, 0.0011430556187406182, -0.03904718533158302, 0.04024837538599968, 0.04109485074877739, -0.01488233357667923, -0.013322143815457821, -0.033005744218826294, -0.04268350079655647, 0.0498364083468914, -0.004979308228939772, -0.2683473527431488, 0.029928157106041908, 0.04824015870690346, 0.0784965306520462, -0.0003418749547563493, -0.022500449791550636, 0.06519699841737747, -0.035932473838329315, 0.009912094101309776, -0.0017865421250462532, 0.02746620774269104, 0.049849968403577805, 0.01442872453480959, 0.009879233315587044, -0.028662679716944695, 0.004917981568723917, 0.04859752207994461, -0.000922388571780175, 0.026594754308462143, 0.00524562131613493, 0.04063335061073303, -0.011356773786246777, 0.1989184468984604, 0.008256656117737293, 0.003572111949324608, 0.010295948013663292, -0.04078668728470802, -0.008483216166496277, 0.0864579975605011, -0.007583232130855322, -0.014473301358520985, 0.045736633241176605, 0.02104485221207142, 0.0011813008459284902, 0.024426380172371864, -0.045933231711387634, -0.01641460508108139, 0.03328107297420502, 0.0339982695877552, -0.0231484267860651, 0.042635589838027954, -0.01074254047125578, -0.026431001722812653, 0.019170701503753662, 0.041833799332380295, -0.020191127434372902, 0.03882378712296486, 0.02094225212931633, -0.051178090274333954, -0.003096596570685506, -0.049111805856227875, -0.04470539093017578, -0.0019359529251232743, -0.020036187022924423, 0.008624589070677757, 0.07252851873636246, -0.0015417580725625157, -0.023000940680503845, 0.0024245744571089745, 0.014660085551440716, -0.02160004712641239, -0.06320683658123016, 0.09103544056415558, 0.0027511916123330593, 0.006486988626420498 ]
[ 0.032647427171468735, -0.008327092044055462, 0.011133519001305103, 0.028040386736392975, 0.023203331977128983, 0.018446894362568855, -0.012986237183213234, 0.0007261837017722428, -0.01867632567882538, -0.011330369859933853, -0.029607316479086876, 0.01623229868710041, 0.03496168926358223, 0.004884171765297651, 0.008821351453661919, 0.03135623037815094, 0.03305056318640709, 0.018553601577878, 0.04320840910077095, -0.004928620997816324, -0.05262274667620659, -0.013447694480419159, 0.02377578616142273, -0.06183069944381714, -0.031384050846099854, 0.02303173951804638, -0.040381114929914474, -0.00399783905595541, 0.013586546294391155, -0.11398795992136002, 0.033825621008872986, -0.01915602944791317, -0.029333317652344704, 0.008147919550538063, 0.00013623842096421868, -0.027590608224272728, -0.026358701288700104, -0.012416944839060307, -0.029882432892918587, 0.015610983595252037, 0.027334708720445633, 0.014499902725219727, -0.0028610709123313427, 0.0008413586765527725, 0.033717185258865356, -0.015779543668031693, -0.020644361153244972, -0.006608905270695686, 0.0120308268815279, 0.0025698216632008553, -0.06161513552069664, -0.014359842985868454, -0.02504257671535015, 0.002202780917286873, -0.006920286454260349, 0.00338312448002398, -0.002728127408772707, 0.013720160350203514, 0.014707467518746853, -0.013378509320318699, 0.05159439146518707, -0.010803868062794209, -0.02780935727059841, -0.04128406569361687, -0.0019353586249053478, -0.028564004227519035, -0.01670219376683235, 0.017439480870962143, -0.006328847259283066, 0.02456095442175865, -0.019993511959910393, 0.03973829373717308, -0.06514696031808853, -0.027834711596369743, -0.037020064890384674, -0.03108532913029194, 0.014575277455151081, -0.005728238262236118, -0.0036739525385200977, -0.011140130460262299, -0.02865135669708252, -0.02802407555282116, 0.0024179473984986544, -0.02492416650056839, -0.04151324927806854, -0.006965670734643936, -0.0032841975335031748, 0.005912816151976585, -0.013462924398481846, 0.04403729736804962, -0.049029573798179626, 0.012604217045009136, 0.002754021668806672, -0.002477562753483653, -0.06760530173778534, -0.00445141363888979, 0.0030880586709827185, -0.0013424314092844725, -0.009057427756488323, 0.823549211025238, -0.00339134456589818, -0.021893924102187157, -0.0011594172101467848, -0.02308121882379055, 0.04802284762263298, -0.015169317834079266, 0.002230581594631076, 0.00120546855032444, 0.006768438965082169, -0.011401226744055748, -0.010933657176792622, 0.06266278028488159, 0.01059821154922247, 0.023552697151899338, 0.03990200161933899, 0.0013839021557942033, 0.02944260463118553, 0.026988133788108826, 0.03317645937204361, 0.03024526685476303, 0.02185872010886669, 0.01181371696293354, 0.008515218272805214, -0.004121382255107164, -0.02574274316430092, -0.18800190091133118, -0.002591516589745879, -6.774340148326257e-33, 0.0346946120262146, -0.023770000785589218, 0.037894345819950104, 0.011401860974729061, 0.02476140484213829, 0.026009012013673782, -0.02935161255300045, -0.006089865695685148, -0.020281895995140076, -0.04900173097848892, -0.03236757591366768, -0.022342238575220108, 0.007694341707974672, 0.03918422758579254, 0.01478470116853714, -0.01649301126599312, 0.01840757019817829, 0.007864896208047867, 0.037381477653980255, -0.015390492975711823, 0.007800713647156954, 0.04304513335227966, -0.01882731169462204, 0.060079965740442276, -0.04118086397647858, 0.03253578022122383, -0.013505792245268822, -0.0004159641684964299, 0.0314469151198864, -0.0432925745844841, -0.04119370877742767, 0.022590957581996918, 0.00860781129449606, -0.04659339413046837, 0.02689407393336296, -0.03964979201555252, -0.04236283525824547, 0.0007363282493315637, -0.01386687345802784, -0.06672415137290955, -0.005049454048275948, 0.020314931869506836, -0.007585328072309494, -0.04495321214199066, -0.0700589269399643, -0.030456870794296265, 0.012026696465909481, 0.03643662855029106, -0.007322990335524082, 0.02866329625248909, -0.006584197748452425, -0.014544106088578701, 0.0009486976778134704, 0.005290973000228405, -0.023571478202939034, -0.019279712811112404, 0.01487014815211296, 0.003861035918816924, -0.008766035549342632, 0.03250991180539131, 0.04094715416431427, -0.022097395732998848, 0.0010187699226662517, 0.02272059954702854, 0.00995455589145422, 0.04835541546344757, 0.0192410871386528, 0.01082733366638422, 0.00431846734136343, 0.036041732877492905, -0.0642252191901207, 0.04994765296578407, -0.015572590753436089, -0.01875695399940014, 0.018304847180843353, -0.05331172049045563, -0.000325899658491835, -0.04364628717303276, 0.02601894736289978, 0.053799550980329514, -0.04460045322775841, -0.002037990605458617, 0.024334022775292397, -0.04962409287691116, -0.05469481647014618, -0.008758217096328735, 0.01820540614426136, 0.01808219589293003, 0.010167092084884644, 0.023229222744703293, 0.033880624920129776, 0.04522201046347618, -0.021570663899183273, 0.002186423633247614, 0.012330266647040844, 6.0649230627912675e-33, -0.005649365019053221, 0.011976216919720173, -0.007893328554928303, 0.005723354872316122, 0.044263556599617004, 0.0030226451344788074, 0.00809301808476448, 0.005657603964209557, -0.021787390112876892, 0.025577276945114136, -0.00916699692606926, -0.02919572964310646, -0.008716028183698654, 0.012398511171340942, 0.07224822044372559, -0.0321037694811821, -0.006181357894092798, -0.016817225143313408, -0.012452276423573494, -0.012091743759810925, -0.011433380655944347, 0.0025033303536474705, -0.008117699064314365, 0.011764897964894772, 0.03754111006855965, 0.03405686840415001, 0.013676735572516918, 0.007073295768350363, -0.02137504331767559, -0.0004155572678428143, 0.007701558526605368, -0.045928116887807846, -0.0168216023594141, -0.01072188001126051, 0.006964478176087141, 0.028984397649765015, 0.017322292551398277, -0.008840015158057213, -0.029507756233215332, 0.019539901986718178, 0.018815329298377037, 0.046763110905885696, -0.059873729944229126, 0.05563326179981232, -0.007622838020324707, 0.022099098190665245, -0.005643796641379595, 0.026683200150728226, -0.0031890119425952435, -0.008250413462519646, -0.01877036690711975, 0.005841274280101061, 0.015470688231289387, 0.013059264048933983, -0.020051635801792145, -0.027712155133485794, -0.01193921733647585, 0.07010838389396667, 0.000757700065150857, 0.004932847805321217, -0.012005792930722237, -0.02529110573232174, -0.025229165330529213, 0.015791427344083786, -0.020002733916044235, -0.024343334138393402, -0.03947987034916878, 0.01039289589971304, -0.030790014192461967, 0.009907670319080353, -0.011130394414067268, 0.01832958124577999, -0.0210040844976902, 0.014208251610398293, 0.006742371246218681, -0.028235632926225662, -0.015494917519390583, 0.020410697907209396, -0.027965230867266655, 0.028192803263664246, 0.01035386323928833, 0.045209191739559174, 0.037046488374471664, -0.01374901831150055, 0.019911624491214752, -0.0011683849152177572, -0.025101633742451668, 0.039373330771923065, -0.0011580553837120533, -0.01532434020191431, 0.02200390212237835, -0.041483376175165176, -0.01887425407767296, 0.022058339789509773, -0.028549736365675926, -1.234941482408658e-8, -0.08207722753286362, 0.00353174633346498, 0.00540128955617547, 0.013467286713421345, 0.014728945679962635, 0.04064875841140747, -0.009218764491379261, 0.038985349237918854, -0.000008004745723155793, 0.005806817207485437, 0.010003332048654556, -0.033637888729572296, -0.00008282608177978545, 0.007995269261300564, 0.0166813675314188, -0.0011838554637506604, 0.025299541652202606, -0.0064095002599060535, 0.044306714087724686, 0.02318398468196392, 0.026388412341475487, 0.002135294256731868, -0.009524891152977943, 0.01603269949555397, -0.010608221404254436, -0.034945398569107056, 0.028288237750530243, -0.05743841081857681, -0.01818111538887024, 0.019809717312455177, -0.01840021088719368, -0.039190247654914856, 0.01402293611317873, -0.03507032245397568, -0.038186121731996536, -0.016544347628951073, 0.01706896908581257, 0.013193178921937943, 0.015233591198921204, 0.03212287649512291, 0.0009639900526963174, 0.03928624466061592, -0.004833636339753866, -0.03919358551502228, -0.013803385198116302, 0.017077647149562836, 0.0036859349347651005, -0.0006094130221754313, 0.02067723125219345, -0.057895589619874954, 0.016053343191742897, -0.030418753623962402, 0.002415234921500087, 0.01996193267405033, 0.06780576705932617, 0.0009345360449515283, -0.011810117401182652, -0.03190452605485916, 0.002412287285551429, -0.013011076487600803, 0.04599431902170181, 0.0012461518635973334, -0.03201761096715927, -0.016850745305418968 ]
node2vec-tensorflow
https://markhneedham.com/blog/2018/05/11/node2vec-tensorflow
false
2018-05-19 09:47:21
Interpreting Word2vec or GloVe embeddings using scikit-learn and Neo4j graph algorithms
[ "python", "neo4j", "word2vec", "scikit-learn", "sklearn" ]
[ "Python" ]
A couple of weeks I came across a paper titled http://aclweb.org/anthology/W/W17/W17-2404.pdf[Parameter Free Hierarchical Graph-Based Clustering for Analyzing Continuous Word Embeddings^] via https://twitter.com/abigail_e_see?lang=en[Abigail See^]'s http://www.abigailsee.com/2017/08/30/four-deep-learning-trends-from-acl-2017-part-2.html[blog post about ACL 2017^]. ++++ <div style="float:right; padding: 2px "> <img src="{{<siteurl>}}/uploads/2018/05/word_hierarchy.png" alt="Interpreting word embeddings" width="200px" /> </div> ++++ The paper explains an algorithm that helps to make sense of word embeddings generated by algorithms such as Word2vec and https://nlp.stanford.edu/projects/glove/[GloVe^]. I'm fascinated by how graphs can be used to interpret seemingly black box data, so I was immediately intrigued and wanted to try and reproduce their findings using Neo4j. This is my understanding of the algorithm: 1. Create a nearest neighbour graph (NNG) of our embedding vectors, where each vector can only have one relationship to its nearest neighbour 2. Run the connected components algorithm over that NNG to derive clusters of words 3. For each cluster define a `macro vertex` - this could be the most central word in the cluster or the most popular word 4. Create a NNG of the macro vertices 5. Repeat steps 2 and 3 until we have only one cluster left We can use the https://neo4j.com/docs/graph-algorithms/current/[Neo4j graph algorithms library^] for Step 2 and I initially tried to brute force Step 1 before deciding to use http://scikit-learn.org[scikit-learn^] for this part of the algorithm. [source, bash] ---- $ head -n1 data/small_glove.txt the -0.038194 -0.24487 0.72812 -0.39961 0.083172 0.043953 -0.39141 0.3344 -0.57545 0.087459 0.28787 -0.06731 0.30906 -0.26384 -0.13231 -0.20757 0.33395 -0.33848 -0.31743 -0.48336 0.1464 -0.37304 0.34577 0.052041 0.44946 -0.46971 0.02628 -0.54155 -0.15518 -0.14107 -0.039722 0.28277 0.14393 0.23464 -0.31021 0.086173 0.20397 0.52624 0.17164 -0.082378 -0.71787 -0.41531 0.20335 -0.12763 0.41367 0.55187 0.57908 -0.33477 -0.36559 -0.54857 -0.062892 0.26584 0.30205 0.99775 -0.80481 -3.0243 0.01254 -0.36942 2.2167 0.72201 -0.24978 0.92136 0.034514 0.46745 1.1079 -0.19358 -0.074575 0.23353 -0.052062 -0.22044 0.057162 -0.15806 -0.30798 -0.41625 0.37972 0.15006 -0.53212 -0.2055 -1.2526 0.071624 0.70565 0.49744 -0.42063 0.26148 -1.538 -0.30223 -0.073438 -0.28312 0.37104 -0.25217 0.016215 -0.017099 -0.38984 0.87424 -0.72569 -0.51058 -0.52028 -0.1459 0.8278 0.27062 ---- == Imports First let's load in the libraries that we're going to use: [source, python] ---- import sys from neo4j.v1 import GraphDatabase, basic_auth from sklearn.neighbors import KDTree ---- == Setup database constraints and indexes Before we import any data into Neo4j we're going to setup constraints and indexes: [source, python] ---- with driver.session() as session: session.run("""\ CREATE CONSTRAINT ON (c:Cluster) ASSERT (c.id, c.round) IS NODE KEY""") session.run("""\ CREATE CONSTRAINT ON (t:Token) ASSERT t.id IS UNIQUE""") session.run("""\ CREATE INDEX ON :Cluster(round)""") ---- == Loading the data Now we'll load the words into Neo4j - one node per word. I'm using a subset of the word embeddings from the GloVe algorithm, but the format is similar to what you'd get from Word2vec. [source, python] ---- driver = GraphDatabase.driver("bolt://localhost", auth=basic_auth("neo4j", "neo")) with open("data/medium_glove.txt", "r") as glove_file, driver.session() as session: rows = glove_file.readlines() params = [] for row in rows: parts = row.split(" ") id = parts[0] embedding = [float(part) for part in parts[1:]] params.append({"id": id, "embedding": embedding}) session.run("""\ UNWIND {params} AS row MERGE (t:Token {id: row.id}) ON CREATE SET t.embedding = row.embedding """, {"params": params}) ---- == Nearest Neighbour Graph Now we want to create a nearest neighbour graph of our words. We'll use http://scikit-learn.org/stable/modules/neighbors.html[scikit-learn's nearest neighbours module^] to help us out here. We want to end up with these relationships added to the graph: image::{{<siteurl>}}/uploads/2018/05/nng.png[width="400px"] Each node will have an outgoing relationship to one other node, where the nearest neighbour is determine by comparing their embedding vectors with the euclidean distance function. This function does the trick: [source, python] ---- def nearest_neighbour(label): with driver.session() as session: result = session.run("""\ MATCH (t:`%s`) RETURN id(t) AS token, t.embedding AS embedding """ % label) points = {row["token"]: row["embedding"] for row in result} items = list(points.items()) X = [item[1] for item in items] kdt = KDTree(X, leaf_size=10000, metric='euclidean') distances, indices = kdt.query(X, k=2, return_distance=True) params = [] for index, item in enumerate(items): nearest_neighbour_index = indices[index][1] distance = distances[index][1] t1 = item[0] t2 = items[nearest_neighbour_index][0] params.append({"t1": t1, "t2": t2, "distance": distance}) session.run("""\ UNWIND {params} AS param MATCH (token) WHERE id(token) = param.t1 MATCH (closest) WHERE id(closest) = param.t2 MERGE (token)-[nearest:NEAREST_TO]->(closest) ON CREATE SET nearest.weight = param.distance """, {"params": params}) ---- We would call the function like this: [source, cypher] ---- nearest_neighbour("Token") ---- We can write a query to see what our graph looks like: [source, cypher] ---- MATCH path = (:Token {id: "sons"})-[:NEAREST_TO]-(neighbour) RETURN * ---- ++++ <img src="{{<siteurl>}}/uploads/2018/05/neighbours.png" alt="neighbours" style="padding-top: 10px;"> ++++ == Connected components After we've done that we need to run the connected components algorithm over the NNG. We'll use the Union Find algorithm from the Neo4j Graph Algorithms library to help us out. This is the graph we want to have after this algorithm has run: image::{{<siteurl>}}/uploads/2018/05/cc.png[width="400px"] The following function finds the clusters: [source, python] ---- def union_find(label, round=None): print("Round:", round, "label: ", label) with driver.session() as session: result = session.run("""\ CALL algo.unionFind.stream( "MATCH (n:`%s`) RETURN id(n) AS id", "MATCH (a:`%s`)-[:NEAREST_TO]->(b:`%s`) RETURN id(a) AS source, id(b) AS target", {graph: 'cypher'} ) YIELD nodeId, setId MATCH (token) WHERE id(token) = nodeId MERGE (cluster:Cluster {id: setId, round: {round} }) MERGE (cluster)-[:CONTAINS]->(token) """ % (label, label, label), {"label": label, "round": round}) print(result.summary().counters) ---- We would call the function like this: [source, cypher] ---- round = 0 union_find("Token", round) ---- We can now write a function to find the cluster for our `sons` node and all of its sibling nodes: [source, cypher] ---- MATCH path = (:Token {id: "sons"})<-[:CONTAINS]-()-[:CONTAINS]->(sibling) RETURN * ---- image::{{<siteurl>}}/uploads/2018/05/cc_sons.png[] Now we need to make this process recursive. == Macro vertices In the next part of the algorithm we need to find the central node for each of the clusters and then repeat the previous two steps using those nodes instead of all the nodes in the graph. We will consider the macro vertex node of each cluster to be the node that has the lowest cumulative distance to all other nodes in the cluster. The following function does this calculation: [source, python] ---- def macro_vertex(macro_vertex_label, round=None): with driver.session() as session: result = session.run("""\ MATCH (cluster:Cluster) WHERE cluster.round = {round} RETURN cluster """, {"round": round}) for row in result: cluster_id = row["cluster"]["id"] session.run("""\ MATCH (cluster:Cluster {id: {clusterId}, round: {round} })-[:CONTAINS]->(token) WITH cluster, collect(token) AS tokens UNWIND tokens AS t1 UNWIND tokens AS t2 WITH t1, t2, cluster WHERE t1 <> t2 WITH t1, cluster, reduce(acc = 0, t2 in collect(t2) | acc + apoc.algo.euclideanDistance(t1.embedding, t2.embedding)) AS distance WITH t1, cluster, distance ORDER BY distance LIMIT 1 SET cluster.centre = t1.id WITH t1 CALL apoc.create.addLabels(t1, [{newLabel}]) YIELD node RETURN node """, {"clusterId": cluster_id, "round": round, "newLabel": macro_vertex_label}) ---- This function also sets a `centre` property on each `Cluster` node so that we can more easily visualise the central node for a cluster. We would call it like this: [source, python] ---- round = 0 macro_vertex("MacroVertex1", round) ---- Once this function has run we can write a query to find the similar words to `sons` at level 2: [source, cypher] ---- MATCH path = (:Token {id: "sons"})<-[:CONTAINS]-()-[:CONTAINS]->(sibling) OPTIONAL MATCH nextLevelPath = (sibling:MacroVertex0)<-[:CONTAINS]-()-[:CONTAINS]->(other) RETURN * ---- image::{{<siteurl>}}/uploads/2018/05/graph100.png[] The output is quite cool - `siblings` is the representative node for our initial cluster and it takes us into a 2nd level cluster containing words such as `uncles`, `sister-in-law`, and `nieces` which do seem similar. There are some other words which are less so but I've only run this with a small sample of words so it'd be interesting to see how the algorithm fares if I load in a bigger dataset. == Next steps I've run this over a set of 10,000 words, which took 23 seconds, and 50,000 words, which took almost 10 minutes. The slowest bit of the process is the construction of the Nearest Neighbour Graph. Thankfully this looks like a parallelisable problem so I'm hopeful that I can speed that up. The code for this post is in the https://github.com/mneedham/interpreting-word2vec[mneedham/interpreting-word2vec^] GitHub repository so feel free to experiment with me and let me know if it's helpful or if there are ways that it could be more helpful.
Learn how to use graph algorithms to explore the word embeddings from algorithm such as Word2vec and GloVe
null
[ 0.002636595396324992, -0.00840464886277914, 0.0009794668294489384, 0.04807683080434799, 0.08088251203298569, 0.02971113845705986, 0.026995878666639328, 0.02980753593146801, 0.019996117800474167, -0.021630434319376945, 0.014667880721390247, -0.02020520530641079, -0.05005262792110443, 0.011240930296480656, -0.0049782623536884785, 0.06723622232675552, 0.04074563458561897, 0.01895989663898945, 0.0036176315043121576, 0.0058265430852770805, 0.017189910635352135, 0.037196751683950424, 0.020728323608636856, 0.03152700513601303, 0.05530385300517082, -0.005554850213229656, 0.030481263995170593, 0.008553288877010345, -0.0339861698448658, 0.007528472226113081, 0.03857745602726936, 0.01708759181201458, 0.017734345048666, -0.012326536700129509, 0.06487562507390976, -0.009874087758362293, -0.07940514385700226, 0.010031006298959255, 0.005119087174534798, 0.008132779970765114, -0.08223237842321396, 0.058965522795915604, -0.02684147097170353, 0.027996350079774857, -0.04034184664487839, 0.011369419284164906, -0.10278470814228058, 0.029767312109470367, 0.012269264087080956, 0.018797388300299644, -0.08744602650403976, 0.03562420234084129, 0.007966302335262299, 0.000706373481079936, -0.021580765023827553, 0.05512280389666557, 0.02863268554210663, -0.06351552903652191, 0.045153044164180756, -0.0426509715616703, -0.005638294853270054, -0.0225831288844347, -0.006426005624234676, 0.03448920324444771, -0.020753296092152596, -0.03465871512889862, -0.01185537874698639, 0.055678579956293106, -0.052835773676633835, 0.00246068905107677, -0.0020082301925867796, 0.02523351088166237, -0.019472282379865646, 0.01501027774065733, 0.00030805650749243796, -0.04695221036672592, 0.01249656267464161, 0.0480431504547596, 0.03799085319042206, 0.03602214530110359, -0.02146943472325802, 0.027575580403208733, 0.006508833263069391, 0.03941647335886955, -0.02169240079820156, -0.0417138896882534, -0.040459662675857544, -0.019753586500883102, -0.0746755301952362, 0.04506712034344673, 0.0003324691788293421, -0.057692307978868484, 0.004232277162373066, 0.025554105639457703, 0.004293826874345541, 0.0047062719240784645, 0.016582336276769638, 0.0042680054903030396, -0.0178211722522974, -0.029323583468794823, -0.03546541929244995, -0.046123236417770386, 0.0002226707001682371, 0.03175302967429161, -0.08679736405611038, -0.013258240185678005, -0.026287412270903587, 0.009507888928055763, -0.003583979792892933, -0.03005051054060459, -0.018803350627422333, 0.0072941952385008335, -0.014147136360406876, -0.0003698453074321151, -0.06862175464630127, 0.05540572479367256, 0.03884027525782585, -0.0088218804448843, -0.024993935599923134, 0.0024046231992542744, 0.036363691091537476, 0.02141866832971573, 0.002632652875036001, 0.07683762907981873, -0.020184572786092758, 0.012896492145955563, 0.0042157298885285854, 0.04464254155755043, -0.039997175335884094, -0.055863264948129654, -0.01578100398182869, 0.05068696662783623, -0.005944263655692339, 0.017161080613732338, 0.0028682106640189886, -0.04626262187957764, -0.016425028443336487, 0.020600521937012672, 0.046028170734643936, 0.04281788319349289, 0.013888952322304249, -0.06607203185558319, 0.017550718039274216, 0.001279723015613854, 0.028431013226509094, -0.01909041777253151, -0.03689811751246452, -0.02235442027449608, -0.03854023292660713, -0.012229662388563156, -0.0016200755489990115, -0.00441781897097826, 0.025814803317189217, -0.044795114547014236, 0.019704528152942657, 0.10679017752408981, 0.04617626219987869, 0.010482667945325375, 0.013987390324473381, 0.04305114597082138, 0.05110790953040123, 0.024526322260499, -0.014670786447823048, 0.05372808128595352, 0.006385207641869783, -0.04408416897058487, 0.011724098585546017, 0.06418710201978683, -0.015728319063782692, 0.010224887169897556, -0.03206551447510719, -0.045308664441108704, 0.052074506878852844, -0.051033105701208115, -0.01866917498409748, 0.045668840408325195, 0.06460067629814148, 0.02290934883058071, 0.031073683872818947, 0.01961945928633213, -0.08517742156982422, 0.04266475886106491, 0.021533474326133728, 0.03490540757775307, -0.0019415532005950809, -0.03665779158473015, 0.08981853723526001, 0.02137272246181965, 0.013699362054467201, 0.040144871920347214, -0.06713423132896423, -0.06641805171966553, -0.011118900030851364, -0.0042266808450222015, 0.07031234353780746, -0.009653042070567608, 0.03616567328572273, 0.058401718735694885, 0.0014994516968727112, 0.02808944694697857, 0.018605388700962067, -0.018425285816192627, -0.0009521112660877407, -0.04025876522064209, -0.05343962460756302, 0.0400407612323761, 0.030725378543138504, -0.06231063976883888, -0.06511574983596802, 0.006225028540939093, -0.017033400014042854, 0.000155040092067793, 0.013805863447487354, -0.037993352860212326, 0.03194143623113632, 0.01637587510049343, 0.05044948309659958, 0.008815749548375607, 0.05663061514496803, -0.045118607580661774, 0.03463180363178253, -0.014582187868654728, -0.02324328012764454, -0.0052061122842133045, 0.004673171788454056, 0.13024550676345825, 0.0682782232761383, -0.03930436074733734, -0.043172284960746765, 0.015770243480801582, 0.004512779880315065, -0.027694279327988625, 0.024291012436151505, -0.03443735092878342, -0.010949411429464817, -0.01199765969067812, -0.056823957711458206, -0.030970580875873566, 0.04052988439798355, -0.04830174893140793, -0.020513923838734627, 0.07009944319725037, -0.03253132849931717, 0.05376043543219566, 0.008134118281304836, 0.0006925457855686545, 0.006881718058139086, -0.030513575300574303, -0.04589103162288666, 0.01706923544406891, 0.007193036377429962, -0.007131271529942751, 0.02332296408712864, -0.01108714658766985, -0.003797403769567609, -0.02523851953446865, -0.017066702246665955, 0.006450311280786991, 0.07499663531780243, 0.054954469203948975, 0.023089226335287094, 0.0447588749229908, -0.03461121395230293, 0.01088720839470625, -0.005452349316328764, -0.06559887528419495, -0.05521984398365021, -0.053831636905670166, 0.016245365142822266, 0.00692342035472393, 0.022516300901770592, -0.013092463836073875, 0.02707780711352825, 0.0017928759334608912, 0.004448610357940197, -0.025582734495401382, 0.04362883418798447, -0.0019450164400041103, -0.02157815545797348, -0.024736251682043076, -0.04573017358779907, 0.06297475844621658, -0.033912669867277145, -0.019805466756224632, -0.008892331272363663, -0.06675365567207336, 0.04764656350016594, -0.049112964421510696, -0.024059584364295006, 0.011975595727562904, 0.005398104898631573, 0.04309044033288956, 0.003881809301674366, -0.0028566084802150726, 0.060383141040802, 0.03316064924001694, 0.020665353164076805, -0.009202538058161736, -0.010974783450365067, 0.0366353802382946, -0.013296006247401237, 0.03886093944311142, 0.03847089782357216, -0.028528984636068344, -0.01175464317202568, -0.009396749548614025, 0.026020808145403862, -0.01921730861067772, -0.2764611542224884, 0.028164712712168694, -0.011278060264885426, -0.046577826142311096, 0.004742838442325592, -0.015071986243128777, -0.011974615976214409, -0.04126067832112312, -0.018350396305322647, -0.014093494974076748, -0.012183754704892635, -0.016919566318392754, -0.02462652511894703, 0.02821771614253521, 0.023739492520689964, 0.002223946386948228, -0.019613081589341164, -0.036880966275930405, 0.010368797928094864, 0.062073349952697754, 0.023217715322971344, -0.04419942945241928, -0.02168964222073555, 0.03762833774089813, 0.021852953359484673, 0.05411157384514809, -0.10239558666944504, 0.0013287306064739823, -0.039427656680345535, -0.023924103006720543, -0.0030689802952110767, -0.026182712987065315, 0.014159179292619228, 0.007284121587872505, -0.02117684856057167, -0.022866014391183853, 0.05060001462697983, 0.00865913089364767, -0.005594546906650066, 0.034378331154584885, -0.013118362985551357, -0.030607497319579124, -0.010741355828940868, -0.008851293474435806, 0.0795578733086586, 0.01699567772448063, -0.05730600282549858, -0.014132685028016567, -0.02198905684053898, 0.06678691506385803, -0.028937295079231262, -0.02563319355249405, -0.02046227641403675, 0.041979994624853134, -0.014241882599890232, -0.02282731607556343, -0.001067144563421607, -0.024991018697619438, -0.05427851527929306, -0.045481953769922256, -0.021908314898610115, -0.03973062336444855, 0.017354652285575867, -0.07673799246549606, -0.025127150118350983, -0.054113488644361496, -0.09293487668037415, -0.021331217139959335, 0.06030890345573425, 0.03217972815036774, -0.03563825413584709, 0.03704134002327919, -0.02697548270225525, -0.10047950595617294, -0.02857373282313347, -0.009891057386994362, 0.0014142650179564953, 0.0007659671828150749, 0.020390914753079414, 0.06592459976673126, -0.03774600103497505, -0.06130329146981239, 0.011945148929953575, 0.02770185098052025, 0.012220331467688084, -0.028120260685682297, 0.004932155832648277, -0.007032362744212151, -0.02079005166888237, 0.001897271373309195, 0.045205071568489075, 0.006808734033256769, -0.036378346383571625, -0.011759217828512192, 0.0022426005452871323, 0.010714638978242874, 0.009294986724853516, -0.009377404116094112, 0.017093997448682785, 0.04661991074681282, 0.021856894716620445, -0.04627835378050804, 0.004067657049745321, -0.01613517850637436, -0.042338572442531586, 0.01908698119223118, -0.04564254730939865, -0.003019076306372881, 0.05175748094916344, -0.00926102977246046, -0.02892460487782955, -0.04287594556808472, 0.05340895429253578, -0.03596293553709984, -0.01256263256072998, -0.019757898524403572, 0.017480090260505676, 0.01581142097711563, 0.03191336989402771, -0.04539109766483307, -0.053227100521326065, 0.020137790590524673, 0.002081738319247961, -0.02159389667212963, -0.0405038557946682, -0.02797994762659073, -0.005997722037136555, -0.017999015748500824, 0.011936033144593239, 0.01935531012713909, -0.0037786925677210093, 0.02126741036772728, 0.01634739339351654, -0.021787110716104507, 0.05206196382641792, -0.018900619819760323, -0.027870532125234604, -0.032272014766931534, 0.027040673419833183, -0.004237170796841383, -0.010452908463776112, 0.0003412456135265529, 0.022766590118408203, 0.008608998730778694, 0.06257814168930054, 0.01971687190234661, 0.024404000490903854, 0.007674438878893852, -0.00017450125596951693, -0.007252022624015808, 0.004525654949247837, -0.022225938737392426, 0.013333477079868317, -0.024111265316605568, 0.007536307442933321, -0.008195547387003899, 0.05646435543894768, -0.00196907133795321, -0.03414511680603027, -0.03538769483566284, 0.0478401780128479, -0.03024735115468502, -0.02771131508052349, -0.015050471760332584, -0.008957576006650925, 0.05711719021201134, -0.03324973210692406, 0.02797054499387741, -0.0007027575047686696, -0.008946527726948261, 0.03704744577407837, -0.0028686411678791046, -0.039271436631679535, 0.000035637422115541995, -0.012621344067156315, -0.003752223215997219, 0.00845422875136137, 0.032391466200351715, 0.010882802307605743, 0.030174486339092255, -0.02633432112634182, -0.040510233491659164, 0.011203806847333908, 0.01644638180732727, 0.06960111856460571, 0.043550215661525726, -0.017759665846824646, 0.003602348966524005, -0.02390129677951336, 0.019932638853788376, -0.016689982265233994, -0.006902176421135664, -0.026638884097337723, -0.0008249916136264801, -0.017080888152122498, -0.05779671669006348, 0.03881882503628731, -0.007035824004560709, 0.007021916098892689, 0.01161249727010727, -0.013015619479119778, 0.014815534465014935, -0.017273981124162674, 0.03801443800330162, 0.06008293852210045, -0.062316205352544785, -0.011734556406736374, 0.009011625312268734, -0.021452534943819046, -0.0007095180335454643, 0.01335334312170744, -0.057622700929641724, -0.042185693979263306, -0.029671533033251762, 0.030521098524332047, -0.02162010595202446, -0.04373651370406151, -0.024417739361524582, 0.013266355730593204, 0.0026203307788819075, 0.008432786911725998, 0.0013046296080574393, -0.013179272413253784, -0.0036347368732094765, -0.007840409874916077, 0.04867561161518097, -0.028659962117671967, -0.0015526489587500691, 0.00849376805126667, -0.011835979297757149, 0.012152077630162239, -0.01903514936566353, 0.02864769846200943, 0.03698825463652611, -0.03473682329058647, 0.006924544461071491, -0.05004366487264633, 0.016786694526672363, 0.007635734509676695, 0.04288763552904129, 0.0158533975481987, -0.026263266801834106, -0.049826785922050476, 0.013297250494360924, -0.026627272367477417, 0.017087051644921303, -0.01567571796476841, 0.006098427809774876, 0.024757646024227142, 0.030341949313879013, -0.00026846962282434106, 0.029023226350545883, -0.027083085849881172, -0.035993192344903946, 0.046806082129478455, -0.032227832823991776, -0.0324951633810997, -0.021305371075868607, -0.03576599061489105, -0.0005095978849567473, -0.004757037851959467, 0.005747287534177303, -0.026727592572569847, 0.06086858734488487, 0.03359464555978775, 0.02009773999452591, 0.015459384769201279, 0.005512570962309837, 0.03042537160217762, -0.022754037752747536, 0.006230813451111317, -0.09507405012845993, 0.0020483273547142744, 0.0508761927485466, -0.016774753108620644, -0.0029204613529145718, 0.0022926777601242065, -0.015027293004095554, -0.01020226813852787, -0.06446367502212524, -0.037595391273498535, 0.03182641416788101, -0.011952805332839489, 0.01292706374078989, 0.008739565499126911, -0.04190048575401306, 0.030705651268363, 0.016244780272245407, -0.04508897289633751, -0.03144245222210884, -0.02400307171046734, 0.055660225450992584, -0.026546504348516464, 0.013590681366622448, -0.008038177154958248, -0.014393864199519157, 0.06854324042797089, 0.028728319332003593, 0.028996441513299942, 0.03596537187695503, -0.01647433079779148, 0.04483579471707344, 0.049799587577581406, -0.0052601429633796215, 0.006917419843375683, 0.012002028524875641, -0.030633024871349335, -0.05602138489484787, 0.057864364236593246, 0.011763530783355236, -0.02638695016503334, -0.03584269434213638, 0.0804319754242897, 0.03887275978922844, -0.03167126700282097, -0.05624651536345482, 0.029001472517848015, -0.02651076577603817, 0.007239925675094128, -0.03539549559354782, 0.0017376107862219214, -0.01845342479646206, 0.05891580879688263, -0.030341370031237602, -0.0017444599652662873, 0.07149165123701096, 0.0046207960695028305, -0.016730548813939095, -0.003087504766881466, 0.0926552340388298, 0.09457708895206451, 0.07535585761070251, 0.01509623508900404, 0.08219742029905319, -0.02780264802277088, -0.04103247448801994, -0.0013634366914629936, 0.0008373228483833373, -0.025093484669923782, -0.0020696427673101425, 0.014103705063462257, 0.05770373344421387, -0.02294490672647953, 0.08000493049621582, -0.04821619763970375, -0.028955601155757904, 0.011659014038741589, 0.012753566727042198, 0.024449074640870094, 0.04003625735640526, 0.011670749634504318, 0.0249117873609066, -0.04531224071979523, -0.022819705307483673, 0.02210017293691635, 0.0022884581703692675, 0.003144604619592428, 0.01774822734296322, -0.011394704692065716, 0.015311148017644882, -0.015898944810032845, 0.06683984398841858, 0.10351799428462982, -0.02468043752014637, 0.0042487806640565395, -0.004159316886216402, 0.012887338176369667, 0.012280699796974659, 0.021027622744441032, -0.017101719975471497, -0.002894609235227108, -0.022400403395295143, -0.028329486027359962, -0.018768487498164177, -0.03080095909535885, -0.0229596346616745, 0.011505884118378162, -0.03539801016449928, -0.01165900006890297, 0.014996537007391453, 0.00988016463816166, -0.01950220577418804, -0.046570565551519394, -0.02953704632818699, -0.043993961066007614, -0.07152862846851349, -0.015991725027561188, 0.02935144305229187, 0.014985821209847927, -0.02890060655772686, -0.023566974326968193, -0.022293031215667725, -0.023466715589165688, 0.034070126712322235, -0.057854752987623215, 0.02823449857532978, -0.0089994166046381, 0.03502258285880089, 0.01421737764030695, 0.0203197430819273, 0.037973351776599884, -0.02411077916622162, -0.005740224849432707, 0.005557992961257696, 0.002276464132592082, 0.026466460898518562, 0.02767028659582138, -0.00018419687694404274, -0.08639632165431976, -0.011624334380030632, -0.000588199298363179, -0.03603178262710571, -0.09646203368902206, 0.027332281693816185, 0.04227220267057419, 0.018002578988671303, 0.05036382004618645, -0.006752768065780401, 0.00654908362776041, -0.03754551336169243, 0.007650220766663551, -0.019845930859446526, -0.01539687905460596, 0.03526357188820839, -0.021630506962537766, 0.07778937369585037, 0.036185506731271744, 0.006213484797626734, -0.02785596065223217, -0.030515572056174278, -0.012702547013759613, 0.025043053552508354, -0.049241527915000916, -0.020372487604618073, -0.027322709560394287, -0.09969675540924072, -0.0444633774459362, 0.03658415377140045, -0.02838059701025486, -0.04250533878803253, 0.030398348346352577, 0.003299088217318058, -0.02880760468542576, 0.02776215597987175, -0.04001631215214729, 0.020146137103438377, -0.017501147463917732, -0.008048191666603088, -0.018139684572815895, 0.005256451200693846, -0.009590994566679, 0.02890634723007679, 0.01285166759043932, -0.05685552954673767, -0.007248960435390472, -0.015179390087723732, 0.006409909576177597, 0.016194798052310944, 0.019895605742931366, -0.0017308983951807022 ]
[ -0.05760163813829422, -0.019632581621408463, -0.06320090591907501, 0.005196027457714081, 0.040178220719099045, -0.005074274726212025, -0.03440369665622711, 0.012211824767291546, 0.010301959700882435, -0.022923484444618225, 0.03392226994037628, -0.0810767337679863, 0.020460210740566254, -0.005707628559321165, 0.08786630630493164, 0.026866910979151726, 0.010345368646085262, -0.042317360639572144, -0.004234096966683865, 0.00836225226521492, 0.0003990840632468462, -0.034497980028390884, -0.019854629412293434, -0.0447893887758255, 0.0045832241885364056, 0.03716084733605385, 0.027396705001592636, -0.04897473007440567, -0.0180039145052433, -0.23609718680381775, 0.00931821670383215, 0.028483029454946518, 0.06468714028596878, 0.004098772536963224, 0.01662316359579563, 0.0453464537858963, 0.03317461535334587, 0.03557690605521202, -0.011164686642587185, 0.03051845356822014, -0.0023002461530268192, 0.007330943364650011, -0.027227329090237617, -0.018337203189730644, 0.07156074047088623, 0.010730788111686707, -0.039908818900585175, 0.001972583355382085, -0.04939565062522888, -0.005979618523269892, -0.04332461953163147, -0.04676606133580208, -0.016197482123970985, 0.01018610130995512, 0.010117214173078537, 0.03734010085463524, 0.049011316150426865, 0.03819561377167702, 0.0197313092648983, 0.0049595907330513, 0.01319652795791626, 0.021520022302865982, -0.13112612068653107, 0.08439438790082932, 0.023817026987671852, 0.02209772728383541, -0.03707766905426979, -0.004206448327749968, -0.00404792744666338, 0.11356356739997864, 0.046520162373781204, 0.012848636135458946, -0.023302003741264343, 0.03975392505526543, 0.017869694158434868, 0.04035644233226776, 0.026079436764121056, 0.022910984233021736, 0.03371892496943474, -0.07184752821922302, -0.0324382483959198, 0.034084342420101166, -0.012185346335172653, -0.010354985482990742, -0.03400658443570137, 0.0019847636576741934, -0.02727281115949154, 0.014068822376430035, -0.02059878036379814, 0.01497642695903778, 0.03039323352277279, 0.00296880048699677, 0.019502414390444756, 0.005020087584853172, -0.0962022989988327, -0.0507647842168808, -0.007243059575557709, -0.004662879277020693, -0.002041381085291505, 0.41751229763031006, -0.017184311524033546, -0.00744717288762331, 0.0728774145245552, -0.0008232944528572261, -0.02061539702117443, -0.036534301936626434, 0.025759784504771233, -0.06213165447115898, 0.008327296935021877, -0.020325638353824615, 0.0016800378216430545, -0.024042928591370583, 0.03158967196941376, -0.056263167411088943, 0.011908778920769691, -0.004491560626775026, 0.07053735852241516, 0.026029277592897415, 0.022247126325964928, -0.00631521362811327, -0.040608230978250504, -0.0029601866845041513, -0.0018048693891614676, -0.002410327782854438, 0.03378034383058548, -0.01085812970995903, 0.026981474831700325, 0.04946977645158768, 0.07502033561468124, -0.0009701871313154697, 0.05013881251215935, 0.027608126401901245, -0.054440129548311234, 0.030035365372896194, 0.0019010363612324, 0.012410060502588749, 0.039653319865465164, -0.03163108602166176, -0.01488613709807396, 0.023988274857401848, -0.0069888886064291, 0.002529882825911045, 0.03873032331466675, 0.01863883063197136, -0.032782018184661865, 0.14676277339458466, -0.02417813055217266, -0.055209603160619736, -0.018642425537109375, -0.02582317404448986, 0.025415116921067238, 0.03661848604679108, -0.023991450667381287, -0.06654626131057739, 0.002860867651179433, 0.019718334078788757, 0.08434796333312988, -0.038563359528779984, -0.0620928592979908, 0.008088234812021255, -0.0025957764592021704, -0.024660315364599228, -0.04256649687886238, 0.07998386025428772, 0.05396631732583046, -0.11315852403640747, -0.021127542480826378, 0.019328733906149864, 0.019100602716207504, -0.08896198868751526, 0.05239535868167877, 0.01997935213148594, -0.032076798379421234, 0.023634443059563637, 0.02622746303677559, -0.018488097935914993, -0.06151294708251953, 0.0057435063645243645, 0.060335922986269, -0.010827972553670406, 0.004419610369950533, -0.0006850564386695623, -0.04323549568653107, 0.02473779395222664, -0.04446730390191078, -0.07031726092100143, -0.05393023043870926, -0.008368912152945995, -0.012787817046046257, -0.011073391884565353, -0.013558813370764256, -0.0016807547071948647, -0.06622268259525299, 0.06527721881866455, -0.044065121561288834, -0.0450768806040287, 0.025502577424049377, -0.014056366868317127, -0.04321330785751343, -0.026116229593753815, -0.02394089475274086, 0.03533490002155304, -0.03128146752715111, 0.018759222701191902, -0.05429364740848541, 0.02547086775302887, 0.06806982308626175, -0.04677845537662506, 0.10267804563045502, 0.0262432973831892, -0.015510383993387222, -0.04567040875554085, -0.011989681981503963, -0.014674929901957512, 0.004359934478998184, 0.009277506731450558, 0.001353095518425107, -0.006567282602190971, 0.006229308899492025, 0.05974842607975006, -0.015948191285133362, -0.03178347647190094, -0.08128884434700012, -0.3343377113342285, -0.06358950585126877, 0.012993508949875832, -0.007058084476739168, 0.0231537576764822, -0.04660390317440033, 0.030199721455574036, -0.007965942844748497, 0.03784628212451935, 0.017525140196084976, 0.05956067144870758, 0.005056621041148901, -0.006580813322216272, -0.07510688900947571, 0.003652602434158325, 0.04413006082177162, -0.014039735309779644, -0.003891205647960305, -0.03869268298149109, 0.02481122501194477, 0.017086993902921677, -0.019387757405638695, -0.009548912756145, -0.04018894210457802, -0.005291630979627371, -0.021316369995474815, 0.10142485797405243, 0.005066717509180307, 0.0683552548289299, -0.023947693407535553, 0.027351249009370804, -0.0074492101557552814, -0.011849608272314072, -0.06802559643983841, 0.009793039411306381, -0.0014926361618563533, -0.005357292015105486, 0.0002968769404105842, -0.007679448928683996, -0.018191758543252945, -0.07183755189180374, 0.022280478850007057, -0.04267847165465355, -0.055668916553258896, -0.06511664390563965, 0.028739124536514282, -0.007500482723116875, -0.030536875128746033, -0.040197473019361496, 0.05891628935933113, 0.009512865915894508, -0.0019856179133057594, 0.018138937652111053, 0.021378036588430405, -0.032347165048122406, -0.027661873027682304, -0.07231063395738602, -0.0016602049581706524, -0.008595838211476803, -0.020416006445884705, 0.04488328844308853, 0.023286718875169754, 0.021063674241304398, -0.0752694383263588, 0.014443391002714634, 0.005128166172653437, -0.046507492661476135, -0.003161048050969839, 0.005910241510719061, -0.020204443484544754, -0.02548423409461975, 0.11707530170679092, -0.004701655823737383, -0.002681117272004485, 0.04554043337702751, 0.01669616997241974, -0.010942292399704456, 0.002315608784556389, -0.0004437520110514015, -0.005442929919809103, 0.0541045218706131, -0.04637378454208374, 0.06727010011672974, -0.023103773593902588, 0.0005976335378363729, 0.044240016490221024, 0.020134521648287773, -0.034743838012218475, 0.058116454631090164, 0.053420260548591614, 0.004934930242598057, 0.005203645210713148, -0.016641544178128242, -0.044360753148794174, 0.04071606323122978, -0.018266066908836365, -0.2622073292732239, 0.016993362456560135, 0.06494184583425522, 0.06288301944732666, 0.011308991350233555, 0.004605005029588938, 0.03045797161757946, -0.04421168938279152, 0.030945980921387672, 0.023447532206773758, 0.013019478879868984, 0.06924208998680115, 0.022283531725406647, -0.016287975013256073, -0.020579976961016655, 0.00004601852560881525, 0.04314391687512398, -0.01539131160825491, -0.0033865668810904026, 0.014056206680834293, 0.015354905277490616, -0.010630239732563496, 0.18743407726287842, -0.01906156912446022, 0.014692825265228748, 0.006660832092165947, -0.04054475575685501, 0.006297649350017309, 0.05163382366299629, -0.011547058820724487, -0.02233000099658966, 0.006589228753000498, 0.030131492763757706, 0.028329744935035706, 0.03692447394132614, -0.04610816761851311, -0.010769028216600418, 0.02565552107989788, 0.045912180095911026, -0.006307863164693117, 0.047815971076488495, 0.02110298164188862, -0.04571257531642914, 0.019702648743987083, 0.03972265496850014, 0.011286390945315361, 0.01591562107205391, -0.01636039838194847, -0.06163942068815231, 0.00837539043277502, -0.035273775458335876, -0.05087387561798096, -0.01927127316594124, -0.012847177684307098, 0.013340048491954803, 0.08106588572263718, 0.017135245725512505, -0.020868945866823196, -0.015630748122930527, -0.025673672556877136, -0.02728758379817009, -0.050728462636470795, 0.07631941139698029, 0.011985382996499538, 0.04780173674225807 ]
[ 0.021545957773923874, 0.0065465145744383335, -0.008468973450362682, 0.05135796219110489, 0.026256345212459564, 0.0016146115958690643, -0.016180947422981262, -0.020240062847733498, -0.002579733729362488, 0.002547474345192313, 0.01879151165485382, 0.022396916523575783, 0.06862588971853256, 0.013831893913447857, -0.020957136526703835, 0.026265570893883705, 0.0034311858471482992, -0.008673514239490032, 0.006588541902601719, -0.038014862686395645, -0.05457388982176781, -0.00720785278826952, 0.048134204000234604, -0.055601708590984344, -0.005400253925472498, 0.043325383216142654, -0.038443900644779205, -0.020688185468316078, 0.029108084738254547, -0.12133374065160751, -0.003221949329599738, -0.017043637111783028, -0.00204529264010489, 0.03184913098812103, 0.0007403342169709504, 0.022012488916516304, 0.0035517856013029814, 0.021755071356892586, 0.00496910884976387, 0.031075047329068184, -0.02110501006245613, -0.018718359991908073, -0.008563198149204254, 0.035238828510046005, 0.01529836468398571, 0.0033142438624054193, -0.052894510328769684, -0.003669820725917816, 0.014975045807659626, -0.010937419719994068, -0.024398798123002052, -0.0031299074180424213, -0.022157972678542137, 0.01778772473335266, -0.013793774880468845, -0.016261395066976547, -0.01849171705543995, -0.015844253823161125, 0.015880480408668518, -0.009815545752644539, 0.04838273674249649, -0.014904752373695374, -0.037803441286087036, -0.03390475735068321, -0.006843277718871832, 0.013323292136192322, 0.0005542714498005807, 0.005495304241776466, -0.024945160374045372, -0.0006247962010093033, -0.014864922501146793, 0.08614235371351242, -0.02820531837642193, -0.02205508202314377, 0.0036389536689966917, -0.0014560581184923649, 0.040039706975221634, -0.03250494971871376, 0.035807229578495026, -0.012060953304171562, -0.00864036101847887, 0.009932884015142918, 0.013269135728478432, 0.007232665549963713, -0.008862881921231747, -0.008165626786649227, -0.023526014760136604, -0.020442171022295952, 0.00884884875267744, 0.015372675843536854, -0.04524844139814377, 0.0194381270557642, -0.03130388632416725, 0.009848917834460735, -0.09391185641288757, -0.00839130487293005, -0.004997843876481056, -0.0008344008820131421, -0.0025413462426513433, 0.8519403338432312, 0.005868586711585522, -0.0005169239593669772, 0.02882736176252365, -0.00456960266456008, 0.00679774209856987, 0.010125466622412205, 0.009474164806306362, 0.0010004396317526698, 0.004510859493166208, -0.02002071775496006, -0.007078498601913452, 0.01520775631070137, -0.005102814640849829, 0.026470914483070374, -0.021346963942050934, 0.030868439003825188, 0.03168673813343048, -0.012091309763491154, 0.019669342786073685, 0.008562864735722542, -0.01815975084900856, 0.014639158733189106, -0.00505019398406148, 0.008861889131367207, -0.004217285197228193, -0.18129529058933258, -0.018105220049619675, -7.099159359501195e-33, 0.016702264547348022, -0.021001538261771202, 0.01784532330930233, 0.002986307954415679, 0.02711253985762596, 0.024235835298895836, -0.031208252534270287, -0.005417331587523222, -0.009764358401298523, -0.021837597712874413, -0.024028681218624115, 0.0025667822919785976, 0.007794099394232035, -0.017495708540081978, 0.07467681914567947, -0.023160940036177635, 0.011325200088322163, 0.01976798102259636, -0.013587895780801773, -0.011433437466621399, 0.009393516927957535, 0.04186979681253433, -0.009582171216607094, 0.013284384272992611, -0.03145208582282066, 0.019763581454753876, 0.02497583068907261, -0.032042667269706726, 0.011972972191870213, -0.05552108213305473, -0.04576999694108963, 0.022350341081619263, -0.016231758520007133, -0.026885898783802986, -0.020364543423056602, -0.03737911209464073, -0.003275578608736396, 0.00415134197100997, -0.009195749647915363, -0.033942241221666336, -0.03899599239230156, -0.013013521209359169, 0.002546145813539624, -0.05665644258260727, -0.00536465086042881, -0.0009782837005332112, -0.0036679150070995092, 0.01881290227174759, -0.009441949427127838, -0.02086050622165203, 0.011335152201354504, 0.01610240340232849, -0.003984863869845867, 0.021673133596777916, -0.015151155181229115, 0.004621414467692375, 0.008098330348730087, 0.009533382020890713, 0.0062751867808401585, 0.019780755043029785, 0.03409868851304054, -0.029053691774606705, -0.02438020147383213, 0.026545481756329536, -0.012746104039251804, 0.012196792289614677, 0.00974392518401146, 0.00118541088886559, 0.027437306940555573, 0.04032082483172417, -0.031771495938301086, 0.04491941258311272, -0.027866924181580544, -0.004694363567978144, 0.016026781871914864, -0.014500106684863567, 0.0008148009073920548, -0.0033891815692186356, 0.0045706480741500854, 0.04409671574831009, 0.005280724260956049, -0.01792111061513424, 0.017234263941645622, -0.0339789092540741, -0.017040925100445747, -0.04133221134543419, 0.024862952530384064, 0.004660212434828281, 0.01248986553400755, -0.003823858452960849, 0.01729769818484783, 0.03592483326792717, -0.022664561867713928, -0.005874585825949907, -0.010625313967466354, 6.877055579385078e-33, -0.004948447924107313, 0.019692597910761833, -0.03268245980143547, 0.011105549521744251, 0.012325236573815346, 0.026160046458244324, 0.012453227303922176, 0.02796485833823681, -0.045865461230278015, 0.0214842576533556, 0.013888414017856121, -0.012730845250189304, -0.011876961216330528, 0.025101952254772186, 0.07078411430120468, -0.013461820781230927, -0.009041874669492245, -0.005531120579689741, -0.0021667038090527058, 0.024591460824012756, 0.012282118201255798, 0.015345391817390919, 0.022766029462218285, 0.029319854453206062, 0.03508266061544418, 0.02715107798576355, -0.0055704861879348755, 0.010610761120915413, -0.03275531157851219, 0.025411058217287064, 0.009256940335035324, -0.023617926985025406, 0.00682816980406642, 0.022806810215115547, -0.0029511686880141497, 0.0223944503813982, -0.008098970167338848, -0.017138484865427017, 0.000616865640040487, -0.011288327164947987, 0.04064234346151352, 0.017545605078339577, -0.05070064216852188, 0.041265737265348434, -0.018249092623591423, 0.027950644493103027, -0.01036862377077341, -0.014328408986330032, 0.0024927568156272173, 0.0121805090457201, -0.003330494510009885, 0.002290368312969804, 0.014037187211215496, 0.0024983654730021954, 0.0011590044014155865, -0.019826101139187813, -0.0283897016197443, 0.016953302547335625, -0.00440319674089551, 0.031364742666482925, -0.020559951663017273, -0.023898545652627945, -0.025067245587706566, 0.012832676991820335, -0.016039954498410225, -0.04133542254567146, -0.025700820609927177, -0.011743946000933647, -0.03224467113614082, 0.013638285920023918, -0.01849888451397419, 0.019696339964866638, 0.019113484770059586, 0.03959986940026283, 0.026227284222841263, -0.020938022062182426, -0.001792998518794775, 0.00497897993773222, -0.03442354500293732, -0.0018303844844922423, 0.02822481282055378, 0.014027358032763004, 0.014181328006088734, 0.005018902942538261, -0.008404073305428028, 0.013497626408934593, -0.01979297399520874, 0.019118640571832657, -0.0036007054150104523, -0.005972897633910179, 0.0013442765921354294, -0.006596253253519535, -0.014459000900387764, 0.03369453176856041, 0.012675408273935318, -1.2658165182699577e-8, -0.0598260760307312, 0.036173634231090546, 0.005952487234026194, -0.02191047929227352, 0.012375126592814922, 0.03493157774209976, -0.0070286407135427, 0.02155805379152298, -0.0290699303150177, 0.008839576505124569, 0.04282740131020546, -0.0393640398979187, -0.024864910170435905, 0.006208180449903011, -0.018481964245438576, -0.014234034344553947, -0.01232219859957695, -0.04404573515057564, 0.05783882737159729, -0.013623307459056377, 0.018141992390155792, 0.03530417010188103, -0.0043829865753650665, 0.026633528992533684, -0.002438942901790142, -0.026295779272913933, 0.008371146395802498, -0.07641106098890305, 0.002973567694425583, -0.042425792664289474, -0.031801044940948486, -0.02152564562857151, 0.002520275767892599, 0.002602543216198683, -0.025928135961294174, 0.006748716346919537, 0.008605153299868107, 0.02466672472655773, -0.005641975440084934, 0.024348346516489983, -0.010697216726839542, 0.024867990985512733, -0.01712152361869812, -0.05551433190703392, -0.013140188530087471, 0.0071868509985506535, -0.005264007952064276, -0.021244384348392487, 0.033023908734321594, -0.02198619954288006, 0.013667719438672066, -0.010050373151898384, 0.020526358857750893, 0.04747820273041725, 0.03418717533349991, -0.02902454510331154, -0.03486325964331627, -0.008406061679124832, 0.029569728299975395, 0.0024292049929499626, -0.003048183396458626, -0.007119211368262768, -0.05600859224796295, -0.007636297028511763 ]
interpreting-word2vec-glove-embeddings-sklearn-neo4j-graph-algorithms
https://markhneedham.com/blog/2018/05/19/interpreting-word2vec-glove-embeddings-sklearn-neo4j-graph-algorithms
false
2018-02-19 20:51:31
Asciidoctor: Creating a macro
[ "asciidoc", "asciidoctor" ]
[ "Software Development" ]
I've been writing the https://neo4j.com/tag/twin4j/[TWIN4j blog] for almost a year now and during that time I've written a few different http://asciidoc.org/chunked/ch21.html[asciidoc macros] to avoid repetition. The most recent one I wrote does the formatting around the Featured Community Member of the Week. I call it like this from the asciidoc, passing in the name of the person and a link to an image: [source,text] ---- featured::https://s3.amazonaws.com/dev.assets.neo4j.com/wp-content/uploads/20180202004247/this-week-in-neo4j-3-february-2018.jpg[name="Suellen Stringer-Hye"] ---- The code for the macro has two parts. The first is some wiring code that registers the macro with Asciidoctor: +++<cite>+++lib/featured-macro.rb+++</cite>+++ [source,ruby] ---- RUBY_ENGINE == 'opal' ? (require 'featured-macro/extension') : (require_relative 'featured-macro/extension') Asciidoctor::Extensions.register do if (@document.basebackend? 'html') && (@document.safe < SafeMode::SECURE) block_macro FeaturedBlockMacro end end ---- And this is the code for the macro itself: +++<cite>+++lib/featured-macro/extension.rb+++</cite>+++ [source,ruby] ---- require 'asciidoctor/extensions' unless RUBY_ENGINE == 'opal' include ::Asciidoctor class FeaturedBlockMacro < Extensions::BlockMacroProcessor use_dsl named :featured def process parent, target, attrs name = attrs["name"] html = %(<div class="imageblock image-heading"> <div class="content"> <img src="#{target}" alt="#{name} - This Week’s Featured Community Member" width="800" height="400"> </div> </div> <p style="font-size: .8em; line-height: 1.5em;" align="center"> <strong>#{name} - This Week's Featured Community Member</strong> </p> ) create_pass_block parent, html, attrs, subs: nil end end ---- When we convert the asciidoc into HTML we need to tell asciidoctor about the macro, which we can do like this: [source,bash] ---- asciidoctor template.adoc \ -r ./lib/featured-macro.rb \ -o - ---- And that's it!
null
null
[ 0.015553129836916924, -0.01073203794658184, -0.014264077879488468, 0.022930113598704338, 0.07651162147521973, -0.015848446637392044, 0.02155820094048977, 0.03018106520175934, 0.008100978098809719, -0.0101345619186759, -0.009738441556692123, -0.005823313258588314, -0.05501112341880798, 0.014389684423804283, -0.018395384773612022, 0.061303891241550446, 0.045670270919799805, 0.013860826380550861, 0.010945174843072891, -0.02359132282435894, 0.023134227842092514, 0.05050024762749672, 0.03554562106728554, 0.01861986331641674, 0.036200813949108124, 0.030344383791089058, 0.019214803352952003, -0.020193221047520638, -0.06994263827800751, 0.016287708654999733, 0.045981816947460175, 0.002437192015349865, 0.03251019865274429, 0.008533783257007599, 0.052153147757053375, -0.0019766176119446754, -0.02480766549706459, -0.011481031775474548, -0.0060337320901453495, -0.007103792391717434, -0.05058278515934944, 0.031040295958518982, 0.008038471452891827, 0.01747211255133152, -0.03917345404624939, 0.013667652383446693, -0.06988917291164398, 0.025867044925689697, -0.020916389301419258, 0.001655388274230063, -0.08059227466583252, -0.000025343439119751565, 0.000570956792216748, 0.005144224036484957, -0.012214799411594868, 0.04550144076347351, 0.006668229587376118, -0.0576760396361351, 0.02376205287873745, -0.04791753739118576, -0.008973226882517338, -0.020094890147447586, -0.0016388400690630078, 0.02707129344344139, 0.003588180523365736, -0.03384072333574295, -0.012055355124175549, 0.04339522495865822, -0.08269815146923065, -0.004950046073645353, 0.025383269414305687, 0.024593254551291466, -0.008267066441476345, -0.007873139344155788, 0.030830273404717445, -0.047281164675951004, -0.01958463527262211, 0.06392727047204971, 0.018771488219499588, 0.06764088571071625, -0.012194020673632622, 0.0235724076628685, -0.00008702131162863225, 0.03258127346634865, -0.016741681843996048, -0.03399879112839699, -0.04131355136632919, 0.00374902063049376, -0.02810964360833168, 0.057164959609508514, -0.0027220745105296373, -0.06413262337446213, 0.029074324294924736, 0.02785012125968933, -0.007493510842323303, 0.004399149212986231, -0.02164643630385399, 0.01510759349912405, 0.0016667665913701057, -0.0015527051873505116, -0.05420468747615814, -0.030659353360533714, 0.004537360277026892, 0.0001240082929143682, -0.0871000736951828, -0.02397114224731922, -0.06045146659016609, -0.009394616819918156, 0.020920177921652794, -0.00802960991859436, -0.018583735451102257, 0.0033484804444015026, -0.03532416373491287, 0.00013124833640176803, -0.07112149894237518, 0.07863777875900269, 0.01865600235760212, -0.011776953004300594, -0.011897082440555096, 0.008841698989272118, 0.04790906235575676, 0.031052203848958015, 0.012021602131426334, 0.07910404354333878, 0.0033176892902702093, 0.039400264620780945, -0.012681590393185616, 0.04302101209759712, -0.029136063531041145, -0.06442736089229584, -0.028650663793087006, 0.06497997045516968, -0.01840169169008732, -0.0019580309744924307, -0.00684382114559412, -0.018252529203891754, -0.017361953854560852, 0.004185243975371122, 0.05029064789414406, 0.042137838900089264, -0.001842646743170917, -0.028428789228200912, -0.004271304234862328, -0.008467409759759903, 0.043815188109874725, -0.002044954104349017, -0.024531224742531776, -0.031237488612532616, -0.009350843727588654, 0.03962927684187889, 0.0072526512667536736, 0.008210239931941032, 0.05490962788462639, -0.02792157605290413, 0.038957830518484116, 0.07705365866422653, 0.04299752786755562, 0.024178093299269676, -0.018864400684833527, 0.028799910098314285, 0.03429281711578369, 0.017005207017064095, 0.00995029229670763, 0.05850040167570114, 0.0010389569215476513, -0.008939327672123909, -0.004522262141108513, 0.04331541433930397, 0.008787610568106174, 0.0014766501262784004, -0.04238347336649895, -0.0332707054913044, 0.06127488240599632, -0.030155561864376068, -0.009540959261357784, 0.03701404482126236, 0.0796399936079979, 0.018939882516860962, 0.04446965828537941, -0.005926014855504036, -0.07619450986385345, 0.04455508291721344, 0.011983945965766907, 0.011511288583278656, 0.01018337532877922, 0.005341665353626013, 0.09154722094535828, 0.03252718597650528, 0.012593054212629795, 0.03322595730423927, -0.06295202672481537, -0.0824504867196083, -0.010055024176836014, -0.033953212201595306, 0.08094386756420135, -0.02154945209622383, -0.00448601832613349, 0.0496610589325428, 0.001948279794305563, 0.03975825756788254, 0.005952553823590279, -0.0104718878865242, 0.004571730270981789, -0.03614344075322151, -0.054805003106594086, 0.04493299126625061, 0.030826181173324585, -0.032602522522211075, -0.035705357789993286, 0.01210789754986763, -0.009707913734018803, 0.017047185450792313, 0.037029508501291275, -0.005799481179565191, 0.03821990638971329, 0.008963997475802898, 0.056109994649887085, -0.008070400916039944, 0.013963967561721802, -0.03679385036230087, 0.042284175753593445, 0.0016911092679947615, -0.02290770784020424, 0.010625598020851612, -0.008036501705646515, 0.11539246886968613, 0.05211932212114334, -0.038954365998506546, -0.07581830024719238, 0.037932924926280975, 0.012154988944530487, -0.0488441176712513, 0.013375617563724518, -0.007530937436968088, -0.014461942948400974, -0.015992702916264534, -0.042975202202796936, -0.016719093546271324, 0.0052253673784434795, -0.03731999173760414, 0.010331732220947742, 0.06395558267831802, -0.024050632491707802, 0.06331989169120789, -0.01873914711177349, 0.012024217285215855, 0.003496882040053606, -0.024934759363532066, -0.06841935962438583, 0.027685636654496193, 0.02528207190334797, -0.020015235990285873, 0.05791093036532402, -0.03477926924824715, -0.018836241215467453, -0.02504415437579155, -0.04056161642074585, 0.012687972746789455, 0.030446982011198997, 0.04737665876746178, 0.01341105718165636, 0.036237504333257675, -0.057928066700696945, 0.008129872381687164, -0.021951045840978622, -0.044710107147693634, -0.021220095455646515, -0.012849017046391964, 0.015158056281507015, 0.0007782990578562021, 0.004012234043329954, 0.01622929982841015, 0.0215497687458992, -0.012383484281599522, 0.026547424495220184, 0.009140006266534328, 0.0055320686660707, -0.0008797543123364449, 0.003049616701900959, -0.01487251091748476, -0.06175464391708374, 0.06402712315320969, -0.0607830286026001, -0.03641378879547119, -0.031415004283189774, -0.04880184307694435, 0.05243789404630661, -0.09548459202051163, -0.045395828783512115, -0.0025525735691189766, 0.007895129732787609, 0.035043828189373016, 0.006689884699881077, 0.018345970660448074, 0.04652391001582146, 0.005816294811666012, 0.011621352285146713, -0.0009843645384535193, -0.023609204217791557, 0.03612251579761505, -0.0028989892452955246, 0.03132016584277153, 0.0490686260163784, -0.02072565071284771, 0.00663535064086318, -0.02502952143549919, 0.019446328282356262, -0.022103171795606613, -0.276416540145874, 0.05480622127652168, -0.03276515379548073, -0.05788591876626015, 0.015249655582010746, -0.027483824640512466, -0.013982071541249752, -0.04091556742787361, -0.009708563797175884, -0.021398652344942093, -0.01783664897084236, -0.015159331262111664, -0.0043494850397109985, 0.026000989601016045, 0.01608450710773468, 0.0028778454288840294, -0.018231531605124474, -0.03543425351381302, -0.00028505545924417675, 0.03933262079954147, 0.02876117452979088, -0.05434010922908783, 0.017138151451945305, 0.03406165540218353, 0.015161290764808655, 0.017842857167124748, -0.08824028819799423, 0.056380514055490494, -0.031668245792388916, -0.044296957552433014, 0.016252603381872177, 0.00022177325445227325, 0.03293980285525322, -0.016423070803284645, -0.013325619511306286, -0.008543524891138077, 0.04247421771287918, 0.021852804347872734, 0.005237252451479435, 0.006943616550415754, -0.007785394787788391, -0.062469273805618286, -0.001434065867215395, -0.02367173321545124, 0.07351288944482803, 0.016323396936058998, -0.08543307334184647, -0.02302929200232029, -0.02587399259209633, 0.07859620451927185, -0.02127736806869507, -0.03768958896398544, -0.006608959753066301, 0.04108194634318352, -0.02313970774412155, -0.023756075650453568, -0.00892945658415556, -0.017892932519316673, -0.06620460748672485, -0.03799573704600334, -0.0315820649266243, -0.053655561059713364, 0.015374177135527134, -0.053729910403490067, -0.018501581624150276, -0.05441366508603096, -0.08872305601835251, 0.00043477819417603314, 0.06855134665966034, 0.022683721035718918, -0.03959805145859718, 0.021814173087477684, -0.01875522918999195, -0.11429014801979065, -0.01824602670967579, -0.0336156040430069, -0.01930311694741249, 0.003878906136378646, -0.00595272658392787, 0.05734918639063835, -0.045891694724559784, -0.05511370673775673, 0.016883589327335358, 0.016992947086691856, 0.00712880352512002, -0.011088292114436626, 0.04449731856584549, 0.004509223625063896, -0.022923234850168228, 0.0025613836478441954, 0.058798786252737045, -0.007058517076075077, -0.04739775136113167, -0.025811556726694107, 0.015019595623016357, -0.004830542951822281, 0.0407891683280468, -0.013796723447740078, 0.0383661650121212, 0.05498110130429268, 0.03548307716846466, -0.0463927686214447, 0.023634111508727074, -0.05319086089730263, -0.018342100083827972, 0.005743429530411959, -0.06506237387657166, 0.014433473348617554, 0.009949171915650368, 0.012354599311947823, -0.012466575019061565, -0.022644437849521637, 0.0029593792278319597, -0.05458373948931694, -0.022993680089712143, 0.00948758888989687, 0.015155944041907787, 0.018607771024107933, 0.046225693076848984, -0.021098792552947998, -0.05099887400865555, 0.023424779996275902, 0.020415794104337692, -0.01904274895787239, -0.04675908014178276, -0.023699140176177025, -0.01810404844582081, -0.0028370085638016462, -0.011308064684271812, 0.023045260459184647, -0.012021448463201523, 0.020228389650583267, -0.004430772271007299, -0.05289951339364052, 0.04171263799071312, 0.02201380394399166, -0.04538557678461075, -0.016523614525794983, 0.011571071110665798, -0.007709897588938475, -0.0027759908698499203, 0.012616855092346668, 0.014365911483764648, 0.030310634523630142, 0.04699305072426796, 0.00884467363357544, 0.011673795990645885, 0.017488522455096245, 0.007827520370483398, 0.005907030310481787, 0.005871580448001623, -0.025367839261889458, 0.006668462883681059, -0.04295267164707184, -0.014732175506651402, -0.004568645730614662, 0.04775986447930336, -0.030078096315264702, -0.013762883841991425, -0.03440713882446289, 0.026295682415366173, -0.057292502373456955, 0.024365389719605446, -0.00765468692407012, 0.0015303015243262053, 0.04633679613471031, -0.01397127564996481, 0.04238444194197655, -0.0007113692117854953, -0.00467782374471426, -0.0015658247284591198, 0.04480871930718422, -0.04790005460381508, 0.02606915310025215, 0.0347321517765522, 0.0044950502924621105, -0.006744945887476206, 0.04162910208106041, 0.04140797629952431, 0.023231646046042442, 0.010234561748802662, -0.01969609037041664, 0.02970687672495842, 0.024689355865120888, 0.04404160752892494, 0.026580581441521645, -0.029527539387345314, 0.008776617236435413, -0.03044859506189823, -0.010791858658194542, -0.003277859650552273, 0.009499361738562584, -0.042316753417253494, 0.013173423707485199, -0.037480857223272324, -0.07125720381736755, 0.03515497222542763, 0.03633662685751915, 0.026725808158516884, 0.015865929424762726, -0.00909486785531044, 0.008522088639438152, -0.03816746920347214, 0.0299199391156435, 0.060398224741220474, -0.05870164558291435, 0.005553624592721462, -0.007421319372951984, -0.03301246091723442, -0.0029262860771268606, 0.03214602917432785, -0.0704108402132988, -0.03229353204369545, 0.00048751270514912903, 0.010914928279817104, -0.02940613031387329, -0.04601919278502464, -0.019180666655302048, 0.01272046472877264, -0.010211938992142677, 0.0035444763489067554, 0.00041170328040607274, 0.01837928406894207, 0.020630640909075737, -0.019449492916464806, 0.03360222652554512, -0.025832340121269226, 0.008060358464717865, 0.009872064925730228, -0.0071869189850986, 0.049530066549777985, -0.02262292429804802, 0.026868948712944984, 0.018125414848327637, -0.02754209004342556, -0.012567387893795967, -0.04252290353178978, 0.01238804031163454, -0.021831925958395004, 0.04334569349884987, 0.003552501555532217, 0.013660594820976257, -0.030392510816454887, 0.004691288340836763, -0.04023117199540138, -0.0014275002758949995, -0.02194208651781082, -0.007500056177377701, 0.002707265317440033, 0.02606041356921196, 0.005654156673699617, 0.04292185604572296, -0.016345474869012833, -0.030507706105709076, 0.05361879616975784, -0.05696452409029007, -0.04644029214978218, -0.015559946186840534, -0.06439624726772308, 0.011628388427197933, 0.04115648567676544, 0.025982094928622246, -0.021140890195965767, 0.05518914759159088, 0.05282994732260704, 0.02522554248571396, 0.003974012099206448, -0.010796801187098026, 0.014830666594207287, -0.02818099781870842, -0.0015865430468693376, -0.08273568749427795, 0.023244142532348633, 0.04252147674560547, -0.0050459131598472595, -0.00769085343927145, -0.008251185528934002, -0.0397895872592926, -0.01666202023625374, -0.06855779886245728, -0.03084181621670723, 0.02344946749508381, -0.025787383317947388, 0.01398621965199709, 0.009841235354542732, -0.06522515416145325, 0.013607428409159184, 0.043755289167165756, -0.03841417282819748, -0.04968933016061783, -0.04025936499238014, 0.06059280037879944, -0.028067316859960556, 0.011304238811135292, -0.04093319922685623, -0.044437114149332047, 0.07080800086259842, 0.02155602164566517, -0.0049990201368927956, 0.04104387015104294, -0.008509080857038498, 0.021669436246156693, 0.03746781125664711, 0.0008454422350041568, 0.014432927593588829, 0.01231333240866661, -0.017613276839256287, -0.06525852531194687, 0.006715343799442053, 0.016793768852949142, -0.0273115336894989, -0.03423840180039406, 0.06596656143665314, 0.025909340009093285, -0.026605848222970963, -0.05063685402274132, 0.04540418088436127, -0.04062826186418533, -0.009567787870764732, -0.051740460097789764, 0.034049469977617264, -0.05549256503582001, 0.05713576450943947, -0.005798129364848137, -0.0007677625981159508, 0.07997298985719681, -0.011623203754425049, -0.003017790848389268, -0.003377396846190095, 0.08448639512062073, 0.0823623538017273, 0.06858788430690765, -0.014357219450175762, 0.0701553076505661, -0.03188352286815643, -0.04053737223148346, -0.01975657232105732, -0.019458254799246788, -0.008043666370213032, 0.017830219119787216, 0.012639634311199188, 0.08143418282270432, -0.030638407915830612, 0.08543434739112854, -0.01980624906718731, -0.036412205547094345, -0.03500054031610489, 0.011584495194256306, 0.0328952893614769, 0.05519432947039604, 0.05082016438245773, 0.04209001362323761, -0.029820043593645096, -0.0202154740691185, 0.03319370001554489, -0.027982858940958977, -0.02416129969060421, -0.00048646991490386426, 0.004781563766300678, 0.016468776389956474, -0.012513513676822186, 0.058617737144231796, 0.07669966667890549, -0.03209556266665459, -0.0030105209443718195, -0.0011389688588678837, 0.02329409122467041, 0.019330624490976334, 0.018275456503033638, -0.0206251572817564, -0.003314761910587549, -0.025613289326429367, -0.045959386974573135, 0.0002453049528412521, -0.024327261373400688, -0.04238351434469223, 0.017154498025774956, -0.018419763073325157, -0.01139124110341072, 0.01028976310044527, -0.005347090307623148, -0.008129308931529522, -0.04420992732048035, -0.045381397008895874, -0.07716851681470871, -0.06991748511791229, 0.013114025816321373, -0.017024343833327293, 0.009966286830604076, -0.027868788689374924, -0.018381139263510704, -0.017420772463083267, -0.01642238162457943, 0.06459464132785797, -0.04353709891438484, -0.007150884717702866, -0.00441777752712369, 0.02922198735177517, 0.0018514241091907024, 0.027816804125905037, 0.048723407089710236, 0.017709868028759956, 0.006264104507863522, -0.006387016270309687, -0.011256244033575058, 0.050035957247018814, 0.022341212257742882, -0.022115444764494896, -0.0939750000834465, 0.018273090943694115, 0.019684525206685066, 0.007923011668026447, -0.07695575803518295, 0.03968073055148125, 0.020513832569122314, -0.020226411521434784, 0.02890586480498314, -0.02550242654979229, -0.0017213016981258988, -0.006295476574450731, 0.004811447113752365, -0.01493777334690094, 0.011797219514846802, 0.0273186843842268, -0.016503948718309402, 0.10317934304475784, 0.03973880782723427, -0.022096071392297745, -0.013860137201845646, -0.02637610398232937, -0.032764237374067307, -0.0003391634381841868, -0.03041270188987255, -0.022626204416155815, -0.06306733191013336, -0.08603119850158691, -0.03689046576619148, 0.011937564238905907, -0.017836647108197212, -0.03312237560749054, 0.00885322131216526, 0.023002946749329567, -0.014837774448096752, 0.012978200800716877, -0.028816409409046173, 0.029981648549437523, 0.001634790562093258, -0.008564251475036144, -0.013411082327365875, -0.006046832073479891, 0.008415690623223782, 0.01820187270641327, 0.0046682655811309814, -0.033345773816108704, 0.02752271480858326, -0.014416969381272793, 0.022604525089263916, 0.022530172020196915, 0.03558235615491867, 0.02623816393315792 ]
[ -0.06212310120463371, -0.008979760110378265, -0.025770146399736404, -0.01795731857419014, 0.03847353532910347, -0.025870872661471367, -0.011495599523186684, 0.026696069166064262, 0.0005105443415232003, -0.015171471983194351, 0.024069812148809433, -0.0030593513511121273, -0.01051072496920824, -0.009129825048148632, 0.08450718969106674, -0.005911710672080517, -0.022330548614263535, -0.017078062519431114, -0.013932313770055771, 0.05252928286790848, -0.00608864426612854, -0.04433846101164818, 0.004812013823539019, -0.025839688256382942, -0.0023916091304272413, 0.04407802224159241, 0.044728390872478485, -0.023484261706471443, -0.015006986446678638, -0.22150157392024994, 0.0012197258183732629, 0.038642097264528275, 0.026829645037651062, -0.024968000128865242, 0.006583414971828461, 0.03278043121099472, 0.009267948567867279, 0.009143772535026073, -0.011855902150273323, 0.019825849682092667, 0.009072682820260525, -0.005770845338702202, -0.058229997754096985, -0.015309645794332027, 0.047030530869960785, 0.0174168162047863, -0.001052445382811129, -0.030579572543501854, -0.02033798210322857, 0.02224813401699066, -0.04637861251831055, -0.00916189793497324, 0.005815932527184486, 0.004598882980644703, 0.006602169945836067, 0.03998300060629845, 0.05477658659219742, 0.06199375167489052, 0.050214026123285294, 0.05786299705505371, 0.014136741869151592, 0.0038753540720790625, -0.14440958201885223, 0.07911339402198792, 0.001044181757606566, 0.019579214975237846, -0.053621597588062286, 0.00045398835209198296, -0.02834698185324669, 0.08669912815093994, 0.020027006044983864, -0.02307099476456642, -0.03162437304854393, 0.0836864709854126, 0.004158858209848404, 0.024640226736664772, 0.003956075757741928, 0.02576378919184208, 0.012398689985275269, -0.05146037042140961, -0.05925675854086876, 0.003505982458591461, -0.05226350203156471, -0.044434718787670135, -0.03420056030154228, 0.05109359696507454, -0.01234161201864481, 0.04120790213346481, -0.00045433230116032064, 0.020146444439888, 0.019658712670207024, 0.011375924572348595, 0.06341049075126648, 0.0075970785692334175, -0.11492639780044556, -0.03939349576830864, 0.0016880324110388756, 0.00033229179098270833, -0.018308572471141815, 0.40227797627449036, 0.01331748254597187, -0.023759955540299416, 0.057617366313934326, 0.041535668075084686, 0.011608783155679703, -0.030586369335651398, 0.025321945548057556, -0.05500822141766548, 0.0337953120470047, -0.018460962921380997, -0.008150593377649784, -0.01291784830391407, 0.03372114524245262, -0.09320862591266632, 0.03343512490391731, -0.0009940509917214513, 0.05537504702806473, 0.016746049746870995, 0.006681113503873348, 0.024401625618338585, -0.011877543292939663, 0.00284315412864089, 0.02355322241783142, 0.010317616164684296, 0.028388001024723053, 0.01709795743227005, 0.04195711016654968, 0.046084996312856674, 0.04203343018889427, 0.02814437635242939, 0.0682266429066658, 0.043282847851514816, -0.03991377726197243, -0.004228932783007622, -0.004254707135260105, 0.013260493054986, 0.026075026020407677, -0.04438214749097824, -0.020713375881314278, 0.016834355890750885, -0.014971471391618252, -0.003129001474007964, 0.0057598198764026165, 0.01743485778570175, -0.0266447551548481, 0.12172794342041016, -0.03424342721700668, -0.038294944912195206, -0.023198183625936508, -0.02118133008480072, -0.024417035281658173, 0.046212926506996155, 0.009555704891681671, -0.0360751748085022, 0.01470997091382742, 0.010804262012243271, 0.07143962383270264, -0.03778510168194771, -0.06713435798883438, -0.015163609758019447, -0.001685900380834937, -0.029544487595558167, -0.029227113351225853, 0.10185535997152328, 0.06272627413272858, -0.10221612453460693, -0.0038844181690365076, 0.009640621952712536, 0.0016969811404123902, -0.09295550733804703, 0.027658715844154358, -0.00695489626377821, -0.04090387746691704, -0.006290609482675791, 0.07532141357660294, 0.0013914648443460464, -0.02940431423485279, 0.008468079380691051, 0.057784080505371094, 0.005182457156479359, 0.015675604343414307, -0.011429836042225361, -0.05960783362388611, 0.01645520329475403, -0.06672760099172592, -0.0665515884757042, -0.07920458167791367, -0.0005285072256810963, -0.04411061853170395, -0.03242536634206772, -0.01328266877681017, 0.00764165073633194, -0.06720218062400818, 0.09383579343557358, -0.04217672720551491, -0.03818657249212265, -0.01453482173383236, 0.0013006111839786172, -0.04820999130606651, -0.03412112966179848, 0.019442085176706314, 0.021885843947529793, -0.015368982218205929, 0.020865105092525482, -0.035332657396793365, 0.014848647639155388, 0.06286156922578812, -0.03620654717087746, 0.08090177923440933, 0.0004436229064594954, -0.0648006796836853, 0.006562602240592241, -0.004151505883783102, 0.03826519846916199, -0.03323330730199814, 0.01492332387715578, -0.00979235116392374, -0.0013269336195662618, 0.03053061105310917, 0.03103719837963581, -0.01926783099770546, -0.019963795319199562, -0.028560398146510124, -0.3440100848674774, -0.0054789320565760136, 0.01720806024968624, -0.004684313200414181, 0.006987689062952995, -0.03819722682237625, 0.01757633127272129, -0.032686423510313034, 0.01803174987435341, 0.019196374341845512, 0.07289021462202072, -0.003528847359120846, 0.017211895436048508, -0.08084848523139954, -0.0009607993997633457, 0.06116081774234772, 0.005788716021925211, -0.03358388692140579, -0.0047691743820905685, 0.021593935787677765, 0.005414427258074284, -0.05135006457567215, -0.011826304718852043, -0.03620848432183266, -0.022599872201681137, -0.024860983714461327, 0.09213436394929886, 0.05260714516043663, 0.03280734270811081, -0.039753712713718414, 0.04284709319472313, 0.011018790304660797, -0.031781286001205444, -0.09498360753059387, 0.006164161022752523, -0.032409604638814926, 0.020510148257017136, -0.0006903244066052139, -0.0299718976020813, 0.008025293238461018, -0.007243047468364239, -0.016410620883107185, -0.06902977079153061, -0.05745818093419075, -0.014485382474958897, 0.0213650893419981, -0.02801269106566906, -0.006256424821913242, 0.0067156110890209675, 0.07317034900188446, 0.01700506918132305, -0.004563582129776478, -0.02007955126464367, 0.060270726680755615, 0.015242691151797771, -0.024403462186455727, -0.07133450359106064, -0.03763395920395851, 0.02457246743142605, 0.005460808984935284, 0.04343109577894211, 0.05001809820532799, 0.03740478679537773, -0.08509881794452667, 0.005829754285514355, 0.030520997941493988, -0.032646629959344864, -0.007726946379989386, 0.04462241753935814, -0.035135071724653244, -0.02419658564031124, 0.0796261802315712, 0.003653427120298147, 0.008401879109442234, 0.04550565034151077, 0.03248302638530731, -0.00967682059854269, -0.01590917259454727, 0.02650623396039009, 0.024449389427900314, 0.014752390794456005, -0.018237406387925148, 0.037631820887327194, -0.030217044055461884, -0.0312070082873106, 0.05758269131183624, -0.0026959897950291634, -0.057914964854717255, 0.056544966995716095, 0.007297989446669817, -0.052994340658187866, -0.0009081022581085563, -0.01721649058163166, -0.043860822916030884, 0.04890238121151924, -0.033649008721113205, -0.2744806706905365, 0.0384359285235405, 0.048910047858953476, 0.07444310188293457, 0.0031105633825063705, 0.013734409585595131, 0.030873248353600502, -0.05236514285206795, -0.020349357277154922, 0.013148118741810322, 0.043551985174417496, 0.0688222348690033, -0.013625671155750751, -0.015380979515612125, 0.00018706968694459647, 0.005455889273434877, 0.021789675578475, 0.0045223417691886425, 0.012613218277692795, -0.004547554533928633, 0.018718170002102852, -0.0375995896756649, 0.19518694281578064, 0.024675268679857254, -0.01473367027938366, 0.016660379245877266, -0.03651130571961403, 0.012058247812092304, 0.06390038132667542, -0.002180189359933138, -0.012761061079800129, 0.0397845096886158, 0.03195928409695625, 0.03509007394313812, 0.019311361014842987, -0.07366971671581268, -0.03587788715958595, 0.05516428500413895, 0.005795932840555906, -0.016704142093658447, -0.0037382550071924925, 0.040556471794843674, -0.052336469292640686, -0.002496494213119149, 0.0508483462035656, -0.020308906212449074, -0.0050694867968559265, 0.02015441469848156, -0.061601635068655014, -0.03142867982387543, -0.03277997672557831, -0.046751875430345535, -0.05523648113012314, 0.0014388264389708638, -0.02083617076277733, 0.07323867082595825, 0.0013570383889600635, -0.021658819168806076, 0.02197365276515484, 0.0219859816133976, -0.027217403054237366, -0.025980787351727486, 0.09021321684122086, 0.022709986194968224, 0.0116078220307827 ]
[ -0.0028415885753929615, 0.0001695872051641345, -0.010915419086813927, 0.06943191587924957, 0.043441932648420334, 0.014294583350419998, -0.008722089231014252, 0.02829875610768795, -0.028953123837709427, -0.0282148327678442, -0.005820433143526316, 0.011212962679564953, 0.019211895763874054, 0.003162275766953826, 0.013815434649586678, -0.00027805575518868864, -0.008457952179014683, 0.014701763167977333, 0.009488880634307861, 0.006180754397064447, -0.026177488267421722, 0.005752088036388159, 0.014067578129470348, 0.003419992048293352, -0.009110022336244583, 0.024628743529319763, -0.049391064792871475, -0.03310156613588333, 0.023740025237202644, -0.15922720730304718, 0.00928471889346838, -0.03773389011621475, -0.006870560348033905, 0.008780012838542461, 0.017286105081439018, 0.020847350358963013, -0.011314996518194675, -0.020532995462417603, 0.003867140971124172, -0.0026226614136248827, 0.0014877795474603772, -0.0298796184360981, -0.021129541099071503, -0.017824966460466385, 0.003077465808019042, -0.013718479312956333, -0.01708061806857586, 0.005545384716242552, 0.001644873060286045, -0.026756707578897476, -0.043014273047447205, -0.02570495754480362, 0.002137805800884962, 0.0017961285775527358, -0.015133991837501526, 0.008256864733994007, -0.02911936119198799, -0.03042902983725071, 0.028072770684957504, -0.014798581600189209, 0.0156042305752635, 0.006896428298205137, -0.06280020624399185, -0.019578438252210617, 0.022421203553676605, -0.011250888928771019, -0.03479059040546417, 0.0029848325066268444, -0.018751835450530052, 0.014109968207776546, 0.005420032888650894, 0.029399655759334564, -0.021894363686442375, 0.018080148845911026, -0.007363495416939259, 0.00023068168957252055, 0.019056443125009537, -0.016259368509054184, -0.0203684214502573, -0.012966414913535118, -0.015942001715302467, -0.017217613756656647, 0.02643798477947712, 0.01036617811769247, 0.017257340252399445, 0.007762428373098373, 0.019526973366737366, -0.0026856185868382454, -0.01640493981540203, -0.0024051947984844446, -0.02801555022597313, 0.011461718007922173, 0.029753178358078003, -0.010367877781391144, -0.08984744548797607, -0.015335331670939922, -0.005600906442850828, -0.019532039761543274, -0.012358301319181919, 0.8528892993927002, 0.0030584733467549086, -0.004790905397385359, 0.020135218277573586, 0.024391965940594673, 0.02706715278327465, -0.03272414952516556, 0.015259512700140476, 0.03317735716700554, 0.010088086128234863, 0.01326102577149868, 0.011744552291929722, -0.007177600637078285, 0.006897933781147003, -0.023193905130028725, 0.033916227519512177, -0.0037064864300191402, 0.03054746240377426, 0.0017611499642953277, 0.03692837804555893, 0.046518854796886444, 0.05899515002965927, 0.02623971365392208, -0.005134831182658672, 0.004455449525266886, 0.012469013221561909, -0.16853415966033936, 0.017495138570666313, -6.639325805926686e-33, 0.04857152700424194, 0.02633270062506199, -0.01711176335811615, 0.0017831693403422832, 0.02130546234548092, 0.04528644308447838, -0.03675423935055733, -0.008244707249104977, -0.015785200521349907, -0.03950374945998192, 0.004455850925296545, -0.038937222212553024, -0.006698207464069128, 0.03409964218735695, 0.005254970397800207, -0.012053661048412323, 0.009405148215591908, 0.03830881044268608, 0.003849164815619588, 0.029736287891864777, 0.00323498691432178, 0.009743739850819111, 0.01485066581517458, 0.041129447519779205, -0.0317142978310585, 0.01846724934875965, 0.006390227936208248, -0.0029219542630016804, -0.017551247030496597, -0.04532768204808235, -0.014151453971862793, 0.023503096774220467, 0.00624387152493, -0.02869165875017643, 0.015748348087072372, -0.05499168485403061, 0.0019182239193469286, 0.008655338548123837, -0.035661667585372925, -0.013248780742287636, -0.009264173917472363, -0.0037786122411489487, -0.02675316110253334, -0.03635275363922119, -0.03257077559828758, -0.001135229947976768, 0.015646709129214287, 0.013411558233201504, -0.02548501454293728, -0.0066551705822348595, 0.023370986804366112, 0.01366553083062172, 0.011736014857888222, 0.009220699779689312, -0.021543443202972412, -0.008112250827252865, -0.026395918801426888, -0.005981846712529659, 0.014313092455267906, -0.0023214868269860744, 0.06250452250242233, -0.004589148331433535, -0.006173054222017527, 0.05138619616627693, -0.027365904301404953, 0.0032829248812049627, 0.03144264966249466, 0.04175282642245293, 0.012426860630512238, 0.017755379900336266, -0.06036832183599472, 0.04512607678771019, -0.002205918077379465, -0.022116562351584435, -0.006675681099295616, -0.032363321632146835, 0.007392874453216791, -0.017798375338315964, 0.017645105719566345, 0.04994559288024902, -0.026599807664752007, -0.023760225623846054, 0.022482585161924362, -0.033687442541122437, -0.03789656609296799, 0.005509270820766687, 0.051449429243803024, 0.010053673759102821, -0.022703930735588074, 0.004942173603922129, 0.05959547683596611, 0.022389143705368042, 0.002328011440113187, -0.03000854328274727, -0.005253040697425604, 6.182382499087261e-33, 0.011365978978574276, -0.023936249315738678, -0.003703880589455366, 0.004373020958155394, 0.027379339560866356, 0.0016136378981173038, -0.0022498073522001505, 0.030499044805765152, -0.0368705615401268, 0.009928285144269466, -0.005919451359659433, 0.0018286799313500524, -0.05611823871731758, -0.009308739565312862, 0.05822649598121643, -0.024631716310977936, 0.009286489337682724, -0.030869590118527412, 0.009156554937362671, 0.015616192482411861, -0.019239872694015503, 0.006071220617741346, 0.0023129202891141176, 0.02097441256046295, 0.039875779300928116, 0.05425797030329704, -0.006873385980725288, 0.005310534033924341, 0.0014034024206921458, -0.0005274972645565867, -0.011983288452029228, -0.012110021896660328, -0.020176958292722702, -0.0270504429936409, 0.001339087262749672, 0.055607087910175323, -0.02162366919219494, 0.013049401342868805, 0.007712410297244787, 0.00527626508846879, 0.02845856547355652, 0.0008291905396617949, -0.019332099705934525, 0.039184726774692535, 0.002229435369372368, 0.004042197950184345, -0.0010442736092954874, 0.009156715124845505, 0.020833030343055725, -0.003074164967983961, -0.00029823437216691673, -0.023485146462917328, 0.00246714917011559, 0.015037406235933304, 0.006682167761027813, -0.05713619664311409, -0.005920529365539551, 0.01654955931007862, -0.038335707038640976, 0.009262796491384506, -0.022769222036004066, -0.005050879903137684, -0.015275840647518635, 0.006270654033869505, -0.039407551288604736, -0.03370949998497963, -0.03110535256564617, -0.024953164160251617, -0.012896626256406307, 0.034173134714365005, 0.0029393797740340233, -0.011629247106611729, -0.011393600143492222, 0.031312115490436554, 0.0013842752669006586, 0.0004764751938637346, -0.004902046173810959, 0.0370040126144886, -0.04376528412103653, 0.01899160072207451, -0.004275473300367594, 0.0014403705717995763, -0.021249525249004364, -0.002686542458832264, 0.017005234956741333, 0.012895705178380013, -0.022752391174435616, 0.006873172242194414, -0.006856485735625029, -0.022690171375870705, -0.009155916050076485, -0.04361449554562569, -0.00548022473230958, -0.00243796082213521, -0.02519015222787857, -1.2620922085204711e-8, -0.006438602693378925, 0.006347968243062496, -0.01947045885026455, -0.00046171079156920314, 0.021710025146603584, 0.0168797355145216, -0.02275148034095764, -0.018010152503848076, 0.004196270368993282, 0.0124745424836874, 0.0448932871222496, -0.002624570857733488, 0.022925635799765587, 0.02361595816910267, 0.018052028492093086, -0.041866887360811234, 0.004443710204213858, 0.014073041267693043, 0.02553984336555004, -0.002735442016273737, 0.007126478012651205, 0.015567737631499767, 0.010506009683012962, -0.02636343240737915, 0.0021343545522540808, -0.002344784326851368, 0.0006440043798647821, -0.043548014014959335, -0.0008825267432257533, -0.01814154163002968, 0.05368899181485176, -0.006812990177422762, -0.017202302813529968, -0.008694796822965145, 0.0016983132809400558, -0.02805817686021328, 0.015788644552230835, -0.018262386322021484, -0.01673651486635208, 0.014610949903726578, 0.031306903809309006, 0.0244782455265522, -0.01653033308684826, -0.02678166702389717, -0.04041232168674469, -0.022570917382836342, -0.008960596285760403, -0.006728106644004583, 0.011310401372611523, -0.032097041606903076, -0.020864924415946007, -0.030972180888056755, 0.00044381688348948956, 0.07306969165802002, 0.031933948397636414, -0.03229064866900444, 0.04608135670423508, -0.015034104697406292, -0.018058495596051216, 0.007264638319611549, 0.013189366087317467, -0.001884948113001883, -0.04121653735637665, -0.02292443811893463 ]
asciidoctor-creating-macro
https://markhneedham.com/blog/2018/02/19/asciidoctor-creating-macro
false
2018-11-05 06:15:00
Neo4j: Storing inferred relationships with APOC triggers
[ "neo4j", "apoc", "graph-algorithms" ]
[ "Neo4j" ]
One of my favourite things about modelling data in graphs is how easy it makes it to infer relationships between pieces of data based on other relationships. In this post we're going to learn how to compute and store those inferred relationships using the https://neo4j-contrib.github.io/neo4j-apoc-procedures/#_triggers[triggers^] feature from the APOC library. == Meetup Graph Before we get to that, let's first understand what we mean when we say inferred relationship. We'll create a small graph containing `Person`, `Meetup`, and `Topic` nodes with the following query: [source, cypher] ---- MERGE (mark:Person {name: "Mark"}) MERGE (neo4jMeetup:Meetup {name: "Neo4j London Meetup"}) MERGE (bigDataMeetup:Meetup {name: "Big Data Meetup"}) MERGE (dataScienceMeetup:Meetup {name: "Data Science Meetup"}) MERGE (dataScience:Topic {name: "Data Science"}) MERGE (databases:Topic {name: "Databases"}) MERGE (neo4jMeetup)-[:HAS_TOPIC]->(dataScience) MERGE (neo4jMeetup)-[:HAS_TOPIC]->(databases) MERGE (bigDataMeetup)-[:HAS_TOPIC]->(dataScience) MERGE (bigDataMeetup)-[:HAS_TOPIC]->(databases) MERGE (dataScienceMeetup)-[:HAS_TOPIC]->(dataScience) MERGE (dataScienceMeetup)-[:HAS_TOPIC]->(databases) MERGE (mark)-[:MEMBER_OF]->(neo4jMeetup) MERGE (mark)-[:MEMBER_OF]->(bigDataMeetup) ---- This is what the graph looks like in the Neo4j browser: image::{{<siteurl>}}/uploads/2018/11/meetup-explicit.svg[] == Finding implicit interests At the moment there are no relationships between `Person` and `Topic` nodes, so we don't know which topics a person is interested in. There is, however, an indirect relationship between these nodes via `Group` nodes. image::{{<siteurl>}}/uploads/2018/11/inferred-rels.png[width="300px"] Let's say that a person is interested in a topic if they're a member of at least 3 groups tagged with that topic. In other words, we want to create an `INTERESTED_IN` relationship between a `Person` and `Topic` if a person is a member of at least 3 groups tagged with that topic. We could do this with the following Cypher query: [source, cypher] ---- MATCH (start:Person {name: "Mark"})-[:MEMBER_OF]->()-[:HAS_TOPIC]->(topic) WHERE not((start)-[:INTERESTED_IN]->(topic)) WITH start, topic, count(*) AS count WHERE count >= 3 MERGE (start)-[interestedIn:INTERESTED_IN]->(topic) SET interestedIn.tentative = true ---- If we run this query at the moment it won't create any `INTERESTED_IN` relationships, because none of the topics that Mark has an implicit interest in have a count of 3. We can fix that by creating a relationship from Mark to the Data Science meetup with the following query: [source,cypher] ---- MATCH (p:Person {name: "Mark"}) MATCH (meetup:Meetup {name: "Data Science Meetup"}) MERGE (p)-[:MEMBER_OF]->(meetup) ---- If we run this query and then repeat the previous one we'll get this output: [source, cypher] ---- Created 2 relationships, completed after 2 ms. ---- Cool! We now know that Mark has an interest in `Data Science` and `Databases` image::{{<siteurl>}}/uploads/2018/11/interestedin.svg[] We put a `tentative` property with a value `true` to indicate that this is an inferred relationship. We could then ask the user to confirm that this is a topic they're interested in, or indeed deny any interest at all! == Triggers This works well, but it's a painful workflow at the moment. Each time we add a new membership we need to run the inferred relationship query as well. Can we automate that? Yes we can, using triggers from the APOC library, which are described like this: ____ In a trigger you register Cypher statements that are called when data in Neo4j is changed, you can run them before or after commit. ____ We want to setup a trigger that executes a piece of Cypher whenever a relationship is created. We can do this with the following code: [source,cypher] ---- CALL apoc.trigger.add("interests", "UNWIND [rel in $createdRelationships WHERE type(rel) = 'MEMBER_OF'] AS rel WITH startNode(rel) AS start, endNode(rel) AS end MATCH (start)-[:MEMBER_OF]->()-[:HAS_TOPIC]->(topic) WHERE not((start)-[:INTERESTED_IN]->(topic)) WITH start, topic, count(*) AS count WHERE count >= 3 MERGE (start)-[interestedIn:INTERESTED_IN]->(topic) SET interestedIn.tentative = true ", {phase:'before'}) ---- This code is based on the assumption that we usually only create one `MEMBER_OF` relationship per `Person` in a transaction. Our trigger receives a list of all the relationships created in a transaction, filters the list to only include the `MEMBER_OF` ones, and then runs a piece of Cypher that creates an `INTERESTED_IN` relationship from a user to topics that they may have an interest in. If we want to change the threshold at which we create the relationships we'd only need to change this line of code: [source,cypher] ---- WHERE count >= 3 ---- And that's it!
Learn how to store inferred relationships with APOC triggers.
null
[ -0.0027276340406388044, -0.010667252354323864, 0.0021828999742865562, 0.06537846475839615, 0.08650771528482437, -0.010419498197734356, 0.011956087313592434, 0.018322622403502464, 0.022138448432087898, 0.00048133733798749745, -0.007464263122528791, -0.012176260352134705, -0.0783085972070694, 0.021966153755784035, -0.00793080311268568, 0.06987744569778442, 0.060509562492370605, 0.025934522971510887, 0.012806613929569721, -0.004986621905118227, 0.005530791822820902, 0.044638678431510925, -0.005447288043797016, 0.05186814069747925, 0.04331214353442192, 0.019850103184580803, 0.016994792968034744, 0.0026638468261808157, -0.040536001324653625, 0.012566347606480122, 0.04108618572354317, -0.005967567674815655, 0.01903470978140831, -0.01215167436748743, 0.011034179478883743, 0.014196481555700302, -0.04043197259306908, 0.0061816200613975525, -0.028041759505867958, 0.003908186685293913, -0.07375900447368622, 0.0433521643280983, -0.03722194954752922, 0.006963263265788555, -0.040351077914237976, -0.0095673194155097, -0.07084424793720245, 0.05844387784600258, 0.01346334908157587, 0.025290071964263916, -0.08468099683523178, 0.02469659224152565, -0.010663517750799656, 0.04690992459654808, -0.03439294546842575, 0.05057612806558609, 0.019810056313872337, -0.06620924174785614, 0.04336772486567497, -0.012447915971279144, -0.00609242171049118, 0.0026715549174696207, -0.0015150835970416665, 0.004675164353102446, -0.018753571435809135, -0.04049144312739372, -0.005174033343791962, 0.05289425700902939, -0.047356367111206055, 0.0031202957034111023, -0.010710540227591991, 0.02422451414167881, -0.035563595592975616, 0.007591681554913521, -0.007238931022584438, -0.03911641240119934, -0.019393587484955788, 0.026522807776927948, 0.046115946024656296, 0.038773734122514725, -0.014525657519698143, 0.00639703031629324, 0.0073434836231172085, 0.018416695296764374, 0.0048751323483884335, -0.046739399433135986, -0.03552357107400894, -0.037034690380096436, -0.08458398282527924, 0.04160574823617935, -0.01501756813377142, -0.06330369412899017, -0.015721822157502174, 0.003021345240995288, -0.014603232964873314, 0.014794258400797844, 0.016058430075645447, -0.01541818492114544, 0.018777387216687202, -0.03448035195469856, -0.03527463600039482, -0.026045339182019234, -0.011061144061386585, 0.00969094131141901, -0.0718112513422966, -0.039693064987659454, -0.046458616852760315, -0.02751421183347702, -0.003851305227726698, -0.011692019179463387, -0.04883873835206032, 0.0011600417783483863, 0.0029523903504014015, 0.03227612003684044, -0.07947202026844025, 0.06145065277814865, 0.027077946811914444, -0.01483276765793562, -0.005536005832254887, 0.024899495765566826, 0.039201125502586365, 0.02645435556769371, 0.012454815208911896, 0.05898253992199898, -0.030985405668616295, 0.05264189466834068, -0.008514043875038624, 0.033248115330934525, -0.050552744418382645, -0.07245069742202759, -0.0038683637976646423, 0.041614603251218796, -0.018908094614744186, -0.010387844406068325, -0.011187737807631493, -0.04222326725721359, -0.006389429792761803, 0.046631187200546265, 0.053364742547273636, 0.02807520516216755, 0.016795724630355835, -0.06986778974533081, 0.03225419670343399, 0.0031107482500374317, 0.034181658178567886, 0.019246317446231842, -0.03343772888183594, -0.033784929662942886, -0.016697071492671967, -0.00831068865954876, 0.015999004244804382, 0.03003372810781002, 0.0522906631231308, -0.01945601776242256, 0.02321728877723217, 0.11666131764650345, 0.02293878048658371, 0.014165965840220451, 0.0030971092637628317, 0.030903251841664314, 0.048983823508024216, 0.009044193662703037, 0.010096450336277485, 0.05173956975340843, 0.0020002129022032022, -0.024852819740772247, -0.003641534596681595, 0.058896057307720184, 0.00022869760869070888, 0.012562167830765247, -0.034220270812511444, -0.07620996981859207, 0.05580442026257515, -0.0536678284406662, -0.0065294899977743626, 0.0457923524081707, 0.08747534453868866, 0.024563485756516457, 0.008361812680959702, 0.003600213211029768, -0.07993926107883453, 0.04150921851396561, 0.01204190868884325, -0.017751630395650864, -0.0030954615212976933, -0.0007408073870465159, 0.06705762445926666, 0.043599288910627365, 0.019710581749677658, 0.050898484885692596, -0.08741621673107147, -0.05526868999004364, 0.006267145276069641, -0.01526222750544548, 0.07431681454181671, -0.05244741588830948, 0.018040020018815994, 0.056307706981897354, 0.002472653053700924, 0.03359013423323631, 0.01116188708692789, -0.015624523162841797, 0.03395463526248932, -0.027966132387518883, -0.05238572508096695, 0.03379606455564499, 0.012821557000279427, -0.03460238501429558, -0.03749991953372955, 0.00915551371872425, -0.02707342803478241, 0.0006441399455070496, 0.030087338760495186, -0.03167841583490372, 0.03410123288631439, 0.014365557581186295, 0.025224272161722183, -0.005820467136800289, 0.002454315312206745, -0.024641679599881172, 0.03568561375141144, -0.011175473220646381, -0.023099126294255257, 0.000004802005150850164, -0.0012988895177841187, 0.10789132863283157, 0.05846724659204483, 0.003529787063598633, -0.036710336804389954, 0.04909896105527878, 0.02447163686156273, -0.02531309612095356, 0.041001416742801666, -0.03486882150173187, 0.018993983045220375, -0.021594038233160973, -0.02177717536687851, -0.015533383935689926, 0.007532119285315275, -0.030794035643339157, 0.009508430026471615, 0.054488252848386765, -0.030376622453331947, 0.05507487803697586, -0.004021596163511276, -0.015894459560513496, -0.002934952499344945, -0.050041623413562775, -0.04867205768823624, 0.04140888527035713, 0.018329143524169922, -0.013629120774567127, 0.05378230661153793, -0.01227479986846447, -0.007868203334510326, -0.03047163598239422, -0.0041710855439305305, 0.020989231765270233, 0.05343998968601227, 0.045679375529289246, -0.00021595389989670366, 0.030635589733719826, -0.046450644731521606, 0.00307718338444829, -0.006766671314835548, -0.06646189093589783, -0.028945371508598328, -0.031942062079906464, 0.007831805385649204, 0.011638359166681767, 0.054401736706495285, -0.0174332857131958, 0.04213981330394745, 0.011194093152880669, 0.016210485249757767, -0.016180476173758507, 0.007690599653869867, 0.006962577812373638, -0.006044588517397642, -0.02663448080420494, -0.03973919153213501, 0.046172674745321274, -0.041384752839803696, -0.036495864391326904, -0.0025567025877535343, -0.05574509873986244, 0.05651690438389778, -0.03690101578831673, -0.024902088567614555, -0.00021996874420437962, 0.048342492431402206, 0.047701265662908554, 0.015975572168827057, -0.018159961327910423, 0.07039684057235718, 0.018845848739147186, 0.012290600687265396, 0.01662834919989109, -0.018764570355415344, 0.06429179012775421, -0.024253536015748978, 0.027146946638822556, 0.0709652528166771, -0.02702447772026062, 0.011866732500493526, -0.0431746169924736, 0.0219810102134943, -0.010984835214912891, -0.2655361294746399, 0.025436148047447205, -0.03592098504304886, -0.05424085631966591, 0.0018863328732550144, -0.040998656302690506, 0.017375575378537178, -0.028879407793283463, -0.043377600610256195, -0.007649407256394625, -0.002677380107343197, -0.03351209685206413, -0.018800169229507446, 0.045029401779174805, 0.022827720269560814, 0.027585100382566452, -0.0188409686088562, -0.048007190227508545, -0.010065658949315548, 0.029614361003041267, 0.002679765922948718, -0.04101250693202019, -0.02781212329864502, 0.019791143015027046, 0.012495912611484528, 0.02017299085855484, -0.07493401318788528, -0.0017606414621695876, -0.05502387508749962, -0.02570459246635437, 0.010023117996752262, -0.013952971436083317, 0.016148429363965988, 0.002808608813211322, -0.012804622761905193, -0.010761612094938755, 0.0703730583190918, 0.010397648438811302, -0.0186039749532938, 0.025961417704820633, -0.03153509274125099, -0.026259632781147957, -0.007811925373971462, -0.017880937084555626, 0.07344212383031845, 0.0064047230407595634, -0.0734468325972557, 0.0015323825646191835, -0.04059913381934166, 0.06038116663694382, -0.02666408009827137, 0.0003444412141107023, -0.016913020983338356, 0.019659239798784256, -0.015778591856360435, -0.04344478249549866, 0.005333177745342255, -0.022217538207769394, -0.07222621142864227, -0.04530930891633034, -0.03686414286494255, -0.04908181354403496, 0.020024780184030533, -0.05886245518922806, -0.007145334035158157, -0.055406637489795685, -0.09413076937198639, -0.03809719160199165, 0.04195621237158775, 0.03236154839396477, -0.015956709161400795, 0.04530040919780731, -0.021289512515068054, -0.11770152300596237, -0.048002880066633224, -0.03398335725069046, 0.006446038838475943, 0.008181232959032059, -0.0043282764963805676, 0.03923976048827171, -0.02993626520037651, -0.04733753949403763, 0.013421264477074146, 0.013704458251595497, 0.010125582106411457, 0.032463304698467255, 0.014350525103509426, -0.028155898675322533, -0.04945565015077591, 0.0065365019254386425, 0.044265471398830414, -0.0012146010994911194, -0.0012644599191844463, -0.0008826092234812677, -0.010057080537080765, 0.034320443868637085, 0.0005933066713623703, 0.01941494829952717, 0.02292802929878235, 0.029700037091970444, 0.024556562304496765, -0.03764744848012924, 0.014904912561178207, -0.01804187521338463, -0.012715550139546394, -0.030565081164240837, -0.03953854367136955, 0.012769162654876709, 0.03061528317630291, 0.011431440711021423, -0.02058270014822483, -0.005957545712590218, 0.03443727642297745, -0.06116900593042374, -0.037638407200574875, -0.016034699976444244, 0.008463557809591293, 0.030724963173270226, 0.023882750421762466, -0.01151946373283863, -0.06912440061569214, 0.03172150254249573, 0.048647649586200714, 0.008282008580863476, -0.06383159756660461, -0.044989366084337234, -0.029556861147284508, -0.02155407704412937, 0.008938522078096867, 0.03824280947446823, -0.009059030562639236, 0.02693808078765869, 0.03369797766208649, -0.04036973789334297, 0.05642200633883476, -0.019595446065068245, -0.020509907975792885, -0.034269314259290695, 0.0161605142056942, -0.010882197879254818, -0.008260981179773808, 0.0195277389138937, 0.003103293012827635, 0.04151824861764908, 0.034351564943790436, 0.017152901738882065, 0.008209745399653912, 0.02803388610482216, 0.03456601873040199, -0.003553920192644, -0.02752413973212242, -0.028040118515491486, 0.0008044915157370269, -0.03254391625523567, 0.007791595533490181, -0.0009790160693228245, 0.04444975033402443, -0.013791603967547417, -0.020651640370488167, -0.03033050335943699, 0.011865371838212013, -0.08025847375392914, 0.014626537449657917, -0.03174402564764023, 0.0031212419271469116, 0.06478317826986313, -0.03451819345355034, 0.0013936097966507077, -0.036575231701135635, -0.004343204200267792, 0.039099421352148056, 0.011742087081074715, -0.03477393835783005, -0.012649646028876305, 0.015139814466238022, -0.013024620711803436, -0.0032095753122121096, 0.04073930159211159, 0.03124239295721054, 0.013069740496575832, -0.021470488980412483, -0.020288584753870964, 0.023715628311038017, -0.010743128135800362, 0.05299929156899452, 0.07083173096179962, -0.0054300869815051556, 0.005325715988874435, -0.00482578668743372, -0.008383219130337238, -0.01620669476687908, 0.0010832153493538499, -0.018500464037060738, -0.010517542250454426, -0.026607081294059753, -0.055492475628852844, 0.046757325530052185, -0.03152987360954285, 0.011913868598639965, 0.013969567604362965, 0.005074472166597843, 0.004406527616083622, -0.015519630163908005, 0.029227180406451225, 0.04858222231268883, -0.048417504876852036, -0.02537836879491806, 0.01172429695725441, -0.035685259848833084, 0.007130780257284641, 0.022074053063988686, -0.058446723967790604, -0.038653429597616196, -0.007108793128281832, 0.03450053930282593, -0.02251199632883072, -0.030941622331738472, -0.011809666641056538, 0.0018635333981364965, 0.024853914976119995, 0.033151738345623016, 0.0001289857318624854, 0.0008794395835138857, 0.0025852362159639597, -0.0030583699699491262, 0.04119288921356201, 0.011209310963749886, 0.010037373751401901, 0.014754668809473515, -0.018184896558523178, 0.01740107126533985, -0.017815275117754936, 0.009834629483520985, 0.026294628158211708, -0.039552681148052216, 0.005905370227992535, -0.08163905888795853, 0.026493363082408905, 0.012075502425432205, 0.03799757361412048, -0.004085490945726633, -0.0047222161665558815, -0.038767799735069275, -0.02130257710814476, -0.004134383983910084, 0.0010339311556890607, 0.004423289094120264, -0.013231638818979263, 0.017558060586452484, 0.022605136036872864, -0.009285466745495796, -0.00011052324407501146, -0.02028251253068447, -0.024493688717484474, 0.04273143783211708, -0.031543683260679245, -0.06293193995952606, -0.022572841495275497, -0.06991593539714813, -0.018061522394418716, 0.01847897469997406, -0.006159162148833275, -0.024721646681427956, 0.040887501090765, 0.05346331000328064, 0.028123730793595314, 0.02930152602493763, -0.002597759710624814, 0.044699907302856445, -0.024201903492212296, -0.005088781006634235, -0.07961714267730713, -0.004162142984569073, 0.01883535459637642, -0.020070459693670273, -0.0067070769146084785, -0.004385967738926411, -0.008746099658310413, 0.027941517531871796, -0.056846801191568375, -0.013835550285875797, 0.05750184506177902, -0.013641470111906528, 0.0230049230158329, 0.008546859957277775, -0.056561507284641266, -0.008945317007601261, 0.04412136971950531, -0.02193891443312168, -0.03149048238992691, -0.0330820232629776, 0.06468286365270615, -0.028990035876631737, 0.02147584594786167, 0.0018726098351180553, -0.009483573026955128, 0.07041952759027481, 0.02342274971306324, 0.03444293141365051, 0.04515871778130531, -0.015564512461423874, 0.0455506406724453, 0.020411284640431404, -0.009225859306752682, -0.005105338059365749, 0.045238275080919266, -0.01474709901958704, -0.039515119045972824, 0.04892056807875633, 0.02450787089765072, -0.010031718760728836, -0.030065851286053658, 0.07139908522367477, 0.008236050605773926, -0.05073849856853485, -0.039410971105098724, 0.03134101256728172, -0.020754268392920494, 0.002451554639264941, -0.020924748852849007, 0.006208706647157669, -0.021232180297374725, 0.05706862360239029, -0.03914974257349968, 0.03311830013990402, 0.04834219813346863, 0.012239769101142883, 0.008054149337112904, -0.010965445078909397, 0.10006272792816162, 0.11395229399204254, 0.06275129318237305, 0.038016412407159805, 0.07254395633935928, 0.004180212505161762, -0.04980172961950302, -0.005322814453393221, -0.03906189650297165, -0.010044820606708527, 0.014382975175976753, 0.015967896208167076, 0.07420844584703445, -0.027649736031889915, 0.06777163594961166, -0.009168551303446293, 0.005610990338027477, 0.003990845754742622, 0.013308419845998287, 0.03862700238823891, 0.03943667560815811, 0.017078276723623276, 0.040523674339056015, -0.03599344566464424, -0.04150521755218506, 0.023449230939149857, -0.016583696007728577, -0.01654614321887493, 0.03797879442572594, -0.01567687653005123, 0.01696592941880226, 0.015522806905210018, 0.05990757420659065, 0.09675795584917068, -0.028523320332169533, -0.01290926430374384, 0.00645453343167901, 0.007374176289886236, 0.007435020059347153, 0.02509976178407669, -0.006211128551512957, -0.02566760964691639, 0.003967215772718191, -0.04447603598237038, -0.025860421359539032, -0.03387670964002609, -0.0390457883477211, 0.014663339592516422, -0.03902469947934151, -0.018466971814632416, 0.004477236419916153, -0.001439406187273562, -0.018535468727350235, -0.04308335855603218, -0.031541310250759125, -0.027796443551778793, -0.08813697099685669, -0.0021592318080365658, 0.009729722514748573, -0.008687970228493214, -0.025710944086313248, 0.008304738439619541, -0.02892265096306801, -0.010809765197336674, 0.0451054610311985, -0.06031046435236931, 0.008088912814855576, 0.002452789107337594, 0.021956510841846466, 0.02915889583528042, 0.027178050950169563, 0.036846816539764404, 0.01686844602227211, 0.008334914222359657, -0.01596890389919281, 0.029658425599336624, 0.028798256069421768, 0.029165714979171753, -0.01671447977423668, -0.08725466579198837, -0.004549178294837475, 0.02744659222662449, -0.05936503782868385, -0.09003514796495438, 0.007754305377602577, 0.03417389094829559, -0.0037059630267322063, 0.03075031004846096, 0.0050228736363351345, -0.024359019473195076, -0.005742714274674654, -0.00834134966135025, -0.007369734812527895, -0.006336637772619724, 0.030776603147387505, -0.0250762440264225, 0.08701679855585098, 0.0453166589140892, -0.04016120359301567, -0.018461674451828003, -0.03966660425066948, 0.00018946928321383893, 0.0011028558947145939, -0.05171607434749603, -0.029005015268921852, -0.02493426203727722, -0.08696632832288742, -0.03487003594636917, 0.029809223487973213, -0.030866578221321106, -0.016429027542471886, -0.010358618572354317, 0.013278255239129066, -0.003955710679292679, 0.01886497624218464, -0.04554001986980438, 0.048545047640800476, -0.03108576126396656, -0.03440316766500473, -0.03216300532221794, 0.00835136603564024, -0.008359919302165508, 0.008820169605314732, -0.0033602446783334017, -0.07462697476148605, -0.02487756311893463, -0.03501936048269272, 0.031731441617012024, 0.017965663224458694, 0.03356695547699928, -0.0007293203379958868 ]
[ -0.04258296266198158, -0.008497541770339012, -0.04246636480093002, -0.02609660103917122, 0.05517822504043579, -0.03476398065686226, -0.0021889833733439445, 0.013231649994850159, 0.03810720145702362, -0.025715116411447525, 0.032931555062532425, -0.06680813431739807, 0.03922497108578682, 0.0056013986468315125, 0.09026148170232773, 0.00542006129398942, -0.04206528887152672, -0.04114643856883049, -0.043354663997888565, 0.052392661571502686, -0.012170195579528809, -0.05775829032063484, -0.0509796068072319, -0.03841818496584892, 0.011008481495082378, 0.048937201499938965, 0.04326457902789116, -0.05036584660410881, -0.023809313774108887, -0.21252505481243134, 0.01280970685184002, 0.018130071461200714, 0.05039527639746666, 0.004886283073574305, 0.02206386812031269, 0.03125897794961929, 0.06484220176935196, -0.004158759023994207, 0.0026890402659773827, 0.01672825962305069, 0.023117585107684135, -0.010858352296054363, -0.040190596133470535, -0.02213233895599842, 0.04169051721692085, -0.0016772038070484996, -0.020648501813411713, -0.01919419690966606, -0.05575469508767128, -0.007781929336488247, -0.04637540131807327, -0.04592915624380112, -0.030809663236141205, -0.003336559748277068, 0.013285455293953419, 0.07223005592823029, 0.058749306946992874, 0.032254740595817566, 0.014879779890179634, 0.04373208433389664, 0.02650642767548561, 0.017876973375678062, -0.12241465598344803, 0.06574081629514694, 0.0347541980445385, 0.004075418226420879, -0.05312645807862282, 0.000737404334358871, -0.01002903189510107, 0.10474533587694168, 0.03790287300944328, -0.02008448913693428, -0.039240386337041855, 0.04897738993167877, 0.004597521852701902, 0.02334974892437458, -0.01220489852130413, 0.005357139278203249, 0.044111352413892746, -0.03308340162038803, -0.0502956360578537, 0.03532760590314865, -0.044943057000637054, -0.007226087152957916, -0.0322815403342247, 0.025799831375479698, -0.012335323728621006, 0.01487205270677805, -0.01896248757839203, 0.031062299385666847, 0.018108420073986053, 0.019115883857011795, 0.02784385159611702, 0.004646963439881802, -0.0915738046169281, -0.0262927133589983, 0.0004133506154175848, -0.00011461535905255005, 0.0024817397352308035, 0.38839247822761536, -0.033593885600566864, -0.0033148927614092827, 0.057373035699129105, 0.049036651849746704, -0.033574096858501434, -0.02346409484744072, 0.010518875904381275, -0.08573413640260696, 0.031528983265161514, -0.021963069215416908, 0.00007716964319115505, -0.039159663021564484, 0.013406149111688137, -0.0938851535320282, 0.02673547901213169, 0.015677915886044502, 0.05368072912096977, 0.018582811579108238, -0.004833597224205732, -0.0019879303872585297, -0.0067708417773246765, 0.0124858682975173, 0.027613312005996704, 0.03317161649465561, 0.025855420157313347, 0.004484112374484539, 0.005936335772275925, 0.04444822296500206, 0.03285433351993561, -0.012800735421478748, 0.06421083956956863, 0.027060776948928833, -0.07082189619541168, 0.02979487180709839, -0.01499798335134983, 0.002957090735435486, 0.03678144887089729, -0.030579371377825737, -0.022046951577067375, 0.04766707494854927, -0.0024333999026566744, -0.01494829636067152, 0.04227285459637642, -0.002890543546527624, -0.04345490038394928, 0.16544881463050842, -0.015446478500962257, -0.034609824419021606, -0.045416995882987976, -0.02886264957487583, 0.005809864494949579, 0.044366106390953064, 0.013208296149969101, -0.06405862420797348, -0.0005113340448588133, 0.02431916445493698, 0.07117346674203873, -0.03864540532231331, -0.08947090804576874, 0.01072799600660801, -0.018560687080025673, -0.014911796897649765, -0.07689294219017029, 0.07150522619485855, 0.049090974032878876, -0.12733356654644012, -0.011597814038395882, 0.015314741060137749, 0.024019582197070122, -0.0668313205242157, 0.01647145114839077, 0.033050019294023514, -0.017536429688334465, -0.0004564338887576014, 0.06750145554542542, 0.004281181842088699, -0.03435680642724037, -0.01831785775721073, 0.031822312623262405, -0.015176447108387947, -0.0018569004023447633, -0.003733221907168627, -0.04189068824052811, 0.007402644492685795, -0.06646188348531723, -0.06662388890981674, -0.0713479146361351, 0.014127233996987343, -0.049512047320604324, -0.035035230219364166, -0.01688995771110058, 0.014537906274199486, -0.03518956899642944, 0.0943094789981842, -0.03508422523736954, -0.04161641001701355, -0.007782893255352974, 0.010053778067231178, -0.06846391409635544, -0.03509197756648064, -0.005988657474517822, 0.03000347688794136, -0.02992941252887249, 0.016245311126112938, -0.0736837312579155, 0.021715110167860985, 0.06530902534723282, -0.01202991884201765, 0.06249392405152321, 0.007613001856952906, -0.016637375578284264, -0.007124059367924929, -0.027921658009290695, 0.011157339438796043, -0.007727192249149084, -0.002805048367008567, 0.011333552189171314, -0.00204197084531188, -0.005361119285225868, 0.06614548712968826, -0.004533262923359871, -0.01752525568008423, 0.009257975965738297, -0.3426240384578705, -0.05697488784790039, 0.0004420781333465129, 0.010438438504934311, 0.0040745665319263935, -0.022557202726602554, 0.028365405276417732, 0.007389970123767853, -0.002582508372142911, 0.04502804949879646, 0.05438625067472458, 0.01786339282989502, -0.0003475811972748488, -0.08357691019773483, -0.013081900775432587, 0.04129358008503914, 0.022174976766109467, -0.0055700731463730335, -0.05228720232844353, -0.0024755853228271008, -0.013127571903169155, -0.006940584629774094, -0.00681452127173543, -0.04924836382269859, -0.014828871004283428, -0.0035174060612916946, 0.12944239377975464, -0.011800335720181465, 0.01706209033727646, -0.030561188235878944, 0.02456803247332573, -0.012261243537068367, -0.040803469717502594, -0.05983121693134308, 0.03904696926474571, -0.02664308249950409, 0.004215112421661615, 0.00500952173024416, -0.010776977054774761, -0.03850870206952095, -0.05540434271097183, -0.007804009597748518, -0.030284743756055832, -0.04442022368311882, -0.02011176198720932, 0.02033732272684574, -0.036236878484487534, -0.009633824229240417, 0.01377485878765583, 0.06824584305286407, -0.0032695725094527006, 0.013707065023481846, 0.02666526287794113, 0.04403463751077652, -0.011240565218031406, -0.012430866248905659, -0.06587814539670944, -0.013928565196692944, 0.014393771067261696, 0.006772384513169527, 0.022937333211302757, 0.06141127645969391, -0.00816913228482008, -0.07109475880861282, 0.03398921713232994, -0.03379825875163078, -0.01447826623916626, 0.005277301650494337, 0.0292154960334301, -0.03474993631243706, -0.014618140645325184, 0.1099267527461052, -0.0010457175085321069, 0.0033145565539598465, 0.05565078184008598, 0.04066939651966095, -0.01156123261898756, 0.01379412692040205, 0.009831400588154793, 0.02692772075533867, 0.05927649885416031, -0.05819767713546753, 0.04987708479166031, -0.01133931614458561, -0.007581756450235844, 0.042842429131269455, 0.025520725175738335, -0.05385955423116684, 0.06686665117740631, 0.028307193890213966, -0.012102439068257809, 0.005180600564926863, -0.0285155288875103, -0.05428903177380562, 0.05400876700878143, -0.029304740950465202, -0.2787476181983948, 0.05870366096496582, 0.0198956485837698, 0.08276260644197464, -0.007593286689370871, 0.015252570621669292, 0.006080068647861481, -0.02101065218448639, -0.007944313809275627, -0.019394027069211006, 0.024739498272538185, 0.04056921228766441, 0.02215428836643696, 0.011883064173161983, -0.009829464368522167, 0.02840259112417698, 0.052644211798906326, -0.013121191412210464, 0.02118304930627346, -0.0033462680876255035, 0.03766748309135437, -0.03241945430636406, 0.19506284594535828, 0.02893449366092682, 0.04512450098991394, 0.04536378011107445, -0.02375541813671589, -0.006900865584611893, 0.04185600206255913, 0.003926252014935017, -0.023791292682290077, 0.01727071963250637, 0.023379433900117874, 0.014406716451048851, 0.04161788150668144, 0.00008676567085785791, -0.01446671411395073, 0.04984552785754204, 0.03879111632704735, -0.006823455914855003, 0.014829334802925587, -0.004539063200354576, -0.07259418070316315, 0.0015298438956961036, 0.07538840174674988, -0.01264403946697712, -0.008632088080048561, -0.014024392701685429, -0.0550398975610733, -0.0013768392382189631, -0.030771909281611443, -0.052523329854011536, -0.032126523554325104, -0.020165082067251205, 0.007829751819372177, 0.04775950685143471, 0.0394723080098629, 0.003458870342001319, 0.015582004562020302, -0.009859483689069748, -0.034987110644578934, -0.0224055927246809, 0.08444730192422867, -0.015785550698637962, 0.005807786248624325 ]
[ 0.009818999096751213, 0.03597261756658554, -0.0059746140614151955, 0.033369243144989014, -0.01813114620745182, -0.0068269092589616776, -0.005182628519833088, -0.003341257805004716, -0.022227296605706215, -0.009083210490643978, 0.0023360871709883213, 0.012814274989068508, 0.043205078691244125, -0.008424576371908188, 0.01842268370091915, 0.04092838987708092, 0.001546021900139749, -0.0013172202743589878, 0.02565969154238701, 0.008199344389140606, -0.0764319971203804, -0.040727585554122925, 0.025262009352445602, -0.03352399542927742, -0.020199798047542572, -0.0019364129984751344, -0.011650245636701584, -0.009553507901728153, 0.02126425877213478, -0.07300163805484772, -0.013462264090776443, 0.002785513876006007, -0.011389194056391716, 0.02495797909796238, -0.012351268902420998, 0.03793179988861084, 0.03623410686850548, 0.028029410168528557, 0.00665855361148715, 0.01189961563795805, -0.011460689827799797, -0.00687410170212388, -0.004299918655306101, 0.00626833550632, 0.03650221973657608, 0.013412345200777054, -0.04045083001255989, -0.05062790960073471, 0.01905285194516182, -0.021450720727443695, -0.048196811228990555, -0.0275010634213686, -0.0345209501683712, 0.014067202806472778, -0.0011566964676603675, 0.025315459817647934, -0.05755726993083954, -0.005095611792057753, -0.005960043519735336, 0.024672681465744972, 0.020215356722474098, -0.007056760601699352, -0.04681165888905525, -0.013309278525412083, 0.017036203294992447, 0.022163353860378265, -0.011116508394479752, 0.016922684386372566, 0.007406559772789478, 0.028652384877204895, -0.017187966033816338, 0.06270281970500946, -0.08364555984735489, -0.02613028697669506, -0.01814866252243519, 0.025091730058193207, 0.02710292674601078, -0.014748243615031242, 0.01769247092306614, -0.027182085439562798, -0.03444775193929672, 0.005423508118838072, -0.03106020949780941, -0.024473849684000015, -0.03741948679089546, -0.0069501083344221115, -0.0009512093383818865, -0.0340464748442173, 0.011285838671028614, 0.012554674409329891, -0.04645756259560585, 0.02519451268017292, 0.001766667701303959, -0.030488457530736923, -0.10645876079797745, 0.023822953924536705, 0.03243410959839821, 0.004938661586493254, 0.03185400739312172, 0.7958654165267944, -0.0005992185324430466, 0.019470278173685074, -0.002599536906927824, -0.0011315884767100215, -0.00018931625527329743, 0.03607451915740967, 0.015240242704749107, -0.004326337948441505, 0.012114009819924831, 0.029081720858812332, -0.023320157080888748, 0.0031137955375015736, -0.0012612940045073628, 0.011049862019717693, 0.0022740252315998077, 0.03256424143910408, 0.031890954822301865, -0.01318022795021534, 0.009300552308559418, 0.014625104144215584, -0.022109482437372208, 0.01742500811815262, -0.01314700860530138, -0.017720123752951622, -0.03359318897128105, -0.18564431369304657, -0.018538009375333786, -6.566031529101008e-33, 0.09314636141061783, 0.02091873437166214, 0.06612435728311539, -0.0008579015266150236, 0.019948482513427734, 0.022446705028414726, -0.060436949133872986, -0.06350590288639069, -0.04260624945163727, -0.015501674264669418, -0.02527184970676899, 0.010858002118766308, 0.01538192667067051, -0.008054997771978378, 0.018172001466155052, -0.024757958948612213, 0.026431012898683548, 0.025016114115715027, -0.016635896638035774, 0.019499076530337334, -0.00803286675363779, 0.02513267658650875, -0.053708676248788834, 0.04177378863096237, -0.01104874536395073, 0.0674305185675621, -0.0005231715040281415, 0.057761840522289276, 0.012632419355213642, -0.05444159731268883, -0.06501659005880356, 0.041571035981178284, -0.0007343270117416978, -0.026874855160713196, -0.0038955730851739645, -0.0644640401005745, -0.03636118397116661, 0.00797278992831707, -0.025155214592814445, -0.053665678948163986, -0.016593823209404945, 0.011923923157155514, -0.020589957013726234, -0.033469058573246, -0.04129878059029579, -0.002938878023996949, -0.002552598249167204, 0.0028315805830061436, 0.010251736268401146, -0.0026152352802455425, -0.011294995434582233, 0.01246783696115017, -0.030972447246313095, 0.03692551329731941, -0.07524148374795914, 0.006813157349824905, -0.0043982150964438915, -0.0019244871800765395, -0.011751786805689335, 0.04515841230750084, 0.0437244176864624, -0.01822173409163952, 0.015563475899398327, 0.06705858558416367, 0.012510273605585098, 0.02999873273074627, -0.007393972482532263, -0.024735325947403908, 0.0063377064652740955, 0.03570237383246422, -0.07423059642314911, 0.08229706436395645, -0.02860763669013977, -0.034128107130527496, 0.019447853788733482, -0.0693710520863533, 0.001183863147161901, -0.031925786286592484, 0.005090019199997187, 0.04616892710328102, -0.03403685241937637, -0.012939900159835815, 0.025197947397828102, -0.017859576269984245, -0.024953842163085938, -0.031743742525577545, 0.003539659781381488, 0.0336337685585022, -0.003073060652241111, 0.02411126159131527, 0.03851078078150749, 0.043483227491378784, 0.0007724979077465832, -0.021234534680843353, 0.009632736444473267, 5.8412092227565085e-33, 0.02039295807480812, 0.012339098379015923, -0.006576928310096264, -0.024030860513448715, 0.04363555833697319, 0.008900314569473267, 0.04796911031007767, 0.009251604788005352, -0.02699670009315014, 0.04707673192024231, -0.0031452106777578592, -0.02822457253932953, 0.030079899355769157, 0.01400195062160492, 0.058073513209819794, 0.0351225808262825, 0.010259882546961308, -0.03977020084857941, -0.018442243337631226, 0.007579657714813948, -0.012753759510815144, 0.007972117513418198, -0.010650098323822021, 0.0034935998264700174, 0.04692569747567177, 0.023458097130060196, -0.0056925322860479355, 0.011839263141155243, -0.020361626520752907, -0.021648522466421127, -0.02034877985715866, -0.05949636548757553, -0.024697519838809967, -0.020011797547340393, 0.03736049309372902, -0.005756955128163099, -0.03572377562522888, -0.038465067744255066, 0.0013211864279583097, -0.013354497961699963, 0.03154517710208893, 0.03630205616354942, -0.05967177823185921, 0.07509878277778625, 0.010396257042884827, 0.02059800922870636, -0.007935475558042526, 0.008295172825455666, 0.015973282977938652, -0.00439824303612113, 0.01361178606748581, 0.002682687481865287, -0.010963046923279762, -0.007596186362206936, 0.01759032905101776, -0.06001341715455055, 0.027880506590008736, 0.0357247069478035, -0.012286420911550522, 0.0030737787019461393, -0.020152948796749115, -0.0153101347386837, -0.013016298413276672, 0.052996739745140076, -0.017751233652234077, 0.0036537214182317257, 0.003103652037680149, -0.002726457081735134, -0.02583296224474907, 0.009887300431728363, 0.0016891681589186192, -0.011453676968812943, -0.020787982270121574, 0.008236220106482506, 0.06460079550743103, -0.03059946931898594, -0.026029475033283234, -0.0124740619212389, 0.0003303712292108685, 0.0033802329562604427, -0.0016404383350163698, 0.037633296102285385, 0.0354582779109478, 0.017540568485856056, -0.008899873122572899, 0.009426044300198555, -0.03323167562484741, 0.040086228400468826, -0.01973523199558258, 0.013690286315977573, 0.030028479173779488, -0.05484933406114578, -0.021581126376986504, 0.030314940959215164, -0.057038966566324234, -1.2323983611395306e-8, -0.04364113509654999, 0.03114938735961914, -0.01389599870890379, -0.0366392582654953, 0.015528054907917976, 0.012798864394426346, 0.04339731112122536, 0.012495075352489948, -0.02331940270960331, 0.012179060839116573, -0.009001987054944038, 0.003256474621593952, 0.008684175089001656, 0.0027685787063091993, 0.0308635625988245, -0.05163466930389404, 0.005795503035187721, -0.029539288952946663, 0.013219967484474182, 0.03490276262164116, -0.010757031850516796, 0.02253352664411068, -0.05304722487926483, 0.037432961165905, 0.0025133208837360144, -0.0010373700642958283, 0.039211057126522064, -0.03387206792831421, 0.01030286680907011, -0.015712879598140717, 0.0028104111552238464, -0.024882212281227112, -0.02804262563586235, -0.011270648799836636, -0.028020303696393967, -0.010363387875258923, 0.03601481020450592, 0.04593506082892418, 0.007436871994286776, 0.05676001310348511, -0.02028210461139679, 0.014440842904150486, -0.0244153942912817, -0.023532778024673462, -0.028577197343111038, 0.03185589239001274, -0.026799455285072327, -0.014140290208160877, 0.0102483369410038, -0.005039221607148647, -0.03526373952627182, -0.01177662517875433, 0.005989575758576393, -0.003013601526618004, 0.002840195083990693, -0.0006512538529932499, 0.000035013257729588076, -0.03371768444776535, 0.017205581068992615, -0.043693847954273224, 0.03559745475649834, -0.023272326216101646, -0.011295490898191929, -0.02483268640935421 ]
neo4j-inferred-relationships-apoc-triggers
https://markhneedham.com/blog/2018/11/05/neo4j-inferred-relationships-apoc-triggers
false
2018-10-31 18:12:00
Neo4j Graph Algorithms: Visualising Projected Graphs
[ "neo4j", "apoc", "graph-algorithms" ]
[ "Neo4j" ]
A few weeks ago I wrote a blog post showing how to https://medium.com/neo4j/finding-the-best-tennis-players-of-all-time-using-weighted-pagerank-6950ed5fc98e[work out the best tennis player of all time using the Weighted PageRank algorithm^], and in the process created a projected credibility graph which I want to explore in more detail in this post. As I pointed out in that post, sometimes the graph model doesn't fit well with what the algorithm expects, so we need to project the graph on which we run graph algorithms. In this case, the PageRank algorithm works on top of a 'credibility graph' where nodes receive credibility from their incoming relationships. The amount of credibility a relationship gives is determined by the weight property on that relationship. For our tennis graph we started with a graph of matches, winners, and losers, and then derived a credibility graph using the following query: [source, cypher] ---- MATCH (p1)<-[:WINNER]-(match)-[:LOSER]->(p2) RETURN id(p2) AS source, id(p1) AS target, count(*) as weight ---- We then used the example of Roger Federer playing Rafael Nadal to see how this worked in practice. If we feed their names into the query we'd the following results, starting with matches that Federer won: [source, cypher] ---- MATCH (p1:Player {name: "Roger Federer"})<-[:WINNER]-(match)-[:LOSER]->(p2:Player {name: "Rafael Nadal"}) RETURN id(p2) AS source, id(p1) AS target, count(*) as weight ---- If we run that we'll get this output: [source, text] ---- ╒════════╤════════╤════════╕ │"source"│"target"│"weight"│ ╞════════╪════════╪════════╡ │7 │124 │15 │ └────────┴────────┴────────┘ ---- And now for matches that Nadal won: [source, cypher] ---- MATCH (p1:Player {name: "Rafael Nadal"})<-[:WINNER]-(match)-[:LOSER]->(p2:Player {name: "Roger Federer"}) RETURN id(p2) AS source, id(p1) AS target, count(*) as weight ---- And if we run that we'll get this output: [source, text] ---- ╒════════╤════════╤════════╕ │"source"│"target"│"weight"│ ╞════════╪════════╪════════╡ │124 │7 │23 │ └────────┴────────┴────────┘ ---- It can be easier to understand how this works by visualising the projected graph. We can use a procedure from the APOC library to help us do this. The following query shows how to do this: [source, cypher] ---- MATCH (p1)<-[:WINNER]-(match)-[:LOSER]->(p2) WITH p2, p1, count(*) AS count CALL apoc.create.vRelationship(p2,"BEATEN_BY",{count:count},p1) yield rel RETURN p2, p1, rel ---- The first two lines of the query are the same as before, but on the 3rd line we create a virtual relationship between the two player nodes. That returns a big graph, so let's cheat a bit and just show the projected graph for some famous players. First let's create a parameter containing an array of players: [source, cypher] ---- :params players => ["Roger Federer", "Andy Murray", "Novak Djokovic", "Rafael Nadal", "Alexander Zverev", "Pete Sampras", "Andre Agassi", "John McEnroe", "Yevgeny Kafelnikov"] ---- And now let's visualise the matches between those players: [source, cypher] ---- MATCH (p1)<-[:WINNER]-(match)-[:LOSER]->(p2) WHERE p1.name in $players AND p2.name IN $players WITH p2, p1, count(*) AS count CALL apoc.create.vRelationship(p2,"BEATEN_BY",{count:count},p1) yield rel RETURN p2, p1, rel ---- And if we run that query we'll get back this graph: image::{{<siteurl>}}/uploads/2018/10/tennis-projected-now.svg[]
Learn how to visualise projected graphs using the APOC library.
null
[ 0.005854276940226555, -0.02787484973669052, 0.021022357046604156, 0.04299319535493851, 0.06977485865354538, -0.019058017060160637, 0.038401391357183456, 0.030422942712903023, 0.019471246749162674, -0.031538188457489014, 0.0056427414529025555, -0.021550582721829414, -0.06626585870981216, 0.012163074687123299, 0.0038719908334314823, 0.08201918751001358, 0.04768124222755432, 0.03645164892077446, 0.011343692429363728, -0.010960443876683712, 0.010104208253324032, 0.052113600075244904, 0.004231378436088562, 0.04405825212597847, 0.05027705430984497, 0.006557697430253029, 0.011163236573338509, 0.010274847969412804, -0.04434564337134361, 0.008460422977805138, 0.05284054949879646, -0.01304052583873272, 0.012769951485097408, -0.008294293656945229, 0.026441315189003944, 0.0008377085905522108, -0.03456936404109001, 0.02275402471423149, -0.010725189931690693, -0.00935440044850111, -0.07109270244836807, 0.037513189017772675, -0.02117946557700634, 0.03815296292304993, -0.030297856777906418, -0.00782531127333641, -0.04210086166858673, 0.0449703112244606, 0.017096465453505516, 0.007466794457286596, -0.08271154761314392, 0.03084135800600052, -0.012494227848947048, 0.0438411608338356, -0.017260991036891937, 0.04955537989735603, 0.02982448600232601, -0.04425716772675514, 0.014249099418520927, -0.04280185326933861, -0.007580353878438473, -0.00016733234224375337, 0.00626389542594552, 0.02996264398097992, -0.013823236338794231, -0.033746134489774704, 0.026905052363872528, 0.048630136996507645, -0.03867500275373459, -0.000807293108664453, -0.012505999766290188, -0.0028042877092957497, 0.00474300654605031, -0.024144591763615608, -0.0009622094221413136, -0.045105233788490295, -0.0018431284697726369, 0.07351739704608917, 0.016047144308686256, 0.02374618873000145, -0.015940437093377113, 0.020454173907637596, -0.0035451482981443405, 0.028423191979527473, -0.01121192704886198, -0.04620981588959694, -0.005976418498903513, -0.045668695122003555, -0.058065224438905716, 0.05164245888590813, -0.01306379958987236, -0.04791156202554703, 0.002596380654722452, 0.0050652208738029, -0.01291708368808031, 0.00041348402737639844, 0.026946064084768295, -0.013897889293730259, -0.009476887062191963, -0.04865732043981552, -0.022733600810170174, -0.04334725812077522, -0.002125766593962908, 0.01807865872979164, -0.0840771272778511, -0.023826992139220238, -0.0336051806807518, 0.001624804805032909, 0.0066500152461230755, 0.004342393949627876, -0.04076378419995308, 0.005075004883110523, -0.002642112784087658, 0.003390437690541148, -0.06954648345708847, 0.061210256069898605, 0.02286638878285885, -0.019662749022245407, 0.0032902394887059927, 0.045872900635004044, 0.03665892407298088, 0.019281521439552307, -0.005736186634749174, 0.09621649235486984, -0.008263998664915562, 0.04781261458992958, 0.03427663818001747, 0.028772583231329918, -0.03037690743803978, -0.05283164978027344, 0.015903620049357414, 0.04300394281744957, 0.004686224274337292, -0.004384255036711693, -0.011435591615736485, -0.06329455971717834, 0.003000392112880945, -0.003390825353562832, 0.04547030106186867, 0.042304690927267075, 0.015821630135178566, -0.056281328201293945, 0.0322318971157074, 0.015133734792470932, 0.045671895146369934, -0.022298909723758698, 0.00023679586593061686, -0.028359947726130486, -0.018175791949033737, -0.006215125788003206, 0.03365218639373779, 0.03008650243282318, 0.027935290709137917, -0.019215120002627373, 0.010285940021276474, 0.09757634997367859, 0.06057732552289963, -0.009087960235774517, -0.014328149147331715, 0.04140486940741539, 0.0776565819978714, 0.01846913993358612, 0.012247561477124691, 0.0640997663140297, 0.016986612230539322, -0.018711961805820465, 0.0070665921084582806, 0.061285898089408875, -0.03202791139483452, -0.012260548770427704, -0.030421627685427666, -0.040493518114089966, 0.07380159199237823, -0.03791842237114906, -0.02574964426457882, 0.06380250304937363, 0.047652579843997955, 0.02177237533032894, 0.0434526689350605, 0.00839470699429512, -0.07472904771566391, 0.04661131650209427, 0.013102525845170021, 0.007712190505117178, 0.0093528525903821, 0.004396797623485327, 0.08404318988323212, 0.030780525878071785, -0.00652267225086689, 0.0490630678832531, -0.08675213158130646, -0.0700155645608902, -0.025219261646270752, -0.03651423752307892, 0.06663016974925995, -0.020063333213329315, 0.026774194091558456, 0.047637131065130234, 0.017398802563548088, 0.03765930235385895, 0.005011053290218115, 0.005378654692322016, 0.02738531492650509, -0.03356294333934784, -0.0738782063126564, 0.041885267943143845, 0.02844705618917942, -0.04830683395266533, -0.07489309459924698, 0.028057096526026726, -0.043327245861291885, -0.004213450010865927, 0.001160479849204421, -0.03867238759994507, 0.006854996085166931, 0.013187692500650883, 0.035100869834423065, 0.0008060607360675931, 0.02801229991018772, -0.028299318626523018, 0.05452335625886917, 0.018458086997270584, -0.03067544661462307, 0.025244148448109627, 0.002762612421065569, 0.13892509043216705, 0.04701003059744835, -0.024686528369784355, -0.07475008815526962, 0.047089140862226486, 0.013246547430753708, -0.002607764210551977, 0.041133813560009, -0.008604206144809723, -0.005846091546118259, -0.027959611266851425, -0.03322746977210045, -0.03998496010899544, 0.02363000623881817, -0.04429513216018677, 0.017122138291597366, 0.059386227279901505, -0.010346774943172932, 0.0683332234621048, -0.024059752002358437, 0.009740518406033516, -0.0037940863985568285, -0.026187967509031296, -0.05802187696099281, 0.028011063113808632, 0.006588683929294348, -0.005396916531026363, 0.03544355183839798, -0.02607046626508236, -0.02832842245697975, -0.028530485928058624, -0.0401647686958313, 0.03870994597673416, 0.040376532822847366, 0.054786477237939835, -0.0025026092771440744, 0.023819539695978165, -0.026339467614889145, 0.011650972999632359, -0.022000208497047424, -0.055716320872306824, -0.050217293202877045, -0.051768556237220764, 0.023029711097478867, 0.009033195674419403, 0.043165020644664764, -0.03164686635136604, -0.002268571872264147, -0.003150999080389738, 0.004564742092043161, 0.0010962806409224868, 0.011238484643399715, -0.0008628073846921325, 0.0011526546441018581, -0.012554733082652092, -0.026412678882479668, 0.05894996225833893, -0.04640694707632065, -0.03006848320364952, -0.004735494498163462, -0.05076264590024948, 0.03665518760681152, -0.06541343033313751, -0.013982152566313744, 0.014188891276717186, 0.004966970533132553, 0.053616125136613846, 0.011790814809501171, 0.0012232746230438352, 0.07561147958040237, 0.006630448624491692, 0.01710052229464054, 0.017654405906796455, -0.0003193891898263246, 0.04280707612633705, 0.0025557256303727627, 0.03585602343082428, 0.03938337787985802, -0.037778668105602264, 0.01741049438714981, -0.024659547954797745, 0.012509153224527836, -0.013739819638431072, -0.288806289434433, 0.04625467583537102, 0.009561934508383274, -0.04977434128522873, 0.015616818331182003, -0.03984302654862404, -0.0045353383757174015, -0.013883317820727825, -0.03145308047533035, -0.00525725306943059, -0.01558744627982378, -0.032776858657598495, -0.03632097318768501, 0.03190832957625389, 0.010815741494297981, 0.011804129928350449, 0.009373313747346401, -0.05326351895928383, 0.013427602127194405, 0.04673025757074356, 0.0085205202922225, -0.04581718146800995, -0.015000651590526104, 0.006248162593692541, 0.03343385085463524, 0.05051867291331291, -0.07856256514787674, 0.019676633179187775, -0.06576129049062729, -0.01770538091659546, -0.002523975446820259, -0.008350903168320656, 0.001161490217782557, 0.009570136666297913, -0.03401738777756691, -0.027729609981179237, 0.052183203399181366, -0.0028939570765942335, -0.0158678125590086, 0.04371850565075874, -0.047939151525497437, -0.03350946679711342, -0.031969018280506134, -0.0011490958277136087, 0.09176285564899445, 0.030875958502292633, -0.06491293758153915, 0.0035709284711629152, -0.027654407545924187, 0.049898911267519, -0.016542548313736916, -0.03064633533358574, -0.024627257138490677, 0.008149822242558002, -0.023004256188869476, -0.02161238342523575, -0.007428940385580063, -0.036220066249370575, -0.05437128245830536, -0.012845194898545742, -0.017902415245771408, -0.0226236954331398, 0.021362179890275, -0.03602054342627525, 0.002082208404317498, -0.05607082322239876, -0.06512732058763504, -0.03516057878732681, 0.062033165246248245, 0.03099132515490055, -0.0182989202439785, 0.030416468158364296, -0.025383789092302322, -0.10179413110017776, -0.024522729218006134, -0.0039280010387301445, 0.009352550841867924, 0.022371696308255196, 0.0057756053283810616, 0.037037443369627, -0.038746245205402374, -0.05399175360798836, -0.032654210925102234, 0.011728014796972275, 0.03626104071736336, 0.0064969975501298904, 0.018882721662521362, 0.013552560470998287, -0.03633403033018112, 0.002894584322348237, 0.07523202151060104, -0.02638700045645237, -0.0028128542471677065, -0.013901338912546635, -0.0032489437144249678, 0.0497107096016407, -0.010241593234241009, -0.008702469989657402, 0.005878313444554806, 0.0642799437046051, 0.020239461213350296, -0.05088520422577858, 0.0311686173081398, -0.01548732165247202, -0.014648105949163437, 0.008347931317985058, -0.04189959168434143, -0.0003958836605306715, 0.01983320526778698, 0.01496017724275589, -0.000526015239302069, -0.056082986295223236, 0.015263918787240982, -0.02689555659890175, -0.023824403062462807, -0.02034495398402214, 0.010335700586438179, 0.01736174151301384, 0.016377272084355354, -0.03374079614877701, -0.054432306438684464, 0.028243811801075935, -0.01200312189757824, -0.016144193708896637, -0.08055682480335236, -0.021060846745967865, -0.008277729153633118, -0.024241557344794273, 0.024334672838449478, 0.0137399323284626, -0.025355860590934753, 0.029438700526952744, 0.03787750005722046, -0.013952713459730148, 0.04665219411253929, -0.0034532349091023207, -0.02364138513803482, -0.02870016358792782, 0.025094861164689064, -0.005665984004735947, -0.0064825392328202724, 0.02601926028728485, 0.013406451791524887, 0.016551116481423378, 0.05058752000331879, 0.005654885899275541, 0.015518047846853733, -0.016920194029808044, 0.01245793979614973, 0.007444394286721945, -0.010564190335571766, -0.01604720950126648, 0.01807328872382641, -0.0438571460545063, -0.0017861040541902184, -0.007929706946015358, 0.0353156253695488, -0.021476823836565018, -0.041312213987112045, -0.021688388660550117, 0.02990635298192501, -0.05186396464705467, -0.0075437151826918125, -0.006112906616181135, 0.0057552591897547245, 0.061341360211372375, -0.015892690047621727, 0.025616243481636047, -0.025075426325201988, -0.01097248587757349, 0.019152527675032616, -0.02529543824493885, -0.036056019365787506, -0.017580430954694748, -0.016009006649255753, -0.007078863680362701, 0.0063514611683785915, 0.0215817391872406, 0.008506032638251781, 0.027906984090805054, -0.02136644348502159, -0.042546842247247696, 0.009461641311645508, 0.03196406736969948, 0.04512079805135727, 0.03827005997300148, -0.011890268884599209, -0.009961471892893314, -0.013123929500579834, 0.010892186313867569, -0.01705641858279705, 0.013577760197222233, -0.02791776694357395, 0.0054921298287808895, -0.024125533178448677, -0.06556350737810135, 0.03808518499135971, -0.016528595238924026, -0.0036094626411795616, 0.015818852931261063, 0.006549443583935499, -0.015544279478490353, -0.027224596589803696, 0.050388216972351074, 0.05871398374438286, -0.06085161492228508, -0.021671826019883156, 0.013233344070613384, -0.024540245532989502, 0.006172007415443659, 0.00712407985702157, -0.06221365928649902, -0.015532861463725567, -0.00038058319478295743, 0.046842318028211594, -0.050287339836359024, -0.024244967848062515, -0.02045922726392746, -0.02206026203930378, 0.016358742490410805, 0.042065441608428955, -0.02102087251842022, -0.002501789480447769, -0.006536457221955061, -0.015100020915269852, 0.037315212190151215, -0.0004772819811478257, -0.028657838702201843, 0.027812659740447998, -0.05113045871257782, 0.0163121297955513, -0.019383320584893227, 0.013455494306981564, 0.03328225016593933, -0.025142444297671318, -0.0036243677604943514, -0.06424062699079514, 0.014781263656914234, 0.004594115074723959, 0.05533626303076744, -0.021011807024478912, -0.0343400277197361, -0.037224818021059036, 0.0048689646646380424, -0.013651497662067413, -0.007940402254462242, 0.014341176487505436, -0.0024033663794398308, 0.03546491265296936, 0.025742752477526665, 0.010979791171848774, 0.028433717787265778, -0.013150718063116074, -0.021067554131150246, 0.054759275168180466, -0.049403928220272064, -0.01866716332733631, -0.022346092388033867, -0.04430518299341202, 0.011127353645861149, -0.0016532662557438016, 0.013109373860061169, -0.05462055280804634, 0.034289222210645676, 0.04667999967932701, 0.0063257678411901, 0.027366211637854576, 0.004627519752830267, 0.026337269693613052, -0.02588217332959175, -0.00519889872521162, -0.07472559064626694, -0.002752186032012105, 0.035757649689912796, 0.000555786769837141, 0.013443573378026485, 0.008141801692545414, -0.028245171532034874, 0.006753149442374706, -0.08226269483566284, -0.03735927864909172, 0.027716826647520065, -0.020235596224665642, -0.022496670484542847, 0.009995140135288239, -0.06810162216424942, -0.010425059124827385, 0.029958337545394897, -0.029534341767430305, -0.0354897677898407, -0.030189229175448418, 0.03767707943916321, -0.03025471232831478, 0.02523338794708252, -0.019062122330069542, -0.0012385749723762274, 0.06287673860788345, 0.025439511984586716, 0.021449102088809013, 0.04403803497552872, -0.01882128417491913, 0.030001137405633926, 0.02538197673857212, 0.016899608075618744, 0.003804075298830867, 0.03921870142221451, -0.039232607930898666, -0.06704633682966232, 0.040208589285612106, -0.002042630920186639, -0.03150580823421478, -0.063111811876297, 0.060918502509593964, 0.001830631634220481, -0.04636061564087868, -0.039392270147800446, 0.0030862942803651094, 0.0006972903502173722, -0.005782066844403744, -0.035157978534698486, 0.014332611113786697, -0.04458251968026161, 0.066654734313488, -0.003988346550613642, -0.005543641746044159, 0.06039581075310707, 0.00803975947201252, -0.012905856594443321, -0.011831866577267647, 0.09054407477378845, 0.10946616530418396, 0.042630523443222046, -0.0002974321832880378, 0.08101022243499756, 0.008978764526546001, -0.04109447821974754, -0.010553241707384586, 0.00032625964377075434, -0.010157418437302113, -0.0036879456602036953, 0.014284597709774971, 0.05308868736028671, -0.030157944187521935, 0.08700819313526154, -0.02128208987414837, -0.03365354239940643, 0.028175145387649536, 0.010397462174296379, 0.016843419522047043, 0.07332529872655869, 0.0053979260846972466, 0.040921736508607864, -0.024118762463331223, -0.024568641558289528, 0.00878528505563736, 0.003761944128200412, 0.0013872276758775115, 0.03254815936088562, -0.03073780983686447, 0.016623204573988914, -0.0005687684169970453, 0.01609467901289463, 0.10021179914474487, -0.0510043203830719, -0.015953637659549713, 0.006541108246892691, 0.0022138701751828194, 0.01860647462308407, 0.018893403932452202, -0.017495034262537956, -0.02612890861928463, -0.020714156329631805, -0.03738844394683838, -0.00901985913515091, -0.03712918236851692, -0.021059686318039894, -0.006446409039199352, -0.05188102647662163, -0.007683373987674713, 0.020460814237594604, -0.004732026718556881, -0.048879772424697876, -0.052148837596178055, -0.016696657985448837, -0.06665090471506119, -0.0738154798746109, -0.01528860256075859, 0.008843262679874897, -0.004427766893059015, -0.01676764339208603, -0.008493580855429173, -0.01864934340119362, -0.03560887649655342, 0.08465319126844406, -0.042802587151527405, -0.00199909252114594, 0.011289533227682114, 0.04541973024606705, 0.030764885246753693, 0.024817509576678276, 0.04876728728413582, 0.0038091116584837437, 0.009272564202547073, -0.013417740352451801, 0.0022110037971287966, 0.030444348230957985, 0.012527599930763245, 0.001453072065487504, -0.09091974049806595, -0.004211201332509518, -0.009063473902642727, -0.053300466388463974, -0.06915047764778137, 0.02370845153927803, 0.03709179162979126, 0.019771873950958252, 0.04548252373933792, -0.019421733915805817, -0.003561073914170265, -0.042967990040779114, -0.0022126655094325542, -0.01790321245789528, -0.004646755289286375, 0.05820434167981148, -0.02513042464852333, 0.07568477094173431, 0.020980900153517723, -0.02894139103591442, -0.028353309258818626, -0.028569549322128296, -0.009002001024782658, -0.009177629835903645, -0.04930109530687332, -0.014466299675405025, -0.02666732855141163, -0.1136154904961586, -0.024678517132997513, 0.023313408717513084, -0.00930840615183115, -0.037892505526542664, 0.0058239661157131195, 0.02747587114572525, -0.0019951825961470604, 0.0075227622874081135, -0.0172458253800869, 0.028263622894883156, -0.017607541754841805, 0.006920857820659876, -0.029880836606025696, 0.016037413850426674, -0.006372074596583843, 0.017329007387161255, 0.027225052937865257, -0.05795416235923767, -0.003354474203661084, -0.013413791544735432, 0.012157403863966465, 0.015518894419074059, 0.03025709092617035, -0.00730702793225646 ]
[ -0.06437969952821732, -0.0012523026671260595, -0.05069359764456749, -0.02892128936946392, 0.03525864705443382, -0.006397848483175039, 0.02860705740749836, 0.02031869813799858, 0.049518756568431854, -0.005428364034742117, 0.0235744696110487, -0.0664588138461113, -0.003141717752441764, 0.035804037004709244, 0.03110337257385254, -0.0027723838575184345, 0.007624004501849413, -0.05353674665093422, -0.010798162780702114, 0.03019888512790203, -0.0013113371096551418, -0.026347240433096886, -0.024700986221432686, -0.04639250412583351, 0.021709563210606575, 0.009377401322126389, 0.04847282916307449, -0.02056870423257351, -0.0318547822535038, -0.20946936309337616, -0.0031002259347587824, -0.004027624614536762, 0.03728153929114342, -0.001280657364986837, -0.015517856925725937, -0.0032291563693434, -0.00030813802732154727, 0.01004825159907341, 0.017788115888834, 0.023875290527939796, 0.004315403755754232, 0.024476593360304832, -0.01750854030251503, 0.0076769147999584675, 0.0788513720035553, 0.023786362260580063, -0.006133588030934334, 0.01987193338572979, -0.011120581068098545, 0.031282972544431686, -0.0380316786468029, 0.0006274015759117901, 0.005984588526189327, -0.009279859252274036, 0.02368887886404991, 0.06631549447774887, 0.062255073338747025, 0.04562414065003395, 0.01858142763376236, 0.05288974195718765, 0.060940325260162354, 0.03114241361618042, -0.14375482499599457, 0.05270589888095856, 0.016941910609602928, 0.01055147871375084, -0.057627178728580475, 0.020526966080069542, -0.004757439251989126, 0.1107156053185463, 0.047057829797267914, -0.02242858149111271, 0.011920359916985035, 0.02114040218293667, 0.02508733607828617, 0.01819983497262001, -0.013185052201151848, 0.025201793760061264, 0.004504453390836716, 0.016020730137825012, -0.029447128996253014, 0.011869029141962528, -0.06751467287540436, -0.0350327268242836, -0.057163581252098083, 0.040738631039857864, -0.01630345918238163, 0.01550387218594551, -0.01160287857055664, 0.02781924419105053, 0.04231883957982063, 0.03241182491183281, 0.015842564404010773, 0.002551455283537507, -0.0945296511054039, -0.030291523784399033, -0.0026504690758883953, 0.02475741133093834, -0.023690298199653625, 0.4045778810977936, 0.013101235963404179, -0.0016142138047143817, 0.05386633425951004, 0.03773806244134903, -0.01765410415828228, -0.032455429434776306, 0.004931837320327759, -0.05748816579580307, 0.009050180204212666, -0.007335868664085865, -0.005136128980666399, -0.033191706985235214, 0.04989762231707573, -0.03166890889406204, 0.02494041435420513, 0.043301794677972794, 0.03569190949201584, 0.06094173714518547, -0.007054788991808891, -0.022913170978426933, -0.06129833310842514, 0.00660699000582099, -0.019308608025312424, 0.0007330317748710513, -0.018460117280483246, 0.014706875197589397, 0.01279524341225624, 0.06625935435295105, 0.028190556913614273, -0.006631833966821432, 0.05258386954665184, -0.01933365873992443, -0.1027410700917244, 0.03515388444066048, 0.0014476116048172116, -0.020203515887260437, 0.014255736954510212, -0.0018642876530066133, 0.002753207227215171, 0.04757939651608467, -0.007515314966440201, -0.03656811639666557, 0.057249121367931366, 0.007608023006469011, -0.052144937217235565, 0.1475430130958557, 0.00011089472536696121, -0.05803515762090683, 0.0029621103312820196, -0.04842454195022583, 0.004192434251308441, 0.030561594292521477, 0.009205985814332962, -0.057486239820718765, -0.017225220799446106, 0.02025866135954857, 0.07357744127511978, -0.045356761664152145, -0.09847874939441681, -0.0018570773536339402, -0.047439295798540115, -0.007580888923257589, -0.03681963309645653, 0.07496774196624756, 0.06531185656785965, -0.12011115252971649, -0.029624665156006813, -0.0012205472448840737, -0.014049678109586239, -0.06838669627904892, 0.031054601073265076, 0.004855182021856308, -0.030759871006011963, 0.014185418374836445, 0.024582132697105408, 0.003993004560470581, -0.021569790318608284, -0.03902244567871094, 0.06174561381340027, -0.021982436999678612, 0.02861439250409603, -0.006761640775948763, -0.07616907358169556, 0.0013520437059924006, -0.07905896753072739, -0.026837671175599098, -0.07457955181598663, 0.013315838761627674, -0.004152983892709017, -0.010255078785121441, -0.047496113926172256, 0.012311172671616077, -0.09829489141702652, 0.0943748876452446, -0.06801309436559677, -0.01449395902454853, -0.014865783974528313, -0.01848786696791649, -0.02342495694756508, -0.022257082164287567, -0.04521951079368591, -0.013693698681890965, 0.005287387408316135, -0.0019290525233373046, -0.04019128903746605, 0.04041315242648125, 0.010878168977797031, -0.030723020434379578, 0.07058106362819672, 0.018974121659994125, -0.01381053775548935, -0.034872591495513916, -0.057714302092790604, 0.004060584120452404, -0.010260146111249924, -0.005112869665026665, 0.008452512323856354, -0.0012441215803846717, 0.020034555345773697, 0.05883685126900673, -0.012037497013807297, 0.02344643324613571, -0.01253178808838129, -0.3428209722042084, -0.07499664276838303, -0.051747966557741165, 0.026403281837701797, 0.03386374190449715, -0.033524781465530396, 0.003929926082491875, -0.023058651015162468, 0.04028603062033653, 0.043761711567640305, 0.023585336282849312, 0.005006506573408842, -0.029052114114165306, -0.04592210426926613, -0.002676311181858182, 0.007520616520196199, -0.020340587943792343, -0.0010960062500089407, -0.029353715479373932, 0.010453948751091957, 0.020371483638882637, -0.004258544184267521, -0.032174427062273026, -0.04068706929683685, 0.01472629327327013, -0.031574562191963196, 0.11788910627365112, 0.0853310227394104, -0.017170391976833344, -0.043828099966049194, 0.03285621479153633, 0.0010978156933560967, -0.036281730979681015, -0.0721873939037323, 0.04084695875644684, -0.01531214453279972, 0.031210901215672493, -0.03854377195239067, 0.007678452879190445, -0.055555276572704315, -0.026918426156044006, -0.021268118172883987, -0.018099399283528328, -0.018253404647111893, -0.06693708896636963, 0.023345140740275383, -0.01070606242865324, -0.027322011068463326, -0.01291302777826786, 0.11841458082199097, 0.04494757577776909, 0.024092376232147217, 0.06573910266160965, -0.017880499362945557, 0.02555186115205288, -0.0452197901904583, -0.07773218303918839, 0.0035396746825426817, -0.02498638443648815, 0.0017682812176644802, 0.013990683481097221, 0.00601251982152462, 0.03986431285738945, -0.05592680722475052, 0.008634291589260101, 0.0023301730398088694, 0.006884187459945679, -0.0035845350939780474, 0.007031413726508617, -0.012851242907345295, -0.027597928419709206, 0.0558365061879158, 0.012286251410841942, 0.019195595756173134, 0.05814199522137642, 0.026175204664468765, 0.015949586406350136, -0.00600860919803381, 0.0375591441988945, 0.03535433113574982, 0.05896475166082382, -0.021818287670612335, 0.06406456232070923, -0.026396509259939194, -0.013588347472250462, 0.017137933522462845, 0.03365553915500641, -0.03041103668510914, 0.05202819034457207, 0.03452663868665695, -0.013680703938007355, 0.036138035356998444, -0.0502595417201519, -0.04907061904668808, 0.03441110625863075, -0.031211139634251595, -0.26626986265182495, 0.020745985209941864, 0.053841907531023026, 0.07074950635433197, 0.026142826303839684, -0.020130980759859085, 0.04857568070292473, -0.026631178334355354, -0.012232138775289059, 0.009631023742258549, 0.0197981558740139, 0.037249427288770676, -0.029146140441298485, 0.009336610324680805, -0.04437188804149628, -0.023288266733288765, -0.0016393089899793267, -0.009537952952086926, 0.06072544679045677, 0.03711022809147835, 0.05957874655723572, -0.0072206007316708565, 0.18352364003658295, -0.007099792826920748, 0.04948493093252182, 0.050397973507642746, -0.028103914111852646, -0.026011429727077484, 0.00742651941254735, -0.022237488999962807, -0.01208188571035862, 0.007367909420281649, 0.02933511696755886, 0.024908743798732758, 0.02189025469124317, -0.010808397084474564, -0.005587165243923664, 0.04005417972803116, -0.00902495440095663, -0.04311281815171242, 0.03873688727617264, -0.005053364671766758, -0.03984663262963295, 0.040493644773960114, 0.07929478585720062, -0.0006024885806255043, 0.013067440129816532, -0.010641279630362988, -0.06852781027555466, -0.009603890590369701, -0.04882035776972771, -0.05898337811231613, -0.009215449914336205, -0.03899038955569267, -0.01781466230750084, 0.024375567212700844, 0.03457779064774513, -0.035249028354883194, 0.047304291278123856, -0.014528339728713036, -0.018090631812810898, -0.0034102562349289656, 0.051572639495134354, 0.014986368827521801, 0.03449195250868797 ]
[ -0.016968389973044395, 0.02972903475165367, 0.001196060562506318, 0.03789008781313896, -0.0015308948932215571, 0.025267357006669044, -0.012033084407448769, 0.010510220192372799, 0.00047575769713148475, -0.011938704177737236, -0.04136491194367409, 0.019522208720445633, 0.04703531786799431, 0.006683058571070433, 0.007832415401935577, 0.010955835692584515, -0.009702774696052074, 0.026717394590377808, 0.026663750410079956, -0.0017628662753850222, -0.02068766951560974, -0.007998219691216946, -0.00007632260530954227, -0.021269531920552254, -0.004422368481755257, -0.0038917039055377245, -0.05117016285657883, 0.015552866272628307, 0.020648935809731483, -0.11816880106925964, -0.02810726873576641, -0.04247443377971649, 0.006529656704515219, 0.013213472440838814, -0.062207579612731934, -0.01662893407046795, -0.02356109954416752, 0.016229627653956413, 0.010593458078801632, 0.020662935450673103, 0.034333985298871994, -0.016887005418539047, -0.04576002061367035, 0.03519542142748833, 0.015557587146759033, -0.011512577533721924, -0.03844371810555458, 0.04199684038758278, -0.008449077606201172, 0.0006637810147367418, -0.05797039717435837, -0.006946141365915537, 0.004279523156583309, 0.00587447127327323, 0.014859993942081928, -0.0006511628744192421, -0.0022155970800668, -0.013851072639226913, 0.0021472976077347994, -0.022773034870624542, 0.04945042356848717, -0.017875099554657936, -0.03986397758126259, -0.01883752830326557, -0.013946588151156902, -0.028148112818598747, 0.006217726971954107, 0.016503214836120605, -0.007729802746325731, 0.011012020520865917, -0.0006095095886848867, 0.02498101443052292, -0.038866348564624786, -0.0013881102204322815, -0.005303220823407173, 0.04155617207288742, -0.011499467305839062, -0.04685389623045921, 0.009954165667295456, 0.012519048526883125, -0.028725724667310715, 0.027280723676085472, -0.0009234006283804774, 0.0004647213499993086, 0.006604188121855259, -0.019806725904345512, 0.004259535111486912, -0.020081395283341408, 0.005900387652218342, 0.03447769582271576, -0.058524057269096375, 0.023894619196653366, -0.011565964668989182, 0.04914703592658043, -0.08710313588380814, 0.024113450199365616, -0.0189399104565382, -0.01349992211908102, 0.02423999458551407, 0.8180122375488281, 0.020678460597991943, 0.028185969218611717, 0.008897212333977222, 0.015275439247488976, 0.02444145642220974, 0.009693541564047337, -0.043517354875802994, 0.008997488766908646, 0.009165743365883827, -0.031327541917562485, -0.014503872022032738, 0.029776092618703842, 0.023362409323453903, 0.03234820067882538, -0.002817877335473895, 0.05222701281309128, 0.04748869687318802, 0.03356315568089485, -0.024434098973870277, 0.0016148779541254044, -0.01603449136018753, 0.017006199806928635, -0.0017457050271332264, -0.042113933712244034, 0.002735857618972659, -0.17274904251098633, -0.021123141050338745, -7.354011677547251e-33, 0.05706765130162239, -0.011863223277032375, 0.047295283526182175, -0.008083063177764416, -0.01411632914096117, 0.012936558574438095, -0.021734828129410744, -0.02495407499372959, -0.050556574016809464, -0.046326830983161926, -0.002557693747803569, 0.01986687444150448, 0.04578164592385292, -0.02206624671816826, 0.03713764622807503, -0.006682275328785181, 0.008712389506399632, 0.028272349387407303, 0.009840046055614948, -0.03648410364985466, 0.017423424869775772, 0.020634159445762634, -0.0018447693437337875, 0.034811120480298996, 0.013371381908655167, 0.05857712775468826, -0.004168776795268059, -0.005417221691459417, -0.00545527646318078, -0.06003483757376671, -0.0499279759824276, -0.020346825942397118, -0.01885351724922657, -0.03513040021061897, 0.0033858329989016056, -0.06892182677984238, -0.026980971917510033, -0.009515236131846905, -0.0025910113472491503, -0.07691051065921783, -0.034002892673015594, -0.003261483507230878, 0.015761010348796844, -0.060436900705099106, -0.04813719540834427, -0.003029972082003951, -0.024152345955371857, 0.009854915551841259, -0.006403312552720308, 0.008100868202745914, 0.02065300941467285, -0.01938445121049881, 0.023940274491906166, 0.030367333441972733, -0.01597665809094906, -0.0007730266661383212, 0.011614455841481686, 0.03454921767115593, -0.014671741053462029, 0.00490136444568634, 0.06005292758345604, -0.014537998475134373, -0.01875986158847809, 0.0232324730604887, 0.010075407102704048, 0.03479421138763428, -0.020671986043453217, -0.03489401936531067, 0.016126973554491997, 0.03187691047787666, -0.03154340758919716, 0.06107642129063606, -0.024041399359703064, 0.015219200402498245, 0.02581746317446232, -0.0249050110578537, -0.001089313649572432, -0.028931058943271637, -0.011856622993946075, 0.060954026877880096, 0.0015639420598745346, -0.016334054991602898, -0.005212054587900639, -0.022389156743884087, -0.03415266424417496, -0.017761100083589554, 0.01941070333123207, 0.008150209672749043, 0.02977263741195202, 0.02817119099199772, 0.048983875662088394, 0.034990329295396805, -0.024640938267111778, 0.010749774985015392, -0.026795772835612297, 7.328179454503962e-33, -0.017734799534082413, 0.012174205854535103, 0.010810934007167816, -0.007492770440876484, 0.05132012069225311, -0.026657920330762863, -0.011915050446987152, 0.02573787234723568, -0.05499260127544403, 0.03054935485124588, -0.020404260605573654, -0.044010259211063385, 0.01057063601911068, 0.023178640753030777, 0.062178462743759155, -0.013870665803551674, 0.014543713070452213, -0.008888691663742065, -0.01886853389441967, 0.017246458679437637, 0.049247510731220245, 0.02897559106349945, -0.009869471192359924, 0.0316297672688961, 0.045695967972278595, 0.006179781164973974, 0.017433632165193558, -0.003861607750877738, -0.028315585106611252, -0.002408354077488184, 0.010593146085739136, -0.028095312416553497, -0.013997798785567284, -0.011555856093764305, -0.008122238330543041, 0.013937020674347878, -0.007815320044755936, -0.020708374679088593, 0.03560158610343933, 0.020302053540945053, -0.008590402081608772, 0.0027436416130512953, -0.03513097018003464, 0.029524395242333412, 0.01574009843170643, 0.008324633352458477, 0.0054822685196995735, -0.023143555968999863, 0.01561545766890049, -0.0014277161099016666, 0.030071448534727097, 0.014978169463574886, 0.012231459841132164, 0.03579620644450188, -0.004468342289328575, -0.059895046055316925, -0.0054934825748205185, 0.05410981550812721, -0.009248051792383194, -0.005162806250154972, -0.01473349891602993, 0.001687537063844502, -0.058395203202962875, 0.012956065125763416, -0.027194026857614517, 0.006639858707785606, -0.02261773683130741, -0.017188169062137604, -0.022350575774908066, 0.016776079311966896, -0.033317286521196365, 0.007450419012457132, -0.0007336552953347564, 0.049684617668390274, 0.03649359196424484, 0.0005970908096060157, -0.021625056862831116, 0.04835188016295433, -0.015914473682641983, 0.017274482175707817, 0.0331757552921772, 0.005744746420532465, 0.055274952203035355, -0.0054882909171283245, 0.021384205669164658, 0.019818320870399475, -0.006305311340838671, -0.01110742799937725, -0.002105012070387602, -0.011694153770804405, 0.03651764616370201, -0.023423926904797554, -0.00884648971259594, 0.027991177514195442, -0.017317993566393852, -1.2798271775693593e-8, -0.06823237985372543, 0.01123159658163786, -0.0005995978717692196, 0.012437693774700165, 0.008834411390125751, 0.04069751501083374, 0.059428825974464417, -0.01695605181157589, -0.018354706466197968, 0.00003216415279894136, 0.031166408210992813, -0.016104212030768394, 0.027670729905366898, -0.00726875988766551, 0.005222243722528219, -0.05053708702325821, -0.027350900694727898, -0.024424366652965546, 0.04779651388525963, 0.00978414062410593, 0.003896597772836685, 0.02625204809010029, -0.03923264518380165, 0.037218667566776276, 0.034721147269010544, -0.05492829158902168, 0.014068628661334515, -0.07616740465164185, 0.00019336723198648542, -0.002744741039350629, 0.004675375297665596, -0.029616158455610275, 0.004309216048568487, 0.012839377857744694, -0.008293330669403076, 0.01616951823234558, -0.0074685243889689445, 0.005473160184919834, -0.009777192026376724, 0.03310706838965416, 0.004946771543473005, 0.032560933381319046, -0.038611430674791336, -0.03251451253890991, 0.006004844792187214, 0.011437749490141869, -0.04683426022529602, -0.0011623790487647057, 0.023164736106991768, -0.06675440073013306, 0.026055285707116127, -0.020061904564499855, 0.01983628049492836, -0.011732506565749645, 0.015170466154813766, 0.008627423085272312, 0.0045551881194114685, -0.010932855308055878, -0.008049311116337776, -0.031247533857822418, 0.036421552300453186, -0.010512539185583591, -0.01654604636132717, -0.03499074652791023 ]
neo4j-graph-algorithms-visualise-projected-graph
https://markhneedham.com/blog/2018/10/31/neo4j-graph-algorithms-visualise-projected-graph
false
2018-07-16 05:25:00
QuickGraph #1: Analysing Python Dependency Graph with PageRank, Closeness Centrality, and Betweenness Centrality
[ "quickgraph", "neo4j", "graph-algorithms", "python" ]
[ "Python" ]
I've always wanted to build a dependency graph of libraries in the Python ecosytem but I never quite got around to it...until now! I thought I might be able to get a dump of all the libraries and their dependencies, but while searching I came across this article which does a good job of explaining https://dustingram.com/articles/2018/03/05/why-pypi-doesnt-know-dependencies[why that's not possible^]. == Finding Python Dependencies The best we can do is generate a dependency graph of our locally installed packages using the excellent https://github.com/naiquevin/pipdeptree[pipdeptree^] tool. I installed the library... [source,bash] ---- pip install pipdeptree ---- And then ran this command to generate a JSON file containing all the dependencies: [source,bash] ---- pipdeptree --json-tree > /tmp/deps.json ---- The resulting file is uploaded as a https://gist.github.com/mneedham/4ac262fa5a369de4d3ceb1f3eb1b8c08/raw[GitHub gist^] in case you want to take a look. == Importing Python Dependencies into Neo4j My initial plan was to process the JSON using APOC's Load JSON procedure, but after looking at the JSON file I realised that there was a recursive dependency chain and it'd be much easier to process it in a programming language. image::{{<siteurl>}}/uploads/2018/07/python-deps.png[] We can write a function that returns https://stackoverflow.com/questions/38254304/can-generators-be-recursive[a recursive generator^] of libraries and their immediate parent. First let's import our dependencies: [source, python] ---- import requests import csv from neo4j.v1 import GraphDatabase ---- And now for the recursive generator: [source, python] ---- def process_deps(items, parent=None): for item in items: yield (parent, item["key"]) yield from process_deps(item["dependencies"], item["key"]) ---- Now let's process the JSON file using the requests library and pass our `library, parent` pairs to a Cypher query: [source, python] ---- driver = GraphDatabase.driver("bolt://localhost", auth=("neo4j", "neo")) r = requests.get("https://gist.github.com/mneedham/4ac262fa5a369de4d3ceb1f3eb1b8c08/raw") response = r.json() with driver.session() as session: for parent, library in process_deps(response): params = { "library": library, "parent": parent } result = session.run("""\ MERGE (l:Library {name: $library}) WITH l CALL apoc.do.when( $parent is null, "RETURN library, null as parent", "WITH $library AS library MERGE (parent:Library {name: $parent}) MERGE (parent)-[:DEPENDS_ON]->(library) RETURN library, parent", {library: l, parent: $parent}) YIELD value RETURN value """, params) print(result.peek()) ---- == Which library is directly depended on the most? [source,cypher] ---- MATCH (l:Library) RETURN l.name AS dependency, size((l)<-[:DEPENDS_ON]-()) AS dependOnMe ORDER BY dependOnMe DESC LIMIT 5 ---- [source,text] ---- +--------------------------+ | dependency | dependOnMe | +--------------------------+ | "six" | 22 | | "numpy" | 20 | | "traitlets" | 9 | | "pandas" | 6 | | "ipykernel" | 5 | +--------------------------+ ---- == Which library is indirectly depended on the most? [source,cypher] ---- MATCH (l:Library) RETURN l.name AS dependency, size((l)<-[:DEPENDS_ON*]-()) AS dependOnMe ORDER BY dependOnMe DESC LIMIT 5 ---- [source,text] ---- +---------------------------------+ | dependency | dependOnMe | +---------------------------------+ | "six" | 386 | | "ipython-genutils" | 252 | | "decorator" | 247 | | "traitlets" | 215 | | "jupyter-core" | 80 | +---------------------------------+ ---- == What's the most important library? [source,cypher] ---- CALL algo.pageRank.stream("Library", "DEPENDS_ON") YIELD nodeId, score MATCH (l) WHERE id(l) = nodeId RETURN l.name AS library, apoc.math.round(score,5) AS score, size((l)<-[:DEPENDS_ON*]-()) AS deps ORDER BY score DESC LIMIT 5 ---- [source,text] ---- +-------------------------------+ | library | score | deps | +-------------------------------+ | "six" | 2.0916 | 386 | | "numpy" | 1.54518 | 70 | | "traitlets" | 0.63128 | 215 | | "decorator" | 0.47954 | 247 | | "setuptools" | 0.40907 | 42 | +-------------------------------+ ---- Most of the libraries in the top 5 are indirectly depended on by many other libraries but `numpy` and `setuptools` have fewer dependencies. This tells us that those libraries are either being depended on by other important libraries or the libraries that do depend on it don't depend on many other libraries. Let's explore, but first we'll store the `pagerank` on each node rather than returning it: [source,cypher] ---- CALL algo.pageRank("Library", "DEPENDS_ON") ---- And now let's have a look at numpy's direct dependencies: [source,cypher] ---- MATCH (l:Library {name: "numpy"})<-[:DEPENDS_ON*]-(library) RETURN DISTINCT library.name AS library, apoc.math.round(library.pagerank,5) AS pagerank, size((library)-[:DEPENDS_ON]->()) AS directDependencies ORDER BY pagerank DESC LIMIT 5 ---- [source,text] ---- +----------------------------------------------+ | library.name | pagerank | directDependencies | +----------------------------------------------+ | "scipy" | 0.39481 | 1 | | "pandas" | 0.37213 | 3 | | "pyarrow" | 0.27975 | 2 | | "patsy" | 0.23685 | 2 | | "matplotlib" | 0.20419 | 7 | +----------------------------------------------+ ---- The first 4 don't have many direct dependencies so numpy will be picking up a decent amount of page rank when they diffuse their score to their neighbours. == Which libraries are closest to the others? Another metric we can calculate is Closeness Centrality which will tell us how far a library is from all the others. A score of `1.0` would indicate that a library has a direct relationship to all other libraries. [source,cypher] ---- CALL algo.closeness.harmonic.stream("Library", "DEPENDS_ON") YIELD nodeId, centrality MATCH (l) WHERE id(l) = nodeId RETURN l.name, centrality ORDER BY centrality DESC LIMIT 5 ---- [source,text] ---- +-----------------------------------+ | l.name | centrality | +-----------------------------------+ | "fastai" | 0.5948412698412698 | | "numpy" | 0.49034391534391536 | | "six" | 0.4850529100529101 | | "traitlets" | 0.4510582010582011 | | "ipython" | 0.4337301587301587 | +-----------------------------------+ ---- Most of our usual suspects but a surprise entry in 1st place, what's going on there?! Presumably `fastai` has lots of dependencies, but let's write a query to find out: [source,cypher] ---- MATCH (l:Library) RETURN l.name AS library, size((l)-[:DEPENDS_ON]->()) AS dependencies ORDER BY dependencies DESC LIMIT 5 ---- [source,text] ---- +---------------------------+ | library | dependencies | +---------------------------+ | "fastai" | 48 | | "spacy" | 15 | | "thinc" | 14 | | "notebook" | 11 | | "ipython" | 11 | +---------------------------+ ---- 3x as many as the next library - that explains the high Closeness Centrality score then! == Which libraries are local bridges? A local bridge in graph theory is a node that connects together what would otherwise be separate sets of nodes. In a social graph this would be the person that floats between different groups of people and connects those groups together. The Betweenness Centrality algorithm calculates the shortest paths between all pairs of nodes in the graph and works out how many times a node exists on those shortest paths. The following query will calculate this for our dataset: [source, cypher] ---- CALL algo.betweenness.stream("Library", "DEPENDS_ON", {direction: "BOTH"}) YIELD nodeId, centrality MATCH (l) WHERE id(l) = nodeId RETURN l.name, centrality ORDER BY centrality DESC LIMIT 5 ---- We're passing in the parameter `direction:BOTH` to this one because we want to consider shortest paths that follow the `DEPENDS_ON` relationship in both directions. [source,text] ---- +-------------------------------+ | l.name | centrality | +-------------------------------+ | "fastai" | 3070.7207126421904 | | "six" | 1775.4608218578815 | | "numpy" | 1266.0317694087814 | | "thinc" | 800.7187125911584 | | "spacy" | 744.5286608128714 | +-------------------------------+ ---- `fastai` comes out top again, but it was a bit skewed in terms of its number of direct dependencies. What if we run the algorithm again but this time excluding `fastai`? [source,cypher] ---- CALL algo.betweenness.stream( "MATCH (l:Library) WHERE l.name <> 'fastai' RETURN id(l) AS id", "MATCH (l1)-[:DEPENDS_ON]-(l2) RETURN id(l1) AS source, id(l2) AS target", {direction: "BOTH", graph: "cypher"}) YIELD nodeId, centrality MATCH (l) WHERE id(l) = nodeId RETURN l.name, centrality ORDER BY centrality DESC LIMIT 5 ---- [source,cypher] ---- +----------------------------------+ | l.name | centrality | +----------------------------------+ | "six" | 3388.1133979422216 | | "traitlets" | 1623.367944728101 | | "numpy" | 1213.7796551878075 | | "spacy" | 1125.8103540366847 | | "ipython" | 999.9845917367674 | +----------------------------------+ ---- We're mostly back to our usual suspects. `spacy` is the only one in this list that didn't appear in the top 5 for either of the other measures of centrality. We could do a lot more exploration on this dataset but this is meant to be a QuickGraph so I'll leave it there. And if anyone has more packages installed locally send me a link to your JSON file and I'll run it over that and we'll see what we can discover!
Learn how to apply Neo4j Graph Algorithms to a graph of the Python ecosystem.
null
[ 0.0024419089313596487, -0.026971204206347466, -0.0002486777666490525, 0.015822432935237885, 0.08451401442289352, 0.02542712725698948, 0.006440526340156794, 0.013511640951037407, -0.006140247453004122, -0.006053645629435778, -0.013398575596511364, -0.02403903566300869, -0.08832535147666931, 0.02576676942408085, -0.0008177576819434762, 0.04531227424740791, 0.0975741595029831, 0.0050630634650588036, -0.013186522759497166, 0.03429971635341644, 0.002557046478614211, 0.031883642077445984, -0.014935825020074844, 0.028288213536143303, 0.000019676837837323546, 0.004076170735061169, 0.029492570087313652, -0.0033120582811534405, -0.015661660581827164, -0.02426960878074169, 0.020223824307322502, -0.018244324252009392, 0.014821370132267475, -0.023804692551493645, 0.013520421460270882, 0.00938929058611393, -0.07983449846506119, 0.01902838423848152, -0.017748139798641205, -0.0032064709812402725, -0.04596330225467682, 0.004861216526478529, -0.022349819540977478, 0.012013701722025871, -0.04697873070836067, 0.02945946529507637, -0.02621181309223175, 0.04849247261881828, -0.0019812940154224634, -0.008325420320034027, -0.09666647762060165, 0.01998854987323284, 0.0009485926711931825, -0.04382184520363808, -0.011250604875385761, 0.023778727278113365, 0.015112834982573986, -0.08196092396974564, 0.045220911502838135, -0.02028788812458515, -0.022096125409007072, -0.020993245765566826, 0.0016634771600365639, 0.06782448291778564, -0.009255338460206985, -0.07281975448131561, -0.016053536906838417, 0.05250437557697296, -0.03298097103834152, -0.03262735530734062, -0.011933925561606884, 0.024985481053590775, -0.057151343673467636, -0.0029814864974468946, -0.0020316317677497864, -0.04442155733704567, -0.028505899012088776, 0.05358077958226204, 0.010550609789788723, 0.05741923674941063, 0.017539145424962044, 0.06415224075317383, 0.012687143869698048, -0.004151543602347374, 0.0015674146125093102, -0.004897859878838062, -0.037481263279914856, -0.004403493832796812, -0.06961923837661743, 0.014147426933050156, 0.011235760524868965, -0.03903989493846893, -0.003924322314560413, -0.01194207277148962, 0.026414450258016586, -0.004680455196648836, 0.013362841680645943, 0.03185264766216278, 0.04101867973804474, -0.012540454044938087, -0.026854325085878372, 0.0009696366614662111, -0.0013551439624279737, -0.01614208146929741, -0.050682928413152695, -0.06537056714296341, -0.015003744512796402, -0.03521659970283508, -0.0021953624673187733, -0.02558361552655697, -0.013727467507123947, 0.014219203032553196, -0.022430526092648506, -0.012638352811336517, -0.08474892377853394, 0.05625356733798981, -0.001041166833601892, -0.0325617752969265, -0.03684883937239647, 0.04149617999792099, 0.051580529659986496, 0.02752290666103363, 0.02401438169181347, 0.06301067769527435, 0.0027168123051524162, 0.04761429876089096, -0.007852594368159771, 0.05213324353098869, -0.008573316037654877, -0.05101758986711502, -0.01865183189511299, 0.04900631681084633, -0.006946554873138666, 0.01602734997868538, -0.011430452577769756, -0.029749996960163116, -0.008686327375471592, 0.05253765359520912, 0.04981395974755287, 0.03476806357502937, -0.024822579696774483, -0.0014109795447438955, 0.023746313527226448, -0.01975328102707863, 0.032325465232133865, 0.03845128417015076, -0.034442223608493805, -0.028402358293533325, -0.029740871861577034, 0.009419504553079605, 0.004129457753151655, 0.030835794284939766, 0.07175414264202118, -0.034309022128582, 0.005983245093375444, 0.11499688029289246, 0.05536453798413277, 0.03744516521692276, -0.059322286397218704, -0.007526087574660778, 0.03502786159515381, 0.043182481080293655, -0.014972163364291191, 0.06285035610198975, -0.06154638156294823, -0.03777703270316124, -0.011549987830221653, 0.03976878523826599, -0.0021790973842144012, 0.008985470049083233, -0.014662700705230236, -0.0680539458990097, 0.05746202543377876, -0.024538813158869743, -0.0058126491494476795, -0.0000505516909470316, 0.06364388018846512, 0.011376873590052128, 0.030644603073596954, 0.025974225252866745, -0.08006324619054794, 0.06999819725751877, -0.004641535226255655, -0.04518420249223709, -0.019261835142970085, 0.010678574442863464, 0.11303679645061493, -0.0073361690156161785, 0.006358650978654623, 0.010538837872445583, -0.06529424339532852, -0.06984436511993408, 0.003191097639501095, -0.017470169812440872, 0.03665957599878311, -0.037538208067417145, -0.039518941193819046, 0.05394914746284485, 0.019441645592451096, 0.010780245997011662, 0.0038830642588436604, -0.01732156239449978, -0.0010903551010414958, -0.06927238404750824, -0.0634760931134224, 0.024470722302794456, 0.033266402781009674, -0.027475906535983086, -0.039484187960624695, 0.018538612872362137, -0.01887989044189453, -0.03579263016581535, 0.017199518159031868, -0.04416050761938095, 0.03497757017612457, 0.0556095726788044, 0.011996067129075527, -0.04346051067113876, 0.04456798732280731, -0.02444755844771862, 0.03583265095949173, -0.03269677236676216, -0.007107710000127554, -0.04534162953495979, -0.009196977131068707, 0.12010088562965393, 0.0667458176612854, 0.012025339528918266, -0.024559298530220985, 0.05280492082238197, 0.0037095691077411175, -0.007493787910789251, 0.0009050784283317626, -0.016434796154499054, -0.04615592956542969, -0.027446210384368896, -0.030501004308462143, -0.01016694214195013, 0.010241854935884476, -0.029823021963238716, -0.009859931655228138, 0.06547123938798904, -0.03825836256146431, 0.03686419129371643, 0.031240085139870644, -0.04172172397375107, -0.008960084989666939, -0.02191382460296154, -0.052559297531843185, 0.03191585838794708, 0.0005490814801305532, 0.026247158646583557, 0.046605370938777924, -0.024380803108215332, -0.030431022867560387, -0.005945124663412571, -0.028677891939878464, 0.04663325473666191, 0.01067768968641758, 0.045816339552402496, 0.011377277784049511, -0.0000828369302325882, -0.014875581488013268, 0.05498187243938446, -0.006394414696842432, -0.04763112962245941, -0.054336510598659515, -0.04045157507061958, 0.04604576155543327, 0.01822272688150406, 0.03609480336308479, 0.010840131901204586, 0.01277388259768486, -0.008943160995841026, 0.02150619775056839, 0.0016715660458430648, 0.0335918553173542, -0.005869815591722727, -0.00532524986192584, -0.07484522461891174, -0.025403259322047234, 0.057213734835386276, -0.09880556911230087, -0.0031590319704264402, -0.035229314118623734, -0.05253773182630539, 0.01942085288465023, -0.05363818258047104, -0.027763735502958298, -0.03203950077295303, 0.030894815921783447, 0.06148245558142662, -0.01683376170694828, 0.00445724930614233, 0.056870073080062866, 0.02370094507932663, 0.020343337208032608, 0.016536729410290718, 0.0338057205080986, 0.054331958293914795, 0.01172487623989582, 0.05258661508560181, 0.038638655096292496, 0.03201134502887726, 0.013536633923649788, -0.0013529704883694649, 0.02902321331202984, -0.05492062866687775, -0.2651592195034027, 0.028824346140027046, -0.004000426735728979, -0.05527360364794731, 0.03188858553767204, -0.0049766115844249725, -0.003567851847037673, -0.05285293236374855, -0.012024926021695137, 0.010352873243391514, -0.0000048362840061599854, -0.03787192702293396, 0.010054796934127808, 0.0734705999493599, 0.030065689235925674, 0.014366239309310913, -0.0008835879270918667, -0.005655964836478233, 0.03949768468737602, 0.037823278456926346, -0.007556405384093523, -0.020148424431681633, 0.004696359392255545, 0.022271553054451942, -0.008061726577579975, -0.016127705574035645, -0.0727098137140274, 0.05102768912911415, -0.061046939343214035, -0.029361216351389885, 0.000527599302586168, -0.03071250207722187, -0.025424154475331306, 0.010921933688223362, -0.016408508643507957, -0.0014041950926184654, 0.025862883776426315, 0.0417516827583313, -0.026499558240175247, -0.00035266796476207674, -0.0190073624253273, -0.05178333446383476, -0.029642436653375626, -0.005708188284188509, 0.057003963738679886, 0.021783936768770218, -0.06369825452566147, -0.03219892084598541, -0.04987993463873863, 0.10171636939048767, -0.03254491835832596, -0.0039056490641087294, -0.001826814259402454, 0.04161330685019493, 0.006724235601723194, -0.019441375508904457, -0.027168363332748413, 0.012415706180036068, -0.042192891240119934, -0.02923334762454033, -0.0009932632092386484, -0.023683547973632812, -0.012575015425682068, -0.03064066357910633, -0.0012874079402536154, -0.025039881467819214, -0.021520299836993217, -0.04846259579062462, 0.032034412026405334, 0.037942491471767426, -0.048197340220212936, -0.0021150032989680767, -0.0404730848968029, -0.0960797369480133, 0.04082900285720825, -0.07484084367752075, -0.014396189711987972, 0.007161111570894718, 0.01299204770475626, 0.03188001364469528, -0.03400808200240135, -0.039501044899225235, -0.00219758041203022, 0.00993654876947403, -0.023613983765244484, 0.014996027573943138, -0.018474165350198746, -0.04402749240398407, -0.0406436063349247, -0.022120676934719086, 0.032970935106277466, -0.04005260393023491, 0.003093625884503126, 0.01678021252155304, 0.01152859814465046, 0.04379276558756828, 0.01887843757867813, 0.0012031164951622486, 0.03040199913084507, -0.009082051925361156, 0.05004538968205452, -0.034814704209566116, -0.022330686450004578, -0.005843365099281073, -0.003330213949084282, -0.03378996625542641, -0.054626308381557465, -0.02159806154668331, 0.02793782576918602, 0.022521788254380226, -0.038568973541259766, -0.038505569100379944, 0.02371877245604992, -0.03866858035326004, -0.004731007851660252, 0.02497827634215355, 0.02230418473482132, 0.016766756772994995, 0.019221574068069458, -0.03715462610125542, -0.06593194603919983, 0.04616151750087738, 0.004708183463662863, -0.013823208399116993, -0.032658133655786514, -0.009490808472037315, -0.0056565324775874615, -0.006780136842280626, 0.017399897798895836, -0.005015047732740641, -0.03521993011236191, 0.03176724538207054, 0.041551172733306885, -0.015266134403645992, 0.032695259898900986, -0.03787893429398537, -0.02442256174981594, -0.052779871970415115, 0.0511380136013031, 0.0015825782902538776, -0.0562715008854866, 0.00502140773460269, -0.0084824338555336, 0.01835736632347107, 0.028449848294258118, 0.025089967995882034, 0.04178749769926071, 0.02524881809949875, 0.00731025543063879, -0.04027444124221802, 0.022977113723754883, -0.04503884166479111, 0.027936618775129318, -0.035143449902534485, -0.03193356841802597, -0.0311718937009573, 0.05237897112965584, 0.012075362727046013, 0.0032388921827077866, -0.04386654868721962, 0.04187573865056038, -0.06561335176229477, 0.03544621169567108, -0.013617705553770065, -0.04168161004781723, 0.05083218589425087, 0.016968347132205963, 0.0168591421097517, -0.01604211889207363, -0.018621332943439484, 0.05024774372577667, 0.039569057524204254, -0.011860319413244724, 0.017717495560646057, -0.0016950132558122277, 0.02855195291340351, 0.015593570657074451, 0.01499556377530098, 0.0053365277126431465, 0.041429806500673294, -0.03349965438246727, -0.024215398356318474, 0.02087360806763172, -0.0006108480738475919, 0.02939159981906414, 0.04049687460064888, -0.02009802684187889, -0.011731578037142754, -0.009502088651061058, -0.023200882598757744, -0.031879812479019165, 0.028522538021206856, -0.026427937671542168, -0.009308718144893646, -0.0038621032144874334, -0.0746898204088211, -0.003594539826735854, 0.030832791700959206, 0.008358359336853027, -0.0038227050099521875, -0.020161887630820274, -0.008586358278989792, -0.01596353016793728, 0.034274011850357056, 0.07099787145853043, -0.03387700021266937, -0.05173743516206741, -0.0002633607655297965, 0.05619114637374878, -0.01950153522193432, 0.03893277421593666, -0.048230547457933426, -0.0640973225235939, -0.014096265658736229, -0.00668869074434042, 0.013522548601031303, -0.014799297787249088, 0.004631898831576109, 0.003229995258152485, 0.008077233098447323, -0.00908990204334259, 0.032126154750585556, 0.010924339294433594, -0.011123992502689362, -0.021022122353315353, 0.030425237491726875, -0.00027885427698493004, -0.0005034648929722607, 0.03307852894067764, -0.025873718783259392, 0.026049727573990822, -0.037787359207868576, 0.034835513681173325, 0.021338142454624176, -0.010085630230605602, 0.009199840016663074, -0.06078231707215309, 0.004143969155848026, -0.014070946723222733, 0.025093315169215202, -0.01861525885760784, 0.04050806909799576, -0.008630236610770226, -0.03244895860552788, 0.0009660549694672227, -0.034000467509031296, 0.010265165008604527, -0.024714071303606033, -0.005606483202427626, 0.04751511290669441, -0.0017280923202633858, 0.04734538495540619, 0.0020484363194555044, -0.0316915288567543, 0.05345754697918892, -0.05759429186582565, -0.07146642357110977, -0.022840145975351334, -0.021299758926033974, 0.018934885039925575, 0.03589710593223572, -0.005294023547321558, -0.0772659182548523, 0.05428122729063034, 0.04824930801987648, 0.004666812252253294, 0.01413816586136818, -0.007537929806858301, 0.012288522906601429, -0.027201803401112556, -0.01385661493986845, -0.07488922774791718, 0.0039949966594576836, 0.07927712798118591, -0.0011660943273454905, -0.04194183275103569, 0.00319363153539598, -0.034614548087120056, 0.013607966713607311, -0.03977404534816742, -0.014506162144243717, 0.05818452313542366, -0.03567904978990555, 0.01654110476374626, -0.011899154633283615, -0.057022787630558014, -0.01076847780495882, 0.056781232357025146, -0.018840201199054718, -0.008936010301113129, -0.03680790215730667, 0.05853833258152008, -0.006512947380542755, 0.022152598947286606, 0.029274381697177887, 0.012360591441392899, 0.057629287242889404, 0.017628049477934837, 0.028039900586009026, 0.0017358337063342333, -0.022519920021295547, 0.033945776522159576, 0.0348273329436779, 0.00926803145557642, -0.0006421104189939797, 0.04115111753344536, 0.010159901343286037, -0.01688450388610363, 0.03696673735976219, 0.017370864748954773, 0.004781258758157492, -0.033895209431648254, 0.047236792743206024, 0.02641112357378006, -0.05567299202084541, -0.04297422990202904, 0.012493674643337727, -0.0435577854514122, -0.003298999974504113, -0.03250383585691452, 0.008494355715811253, -0.0012785738799721003, 0.05346500501036644, -0.024096200242638588, 0.00201876531355083, 0.06849697977304459, 0.0025747602339833975, 0.008294048719108105, 0.0017424332909286022, 0.061947330832481384, 0.07539386302232742, -0.004806710407137871, 0.022713135927915573, 0.05230210721492767, 0.02325492538511753, -0.030227968469262123, 0.00009019287244882435, 0.001573188928887248, 0.002816629596054554, -0.014429081231355667, -0.02495267428457737, 0.04581212252378464, 0.031196091324090958, 0.0842733234167099, -0.014769911766052246, 0.015124434605240822, 0.0029522913973778486, -0.002705906517803669, -0.0012978101149201393, 0.062232185155153275, 0.0058099692687392235, 0.04772806540131569, -0.007897238247096539, -0.03409543260931969, -0.002214747713878751, -0.031046424061059952, 0.00315904151648283, 0.04507625475525856, 0.018339095637202263, -0.010434993542730808, 0.056512705981731415, 0.058790288865566254, 0.06562254577875137, -0.02366967499256134, -0.058153185993433, -0.005850486923009157, 0.04541821405291557, 0.018388895317912102, -0.004612220451235771, 0.0008452317561022937, -0.007091615814715624, -0.005335307214409113, -0.08771106600761414, 0.02216353267431259, -0.027742570266127586, -0.005410337820649147, 0.02374165877699852, -0.009776759892702103, -0.004532879684120417, 0.0011308701941743493, -0.020903458818793297, -0.017717774957418442, -0.03686824068427086, -0.02951548621058464, -0.01198548823595047, -0.08186471462249756, -0.0011410517618060112, 0.015375091694295406, -0.021044433116912842, -0.004229893907904625, -0.01302189938724041, -0.00041584152495488524, -0.002053225412964821, 0.026067696511745453, -0.07212842255830765, -0.00717683881521225, 0.014032663777470589, 0.002921035513281822, -0.01033097319304943, 0.0001871247950475663, 0.023554649204015732, -0.027794618159532547, -0.0408080630004406, -0.027117174118757248, 0.07715307921171188, 0.030936991795897484, 0.01705869846045971, 0.03049609623849392, -0.07080425322055817, 0.01224400196224451, 0.014295000582933426, 0.01136888936161995, -0.06563587486743927, -0.005654533859342337, 0.07514128088951111, -0.01889244094491005, 0.042659953236579895, 0.040152911096811295, -0.006208193022757769, -0.0067437984980642796, 0.013724260963499546, 0.011618598364293575, 0.0287659652531147, 0.04338761419057846, -0.02293524146080017, 0.05956060811877251, 0.03952069580554962, -0.0075368378311395645, -0.018668586388230324, -0.02111620269715786, -0.040592193603515625, -0.010315240360796452, -0.03537502884864807, -0.019842544570565224, -0.04437922686338425, -0.05860849842429161, -0.03855263441801071, -0.00727339182049036, -0.04208115115761757, -0.02552764303982258, -0.0005746773676946759, -0.03371862694621086, 0.002466320525854826, 0.008377788588404655, -0.04415389895439148, 0.024406395852565765, 0.008276982232928276, -0.010158374905586243, 0.012109163217246532, 0.02826942503452301, 0.02773173712193966, 0.028155291453003883, -0.0333644337952137, -0.04524543508887291, -0.028697608038783073, -0.032698530703783035, 0.034953080117702484, 0.049031708389520645, 0.008983826264739037, 0.009087744168937206 ]
[ -0.06998038291931152, 0.00707924785092473, -0.022651396691799164, -0.04264972731471062, 0.09086418151855469, -0.06897380948066711, -0.0649133250117302, 0.0011623518075793982, -0.009911488741636276, 0.023555070161819458, 0.0032503255642950535, -0.05267246067523956, 0.012540116906166077, -0.02304842695593834, 0.06974878162145615, 0.008735304698348045, -0.02602260932326317, -0.034496210515499115, -0.024709518998861313, 0.02482578530907631, 0.0026681143790483475, -0.03732733055949211, -0.03460877388715744, -0.07617966830730438, 0.03733957186341286, 0.050097014755010605, 0.05705729126930237, -0.01517703291028738, -0.0034597592893987894, -0.20390668511390686, 0.03535470366477966, 0.0000918176956474781, 0.01585855334997177, 0.00031716172816231847, 0.017649542540311813, 0.06374933570623398, 0.04303857684135437, 0.007937614805996418, 0.0060313972644507885, 0.044930748641490936, 0.0033353036269545555, 0.016631990671157837, -0.0570027194917202, 0.0003952758852392435, 0.03579680621623993, 0.003677224740386009, -0.034881867468357086, -0.014184556901454926, -0.009154743514955044, -0.013388351537287235, -0.020900890231132507, -0.01434057205915451, -0.010073917917907238, -0.021518012508749962, -0.0058157737366855145, 0.012745195999741554, 0.041303329169750214, 0.06302402913570404, 0.013216194696724415, 0.016846928745508194, -0.025971975177526474, 0.009452980943024158, -0.1414242386817932, 0.07096748799085617, 0.0480620451271534, 0.05981813371181488, -0.041746579110622406, -0.002178722992539406, -0.006392568815499544, 0.06533802300691605, -0.022620806470513344, -0.02997397817671299, -0.01654413715004921, 0.031910743564367294, 0.015610800124704838, -0.010378258302807808, 0.010539635084569454, 0.02341325767338276, 0.07389374822378159, -0.05428396910429001, -0.05345012992620468, 0.004880459513515234, -0.04253850132226944, -0.005412641912698746, -0.002785260323435068, 0.006477987859398127, -0.028180714696645737, 0.0649084821343422, 0.031067194417119026, 0.035372134298086166, 0.024909716099500656, -0.006087733432650566, 0.050785064697265625, 0.0276479609310627, -0.08601799607276917, 0.0034673751797527075, 0.039249029010534286, -0.016960008069872856, -0.020665397867560387, 0.38405686616897583, -0.02902618981897831, -0.012955496087670326, 0.03209160640835762, 0.06683798134326935, -0.016765790060162544, -0.00890260934829712, -0.028650786727666855, -0.06442247331142426, 0.0187907163053751, -0.03566332533955574, 0.022426631301641464, -0.027003871276974678, 0.08089109510183334, -0.10003077983856201, 0.025651393458247185, -0.04781166464090347, -0.05011614039540291, 0.04805329442024231, -0.047081541270017624, 0.033488668501377106, -0.0058837528340518475, 0.013722224161028862, 0.05880823731422424, 0.007033200468868017, 0.04868817329406738, 0.03938645124435425, -0.021289361640810966, 0.01738744229078293, 0.06366337835788727, 0.044426605105400085, 0.004993095062673092, -0.010293956845998764, -0.04018382728099823, 0.012889350764453411, 0.0033275606110692024, 0.0019258150132372975, 0.02737358585000038, -0.048182178288698196, 0.005839822348207235, 0.02279186062514782, -0.006557995919138193, -0.01440583635121584, 0.0181761272251606, 0.0003959047608077526, -0.0543350949883461, 0.07961266487836838, 0.014427379705011845, 0.021745963022112846, -0.05673041194677353, -0.008227582089602947, -0.03432954475283623, 0.06436150521039963, 0.03524456545710564, -0.05705627426505089, 0.017619268968701363, 0.031050581485033035, 0.06624116748571396, -0.0003495777491480112, -0.03973740339279175, 0.018352434039115906, -0.036776553839445114, -0.057455383241176605, -0.026139292865991592, 0.035648614168167114, 0.025559313595294952, -0.12632106244564056, -0.032900307327508926, -0.0018471935763955116, 0.01664651557803154, -0.04029722511768341, 0.035061366856098175, 0.05861600860953331, -0.014629638753831387, -0.03593449667096138, 0.030018232762813568, -0.054886989295482635, -0.009363485500216484, 0.0026118450332432985, 0.08871065080165863, 0.030764397233724594, -0.01676023006439209, 0.006165302824229002, -0.044528041034936905, -0.028520727530121803, -0.03444971144199371, -0.08384828269481659, -0.062008488923311234, -0.00883486494421959, -0.039135731756687164, -0.030430693179368973, -0.021512474864721298, 0.007048109080642462, -0.0119831133633852, 0.037707775831222534, 0.010331611149013042, -0.009113739244639874, 0.014590144157409668, -0.001223442261107266, -0.004295491613447666, -0.003254528855904937, 0.003371855244040489, 0.03480203449726105, 0.0144988177344203, 0.05809422954916954, -0.10906210541725159, 0.0009811888448894024, 0.03152164816856384, -0.02559487894177437, 0.04901515319943428, 0.015037154778838158, -0.03858770802617073, 0.005064487922936678, 0.023845747113227844, -0.010596946813166142, -0.065897136926651, -0.0016646513249725103, -0.011365920305252075, -0.0021354765631258488, 0.06536294519901276, 0.055721916258335114, -0.06267072260379791, -0.07577676326036453, -0.029431095346808434, -0.3628557026386261, -0.04451256990432739, 0.0070814830251038074, 0.013136432506144047, 0.010143325664103031, -0.06481435149908066, -0.013309884816408157, -0.0516708642244339, -0.03158602491021156, 0.020543783903121948, 0.10322831571102142, 0.0014113220386207104, 0.02874661237001419, -0.08786562830209732, 0.031924303621053696, 0.03816724568605423, -0.005981245078146458, -0.01515211258083582, -0.06451009958982468, 0.030401600524783134, -0.013790789991617203, -0.043708402663469315, -0.004253649152815342, -0.04112309217453003, -0.006210549268871546, -0.027026476338505745, 0.12355540692806244, -0.0225325096398592, 0.038823287934064865, -0.04105713590979576, 0.033266838639974594, 0.04238194599747658, -0.0434051938354969, -0.06994947791099548, -0.03358213230967522, -0.005358068272471428, -0.0005044284043833613, 0.03308360278606415, 0.04113643243908882, -0.022745691239833832, -0.0018898665439337492, 0.03331102803349495, -0.05799141898751259, -0.038921356201171875, -0.026025928556919098, 0.004386936314404011, -0.030483808368444443, -0.02942744456231594, 0.017242582514882088, 0.07026077061891556, -0.010153867304325104, 0.07148395478725433, 0.010484603233635426, -0.006361320614814758, -0.041452791541814804, -0.0220533087849617, -0.0774809718132019, 0.018778156489133835, 0.020876962691545486, 0.0007335739792324603, 0.003699581604450941, 0.04026708006858826, 0.021314850077033043, -0.06063050404191017, -0.011052053421735764, -0.012935304082930088, 0.007742516230791807, 0.012433920986950397, 0.0533125102519989, -0.009635131806135178, 0.02033042162656784, 0.12421748042106628, -0.015594800002872944, 0.025682471692562103, 0.03909894451498985, 0.043721213936805725, -0.017176104709506035, 0.035161711275577545, 0.055573031306266785, -0.016245244070887566, 0.010233752429485321, -0.0031232747714966536, 0.05478788539767265, -0.025434602051973343, -0.026815786957740784, 0.03660913184285164, -0.027945153415203094, -0.018583150580525398, 0.028600532561540604, 0.029421750456094742, -0.0023577921092510223, -0.007814014330506325, -0.005040207877755165, -0.01016946416348219, 0.10069819539785385, 0.03503566235303879, -0.2292681187391281, 0.03445342183113098, 0.05123613774776459, 0.0414227694272995, 0.005090325139462948, -0.012942182831466198, 0.050610773265361786, -0.03357493877410889, 0.031414490193128586, 0.006941191386431456, 0.024800846353173256, 0.02952413260936737, 0.013553207740187645, -0.03919171541929245, 0.023523978888988495, -0.014863984659314156, 0.09313979744911194, -0.008685413748025894, -0.008298752829432487, -0.03978000581264496, 0.036177970468997955, -0.01721741072833538, 0.15719062089920044, 0.04816051572561264, -0.001869833911769092, 0.011896044947206974, -0.03457207977771759, 0.03566572815179825, 0.015748007223010063, -0.007501122076064348, -0.021340681239962578, 0.03649177774786949, 0.009907986968755722, -0.00879797711968422, 0.01785704866051674, -0.01938559114933014, -0.03380105271935463, 0.03328897804021835, 0.015374532900750637, -0.018638713285326958, -0.0221048966050148, 0.008362466469407082, -0.07463137805461884, -0.005622787866741419, 0.08082963526248932, -0.05768093466758728, 0.002284281887114048, -0.07530855387449265, -0.017906924709677696, 0.039810117334127426, -0.04599079117178917, -0.03688712790608406, -0.011080209165811539, -0.02359817922115326, 0.026927603408694267, 0.0753350481390953, 0.019396429881453514, -0.023880816996097565, -0.006036389619112015, 0.0020878836512565613, 0.00028342014411464334, -0.029225030913949013, 0.11616146564483643, 0.028784265741705894, 0.00034315750235691667 ]
[ 0.009305973537266254, 0.05736386030912399, -0.014492271468043327, 0.000041771050746319816, 0.011245762929320335, -0.03977879509329796, -0.024633245542645454, 0.03713776171207428, -0.030534498393535614, -0.014442072249948978, -0.007083319127559662, 0.015428523533046246, 0.015981275588274002, 0.019730661064386368, 0.012115975841879845, 0.009748567827045918, -0.005400218069553375, 0.0016970107099041343, 0.044928841292858124, -0.056972816586494446, -0.02654535137116909, 0.03169890120625496, 0.00900173932313919, -0.006761222146451473, -0.01591886207461357, 0.02493530698120594, -0.06821903586387634, 0.019623106345534325, 0.015192425809800625, -0.11927743256092072, -0.01303540077060461, -0.013775724917650223, 0.007505305111408234, 0.013396994210779667, 0.012563548982143402, 0.024942245334386826, 0.017909321933984756, -0.012944185175001621, 0.01966359093785286, 0.041607312858104706, 0.023460227996110916, 0.049154914915561676, -0.020247552543878555, -0.025178834795951843, -0.01336759701371193, -0.02175474353134632, -0.0385577492415905, -0.00035960861714556813, 0.007885659113526344, -0.008682278916239738, -0.04275655373930931, 0.01206383015960455, -0.033404722809791565, -0.022522717714309692, 0.00948228407651186, 0.0053666727617383, 0.023381410166621208, -0.037740934640169144, -0.0021593328565359116, -0.013563504442572594, 0.007792212534695864, -0.003157000057399273, -0.0491156280040741, -0.02823445573449135, -0.027521952986717224, 0.004536014050245285, -0.006965620908886194, 0.011520713567733765, 0.03661205247044563, 0.00788283720612526, -0.0289573073387146, 0.02214103192090988, -0.06490304321050644, -0.04182366654276848, -0.016946488991379738, 0.019486654549837112, 0.03537387400865555, -0.01701071858406067, -0.02788432128727436, -0.0005787382833659649, -0.03906036540865898, 0.0322689525783062, -0.020772041752934456, -0.013576613739132881, -0.04243652895092964, 0.008686551824212074, -0.003456548787653446, -0.011517029255628586, 0.020944694057106972, 0.010178230702877045, -0.008591070771217346, -0.030495602637529373, 0.007667191326618195, 0.018940966576337814, -0.08872149139642715, 0.011079213581979275, 0.04609772562980652, -0.031236017122864723, -0.013398319482803345, 0.825613260269165, -0.028600674122571945, -0.017639201134443283, 0.04179706424474716, -0.007690640166401863, 0.013312896713614464, 0.024726051837205887, -0.010839522816240788, -0.023903056979179382, 0.029486004263162613, -0.014164355583488941, -0.0018540607998147607, -0.0009537226869724691, 0.03180279582738876, 0.029955562204122543, 0.02043067291378975, 0.02092936635017395, 0.0002639778540469706, -0.0028654588386416435, 0.011906483210623264, 0.02873876690864563, 0.023282857611775398, 0.018737157806754112, 0.019502192735671997, 0.0007280475692823529, 0.010458589531481266, -0.1765012890100479, -0.011559838429093361, -7.026692336824908e-33, 0.0458768829703331, -0.029774777591228485, 0.05944808945059776, 0.02516932040452957, 0.03407399728894234, 0.012034177780151367, -0.013562193140387535, 0.004036758095026016, -0.01669730432331562, -0.027257638052105904, -0.0353265143930912, -0.004582647699862719, 0.004215681459754705, 0.01472419686615467, -0.0019526422256603837, -0.01872696727514267, 0.005256013013422489, 0.042128413915634155, 0.009404731914401054, 0.03415029123425484, 0.01345191989094019, 0.021915525197982788, 0.002968491055071354, 0.0443340428173542, 0.027966680005192757, 0.01564684510231018, 0.024857250973582268, 0.008010415360331535, 0.013657636940479279, -0.04691047593951225, -0.03888554498553276, 0.032297637313604355, -0.0013488224940374494, -0.03630801662802696, 0.006491527892649174, -0.04182102158665657, -0.05190456286072731, -0.009460197761654854, 0.002361686434596777, -0.05144776403903961, -0.03543907403945923, 0.03107387386262417, -0.02073548175394535, -0.027010854333639145, -0.029443051666021347, -0.023428313434123993, -0.003007127670571208, 0.028308436274528503, -0.01303371787071228, 0.016371047124266624, 0.02225116826593876, 0.017973242327570915, 0.011035769246518612, 0.007665335200726986, -0.027138201519846916, -0.009789209812879562, 0.02209264226257801, 0.017984703183174133, 0.01921616680920124, -0.009389781393110752, 0.06826722621917725, -0.0014781496720388532, 0.00041607761522755027, 0.023260431364178658, 0.04258756339550018, -0.0020053053740411997, 0.00381423975341022, 0.02627190202474594, 0.025242574512958527, 0.030934017151594162, -0.05156121402978897, 0.018185297027230263, -0.02377018891274929, -0.0412621907889843, 0.04655954986810684, -0.028916075825691223, -0.013708679005503654, -0.028472650796175003, -0.013572598807513714, 0.03552156686782837, -0.013506298884749413, -0.023629358038306236, 0.021906936541199684, -0.05852848291397095, -0.002778260735794902, -0.015859289094805717, 0.04152235761284828, 0.02023094706237316, 0.028626123443245888, 0.024613166227936745, 0.003013335168361664, 0.011514479294419289, -0.024737831205129623, -0.01590271107852459, -0.019723258912563324, 6.917189160574058e-33, -0.019246945157647133, 0.01178002543747425, 0.005514899268746376, 0.01280880719423294, 0.007520182523876429, -0.037187375128269196, 0.0007046675309538841, 0.0014275740832090378, -0.023763615638017654, 0.057677339762449265, -0.02988087758421898, 0.003910006023943424, -0.0012324315030127764, 0.02044183574616909, 0.07440066337585449, 0.02880082279443741, -0.011692659929394722, -0.01541051547974348, -0.0013632429763674736, -0.0008007183205336332, -0.02276577800512314, 0.010299790650606155, -0.0004748177307192236, -0.009349999018013477, 0.03914233297109604, 0.016759388148784637, -0.011106709949672222, 0.0013426616787910461, -0.0037246765568852425, -0.017073621973395348, -0.025618169456720352, -0.012779108248651028, -0.0072011337615549564, -0.021855968981981277, -0.01555222924798727, 0.013807395473122597, -0.02349877916276455, -0.02120501548051834, 0.051579784601926804, 0.00620932737365365, 0.02129974029958248, 0.03257923573255539, -0.028917603194713593, 0.01718354970216751, -0.004495817702263594, 0.02594248577952385, 0.009288594126701355, 0.02322322130203247, -0.0015653392765671015, 0.008064954541623592, -0.009050036780536175, 0.032699160277843475, 0.02624419331550598, 0.003000543685629964, 0.027438422664999962, -0.040996402502059937, 0.0016741588478907943, 0.07559941709041595, -0.031786803156137466, -0.03736972436308861, -0.044939443469047546, -0.02339155040681362, -0.023378094658255577, -0.012785620987415314, -0.06032271683216095, -0.015916738659143448, -0.04580778256058693, -0.03355134651064873, 0.011419304646551609, -0.022869452834129333, 0.026268966495990753, 0.005609674379229546, -0.007564081810414791, 0.012986107729375362, 0.016054227948188782, -0.0015068710781633854, -0.028701970353722572, 0.006318903062492609, -0.035054486244916916, 0.010676486417651176, -0.006683859042823315, 0.0218065083026886, 0.016945458948612213, 0.02795778214931488, 0.00916269887238741, -0.003110649297013879, -0.029793675988912582, -0.00601132120937109, 0.01752937212586403, 0.016722530126571655, 0.02384442277252674, -0.03867422044277191, -0.01788679137825966, 0.04577243700623512, 0.030488930642604828, -1.261917592643158e-8, -0.018054835498332977, 0.012322560884058475, -0.005077332723885775, 0.041704870760440826, 0.030866578221321106, 0.02247525379061699, 0.03363364562392235, 0.03669418394565582, -0.021139755845069885, 0.016819030046463013, 0.0571465902030468, -0.010830831713974476, -0.012740803882479668, 0.013783497735857964, 0.013958708383142948, 0.0010399393504485488, -0.008629529736936092, -0.0271353330463171, 0.019436776638031006, 0.016239644959568977, -0.00010768956417450681, 0.02415287308394909, -0.028527306392788887, 0.04054933786392212, -0.02742413803935051, -0.03396528959274292, 0.0380297526717186, -0.10384607315063477, -0.008239611983299255, -0.014247305691242218, 0.0017625618493184447, -0.04328760504722595, -0.047068748623132706, -0.00982111506164074, -0.01384859997779131, -0.052666228264570236, -0.011036477982997894, 0.034393951296806335, 0.03587453439831734, 0.02487288787961006, 0.006947133224457502, -0.012130321934819221, -0.03621888905763626, -0.039463914930820465, -0.026880428194999695, -0.006706897635012865, -0.04734214395284653, 0.024516353383660316, 0.0012492260430008173, -0.005048935301601887, 0.01683754287660122, 0.0023808558471500874, 0.005484058987349272, 0.01659143902361393, 0.02665431797504425, 0.013447570614516735, 0.007266365457326174, -0.049102675169706345, -0.03365817666053772, -0.017069051042199135, 0.03353986144065857, 0.026680776849389076, 0.013467581942677498, -0.033877164125442505 ]
quick-graph-python-dependency-graph
https://markhneedham.com/blog/2018/07/16/quick-graph-python-dependency-graph
false
2018-07-10 04:21:00
Neo4j 3.4: Grouping Datetimes
[ "neo4j", "cypher", "strava" ]
[ "Neo4j" ]
In my continued link:/blog/2018/06/12/neo4j-building-strava-graph/[analysis of Strava runs^] I wanted to try and find my best runs grouped by different time components, which was actually much easier than I was expecting. == Importing the dataset If you want to try out the examples below you can execute the following `LOAD CSV` commands to load the data: [source,cypher] ---- LOAD CSV WITH HEADERS FROM "https://github.com/mneedham/strava/raw/master/runs.csv" AS row MERGE (run:Run {id: toInteger(row.id)}) SET run.distance = toFloat(row.distance), run.movingTime = duration(row.movingTime), run.elapsedTime = duration(row.elapsedTime), run.startDate = datetime(row.startDate), run.averageSpeed = toFloat(run.averageSpeed), run.totalElevationGain = toInteger(run.totalElevationGain) ---- [source,cypher] ---- LOAD CSV WITH HEADERS FROM "https://github.com/mneedham/strava/raw/master/efforts.csv" AS row MATCH (run:Run {id: toInteger(row.runId)}) MERGE (effort:Effort {id: toInteger(row.effortId)}) SET effort.movingTime = duration(row.movingTime), effort.elapsedTime = duration(row.elapsedTime) MERGE (distance:Distance {name: row.name}) SET distance.distance = toFloat(row.distance) MERGE (distance)<-[:DISTANCE]-(effort) MERGE (effort)<-[:DISTANCE_EFFORT]-(run) ---- == Finding best segment efforts I want to find the best efforts at running 10km. We can write the following query to find the most recent attempts: [source,cypher] ---- MATCH (distance:Distance {name: "10k"})<-[:DISTANCE]-(effort)<-[:DISTANCE_EFFORT]-(run) WITH effort { .elapsedTime, pace: duration({seconds: effort.elapsedTime.seconds / distance.distance * 1000 }), startDate: run.startDate } RETURN apoc.date.format(effort.startDate.epochSeconds, 's', 'MMM d yyyy') AS dateOfRun, apoc.date.format(effort.elapsedTime.milliseconds, 'ms', 'mm:ss') AS time, apoc.date.format(effort.pace.milliseconds, "ms", "mm:ss") AS pace ORDER BY effort.startDate DESC LIMIT 10 ---- We're using the https://neo4j-contrib.github.io/neo4j-apoc-procedures/[APOC library^] to format the results a bit more cleanly. If we run that query we'll see the following output: [source,text] ---- +-----------------------------------+ | dateOfRun | time | pace | +-----------------------------------+ | "Jul 7 2018" | "46:07" | "04:36" | | "Jul 6 2018" | "46:10" | "04:37" | | "Jul 4 2018" | "45:53" | "04:35" | | "Jul 2 2018" | "46:34" | "04:39" | | "Jun 30 2018" | "49:13" | "04:55" | | "Jun 29 2018" | "48:02" | "04:48" | | "Jun 27 2018" | "44:48" | "04:28" | | "Jun 25 2018" | "45:24" | "04:32" | | "Jun 23 2018" | "46:00" | "04:36" | | "Jun 22 2018" | "45:15" | "04:31" | +-----------------------------------+ ---- We could tweak that query to filter and sort the results in different ways, but what if I want to find my quickest 10km effort per month or per quarter? == `date.truncate` We can use the https://neo4j.com/docs/developer-manual/current/cypher/functions/temporal/#functions-temporal-truncate-overview[`date.truncate`^] function to do this. For example, the following query will find the month for today's date: [source,cypher] ---- RETURN date.truncate("month", datetime()) AS value ---- [source,text] ---- +------------+ | value | +------------+ | 2018-07-01 | +------------+ ---- == Group by month Let's update our query to fastest 10km effort per month. The following query will calculate this: [source,cypher] ---- MATCH (distance:Distance {name: "10k"})<-[:DISTANCE]-(effort)<-[:DISTANCE_EFFORT]-(run) WITH effort { .elapsedTime, pace: duration({seconds: effort.elapsedTime.seconds / distance.distance * 1000 }), startDate: run.startDate } WITH date.truncate("month", effort.startDate) AS month, effort ORDER BY effort.pace WITH month, collect(effort)[0] AS effort RETURN month, apoc.date.format(effort.startDate.epochSeconds, 's', 'MMM d yyyy') AS dateOfRun, apoc.date.format(effort.elapsedTime.milliseconds, 'ms', 'mm:ss') AS time, apoc.date.format(effort.pace.milliseconds, "ms", "mm:ss") AS pace ORDER BY month ---- The three lines in the middle of the query do most of the work: [source, cypher] ---- WITH date.truncate("month", effort.startDate) AS month, effort ORDER BY effort.pace WITH month, collect(effort)[0] AS effort ---- We truncate the `startDate` of the effort to pull out the month and then sort the efforts by `pace`. The lower the pace the quicker the effort. We then use the `collect` function to take all our efforts and put them into an array grouped by `month`. Finally we take the first one in that collection, which will be the fastest one! This is the output from running that query: [source,text] ---- +------------------------------------------------+ | month | dateOfRun | time | pace | +------------------------------------------------+ | 2016-01-01 | "Jan 10 2016" | "54:08" | "05:24" | | 2017-01-01 | "Jan 22 2017" | "52:50" | "05:17" | | 2017-12-01 | "Dec 29 2017" | "47:49" | "04:46" | | 2018-01-01 | "Jan 27 2018" | "46:17" | "04:37" | | 2018-02-01 | "Feb 3 2018" | "46:48" | "04:40" | | 2018-03-01 | "Mar 17 2018" | "46:13" | "04:37" | | 2018-05-01 | "May 19 2018" | "45:02" | "04:30" | | 2018-06-01 | "Jun 9 2018" | "44:05" | "04:24" | | 2018-07-01 | "Jul 4 2018" | "45:53" | "04:35" | +------------------------------------------------+ ---- My best run was in June, but I wasn't too far behind in May. There's still some work to do this month - my best effort this month is much slower than the previous two. == Group by quarter We can find the fastest run by quarter as well by changed the first parameter we pass to the `date.truncate` function: [source,cypher] ---- MATCH (distance:Distance {name: "10k"})<-[:DISTANCE]-(effort)<-[:DISTANCE_EFFORT]-(run) WITH effort { .elapsedTime, pace: duration({seconds: effort.elapsedTime.seconds / distance.distance * 1000 }), startDate: run.startDate } WITH date.truncate("quarter", effort.startDate) AS quarter, effort ORDER BY effort.pace WITH quarter, collect(effort)[0] AS effort RETURN "Q" + quarter.quarter + " " + quarter.year AS date, apoc.date.format(effort.startDate.epochSeconds, 's', 'MMM d yyyy') AS dateOfRun, apoc.date.format(effort.elapsedTime.milliseconds, 'ms', 'mm:ss') AS time, apoc.date.format(effort.pace.milliseconds, "ms", "mm:ss") AS pace ORDER BY quarter ---- For this one we do a little bit of extra work so that the quarter date displays in a nicer way: [source,text] ---- +-----------------------------------------------+ | date | dateOfRun | time | pace | +-----------------------------------------------+ | "Q1 2016" | "Jan 10 2016" | "54:08" | "05:24" | | "Q1 2017" | "Jan 22 2017" | "52:50" | "05:17" | | "Q4 2017" | "Dec 29 2017" | "47:49" | "04:46" | | "Q1 2018" | "Mar 17 2018" | "46:13" | "04:37" | | "Q2 2018" | "Jun 9 2018" | "44:05" | "04:24" | | "Q3 2018" | "Jul 4 2018" | "45:53" | "04:35" | +-----------------------------------------------+ ---- I've clearly got a bit of work to do this quarter to match my best effort in Q2 2018! We could continue grouping by different components but this will probably do for now!
Learn how to query a Strava activity graph using Py2neo v4.
null
[ 0.019523058086633682, -0.019025929272174835, -0.01328172255307436, 0.0245667677372694, 0.08720643818378448, 0.014577670954167843, 0.04858993738889694, 0.02542134001851082, 0.019506175071001053, -0.022408142685890198, 0.019219649955630302, -0.030483625829219818, -0.05929708480834961, 0.014447988010942936, -0.00456134183332324, 0.06556867808103561, 0.07302600890398026, -0.007404236122965813, 0.016764257103204727, -0.011901981197297573, 0.013724582269787788, 0.041714612394571304, 0.0031968646217137575, 0.04364350438117981, 0.029044194146990776, -0.013288785703480244, 0.0037504902575165033, -0.00823158212006092, -0.0368524044752121, -0.004373015835881233, 0.060336027294397354, -0.022515442222356796, 0.037885356694459915, 0.0003652929444797337, 0.04076843336224556, -0.00723412586376071, -0.03470420837402344, -0.007078721188008785, -0.01089449692517519, -0.03017226979136467, -0.06444913893938065, 0.015925651416182518, -0.048330385237932205, 0.018166787922382355, -0.022106092423200607, 0.024792497977614403, -0.028285173699259758, 0.02768113650381565, -0.013629629276692867, 0.0051146503537893295, -0.0658671036362648, 0.022314175963401794, -0.006103883497416973, 0.018895059823989868, 0.00046628527343273163, 0.05254482850432396, 0.022201070562005043, -0.07025959342718124, 0.049620918929576874, -0.03736022114753723, 0.010272622108459473, 0.002457268536090851, -0.010276645421981812, 0.022859923541545868, 0.01713111251592636, -0.055189669132232666, 0.013446478173136711, 0.06443527340888977, -0.026348644867539406, -0.010576022788882256, 0.0002214904234278947, 0.015634290874004364, 0.0003084964700974524, 0.021477509289979935, 0.002483836840838194, -0.051850710064172745, 0.01111797895282507, 0.037975527346134186, 0.022196009755134583, 0.026497341692447662, -0.00684163486585021, -0.00572032667696476, 0.01757417991757393, 0.03677869215607643, 0.0043001240119338036, -0.03553390130400658, -0.03444167226552963, -0.042200375348329544, -0.04963670298457146, 0.057035185396671295, 0.010232892818748951, -0.03850206732749939, 0.0038261425215750933, 0.0001600479008629918, -0.0011478480882942677, 0.008366703987121582, 0.004723913036286831, -0.010095072910189629, 0.012069160118699074, -0.03132718801498413, -0.04821506887674332, -0.014556588605046272, -0.0057009439915418625, 0.04832574352622032, -0.08083058148622513, -0.015403703786432743, -0.019562890753149986, -0.02277744747698307, 0.028992503881454468, -0.007155257742851973, -0.04720676690340042, -0.012909448705613613, -0.033874522894620895, 0.017390375956892967, -0.07709560543298721, 0.0714031383395195, 0.01982473023235798, 0.0032563714776188135, -0.031800881028175354, -0.010179859586060047, 0.05460589379072189, 0.03378351777791977, -0.012908436357975006, 0.0629245862364769, -0.010120317339897156, 0.07145696133375168, 0.016810350120067596, 0.028750082477927208, 0.004944337531924248, -0.06537523120641708, -0.03584790602326393, 0.04801482334733009, -0.012668266892433167, 0.014330443926155567, -0.004204684402793646, -0.04036465287208557, -0.029107948765158653, 0.03839902579784393, 0.045309942215681076, 0.025354783982038498, 0.011527793481945992, -0.041302427649497986, 0.04820788651704788, 0.010400970466434956, 0.02393079176545143, 0.018609538674354553, -0.02423098310828209, -0.05554521828889847, -0.028317013755440712, 0.011911140754818916, 0.034196238964796066, 0.026113640516996384, 0.06723109632730484, -0.026233306154608727, 0.013588175177574158, 0.11755567789077759, 0.023559607565402985, 0.011386837810277939, -0.006815385073423386, 0.013043026439845562, 0.048496417701244354, 0.04562646895647049, 0.002352294744923711, 0.04632812365889549, -0.010930546559393406, -0.02261207066476345, -0.0015866837929934263, 0.06117361783981323, -0.029638240113854408, 0.0009224899695254862, -0.03662058338522911, -0.05284341797232628, 0.06859156489372253, -0.05525078624486923, -0.012788900174200535, 0.04765986278653145, 0.06591194868087769, 0.033064596354961395, 0.024450480937957764, -0.010948287323117256, -0.07097328454256058, 0.05258485674858093, 0.013597643002867699, 0.030457980930805206, 0.029420332983136177, 0.007749846670776606, 0.08691420406103134, 0.0036282725632190704, -0.02012690342962742, 0.02339879237115383, -0.07713275402784348, -0.07419026643037796, -0.02242325246334076, -0.02326231636106968, 0.057530440390110016, -0.029757460579276085, 0.010648712515830994, 0.041618816554546356, -0.008471189998090267, 0.03682556748390198, 0.023504333570599556, -0.005743243265897036, 0.03242442011833191, -0.05266201123595238, -0.05783206596970558, 0.05784709379076958, 0.02897563949227333, -0.044933147728443146, -0.03628193587064743, 0.00937676802277565, -0.03414884954690933, 0.01805528812110424, 0.0034913637209683657, -0.03451935201883316, 0.04983392730355263, 0.02766447514295578, 0.025569425895810127, 0.01946048066020012, 0.026774950325489044, -0.024999363347887993, 0.0261699166148901, -0.0040643648244440556, -0.022173697128891945, -0.004381566774100065, -0.02471296302974224, 0.09422491490840912, 0.04692818596959114, -0.003642780939117074, -0.05345800891518593, 0.023269766941666603, 0.0129312202334404, -0.018547115847468376, 0.01342831552028656, -0.02107212133705616, 0.0006768179591745138, -0.016558151692152023, -0.03237106651067734, -0.0314662829041481, -0.0027690373826771975, -0.031769223511219025, 0.013076011091470718, 0.047853171825408936, -0.019016558304429054, 0.08058258146047592, 0.006546543445438147, -0.027134718373417854, -0.0037765875458717346, -0.024653496220707893, -0.07696975767612457, 0.0123466020449996, 0.009617148898541927, -0.007155506871640682, 0.058354783803224564, -0.0007677226676605642, -0.012034815736114979, -0.03040117397904396, -0.03488266095519066, 0.02182796224951744, 0.08405870199203491, 0.05935750529170036, 0.009994398802518845, 0.06601787358522415, -0.029253676533699036, 0.013586040586233139, -0.024834278970956802, -0.0555737242102623, -0.08809579908847809, -0.04525245726108551, 0.038587503135204315, -0.0021699811331927776, 0.024590136483311653, -0.017388073727488518, 0.02570810355246067, -0.018809668719768524, 0.0030019301921129227, -0.01680583693087101, 0.05182313546538353, -0.004515707492828369, -0.013576111756265163, -0.01447923481464386, -0.032210998237133026, 0.06455680727958679, -0.04237949475646019, -0.02535027079284191, 0.013181471265852451, -0.054976560175418854, 0.06097346171736717, -0.03777977079153061, -0.00829368643462658, 0.016449108719825745, 0.023973634466528893, 0.07350246608257294, 0.016891833394765854, -0.004633340053260326, 0.08949196338653564, 0.021485092118382454, 0.020515771582722664, 0.009755280800163746, -0.009030481800436974, 0.04597220942378044, -0.0055509223602712154, 0.03074834682047367, 0.04587667062878609, -0.027340905740857124, -0.022807251662015915, -0.04141829162836075, -0.019661085680127144, -0.02729518711566925, -0.2662038505077362, 0.044833678752183914, -0.04597538337111473, -0.03627471253275871, 0.006180981174111366, -0.029070021584630013, 0.004118543118238449, -0.017376616597175598, -0.04306018352508545, -0.0015339668607339263, -0.009875976480543613, -0.03643987700343132, -0.017365237697958946, 0.03212520107626915, 0.013579104095697403, 0.02166203409433365, -0.005063353106379509, -0.07429195940494537, -0.0007157642394304276, 0.05435384809970856, 0.024601232260465622, -0.03651067987084389, -0.0013547714333981276, 0.009185126051306725, 0.02577635459601879, 0.05012860149145126, -0.0884382352232933, 0.03529997542500496, -0.06696470826864243, -0.03182758763432503, 0.016210999339818954, -0.020616719499230385, 0.01037488505244255, -0.012887655757367611, -0.0019721349235624075, -0.04911316558718681, 0.047230422496795654, 0.006836571730673313, 0.022314850240945816, 0.007875505834817886, -0.03730271756649017, -0.03408031165599823, -0.010859313420951366, -0.02351401187479496, 0.08154665678739548, -0.0026679777074605227, -0.05587039515376091, 0.013570890761911869, -0.012545876204967499, 0.08146759867668152, -0.03306518495082855, -0.029248662292957306, -0.023882627487182617, 0.03864510729908943, -0.03391825035214424, -0.05640658736228943, -0.00281296344473958, -0.009821809828281403, -0.02717355266213417, -0.011874662712216377, -0.02016834169626236, -0.04947948083281517, 0.02934171073138714, -0.08418566733598709, -0.03647498041391373, -0.04490373283624649, -0.07417456060647964, -0.033549994230270386, 0.041847530752420425, 0.027105117216706276, -0.03092999942600727, 0.03203173354268074, -0.014079123735427856, -0.10254030674695969, -0.03626612573862076, -0.033015426248311996, 0.017248384654521942, -0.018518229946494102, -0.019213015213608742, 0.062088120728731155, -0.0620659738779068, -0.08450949937105179, 0.015754953026771545, 0.011941119097173214, 0.03209122270345688, -0.011540225706994534, -0.0011838116915896535, -0.024482963606715202, -0.029568351805210114, 0.005126883275806904, 0.06910953670740128, -0.01628441922366619, -0.02196129970252514, 0.0010966190602630377, -0.034644629806280136, 0.030078725889325142, 0.00008777901530265808, -0.00922536663711071, 0.018939794972538948, 0.040276724845170975, 0.03751318156719208, -0.0392172746360302, -0.0052686878480017185, -0.04867393523454666, -0.011394783854484558, -0.03137798607349396, -0.0575779564678669, 0.023086119443178177, 0.030234290286898613, 0.02473321557044983, 0.02435854636132717, -0.03137243911623955, 0.018885750323534012, -0.051920853555202484, -0.008799372240900993, -0.014235097914934158, 0.020048758015036583, 0.025142734870314598, 0.047913432121276855, 0.012740452773869038, -0.06512002646923065, 0.03435397893190384, -0.0017106853192672133, -0.019204918295145035, -0.06880681216716766, -0.011920236982405186, -0.022079387679696083, -0.016586149111390114, -0.002563385758548975, 0.02318951115012169, -0.047910552471876144, 0.017778145149350166, 0.03475299850106239, -0.036195918917655945, 0.022822806611657143, -0.044171955436468124, -0.043241702020168304, -0.028801586478948593, 0.011660422198474407, -0.014422924257814884, -0.021871615201234818, -0.005893981084227562, 0.0028723387513309717, 0.04894164949655533, 0.037338536232709885, 0.022159917280077934, 0.02442437782883644, -0.006511810701340437, 0.008567222394049168, -0.018745530396699905, -0.009126752614974976, -0.015596519224345684, 0.0005505078588612378, -0.022047778591513634, -0.014330253936350346, -0.012289959006011486, 0.03226025402545929, -0.008640717715024948, -0.022643152624368668, -0.02973376028239727, 0.0207463800907135, -0.05668787285685539, 0.0022850045934319496, -0.01887308619916439, 0.004181564319878817, 0.06099668890237808, -0.018645284697413445, 0.0006989394896663725, -0.016343798488378525, -0.028533289209008217, -0.001412328565493226, -0.02052081562578678, -0.03238195553421974, -0.0014977608807384968, -0.01967647857964039, 0.01917821727693081, 0.0279140193015337, 0.041795916855335236, 0.013622512109577656, 0.003762986045330763, -0.01520522590726614, -0.00020688501535914838, 0.0188385471701622, -0.0007239254773594439, 0.013391786254942417, 0.05640316382050514, -0.009594264440238476, -0.0026116392109543085, 0.009346997365355492, 0.0052687665447592735, -0.0028671056497842073, -0.014634964987635612, -0.02705451473593712, -0.01395830512046814, -0.01717057265341282, -0.05120735242962837, 0.022688517346978188, 0.01079636998474598, 0.0036691478453576565, 0.023608310148119926, 0.003274171380326152, -0.011464805342257023, -0.017419615760445595, 0.027546148747205734, 0.05573122948408127, -0.041963521391153336, 0.008765275590121746, 0.025396214798092842, -0.0019637877121567726, 0.00169955228921026, 0.009030628018081188, -0.06098560616374016, -0.029850095510482788, -0.0065078758634626865, 0.022021476179361343, -0.029147563502192497, -0.045371659100055695, -0.033836811780929565, -0.008625558577477932, -0.003455432364717126, 0.015777703374624252, 0.024068821221590042, -0.019768105819821358, -0.022545749321579933, -0.004831102676689625, 0.03216392174363136, 0.0009517531143501401, -0.03536381945014, 0.0443086251616478, -0.01255082804709673, -0.024520713835954666, -0.02900867350399494, 0.051302216947078705, 0.018337825313210487, -0.00922133307904005, -0.0012362118577584624, -0.03807779401540756, -0.0005618633003905416, -0.010606787167489529, 0.0333663709461689, 0.009700937196612358, 0.008342217653989792, -0.01441646832972765, 0.004229978658258915, 0.00965150911360979, -0.002157388487830758, 0.008793908171355724, -0.004634687677025795, 0.005358907859772444, 0.04222213104367256, 0.02229539304971695, 0.020194193348288536, -0.014398983679711819, -0.06217483431100845, 0.06336304545402527, -0.03895045071840286, -0.06354864686727524, -0.02289131097495556, -0.020272186025977135, 0.002810892416164279, 0.011034185998141766, 0.005842883139848709, -0.057939160615205765, 0.05875253304839134, 0.03263054043054581, 0.03958749398589134, 0.06550699472427368, -0.017683694139122963, 0.02493276819586754, -0.023902542889118195, -0.017336133867502213, -0.08729422092437744, -0.0072461823001503944, 0.04349103569984436, -0.0006761248805560172, 0.0026676903944462538, 0.0034340231213718653, -0.009748630225658417, 0.026999173685908318, -0.056613739579916, -0.031300146132707596, 0.03622708469629288, -0.027126586064696312, 0.025258949026465416, 0.015330086462199688, -0.0592426098883152, 0.015201680362224579, 0.06336017698049545, -0.02741340920329094, -0.0060286386869847775, -0.028338581323623657, 0.05044715106487274, -0.03541461378335953, 0.04777737334370613, -0.024562301114201546, -0.043433934450149536, 0.07030867040157318, 0.022357653826475143, 0.01575755886733532, 0.038111455738544464, -0.034218449145555496, 0.026265963912010193, 0.044713616371154785, -0.03500078245997429, -0.03917403891682625, 0.023470675572752953, -0.007622822653502226, -0.048499222844839096, 0.047248486429452896, 0.03523872420191765, 0.010607821866869926, -0.056689586490392685, 0.07198788970708847, 0.018969383090734482, -0.0511481948196888, -0.04200185835361481, 0.03645969182252884, -0.03019315004348755, -0.007192863617092371, -0.013474369421601295, 0.007069096434861422, -0.04055609926581383, 0.03986021503806114, -0.025930164381861687, 0.0018592444248497486, 0.0745728462934494, -0.015282663516700268, -0.015098202042281628, 0.027587199583649635, 0.08346930146217346, 0.07847926020622253, 0.030316410586237907, -0.0030621092300862074, 0.0678848922252655, -0.010220825672149658, -0.03891366347670555, 0.0024637943133711815, -0.04691299796104431, -0.024088788777589798, -0.013037165626883507, 0.014396061189472675, 0.052961695939302444, -0.01041171420365572, 0.08215982466936111, -0.02788657136261463, -0.008451777510344982, -0.008568670600652695, -0.014878346584737301, 0.030031420290470123, 0.03615443781018257, 0.013734527863562107, 0.05734344944357872, -0.029481276869773865, -0.017829693853855133, 0.008657706901431084, 0.011798684485256672, 0.0023457612842321396, 0.04474584385752678, -0.014028169214725494, -0.012291502207517624, 0.022083859890699387, 0.014100280590355396, 0.07586220651865005, -0.04022274166345596, 0.004364535212516785, -0.016073336824774742, 0.03992165997624397, -0.021915754303336143, 0.01265780720859766, 0.004544341471046209, -0.03124893642961979, -0.00588873540982604, -0.044834770262241364, -0.03271009027957916, 0.001661048736423254, -0.029469089582562447, 0.012890464626252651, -0.015586184337735176, 0.01753091812133789, 0.011502033099532127, -0.04093332961201668, -0.040476247668266296, -0.05268761143088341, -0.04222330451011658, -0.05997782200574875, -0.0774182602763176, -0.008859345689415932, 0.004969066474586725, -0.00396826583892107, -0.01150694489479065, -0.004688854794949293, -0.005093595013022423, -0.018168725073337555, 0.03235476836562157, -0.04588581621646881, -0.01646924763917923, 0.011521497741341591, 0.024442195892333984, 0.021961478516459465, 0.01927974447607994, 0.055933646857738495, -0.010484605096280575, 0.0063780429773032665, -0.006680899299681187, 0.0015203201910480857, 0.06471245735883713, 0.012678034603595734, -0.003974855877459049, -0.06600175052881241, 0.01866360753774643, 0.007252344395965338, -0.02048299089074135, -0.0951695591211319, 0.021174153313040733, 0.06751004606485367, 0.027665987610816956, 0.052774447947740555, -0.02068977616727352, -0.024254143238067627, -0.03958197310566902, -0.00882328487932682, 0.00458403630182147, 0.01248468179255724, 0.04665033891797066, -0.022477781400084496, 0.056458570063114166, 0.04094695672392845, -0.02003435231745243, -0.03613804280757904, -0.03656887635588646, -0.015313221141695976, -0.0010513406014069915, -0.031648267060518265, -0.027445679530501366, -0.05654245987534523, -0.08718961477279663, -0.02468225173652172, 0.012384166941046715, -0.022458020597696304, -0.026621432974934578, 0.02332324907183647, 0.02127048932015896, -0.013828392140567303, 0.027590978890657425, -0.016951611265540123, 0.03927294909954071, -0.031706634908914566, -0.014097871258854866, -0.021542735397815704, 0.022776847705245018, -0.002891826443374157, 0.008557724766433239, 0.019678283482789993, -0.05936037749052048, 0.008407090790569782, -0.009489653632044792, 0.032744619995355606, 0.05614324286580086, -0.0011126361787319183, 0.02898799628019333 ]
[ -0.062088362872600555, -0.042739562690258026, -0.0167143065482378, 0.007148172706365585, 0.0837477445602417, -0.014736557379364967, -0.054362211376428604, 0.017236799001693726, 0.03590835630893707, 0.011912185698747635, 0.033812906593084335, -0.051772214472293854, -0.04312964528799057, 0.02085653878748417, 0.017792029306292534, -0.03577128425240517, -0.02769494242966175, -0.01671041175723076, -0.014138780534267426, 0.054895833134651184, -0.0586341992020607, -0.025317780673503876, 0.018362924456596375, -0.05940733850002289, 0.0390009731054306, 0.0408630333840847, 0.022590750828385353, -0.062384795397520065, -0.0436067208647728, -0.23052945733070374, -0.011321309953927994, 0.011497268453240395, 0.025069870054721832, 0.00951989833265543, 0.0022353630047291517, 0.04316402226686478, 0.020724670961499214, -0.0021015808451920748, -0.010789426974952221, 0.039123281836509705, 0.01118288841098547, 0.055025991052389145, -0.07367485016584396, 0.011651784181594849, 0.004891269374638796, 0.01332422997802496, -0.03253278136253357, -0.00588363828137517, 0.011600096710026264, 0.030514247715473175, 0.0013317515840753913, -0.011612292379140854, 0.010769356973469257, 0.0060405433177948, 0.006177982315421104, 0.023096134886145592, 0.0780707523226738, 0.03687052056193352, 0.02638576552271843, -0.020000053569674492, -0.017379580065608025, 0.0024828598834574223, -0.14354602992534637, 0.04481018707156181, 0.022958606481552124, -0.018507661297917366, -0.0042525096796453, 0.005186447873711586, -0.0498170368373394, 0.07624205201864243, -0.024482054635882378, 0.03608812019228935, -0.010051474906504154, 0.07107291370630264, 0.019796114414930344, 0.03011537715792656, -0.030142314732074738, -0.00023424634127877653, 0.026424717158079147, -0.027181211858987808, -0.032657139003276825, 0.02882377989590168, -0.051605235785245895, 0.001766932662576437, 0.0036051396746188402, 0.03841689974069595, -0.00712244538590312, 0.061114776879549026, 0.062045078724622726, 0.060743555426597595, 0.01798604056239128, 0.01923617348074913, 0.033102866262197495, 0.029662875458598137, -0.0862412378191948, -0.05511791259050369, 0.022281840443611145, 0.0031999126076698303, 0.03962905704975128, 0.3900889456272125, -0.017957424744963646, 0.029726224020123482, -0.002161873271688819, 0.04219479113817215, -0.0018707908457145095, -0.037354204803705215, 0.009008655324578285, -0.043730784207582474, 0.03420441225171089, -0.003923737909644842, 0.05811905488371849, -0.008717676624655724, 0.023550238460302353, -0.10346834361553192, -0.008776525035500526, 0.018097732216119766, 0.031010620296001434, 0.01038250420242548, -0.044351499527692795, -0.0037771505303680897, -0.014624017290771008, -0.018605386838316917, 0.05157739669084549, -0.035593535751104355, 0.011299791745841503, -0.01797313801944256, 0.031442444771528244, 0.04566376656293869, 0.05307617038488388, 0.01870405487716198, 0.07990488409996033, 0.009553260169923306, -0.10039383918046951, 0.021126914769411087, -0.0003061732277274132, 0.0035165329463779926, 0.02773130126297474, -0.048496540635824203, -0.03393037989735603, 0.01407223753631115, -0.007464885246008635, -0.02865099161863327, 0.09216700494289398, -0.050374217331409454, -0.04781460762023926, 0.1550220400094986, -0.028881866484880447, -0.029227500781416893, -0.004507194273173809, -0.09336449950933456, 0.002382745733484626, 0.004945863503962755, 0.004509535618126392, -0.06712255626916885, 0.0032957447692751884, 0.010850094258785248, 0.07172010838985443, -0.005585613660514355, -0.10023362934589386, -0.01087148953229189, -0.047602176666259766, -0.018510637804865837, -0.02955317124724388, 0.07167890667915344, 0.06734190136194229, -0.11736146360635757, -0.012171219103038311, 0.016186272725462914, 0.009709066711366177, -0.05916309729218483, 0.009499544277787209, -0.008372449316084385, -0.0368785597383976, 0.0046075088903307915, 0.081554114818573, 0.003844618331640959, -0.03616621345281601, 0.0098469452932477, 0.057553332298994064, 0.058582086116075516, 0.026237498968839645, 0.01898045279085636, -0.009419077076017857, 0.010145051404833794, -0.03349287435412407, -0.017022503539919853, -0.04528140276670456, 0.026030147448182106, -0.015242358669638634, -0.01195600163191557, -0.015521115623414516, -0.04297315329313278, -0.026145147159695625, 0.07061794400215149, -0.0403008759021759, -0.025681212544441223, -0.01245279423892498, 0.005508098751306534, -0.0016709809424355626, -0.042186953127384186, 0.008051127195358276, -0.011999179609119892, 0.016517693176865578, 0.018918246030807495, -0.013331711292266846, -0.025916723534464836, 0.021139156073331833, -0.06996520608663559, 0.07043087482452393, 0.06258861720561981, -0.05430123582482338, -0.01618870161473751, -0.01828821375966072, -0.012558246031403542, 0.0015929649816825986, -0.02447235770523548, -0.004860952962189913, -0.02603871002793312, -0.006471965927630663, 0.09260258823633194, -0.008049074560403824, -0.015409454703330994, -0.043475206941366196, -0.3427196741104126, -0.04127056896686554, -0.008062387816607952, 0.03261720389127731, 0.05820051580667496, -0.012258234433829784, -0.00742877135053277, -0.013559659011662006, 0.010920874774456024, 0.013683936558663845, 0.12203750014305115, 0.01052837073802948, -0.0075485059060156345, -0.10692573338747025, 0.04063725471496582, 0.039926812052726746, -0.010958395898342133, 0.0007030359120108187, -0.03140711411833763, -0.013319727033376694, 0.03749638423323631, -0.04328112676739693, -0.011655681766569614, -0.008290397003293037, -0.0026803510263562202, -0.002807080512866378, 0.10434253513813019, -0.02293146587908268, 0.027184495702385902, -0.05104079097509384, 0.0051074461080133915, 0.010948420502245426, -0.03980176895856857, -0.056548118591308594, -0.013381704688072205, -0.040623538196086884, 0.05264667421579361, 0.010417106561362743, 0.009157017804682255, -0.01095336489379406, -0.04210462048649788, 0.010236437432467937, -0.008784735575318336, -0.041665345430374146, -0.021507857367396355, -0.01104564405977726, 0.0020167140755802393, -0.0231697428971529, 0.013605710119009018, 0.035303033888339996, -0.02940886653959751, 0.008539172820746899, 0.02789141610264778, 0.042248304933309555, 0.02125898376107216, -0.003349835518747568, -0.08296545594930649, -0.013362368568778038, 0.0057192216627299786, 0.014323610812425613, -0.03717245161533356, 0.026167666539549828, 0.05301215499639511, -0.08433029055595398, 0.0276188924908638, -0.001944705261848867, -0.015223204158246517, -0.02237718738615513, 0.021465802565217018, -0.021619532257318497, -0.03449356555938721, 0.029848383739590645, -0.02978556789457798, 0.02664431370794773, 0.07196197658777237, 0.014700694009661674, -0.01156726386398077, 0.0016458224272355437, 0.04499157518148422, 0.0267007015645504, 0.017122099176049232, -0.037824299186468124, 0.03459169715642929, -0.005950316321104765, -0.005482475273311138, 0.04658771678805351, -0.0009030767832882702, -0.00767816137522459, 0.0410141721367836, 0.009698459878563881, -0.007287024985998869, -0.021147696301341057, -0.014796706847846508, -0.030703891068696976, 0.06567701697349548, -0.000266721413936466, -0.2473147213459015, 0.09002343565225601, 0.03125210106372833, 0.021542124450206757, -0.008366507478058338, -0.03973577171564102, -0.00982548389583826, -0.06439927965402603, -0.008155307732522488, -0.0004590395838022232, 0.021824579685926437, 0.06981173157691956, -0.009518097154796124, -0.00015661015640944242, -0.029413461685180664, 0.021044787019491196, 0.030307229608297348, 0.01573827862739563, 0.04241827502846718, 0.019926976412534714, 0.061506859958171844, -0.036301303654909134, 0.17635482549667358, 0.021844927221536636, 0.00890558585524559, 0.025298280641436577, -0.05393435060977936, -0.01781374029815197, 0.028094962239265442, -0.012584527023136616, -0.01866696961224079, 0.0002965729800052941, 0.041269365698099136, 0.03566031903028488, 0.038735032081604004, -0.026342816650867462, 0.011309152469038963, 0.054632965475320816, -0.003022240474820137, -0.04158581420779228, 0.01341251004487276, 0.008424182422459126, -0.03764134645462036, 0.020924406126141548, 0.09519083052873611, -0.03552478179335594, -0.017373938113451004, -0.07029004395008087, -0.05876313894987106, -0.0035303302574902773, -0.055132683366537094, -0.04031197354197502, -0.022919265553355217, -0.0036719555500894785, -0.000657771248370409, 0.08990844339132309, 0.011935122311115265, -0.039043065160512924, 0.029568837955594063, 0.006521569099277258, -0.008658288978040218, -0.01611444354057312, 0.07010927051305771, -0.019576286897063255, 0.03075510822236538 ]
[ 0.02862115576863289, 0.04245747625827789, -0.026670854538679123, 0.03720388561487198, -0.014737870544195175, 0.016417820006608963, -0.02426619827747345, 0.011251423507928848, -0.03260381147265434, -0.009103169664740562, -0.04030223563313484, 0.011701432056725025, 0.042278777807950974, -0.0076281228102743626, 0.001859803800471127, -0.023065388202667236, -0.012541685253381729, 0.013124441727995872, 0.02770182490348816, -0.007470846641808748, -0.021783892065286636, 0.027368538081645966, 0.016651704907417297, -0.016620056703686714, -0.012750403955578804, 0.04905301332473755, -0.04229556769132614, -0.0008349994313903153, 0.009444664232432842, -0.11204160004854202, -0.011520938016474247, -0.030695626512169838, 0.0059112319722771645, 0.03704651817679405, -0.03492388874292374, 0.026396743953227997, -0.03878547251224518, 0.012835853733122349, -0.03457214683294296, 0.01962851732969284, -0.005402964074164629, -0.012671444565057755, -0.009090102277696133, -0.005429148208349943, -0.01875530369579792, -0.011029528453946114, -0.011289877817034721, -0.03696069121360779, -0.010778174735605717, -0.0028615661431103945, -0.04301515594124794, -0.029515298083424568, -0.014719012193381786, -0.01619488000869751, 0.024498775601387024, 0.008686671033501625, -0.03545340895652771, -0.0038851392455399036, 0.025538034737110138, -0.07025503367185593, 0.06966473162174225, -0.021911446005105972, -0.048560451716184616, -0.027137640863656998, 0.009858589619398117, -0.0361570343375206, 0.004662792664021254, 0.020905792713165283, -0.0038840912748128176, 0.00393978925421834, 0.01405069138854742, 0.03905082494020462, -0.052326880395412445, -0.03922395408153534, -0.0453200526535511, 0.03953942283987999, 0.048807624727487564, -0.035139475017786026, -0.008903113193809986, -0.00940222479403019, -0.029010897502303123, -0.0023526905570179224, -0.07744425535202026, 0.014589079655706882, -0.011759684421122074, 0.015317169018089771, -0.016425400972366333, 0.01694965548813343, 0.043884728103876114, -0.021361608058214188, -0.003484939457848668, 0.03657928481698036, -0.008776725269854069, 0.029688479378819466, -0.06656281650066376, 0.00741375470533967, 0.011572959832847118, 0.006963646039366722, 0.01212275680154562, 0.8036708235740662, 0.006937273778021336, -0.009129286743700504, -0.005687039345502853, 0.05050051584839821, 0.02669299766421318, -0.002723327372223139, 0.01683753915131092, -0.005213097203522921, -0.008635715581476688, -0.031355731189250946, 0.0069402065128088, 0.00842245016247034, -0.0009332115296274424, 0.002965542022138834, 0.020120082423090935, 0.035828880965709686, 0.030867554247379303, -0.001158960978500545, -0.00950921792536974, 0.021280257031321526, 0.001650900230742991, -0.016184253618121147, 0.003055931068956852, -0.022843264043331146, 0.01727212220430374, -0.14441999793052673, -0.0011758370092138648, -6.0485778138430836e-33, 0.0180328618735075, -0.03816957026720047, 0.0885985717177391, -0.0016878233291208744, 0.042280808091163635, -0.011376740410923958, -0.019187409430742264, 0.01788310334086418, 0.007267339155077934, -0.037165772169828415, -0.02744404971599579, 0.030948609113693237, 0.004668116103857756, -0.0166791919618845, 0.01890195906162262, -0.056769732385873795, 0.011259271763265133, 0.026082631200551987, -0.0035230692010372877, -0.02364058792591095, 0.04628640413284302, 0.006139196455478668, -0.0160478875041008, 0.045653361827135086, 0.0289203729480505, -0.0005266173975542188, 0.029244037345051765, -0.004428778309375048, -0.010359739884734154, -0.034360889345407486, -0.07138388603925705, 0.015767477452754974, -0.04644259065389633, -0.015394095331430435, 0.013526604510843754, -0.05411268025636673, -0.0239355880767107, 0.005536861252039671, -0.011137232184410095, -0.045502156019210815, -0.03137403354048729, -0.017230121418833733, -0.015532205812633038, -0.020204171538352966, -0.038296062499284744, 0.00028803947498090565, 0.02186538465321064, 0.017781734466552734, 0.013235882855951786, 0.02609347552061081, 0.020299032330513, 0.029418257996439934, 0.007014869712293148, -0.015700342133641243, -0.03129996731877327, 0.003118481719866395, 0.03419097885489464, 0.040734875947237015, -0.0010569993173703551, 0.03279300406575203, 0.006329211872071028, -0.012981387786567211, -0.012290247716009617, 0.0511699803173542, 0.013427900150418282, 0.04426080361008644, 0.02430279180407524, 0.03201219439506531, 0.036522481590509415, 0.007054347079247236, -0.06610774248838425, 0.02098575234413147, -0.005048242397606373, -0.040602993220090866, 0.0793594941496849, -0.034975890070199966, 0.01256937813013792, -0.010978072881698608, 0.013177543878555298, 0.02595878764986992, -0.019607463851571083, -0.0063698021695017815, -0.02497129514813423, -0.026980509981513023, -0.019246339797973633, -0.0036022840067744255, 0.02197466790676117, 0.015600544400513172, -0.024218248203396797, 0.033244360238313675, 0.009483467787504196, 0.024845903739333153, 0.00556939048692584, -0.004405629821121693, -0.013284973800182343, 6.011212154508305e-33, -0.018288828432559967, -0.011863193474709988, 0.010414857417345047, 0.009248103015124798, 0.07034122198820114, 0.0007258530240505934, 0.030975451692938805, 0.007698645815253258, -0.030426906421780586, 0.020514031872153282, -0.022456977516412735, -0.035562291741371155, -0.030671143904328346, 0.025498105213046074, 0.048959240317344666, 0.024954039603471756, 0.03138158097863197, -0.011540072970092297, -0.036906708031892776, 0.016246117651462555, 0.03132501617074013, 0.015803931280970573, 0.0016340042930096388, -0.013308985158801079, 0.055021438747644424, 0.009114854969084263, 0.038695503026247025, -0.024156028404831886, -0.0191852618008852, -0.008899147622287273, 0.01951543241739273, -0.06464561074972153, -0.04265302047133446, -0.014417080208659172, -0.029543090611696243, 0.02260243147611618, -0.013672254048287868, 0.011411835439503193, 0.01090871449559927, -0.014581850729882717, 0.042930372059345245, 0.0144713269546628, -0.0005297122988849878, 0.06256833672523499, 0.026662537828087807, 0.03880269452929497, 0.0021639647893607616, -0.016619322821497917, -0.0465649850666523, 0.032247088849544525, 0.032279565930366516, 0.03682638332247734, -0.015415137633681297, 0.03904571011662483, 0.05379259213805199, -0.04913322255015373, 0.005889381747692823, 0.006782836746424437, -0.04299222305417061, -0.020964210852980614, -0.019403936341404915, -0.009513999335467815, -0.019632045179605484, 0.02922854758799076, 0.012517234310507774, -0.028529459610581398, -0.01571650058031082, -0.008522920310497284, -0.0186020415276289, 0.021690845489501953, -0.00954178161919117, -0.002091621048748493, -0.016892697662115097, 0.0337461456656456, -0.02528631128370762, -0.003122811671346426, -0.029946040362119675, 0.021963389590382576, -0.026753492653369904, 0.023515891283750534, 0.041776519268751144, -0.022620365023612976, 0.05192393437027931, -0.015018627978861332, -0.0016070462297648191, 0.014042806811630726, -0.02827637456357479, -0.00021344581909943372, 0.02133128046989441, 0.059287093579769135, -0.01497336570173502, -0.05830596759915352, -0.002673287643119693, 0.033688612282276154, -0.029093420132994652, -1.1879971673067757e-8, -0.04292542114853859, 0.033505089581012726, -0.011199206113815308, -0.006761457771062851, 0.04727175086736679, 0.00028781170840375125, -0.013785656541585922, 0.005687046330422163, 0.004441816359758377, 0.014205126091837883, 0.06606078147888184, -0.046687185764312744, 0.016610143706202507, 0.024641208350658417, -0.02346252091228962, -0.05924298241734505, -0.005509799346327782, -0.027013372629880905, 0.035069990903139114, -0.0028303468134254217, -0.03478669375181198, 0.03787044435739517, -0.04314099997282028, 0.02099142037332058, 0.025635816156864166, 0.009872004389762878, 0.011133052408695221, -0.058232199400663376, 0.03689788281917572, -0.024209264665842056, -0.0011052964255213737, -0.03553532063961029, -0.00708427932113409, 0.029486363753676414, -0.04296020418405533, -0.02451988123357296, 0.048420123755931854, 0.04242521524429321, 0.020384656265378, 0.06225213035941124, -0.017193492501974106, 0.008608472533524036, -0.020224109292030334, -0.03227853775024414, -0.0294500682502985, 0.019751694053411484, -0.0820823386311531, -0.023480378091335297, 0.0226207934319973, -0.06617821753025055, 0.010198784992098808, -0.026469247415661812, -0.0055600120685994625, 0.038931794464588165, 0.06246049329638481, 0.012180698104202747, -0.005072330124676228, -0.019240276888012886, -0.020613890141248703, -0.015439312905073166, 0.007971499115228653, 0.004077081102877855, -0.03439462184906006, -0.025249697268009186 ]
neo4j-grouping-datetimes
https://markhneedham.com/blog/2018/07/10/neo4j-grouping-datetimes
false
2018-07-09 18:21:00
Neo4j 3.4: Syntax Error - Text cannot be parsed to a Duration (aka dealing with empty durations)
[ "neo4j", "cypher", "strava", "datetime" ]
[ "Neo4j" ]
As I continued with my travels with Neo4j 3.4's https://neo4j.com/docs/developer-manual/current/cypher/functions/temporal/#functions-duration-create-components[temporal data type^] I came across some fun edge cases when dealing with empty durations while importing data. Imagine we're trying to create 3 nodes from the following array of input data. Two of the rows have invalid durations! [source, cypher] ---- UNWIND [ {id: 12345, duration: "PT2M20S"}, {id: 12346, duration: ""}, {id: 12347, duration: null} ] AS row MERGE (run:Run {id: row.id}) SET run.duration = duration(row.duration) ---- If we run that query we'll get this error message: [source,text] ---- Neo.ClientError.Statement.SyntaxError: Text cannot be parsed to a Duration "" ^ ---- It doesn't like the empty string. Let's see how we can detect that: [source,cypher] ---- UNWIND [ {id: 12345, duration: "PT2M20S"}, {id: 12346, duration: ""}, {id: 12347, duration: null} ] AS row return row.duration AS value, trim(row.duration) = "" AS isEmpty ---- [source,text] ---- +---------------------+ | value | isEmpty | +---------------------+ | "PT2M20S" | FALSE | | "" | TRUE | | NULL | NULL | +---------------------+ ---- Now let's use our conditional statement in the import query: [source, cypher] ---- UNWIND [ {id: 12345, duration: "PT2M20S"}, {id: 12346, duration: ""}, {id: 12347, duration: null} ] AS row MERGE (run:Run {id: row.id}) SET run.duration = CASE WHEN trim(row.duration) = "" THEN null ELSE duration(row.duration) END ---- [source, text] ---- Invalid call signature ---- Hmmm still not happy. This time the null is the issue - passing a null value to the duration function returns an `Invalid call signature` response. Let's update our conditonal check to detect null values as well: [source,cypher] ---- UNWIND [ {id: 12345, duration: "PT2M20S"}, {id: 12346, duration: ""}, {id: 12347, duration: null} ] AS row return row.duration AS value, exists(row.duration) AS isNotNull, trim(row.duration) = "" AS isEmpty ---- [source,text] ---- +---------------------------------+ | value | isNotNull | isEmpty | +---------------------------------+ | "PT2M20S" | TRUE | FALSE | | "" | TRUE | TRUE | | NULL | FALSE | NULL | +---------------------------------+ ---- Now let's use those conditional checks in our first query: [source, cypher] ---- UNWIND [ {id: 12345, duration: "PT2M20S"}, {id: 12346, duration: ""}, {id: 12347, duration: null} ] AS row MERGE (run:Run {id: row.id}) SET run.duration = CASE WHEN not(exists(row.duration)) THEN null WHEN trim(row.duration) = "" THEN null ELSE duration(row.duration) END ---- [source,text] ---- Added 3 nodes, Set 4 properties, Added 3 labels ---- Looks happy. Let's find our newly created nodes: [source,cypher] ---- MATCH (run:Run) WHERE run.id IN range(12345,12347) RETURN run ---- [source,text] ---- +------------------------------------------+ | run | +------------------------------------------+ | (:Run {duration: P0M0DT140S, id: 12345}) | | (:Run {id: 12346}) | | (:Run {id: 12347}) | +------------------------------------------+ ---- As expected two of them don't have a duration since none was provided.
Learn how to handle empty durations when using Neo4j 3.4's new temporal data type
null
[ 0.0031649740412831306, -0.020701808854937553, 0.0019909567199647427, 0.03989143669605255, 0.0728127583861351, -0.005293393973261118, 0.028195498511195183, 0.019057026132941246, 0.008961554616689682, -0.01590788923203945, -0.019127747043967247, 0.031151089817285538, -0.0662102922797203, 0.03753519430756569, 0.019644152373075485, 0.048594262450933456, 0.07111425697803497, -0.027338290587067604, 0.024736132472753525, -0.016714729368686676, 0.020053090527653694, 0.01895654760301113, 0.006641585845500231, 0.0208815336227417, 0.05265525355935097, -0.001274701557122171, -0.034350987523794174, -0.005320597440004349, -0.054050009697675705, 0.002143202582374215, 0.04983372613787651, 0.010548599064350128, 0.0006886885385029018, -0.038700830191373825, 0.03507573530077934, 0.004891424439847469, -0.048853036016225815, 0.01813250035047531, -0.01938399113714695, 0.00631104689091444, -0.05877817049622536, 0.01853249780833721, 0.017702896147966385, -0.0001392887206748128, -0.030364463105797768, 0.0255807563662529, -0.03986721113324165, 0.02303093671798706, -0.006317514460533857, 0.017282087355852127, -0.08331942558288574, 0.019676674157381058, -0.00176047848071903, 0.008733951486647129, 0.017551114782691002, 0.040447935461997986, 0.014769667759537697, -0.0775236114859581, 0.059055861085653305, -0.062339503318071365, 0.03875914588570595, -0.029709646478295326, -0.003265355248004198, 0.029637683182954788, -0.002581843873485923, -0.02808229997754097, 0.027698032557964325, 0.06076682731509209, -0.05099998041987419, -0.010253784246742725, 0.016272034496068954, 0.03537879139184952, -0.03510145843029022, 0.024127289652824402, -0.028277628123760223, -0.03229311853647232, -0.01673790067434311, 0.048243191093206406, 0.04270736128091812, 0.060165323317050934, 0.01290814857929945, 0.012053828686475754, 0.045824889093637466, 0.012025048956274986, 0.017001545056700706, -0.049435269087553024, -0.05521981790661812, -0.02938728779554367, -0.03793887421488762, 0.025791462510824203, 0.039823587983846664, -0.024165552109479904, 0.030347097665071487, -0.011710308492183685, -0.022455407306551933, 0.016132695600390434, -0.031005915254354477, 0.0009158835746347904, 0.01668432168662548, -0.00043980282498523593, -0.016581151634454727, -0.03366735577583313, -0.0060884724371135235, 0.0035812545102089643, -0.07696743309497833, -0.048079997301101685, -0.049004726111888885, -0.006026456132531166, 0.018263669684529305, 0.004291705787181854, -0.07185780256986618, -0.01678950898349285, 0.0063423835672438145, 0.0297181885689497, -0.08885174244642258, 0.0598013699054718, 0.020640728995203972, 0.028615808114409447, -0.03441007435321808, -0.010067170485854149, 0.04256598651409149, 0.008699553087353706, 0.00826786458492279, 0.06472356617450714, 0.021287327632308006, 0.061224471777677536, -0.0004490904393605888, 0.034872908145189285, -0.017299501225352287, -0.055322397500276566, -0.036487024277448654, 0.05885383486747742, -0.002425479469820857, 0.010811835527420044, -0.010401909239590168, -0.01341208629310131, -0.01994004100561142, 0.017733648419380188, 0.07209261506795883, 0.022606272250413895, -0.005666729528456926, -0.04113408923149109, 0.012844925746321678, 0.0009390134364366531, 0.03626924753189087, 0.020513901486992836, -0.016813814640045166, -0.04576282203197479, 0.002293131547048688, -0.011077654547989368, 0.021586474031209946, 0.010779596865177155, 0.07218582183122635, -0.02066442370414734, -0.015469802543520927, 0.12010293453931808, 0.02588583715260029, 0.014357751235365868, -0.034455522894859314, 0.013097282499074936, 0.047383952885866165, 0.05742529779672623, -0.0026555133517831564, 0.05490182712674141, 0.005592714995145798, -0.01438979059457779, -0.014952760189771652, 0.04933552443981171, -0.017492109909653664, -0.020913533866405487, -0.020003661513328552, -0.0452551394701004, 0.06670843809843063, -0.04764603450894356, -0.011052298359572887, 0.04482584819197655, 0.05534420907497406, -0.010101977735757828, 0.008685406297445297, -0.0152991758659482, -0.081479012966156, 0.053273238241672516, -0.024566367268562317, -0.002858727239072323, 0.005096625071018934, 0.022389071062207222, 0.08714530616998672, 0.0037073728162795305, -0.009192977100610733, 0.022540131583809853, -0.07843096554279327, -0.04147278517484665, 0.006095344666391611, -0.025984428822994232, 0.038005925714969635, -0.058657437562942505, 0.00047226520837284625, 0.06540117412805557, -0.008146652951836586, 0.041041549295186996, 0.022354725748300552, 0.014878182671964169, 0.005718345753848553, -0.032779593020677567, -0.04158446565270424, 0.07421530038118362, 0.019735364243388176, -0.05323166400194168, -0.019434679299592972, 0.033856287598609924, -0.0009496837737970054, 0.005723162088543177, 0.012332186102867126, -0.013834012672305107, 0.030964680016040802, 0.044869229197502136, 0.022363899275660515, -0.026511261239647865, 0.012107450515031815, -0.07419877499341965, 0.06900247186422348, 0.010678239166736603, -0.03424648568034172, -0.02897665835916996, -0.03573916107416153, 0.10189121961593628, 0.04233042150735855, -0.011386536993086338, -0.05465396121144295, 0.06751325726509094, -0.013276174664497375, 0.0023614310193806887, 0.014216607436537743, -0.048506103456020355, -0.005007453262805939, 0.004696251358836889, -0.003385295858606696, 0.005583681166172028, -0.02581286057829857, 0.002227580873295665, 0.03468058630824089, 0.05013950914144516, -0.021500753238797188, 0.045084040611982346, -0.010145004838705063, -0.00952670443803072, -0.01224703062325716, -0.04128660634160042, -0.04306752234697342, 0.031322091817855835, 0.042371686547994614, 0.010127760469913483, 0.04931967705488205, -0.03130140155553818, -0.024714281782507896, -0.02120817080140114, -0.04925830289721489, 0.025280551984906197, 0.0450424924492836, 0.03758635371923447, 0.005278695374727249, 0.03921731188893318, -0.02342884987592697, -0.02324063330888748, -0.014710994437336922, -0.06513917446136475, -0.036854010075330734, 0.011944792233407497, 0.043903566896915436, -0.006608977448195219, 0.02584058605134487, -0.012868494726717472, 0.004133349284529686, 0.005060841795057058, -0.01701643317937851, -0.0007949575665406883, 0.023226255550980568, -0.017708055675029755, -0.005036929622292519, -0.056326862424612045, -0.017008332535624504, 0.05952703580260277, -0.06348864734172821, -0.06655966490507126, -0.030078459531068802, -0.024568447843194008, 0.04356921836733818, -0.049139853566884995, -0.024253394454717636, -0.000783379771746695, 0.026334049180150032, 0.023620713502168655, 0.0077497647143900394, 0.027587661519646645, 0.10072963684797287, 0.021650515496730804, 0.006556645035743713, 0.027253644540905952, 0.009525862522423267, 0.0526423342525959, 0.0006943516782484949, 0.03980882093310356, 0.02805807627737522, -0.030609624460339546, -0.01065498311072588, -0.01814492605626583, -0.038431745022535324, -0.041671156883239746, -0.25886204838752747, 0.04485667124390602, -0.06897270679473877, -0.06723986566066742, -0.0013001980260014534, -0.043562136590480804, 0.04530081897974014, -0.016247263178229332, -0.03563825786113739, 0.023171275854110718, 0.009840991348028183, -0.044202715158462524, -0.0026314067654311657, 0.06084567308425903, 0.02646697126328945, -0.0021663308143615723, -0.013494275510311127, -0.06693310290575027, 0.005085410084575415, 0.04033965989947319, -0.02364511974155903, -0.03953004628419876, -0.01624882034957409, 0.0261994618922472, 0.024387884885072708, 0.029010331258177757, -0.05770168453454971, 0.01764269731938839, -0.07253025472164154, -0.03928688168525696, 0.0045859781093895435, -0.03077777661383152, 0.025878891348838806, -0.021705852821469307, 0.01463867537677288, -0.024662716314196587, 0.017136938869953156, 0.013263342902064323, 0.013815299607813358, 0.0351826511323452, -0.05229516327381134, -0.04382836073637009, 0.02007065713405609, -0.014817805960774422, 0.0781620442867279, -0.012487453408539295, -0.06645556539297104, -0.0026117218658328056, -0.012763077393174171, 0.0657605230808258, -0.03761480003595352, -0.02683020383119583, -0.031677715480327606, 0.017441648989915848, -0.045916397124528885, -0.025989560410380363, -0.007924644276499748, -0.02865787409245968, -0.03230135887861252, -0.0022175884805619717, -0.01165245845913887, -0.04603459686040878, 0.01619730144739151, -0.033401235938072205, -0.032146766781806946, -0.03968842700123787, -0.08305095881223679, -0.031249191612005234, 0.03966467082500458, 0.016207177191972733, -0.018611032515764236, 0.01834542118012905, -0.005329785868525505, -0.11036624759435654, -0.022430242970585823, -0.042548589408397675, -0.00668089697137475, -0.005718152970075607, -0.04627367481589317, 0.04692003130912781, -0.055773645639419556, -0.06483536958694458, -0.0008509375620633364, 0.02356123737990856, 0.030544819310307503, 0.0006677346536889672, 0.006792229134589434, -0.020129898563027382, -0.017236551269888878, 0.010776388458907604, 0.05152812600135803, -0.021420801058411598, -0.01532871276140213, 0.025161661207675934, -0.03299688920378685, 0.03313357010483742, 0.0013114005560055375, -0.002119809854775667, 0.029198119416832924, 0.02316923812031746, 0.05177270993590355, -0.028861425817012787, 0.0012500889133661985, -0.03315678611397743, -0.014725779183208942, -0.02028108388185501, -0.031903982162475586, 0.03463287279009819, 0.009650219231843948, 0.008251506835222244, -0.00217466801404953, 0.03043627366423607, -0.008618844673037529, -0.03915313631296158, -0.0384022481739521, -0.004288178868591785, -0.005409814417362213, 0.010735750198364258, 0.05358860641717911, -0.019615232944488525, -0.0829823687672615, 0.0010173422051593661, 0.03042377531528473, 0.027343371883034706, -0.036269161850214005, -0.04364260286092758, -0.0445440299808979, -0.002109651919454336, -0.01381022110581398, 0.007991097867488861, -0.0386655330657959, 0.03527113422751427, 0.02427598461508751, 0.014078859239816666, 0.033064987510442734, -0.032347872853279114, -0.04262183606624603, -0.030198100954294205, -0.0149144371971488, -0.024771738797426224, 0.006420205347239971, -0.007306365296244621, -0.009190606884658337, 0.054547153413295746, 0.02948637492954731, 0.002026395406574011, 0.008259725756943226, -0.0037994119338691235, 0.01345064677298069, 0.002240031026303768, 0.009334178641438484, -0.011909984052181244, 0.016864754259586334, -0.040282804518938065, -0.030551070347428322, -0.015939775854349136, 0.04647374153137207, -0.0019049119437113404, 0.005276225507259369, -0.04104684293270111, 0.013541975989937782, -0.05076364800333977, 0.03395478054881096, -0.028726845979690552, 0.01346855703741312, 0.035928014665842056, 0.02463039942085743, 0.008511483669281006, -0.032757651060819626, -0.012416181154549122, -0.024878105148673058, -0.000027677222533384338, -0.045817483216524124, 0.029039474204182625, -0.010818463750183582, -0.001235537463799119, 0.025798456743359566, 0.02569103240966797, 0.020201697945594788, 0.039327818900346756, -0.005045525263994932, 0.017013978213071823, 0.016863662749528885, 0.017440587282180786, 0.01741407997906208, 0.041115354746580124, -0.011297660879790783, -0.007288835477083921, -0.05109529197216034, -0.02699963189661503, -0.014454426243901253, -0.024423880502581596, -0.02990097925066948, -0.01904482953250408, -0.006333824712783098, -0.05464104562997818, 0.020465441048145294, 0.039854876697063446, 0.024790624156594276, 0.048303212970495224, 0.0015949137741699815, -0.043394699692726135, 0.00598587142303586, 0.00934929121285677, 0.07249254733324051, -0.0335833840072155, -0.011740967631340027, -0.007096457295119762, 0.0026125642471015453, 0.028008291497826576, 0.02919786423444748, -0.08447417616844177, -0.0427328422665596, -0.016454221680760384, -0.008748706430196762, -0.012705335393548012, -0.038886573165655136, -0.02330929785966873, -0.017133064568042755, -0.016242867335677147, 0.0313369445502758, 0.019580889493227005, 0.01126430369913578, -0.03423559293150902, -0.0005471505573950708, 0.03913677856326103, -0.010071661323308945, 0.007776220794767141, 0.03331302851438522, -0.010592171922326088, -0.0031734188087284565, -0.020610207691788673, 0.025214487686753273, 0.02881212905049324, 0.0015674252063035965, -0.02347671613097191, -0.061630066484212875, 0.012016759254038334, -0.016114305704832077, 0.04447000101208687, 0.0010653574718162417, -0.01185266301035881, -0.0071424939669668674, 0.025250786915421486, -0.011773577891290188, 0.01649174652993679, 0.0044177561067044735, -0.023327095434069633, 0.012133936397731304, 0.02428647130727768, -0.003627308178693056, 0.04447360336780548, -0.024847503751516342, -0.07115457206964493, 0.06048969924449921, -0.02284078672528267, -0.04832639545202255, -0.0005678588640876114, -0.030739959329366684, 0.013828371651470661, -0.0015037867706269026, -0.008356438018381596, -0.002550029894337058, 0.05195663869380951, 0.06649348884820938, 0.037968896329402924, 0.03890884295105934, -0.031183041632175446, 0.03234643489122391, -0.003655059961602092, -0.01633456163108349, -0.09523417055606842, 0.006673435680568218, 0.05600571632385254, 0.009704627096652985, -0.020272791385650635, -0.03143980726599693, 0.008491583168506622, 0.020588353276252747, -0.06344855576753616, -0.04639488831162453, 0.04407200962305069, 0.004833756480365992, 0.04630383104085922, 0.031480688601732254, -0.05079339072108269, -0.00908653624355793, 0.04955679178237915, -0.013117071241140366, -0.04153737053275108, -0.00905664823949337, 0.04736574739217758, -0.02197197638452053, 0.032576847821474075, -0.03597906976938248, -0.032874979078769684, 0.06159606948494911, 0.022902632132172585, 0.06224619597196579, 0.05009536072611809, -0.03684964030981064, 0.02461746521294117, 0.03867342323064804, -0.02350042201578617, -0.003136418294161558, 0.028593461960554123, 0.007001212798058987, -0.054058827459812164, 0.033998940140008926, 0.03958877921104431, 0.004378896672278643, -0.036651886999607086, 0.057728879153728485, 0.007308448199182749, -0.034259360283613205, -0.05431279167532921, 0.009692061692476273, 0.0003086684737354517, -0.025040030479431152, -0.03825758397579193, -0.009901889599859715, -0.043711598962545395, 0.045151952654123306, -0.025477832183241844, 0.030429735779762268, 0.07816660404205322, 0.003430637763813138, 0.030864883214235306, 0.010055594146251678, 0.08400502055883408, 0.07933489978313446, 0.019901685416698456, 0.00304029812105, 0.07798518240451813, -0.02450699731707573, -0.021921422332525253, -0.018708547577261925, -0.057336267083883286, -0.003257136791944504, 0.004037559498101473, 0.04061044380068779, 0.07430139929056168, -0.010252351872622967, 0.06761670112609863, -0.0555354505777359, -0.0037952265702188015, -0.0207634586840868, 0.0008315130835399032, 0.03509058430790901, 0.06701520830392838, 0.029520627111196518, 0.03794211894273758, 0.007026734761893749, -0.023322753608226776, -0.0020577716641128063, -0.038302481174468994, -0.006016829516738653, 0.05185772106051445, -0.01742132380604744, -0.007327072322368622, 0.019090857356786728, 0.03198152780532837, 0.0788550078868866, -0.037751343101263046, -0.01721707358956337, 0.014138886705040932, 0.020734721794724464, 0.0047354805283248425, 0.014346456155180931, -0.006123367231339216, -0.00795257929712534, -0.029045425355434418, -0.04947912320494652, -0.03520794212818146, -0.01904010772705078, -0.0392778255045414, 0.013086139224469662, -0.007035238202661276, 0.014794875867664814, 0.002966680796816945, -0.06327296793460846, -0.013870417140424252, -0.04599109664559364, -0.04753831401467323, -0.05649944022297859, -0.09951151907444, 0.016664186492562294, 0.030024975538253784, -0.004526516888290644, 0.010919933207333088, 0.0007593350019305944, 0.009584300220012665, -0.014762788079679012, 0.042868416756391525, -0.013034192845225334, -0.014429828152060509, 0.029417984187602997, -0.019037526100873947, 0.016129428520798683, 0.03633426874876022, 0.04815839231014252, 0.0069273714907467365, 0.016803080216050148, -0.017033731564879417, 0.015257815830409527, 0.058463580906391144, 0.010120769962668419, 0.005830809939652681, -0.03751511499285698, -0.02250317484140396, 0.009636242873966694, 0.0009160714689642191, -0.08836100250482559, 0.006222354248166084, 0.042900633066892624, 0.01687464863061905, 0.056609224528074265, -0.0011099101975560188, -0.019775712862610817, -0.03400462493300438, 0.013934656046330929, 0.01741872914135456, 0.008221091702580452, 0.008090449497103691, -0.02754957415163517, 0.06211746111512184, 0.03384477272629738, -0.028807809576392174, 0.007206202019006014, 0.005997119005769491, -0.014073330909013748, -0.016796870157122612, -0.05600369721651077, -0.027343764901161194, -0.0494602732360363, -0.07361305505037308, -0.03803412616252899, -0.02372397482395172, -0.03733786568045616, -0.004479145631194115, 0.007509458344429731, 0.030933398753404617, -0.03732486814260483, 0.040509503334760666, -0.04752427339553833, 0.03971399739384651, -0.020255282521247864, -0.03487512841820717, -0.025058791041374207, 0.0014298288151621819, -0.01961398683488369, -0.013599573634564877, 0.025366805493831635, -0.04671245440840721, -0.001892148982733488, -0.05078287795186043, 0.0027702210936695337, 0.04145275801420212, 0.010953541845083237, 0.034734103828668594 ]
[ -0.08605793863534927, 0.016636790707707405, -0.02270388789474964, 0.002645923290401697, 0.035517096519470215, -0.027629217132925987, -0.010190331377089024, -0.030497636646032333, 0.027913765981793404, -0.015799976885318756, 0.012766816653311253, -0.028193676844239235, 0.00006876134284539148, 0.02490280009806156, 0.032078228890895844, -0.01539770606905222, -0.022071076557040215, -0.05295060947537422, -0.039033208042383194, 0.05092690512537956, 0.002808529883623123, -0.07245582342147827, -0.016596496105194092, -0.029957842081785202, 0.03586287423968315, 0.05672566592693329, 0.031058670952916145, -0.02780998684465885, -0.018042759969830513, -0.22746434807777405, -0.01836101897060871, 0.018114181235432625, -0.03185619041323662, 0.0012589021353051066, 0.016450179740786552, 0.02501673623919487, 0.01836433820426464, -0.025232398882508278, 0.03706265613436699, 0.06420250236988068, 0.03514377027750015, 0.009177406318485737, -0.058394212275743484, -0.03141643851995468, 0.012621026486158371, -0.021099204197525978, -0.027550704777240753, -0.03666536509990692, -0.0060316091403365135, 0.02761666662991047, -0.010513859800994396, 0.017560701817274094, 0.025867769494652748, 0.014297985471785069, 0.011059880256652832, 0.04986221343278885, 0.027298972010612488, 0.07158241420984268, 0.045590590685606, -0.005201825872063637, 0.00549730658531189, 0.0018157679587602615, -0.11602837592363358, 0.059356700628995895, 0.013864798471331596, 0.027127278968691826, -0.05392339825630188, -0.014843149110674858, -0.055811088532209396, 0.047970619052648544, 0.007738093379884958, 0.00833731610327959, -0.047577518969774246, 0.097465381026268, 0.0023232041858136654, 0.02950945496559143, -0.0028942169155925512, 0.009004895575344563, 0.041098251938819885, 0.0024963051546365023, -0.02609936334192753, -0.015179673209786415, -0.044476669281721115, -0.031247831881046295, -0.008481277152895927, 0.05152634531259537, -0.039936915040016174, 0.04236872121691704, -0.01384410634636879, 0.05276711657643318, 0.014167572371661663, 0.018936241045594215, 0.04612031951546669, 0.052563220262527466, -0.08114638924598694, 0.009409149177372456, 0.015105502679944038, 0.02362106181681156, -0.00839978363364935, 0.3703116774559021, -0.02264316752552986, 0.0277105700224638, -0.007671928498893976, 0.044384028762578964, 0.003564191283658147, 0.007609554100781679, -0.02188146859407425, -0.05385107547044754, 0.01125305239111185, -0.007127696648240089, -0.007328820414841175, -0.03128454461693764, 0.041571468114852905, -0.09752324968576431, -0.015155870467424393, 0.03197247162461281, 0.054395176470279694, -0.0046205841936171055, -0.03199438378214836, 0.012648051604628563, -0.019244484603405, -0.012815456837415695, 0.048466410487890244, 0.00618996424600482, 0.0015774780185893178, 0.031040433794260025, 0.0242630485445261, 0.055354151874780655, 0.009692016988992691, 0.03051363304257393, 0.061067212373018265, 0.017500117421150208, -0.0726359635591507, 0.037465669214725494, -0.03365051746368408, 0.009836873970925808, 0.01550570223480463, -0.017889995127916336, -0.01835916005074978, -0.028063863515853882, -0.024234559386968613, -0.04900820925831795, 0.04113074019551277, 0.012999660335481167, -0.023495346307754517, 0.1231476292014122, 0.008786075748503208, -0.016069447621703148, -0.04065736383199692, -0.04813448712229729, -0.02772127464413643, 0.03488709405064583, -0.007706754840910435, -0.0644448921084404, -0.010233228094875813, 0.01084975991398096, 0.09231867641210556, -0.013558409176766872, -0.0926593691110611, -0.006399905309081078, -0.03162671998143196, -0.02007930912077427, -0.020405208691954613, 0.09870654344558716, 0.018196528777480125, -0.09688691794872284, -0.017960363999009132, 0.04203209653496742, 0.022075001150369644, -0.07977660745382309, 0.0033418533857911825, 0.0022042447235435247, -0.044622957706451416, -0.06277399510145187, 0.11123828589916229, 0.001953604631125927, -0.014340476132929325, -0.005118170287460089, 0.034980058670043945, 0.01167121808975935, -0.01090884581208229, -0.00197090907022357, -0.027972305193543434, 0.028102606534957886, -0.038379184901714325, -0.06651146709918976, -0.07771249860525131, 0.03290041163563728, -0.012097758240997791, -0.03038855269551277, -0.028994351625442505, -0.05704129859805107, -0.05302983149886131, 0.10167509317398071, -0.07825803011655807, -0.055814046412706375, -0.000765902572311461, -0.009571747854351997, -0.033420808613300323, -0.05770111456513405, 0.06935048848390579, -0.0003974477876909077, 0.020596837624907494, 0.0038860198110342026, -0.03932931646704674, 0.013175801374018192, 0.05100812762975693, -0.04953032359480858, 0.053054604679346085, 0.031639255583286285, -0.05198407918214798, 0.03539343550801277, -0.014863690361380577, 0.01978907361626625, 0.004707935731858015, -0.005650271661579609, -0.02593330107629299, 0.0049631898291409016, 0.0183638334274292, 0.04949888214468956, -0.059641845524311066, 0.005267639644443989, -0.028220687061548233, -0.3515220582485199, -0.030614573508501053, -0.017156891524791718, -0.035342711955308914, 0.018466690555214882, -0.027425382286310196, -0.02727217599749565, -0.03795486316084862, 0.01710386574268341, -0.019496701657772064, 0.06469458341598511, 0.0013278695987537503, -0.019806617870926857, -0.1022455245256424, -0.0046073454432189465, 0.027021601796150208, 0.00042770913569256663, -0.0024739510845392942, -0.020829983055591583, 0.02883823774755001, 0.008387037552893162, -0.06374217569828033, -0.034762267023324966, -0.07300207018852234, -0.006386231165379286, 0.007368086837232113, 0.11809325218200684, -0.02229391410946846, 0.02059806138277054, -0.08745098114013672, 0.04145026206970215, 0.003872198285534978, -0.03207378461956978, -0.04377789795398712, -0.004501299932599068, -0.04301559552550316, 0.0016257466049864888, 0.028076082468032837, -0.01844589225947857, -0.0022565682884305716, -0.0356285497546196, 0.003693586913868785, -0.038310643285512924, -0.029486563056707382, 0.010614752769470215, 0.0019773058593273163, -0.021306388080120087, -0.0160015057772398, 0.019435284659266472, 0.054073166102170944, 0.021303746849298477, 0.03073093295097351, 0.016329139471054077, 0.06303846836090088, 0.053927063941955566, -0.008975817821919918, -0.06592521071434021, 0.006762216798961163, 0.0016944716917350888, 0.023696981370449066, -0.010052448138594627, 0.04878433421254158, 0.0686207190155983, -0.07259956002235413, 0.0026770837139338255, 0.01375646237283945, 0.0005219131126068532, -0.025054216384887695, 0.0012577902525663376, -0.02180917002260685, -0.01968221366405487, 0.1385829895734787, -0.00869632139801979, -0.019827399402856827, 0.05582919344305992, 0.03156112879514694, -0.037262968719005585, 0.0033832858316600323, 0.026642194017767906, 0.04283159226179123, 0.025724921375513077, -0.026737144216895103, 0.06811682879924774, -0.011343116872012615, -0.021528486162424088, 0.05009528249502182, 0.001697148778475821, -0.003908673767000437, 0.0606377087533474, -0.031348079442977905, -0.013608685694634914, -0.00829267967492342, -0.00904796738177538, -0.032491281628608704, 0.07894597202539444, -0.029095303267240524, -0.23761729896068573, 0.05316808819770813, 0.0394461490213871, 0.021247725933790207, 0.007328624837100506, -0.007664044387638569, -0.0006334062200039625, -0.05132576823234558, -0.043868619948625565, 0.006239708047360182, 0.013334284536540508, 0.04711488261818886, 0.0036773874890059233, -0.027131684124469757, -0.00006265973206609488, 0.03318602964282036, 0.08080161362886429, 0.026264438405632973, 0.03228691965341568, -0.011686206795275211, 0.06105894222855568, -0.0008089257753454149, 0.17384569346904755, 0.052125025540590286, -0.009041417390108109, 0.033299922943115234, -0.003944038413465023, 0.012100906111299992, 0.0754287838935852, -0.0018708058632910252, -0.045663218945264816, 0.05963573977351189, 0.05838626250624657, 0.0601622648537159, -0.01688777282834053, -0.034619513899087906, -0.03656977787613869, 0.06248805299401283, 0.01722976751625538, -0.026540212333202362, -0.007446844596415758, -0.0037375164683908224, -0.01758779026567936, 0.03105260618031025, 0.0714445561170578, -0.046466756612062454, -0.006695162504911423, -0.039790865033864975, -0.07380413264036179, -0.003533142153173685, -0.029441235587000847, -0.009586055763065815, -0.013024765066802502, 0.004128033760935068, 0.007365733850747347, 0.07662134617567062, 0.04732310026884079, -0.01755417510867119, 0.037742048501968384, 0.02960539609193802, -0.012956456281244755, -0.03342028707265854, 0.1101895272731781, -0.012030485086143017, 0.01699276641011238 ]
[ 0.040755853056907654, 0.05636100098490715, 0.0029774922877550125, 0.0397007018327713, -0.01843944378197193, 0.00842308346182108, -0.028407864272594452, 0.006894400343298912, 0.0030990547966212034, -0.03886013105511665, -0.06353514641523361, -0.002337602199986577, 0.021335264667868614, 0.0014587598852813244, -0.001084712566807866, 0.007429946679621935, -0.021360820159316063, 0.030062247067689896, 0.04795562103390694, -0.015163780190050602, -0.003319843439385295, 0.02157384715974331, 0.036966029554605484, -0.010119588114321232, -0.013007428497076035, 0.03748377412557602, -0.03565054386854172, -0.002900725929066539, 0.025356153026223183, -0.07427952438592911, -0.0230963584035635, -0.009282717481255531, -0.002145352540537715, -0.006694147363305092, -0.03481242060661316, 0.01176819484680891, 0.005710551980882883, 0.030311254784464836, -0.00399389211088419, 0.005270219873636961, 0.042768415063619614, 0.003937377594411373, -0.04332718625664711, 0.024460099637508392, 0.006303943227976561, -0.044197797775268555, -0.03906532749533653, -0.059125594794750214, -0.01770102046430111, 0.02295655570924282, -0.0366915725171566, 0.0006946359062567353, -0.017071854323148727, -0.013684576377272606, 0.03157598525285721, 0.017497174441814423, -0.05894891917705536, 0.015276187099516392, -0.014680537395179272, -0.011991309933364391, 0.023052094504237175, -0.03028937615454197, -0.061347056180238724, -0.015751410275697708, -0.012390757910907269, 0.00022814211843069643, -0.006638902239501476, 0.036164648830890656, 0.004245561547577381, -0.005229306872934103, -0.013053406029939651, 0.02262457273900509, -0.0782402977347374, 0.020525338128209114, -0.04004308208823204, 0.014735042117536068, 0.07332909107208252, -0.03558780252933502, -0.0012483025202527642, -0.022771237418055534, 0.006271436810493469, -0.002199317794293165, -0.024300212040543556, 0.02973705530166626, -0.01248715166002512, -0.002196502173319459, -0.03265475854277611, 0.054020803421735764, -0.027779966592788696, 0.009607947431504726, -0.04536033421754837, 0.010337218642234802, 0.003098767949268222, -0.00916123017668724, -0.06972000002861023, 0.013517227955162525, 0.0029516080394387245, 0.010691787116229534, 0.03757314383983612, 0.7894585728645325, 0.031985942274332047, -0.03326577693223953, -0.034588173031806946, 0.036567091941833496, -0.02468937076628208, 0.0179249607026577, 0.015300322324037552, 0.0018170027760788798, -0.03554317355155945, 0.024173550307750702, 0.022865427657961845, 0.0075214700773358345, 0.03645427152514458, -0.007157488726079464, -0.012250477448105812, 0.0579313188791275, -0.03133847936987877, -0.01814572699368, 0.035655952990055084, 0.04838351160287857, 0.009936713613569736, -0.01375821977853775, -0.0006181137287057936, 0.02307809516787529, 0.004630466923117638, -0.1543111503124237, 0.04150695353746414, -7.063043764940118e-33, -0.008912833407521248, -0.027255157008767128, 0.07437285035848618, 0.00042725016828626394, 0.03449942171573639, 0.036611489951610565, -0.011678940616548061, -0.037069033831357956, 0.022095877677202225, -0.04593489691615105, -0.03442754969000816, -0.018842346966266632, -0.018988244235515594, -0.048632632941007614, 0.005057090427726507, -0.006984164472669363, 0.027766844257712364, 0.04111921787261963, 0.007112243212759495, -0.032462842762470245, 0.020042408257722855, 0.0027777240611612797, -0.03476839140057564, 0.04602283611893654, 0.042684733867645264, 0.013069264590740204, -0.016565004363656044, -0.023360595107078552, -0.0015517958672717214, -0.05187604948878288, -0.08375610411167145, 0.019414853304624557, -0.03684315085411072, 0.0029953813645988703, 0.022507719695568085, -0.061218831688165665, -0.01770729385316372, 0.019431088119745255, -0.03335557505488396, -0.025167331099510193, -0.06683814525604248, -0.0018880905117839575, -0.001637722016312182, -0.01661604270339012, -0.04930226504802704, -0.027991611510515213, 0.013422047719359398, 0.035801492631435394, -0.020638922229409218, 0.040105514228343964, 0.02178092673420906, 0.028203209862113, -0.008675966411828995, -0.04944837465882301, -0.025373246520757675, 0.0060881515964865685, 0.037599895149469376, -0.007044238969683647, -0.035192836076021194, 0.04000364616513252, 0.044459227472543716, 0.0031244235578924417, -0.011716912500560284, 0.0330374538898468, 0.031043360009789467, 0.05258333683013916, -0.0342557393014431, 0.000887163681909442, 0.009783721528947353, 0.033317022025585175, -0.05663242191076279, 0.023995762690901756, 0.019705727696418762, -0.03512655198574066, 0.05644392594695091, -0.0635317713022232, -0.009967410005629063, -0.04395042732357979, -0.010455317795276642, 0.04959782212972641, -0.00047973557957448065, -0.04222586750984192, 0.005551144015043974, -0.008581488393247128, -0.0007466968381777406, -0.028026994317770004, 0.016873372718691826, 0.02045634016394615, 0.012843990698456764, 0.029223864898085594, 0.024726511910557747, 0.007503540720790625, -0.019127685576677322, -0.007061726413667202, -0.015253361314535141, 6.744258513204745e-33, 0.0051987627521157265, 0.021002866327762604, -0.013210025615990162, -0.001106036244891584, 0.025310473516583443, 0.027830976992845535, 0.004072962794452906, 0.05545596033334732, -0.01327369175851345, 0.03855185583233833, 0.015537952072918415, -0.02311561070382595, -0.009549291804432869, 0.028021270409226418, 0.04343419894576073, 0.010327198542654514, 0.04914000630378723, -0.042475808411836624, -0.01431573461741209, 0.025854412466287613, 0.033968936651945114, 0.002805540803819895, -0.01844952069222927, 0.006529115606099367, 0.0011855672346428037, 0.016127362847328186, 0.03489063307642937, -0.0037448357325047255, -0.013919448480010033, 0.03856446221470833, 0.004308017436414957, -0.045474302023649216, -0.015124496072530746, -0.04273078590631485, -0.01596898026764393, 0.010589306242763996, 0.01422938983887434, -0.009983506985008717, -0.021198689937591553, -0.0006242997478693724, 0.023639770224690437, 0.006843457464128733, 0.011352733708918095, 0.08438108116388321, 0.022564664483070374, 0.021006520837545395, -0.0012798979878425598, 0.017412081360816956, -0.005255235359072685, 0.00831852201372385, -0.008306758478283882, 0.0008064428111538291, -0.04253792017698288, 0.03913851082324982, 0.02865174226462841, -0.0657353475689888, 0.0012505920603871346, -0.005232533439993858, 0.02126478962600231, -0.04768150672316551, -0.03731172904372215, -0.0313398577272892, -0.02915485017001629, 0.01111419964581728, 0.010910834185779095, -0.037131667137145996, -0.0378766730427742, 0.0092041976749897, -0.023106327280402184, -0.00870758481323719, 0.010746135376393795, 0.02250949665904045, -0.021078838035464287, 0.042003925889730453, 0.002335843164473772, 0.001084404531866312, -0.0455879345536232, -0.009033158421516418, -0.04771502688527107, 0.019622432067990303, 0.03125181794166565, 0.0006425661849789321, 0.04895561933517456, -0.002260324079543352, -0.04090944305062294, 0.0044869789853692055, -0.024009305983781815, 0.016143644228577614, -0.019566422328352928, 0.015680918470025063, 0.01835539937019348, -0.006283658556640148, -0.04032338410615921, 0.06296604126691818, -0.03008231148123741, -1.2338802868328003e-8, -0.050480201840400696, 0.04264980927109718, -0.02678837440907955, -0.016354437917470932, -0.012779461219906807, -0.011235944926738739, -0.012856190092861652, -0.014372652396559715, 0.04511979594826698, 0.030915196985006332, 0.04890992492437363, -0.020872812718153, 0.03749971091747284, -0.010033255442976952, 0.007855245843529701, -0.014120552688837051, -0.03648604825139046, -0.025000330060720444, 0.04490473493933678, 0.030798742547631264, -0.016649916768074036, 0.041807662695646286, -0.053023021668195724, -0.014715738594532013, 0.0009559198515489697, 0.0010892316931858659, 0.030296172946691513, -0.06037386879324913, 0.06551841646432877, -0.04305785149335861, 0.0027346310671418905, 0.0009822940919548273, -0.0017590235220268369, 0.040023963898420334, -0.07084574550390244, -0.06844880431890488, 0.03528266400098801, 0.0483739972114563, 0.015041309408843517, 0.05705306679010391, -0.0018600255716592073, -0.0029387979302555323, -0.056061260402202606, -0.012511449865996838, -0.02481648325920105, -0.009162613190710545, -0.037049293518066406, -0.007154044229537249, 0.022388681769371033, -0.03028714656829834, 0.034148089587688446, -0.014877394773066044, 0.02377285808324814, -0.00675211613997817, 0.08567945659160614, 0.019725734367966652, 0.0019131420413032174, 0.0007493698503822088, -0.006659000646322966, -0.011281294748187065, 0.0032685180194675922, 0.009934748522937298, -0.026893656700849533, -0.01689215935766697 ]
neo4j-text-cannot-be-parsed-to-duration
https://markhneedham.com/blog/2018/07/09/neo4j-text-cannot-be-parsed-to-duration
false
2018-07-15 15:10:00
Python: Parallel download files using requests
[ "python", "requests" ]
[ "Python" ]
I often find myself downloading web pages with Python's http://docs.python-requests.org/en/master/[requests library^] to do some local scrapping when building datasets but I've never come up with a good way for downloading those pages in parallel. Below is the code that I use. First we'll import the required libraries: [source,python] ---- import os import requests from time import time as timer ---- And now a function that streams a response into a local file: [source,python] ---- def fetch_url(entry): path, uri = entry if not os.path.exists(path): r = requests.get(uri, stream=True) if r.status_code == 200: with open(path, 'wb') as f: for chunk in r: f.write(chunk) return path ---- Let's download some web pages: [source,python] ---- urls = [ ("/tmp/1.html", "https://markhneedham.com/blog/2018/07/10/neo4j-grouping-datetimes/"), ("/tmp/2.html", "https://markhneedham.com/blog/2018/07/09/neo4j-text-cannot-be-parsed-to-duration/"), ("/tmp/3.html", "https://markhneedham.com/blog/2018/06/15/neo4j-querying-strava-graph-py2neo/"), ("/tmp/4.html", "https://markhneedham.com/blog/2018/06/12/neo4j-building-strava-graph/"), ("/tmp/5.html", "https://markhneedham.com/blog/2018/06/05/neo4j-apoc-loading-data-strava-paginated-json-api/"), ("/tmp/6.html", "https://markhneedham.com/blog/2018/06/03/neo4j-3.4-gotchas-working-with-durations/"), ("/tmp/7.html", "https://markhneedham.com/blog/2018/06/03/neo4j-3.4-formatting-instances-durations-dates/"), ("/tmp/8.html", "https://markhneedham.com/blog/2018/06/02/neo4j-3.4-comparing-durations/"), ("/tmp/9.html", "https://markhneedham.com/blog/2018/05/19/interpreting-word2vec-glove-embeddings-sklearn-neo4j-graph-algorithms/"), ("/tmp/10.html", "https://markhneedham.com/blog/2018/05/11/node2vec-tensorflow/") ] start = timer() for entry in urls: fetch_url(entry) print(f"Elapsed Time: {timer() - start}") Elapsed Time: 2.0800578594207764 ---- Great! That code does the job but how do we parallelise it? I came across https://stackoverflow.com/questions/16181121/a-very-simple-multithreading-parallel-url-fetching-without-queue/27986480#27986480[a neat approach in a StackOverflow reply^] which can be plugged into my existing code really easily. We'll use the https://docs.python.org/2/library/multiprocessing.html[multiprocessing^] library to help us out so let's get that imported: [source,python] ---- from multiprocessing.pool import ThreadPool ---- And now we create a thread pool and then call out to our `fetch_url` function with the list of URLs that we created earlier on: [source,python] ---- results = ThreadPool(8).imap_unordered(fetch_url, urls) for path in results: print(path) print(f"Elapsed Time: {timer() - start}") Elapsed Time: 0.47546887397766113 ---- Cool! It's 5x quicker and that's just for 10 pages - as we download more pages we'll see even more benefit from this approach. This post is more for future Mark than anyone else so...to future me, you're welcome!
Learn how to download multiple files at the same time.
null
[ 0.00476419972255826, -0.045505546033382416, -0.007465929724276066, 0.029895177111029625, 0.06817977130413055, -0.004181004595011473, -0.007091210689395666, 0.04494096711277962, 0.004114994779229164, -0.015923582017421722, -0.0221234243363142, -0.033560242503881454, -0.06935422122478485, 0.003946877550333738, 0.014825575053691864, 0.05606848746538162, 0.05679534003138542, -0.013186300173401833, 0.026324452832341194, -0.02036997675895691, 0.007283366750925779, 0.0477837435901165, -0.017344437539577484, 0.037261076271533966, 0.012364202179014683, -0.0279170460999012, 0.007918651215732098, 0.00695693539455533, -0.038256190717220306, -0.004470679443329573, 0.04963665083050728, 0.012114861980080605, 0.014583220705389977, 0.011221176944673061, 0.057622771710157394, -0.030006304383277893, -0.03285166993737221, -0.0004782508185598999, 0.0017264758935198188, 0.009508519433438778, -0.04350053519010544, 0.03588235378265381, -0.03345343843102455, 0.006105020642280579, -0.04623718559741974, 0.053942788392305374, 0.02251617982983589, 0.06642119586467743, -0.0038682925514876842, 0.0029745842330157757, -0.07503417879343033, 0.040693577378988266, 0.007624858524650335, -0.02219151146709919, 0.00865141861140728, 0.052027951925992966, -0.006972248200327158, -0.05119550973176956, 0.048508934676647186, -0.005427811294794083, 0.016145290806889534, -0.02104133553802967, 0.028598910197615623, 0.046681471168994904, -0.0008728976245038211, -0.03954719752073288, 0.008943525142967701, 0.08490385860204697, -0.03643665835261345, -0.012472766451537609, -0.015483631752431393, 0.01178356260061264, -0.042181964963674545, 0.04116099327802658, 0.0005618560244329274, -0.051793172955513, 0.015094863250851631, 0.042928457260131836, 0.029097629711031914, 0.059389881789684296, -0.004993518348783255, 0.01957383006811142, 0.02995421551167965, 0.045517656952142715, -0.013208765536546707, -0.02265189215540886, -0.06181054562330246, 0.002337842946872115, -0.05711068585515022, 0.039326950907707214, 0.01116124540567398, -0.06993772089481354, -0.0020788919646292925, 0.004434911534190178, 0.0017141203861683607, 0.01137279812246561, -0.0058302986435592175, 0.01999749429523945, 0.033985838294029236, -0.015324111096560955, -0.06281594187021255, -0.036969900131225586, 0.000528611009940505, 0.008009972982108593, -0.0555405430495739, -0.03111463412642479, 0.008603867143392563, -0.047549571841955185, 0.002304082503542304, -0.011571241542696953, -0.012347852811217308, -0.023198992013931274, -0.034402698278427124, 0.0014753503492102027, -0.07836200296878815, 0.055820878595113754, 0.004240748472511768, -0.03652443364262581, -0.06676013022661209, -0.003683554008603096, 0.053795814514160156, 0.04499813914299011, -0.010501033626496792, 0.06837984174489975, 0.01946979947388172, 0.043589234352111816, 0.014284718781709671, 0.04742768406867981, -0.003222248749807477, -0.06669420748949051, 0.010011108592152596, 0.08311011642217636, -0.0119920140132308, -0.007886187173426151, -0.02492223121225834, 0.0012839862611144781, -0.019923405721783638, 0.023296259343624115, 0.08517333120107651, 0.008775782771408558, -0.008851335383951664, -0.021472668275237083, -0.00004559056833386421, 0.029300689697265625, 0.057478491216897964, 0.02632960118353367, -0.015428631566464901, -0.0472751222550869, -0.023069927468895912, 0.004328117240220308, 0.018724247813224792, 0.025176968425512314, 0.03839779272675514, -0.031139204278588295, 0.005862847901880741, 0.10572198778390884, 0.05781760811805725, 0.06523589044809341, -0.03503137081861496, -0.002687575528398156, 0.02472028322517872, 0.04212323576211929, -0.028473151847720146, 0.05737242102622986, -0.01983792334794998, -0.020578918978571892, -0.02027422934770584, 0.07269284129142761, 0.00925134401768446, 0.01482374593615532, -0.043705377727746964, -0.027375206351280212, 0.054159749299287796, -0.03774743527173996, -0.01815013214945793, 0.020831668749451637, 0.08347631245851517, 0.008203698322176933, 0.035737182945013046, -0.012550866231322289, -0.06171765923500061, 0.06492580473423004, 0.025847267359495163, 0.02530037611722946, -0.019395165145397186, 0.005677068140357733, 0.11872076243162155, 0.026706185191869736, -0.03396117687225342, 0.029663391411304474, -0.06759030371904373, -0.051835235208272934, -0.02695521153509617, -0.012599777430295944, 0.0517965592443943, -0.033872537314891815, 0.009057910181581974, 0.0642121434211731, 0.03287696838378906, 0.04323486238718033, 0.020779047161340714, -0.01909509487450123, 0.022206155583262444, -0.0659436360001564, -0.06193412095308304, 0.015907173976302147, 0.013259855099022388, -0.06783591955900192, -0.01956617459654808, -0.017427822574973106, -0.04739031195640564, 0.012298760935664177, 0.04166969284415245, 0.001947785378433764, 0.021728672087192535, 0.03964892029762268, 0.04816622659564018, -0.02414061687886715, 0.024145837873220444, -0.033728890120983124, 0.0656927227973938, -0.023262759670615196, -0.045023661106824875, -0.028754809871315956, 0.018001703545451164, 0.10833227634429932, 0.060992781072854996, 0.007460602559149265, -0.04287688434123993, 0.02413196489214897, -0.028832586482167244, -0.02903573587536812, -0.009004279971122742, 0.0022335704416036606, -0.04180420935153961, 0.008334456011652946, -0.015827398747205734, -0.008551948703825474, -0.005727496463805437, -0.03214379400014877, -0.020115263760089874, 0.03393147885799408, 0.0008940156549215317, 0.029236309230327606, 0.04470544680953026, -0.025313725695014, -0.02482234686613083, -0.036574430763721466, -0.037506893277168274, 0.01211775653064251, 0.004187893122434616, -0.007375773042440414, 0.03651602566242218, -0.0409277081489563, -0.03581908717751503, -0.0284622423350811, -0.01697373576462269, 0.06420296430587769, 0.04894033819437027, 0.03340599313378334, 0.0005638321745209396, 0.015876909717917442, -0.02038680762052536, 0.009847035631537437, -0.025493180379271507, -0.06721476465463638, -0.07956461608409882, -0.05303270369768143, 0.053612399846315384, 0.03213760629296303, 0.017875835299491882, 0.0033933082595467567, 0.024993857368826866, 0.008265091106295586, -0.015223394148051739, -0.015783362090587616, 0.053860023617744446, -0.003658897941932082, -0.0010618293890729547, -0.06072935834527016, -0.03671298921108246, 0.050776295363903046, -0.041790109127759933, -0.05529782548546791, -0.040173016488552094, -0.05692119151353836, 0.05736296996474266, -0.0563475638628006, -0.011384344659745693, 0.001121895620599389, 0.017393458634614944, 0.04722822830080986, 0.00700672622770071, 0.02188611775636673, 0.063261479139328, 0.0367228239774704, -0.007216580677777529, 0.0074135479517281055, 0.011045730672776699, 0.013160241767764091, -0.00931376963853836, 0.019392697140574455, 0.044340845197439194, -0.0010448461398482323, -0.025860663503408432, -0.034726373851299286, 0.007146034389734268, -0.058480553328990936, -0.26806411147117615, 0.04308803007006645, 0.0022531156428158283, -0.03789498284459114, 0.033100347965955734, -0.009512416087090969, 0.0021434626542031765, -0.03447858989238739, 0.00010950052819680423, -0.0029694761615246534, -0.02510383538901806, -0.010897758416831493, -0.032895512878894806, 0.04720485210418701, 0.006853807717561722, 0.03178369626402855, -0.03231406584382057, -0.019325342029333115, 0.0034951723646372557, 0.041409481316804886, 0.017857545986771584, -0.037540365010499954, -0.003432014025747776, 0.03050621971487999, 0.019228089600801468, 0.027767958119511604, -0.08293651789426804, 0.03285374864935875, -0.06364436447620392, -0.04225197061896324, 0.023604631423950195, -0.03949210047721863, 0.01656665839254856, -0.024930421262979507, 0.00005226304710959084, -0.015529659576714039, 0.05202773958444595, 0.00030841847183182836, -0.00349208596162498, -0.0036361217498779297, -0.06126164644956589, -0.030936509370803833, -0.042194683104753494, -0.02969115786254406, 0.07768338918685913, 0.03011627122759819, -0.06358138471841812, -0.025515204295516014, 0.005222291685640812, 0.056022096425294876, -0.02781594917178154, -0.05321553722023964, -0.04093625023961067, 0.006000700872391462, -0.03916418179869652, -0.03390134125947952, -0.03699563071131706, 0.004609195049852133, -0.02147662825882435, -0.031788554042577744, 0.012420140206813812, -0.025429973378777504, -0.01651920937001705, -0.03869545832276344, -0.021820805966854095, -0.03788971155881882, -0.06316852569580078, -0.04337390512228012, 0.03219829127192497, 0.05041661113500595, -0.036172568798065186, 0.01955178752541542, -0.014077825471758842, -0.10140932351350784, -0.006726502440869808, -0.048047661781311035, -0.011315576732158661, 0.04560606926679611, -0.012731931172311306, 0.0564621239900589, -0.05350475013256073, -0.06255443394184113, 0.006725415587425232, 0.0026084899436682463, 0.032754961401224136, -0.03262254595756531, 0.013605309650301933, -0.036757536232471466, -0.013827512972056866, 0.005506865214556456, 0.053905244916677475, -0.03435789793729782, 0.0062895347364246845, -0.017512734979391098, -0.019042856991291046, 0.028820142149925232, -0.002188919112086296, 0.029150674119591713, 0.029808782041072845, 0.03585915267467499, 0.020786423236131668, -0.03852636367082596, -0.03242117911577225, -0.05234704539179802, -0.010152223519980907, 0.011243165470659733, -0.016814077273011208, 0.019025543704628944, 0.01950933411717415, 0.041693754494190216, -0.035212770104408264, -0.009138049557805061, 0.0042626624926924706, -0.021369338035583496, -0.008876344189047813, -0.0015924853505566716, 0.016286013647913933, -0.009262214414775372, 0.0063588181510567665, -0.026021407917141914, -0.07108206301927567, 0.02809225767850876, 0.048739198595285416, -0.028557855635881424, -0.035476863384246826, -0.03857364133000374, -0.014906007796525955, -0.04484180361032486, 0.03043648600578308, 0.02027607150375843, -0.015552337281405926, 0.01153432298451662, 0.015025326982140541, -0.03339099884033203, 0.006182173267006874, -0.032417092472314835, -0.020425625145435333, -0.031721390783786774, 0.03278553485870361, 0.02728424035012722, -0.01485482044517994, -0.005570441950112581, 0.0005024938727729023, 0.0416271835565567, 0.05663549154996872, 0.040923137217760086, 0.014513252303004265, 0.0369156152009964, -0.012772728689014912, -0.010577738285064697, -0.024900924414396286, -0.03787240758538246, 0.007868357934057713, -0.023297198116779327, -0.038110144436359406, -0.012155336327850819, 0.02460622601211071, 0.0068588159047067165, -0.000098172458820045, -0.033078521490097046, 0.024379460141062737, -0.06087595969438553, 0.012885531410574913, 0.012690036557614803, -0.013801921159029007, 0.032173339277505875, -0.01170870941132307, 0.025523148477077484, -0.003223036415874958, -0.04058102145791054, 0.021848734468221664, 0.036441970616579056, 0.020250026136636734, 0.014959189109504223, -0.005169469863176346, 0.02014334499835968, 0.012780307792127132, 0.06833071261644363, -0.012515384703874588, 0.019891982898116112, -0.02013288252055645, 0.008947211317718029, 0.038878537714481354, -0.00014612567611038685, 0.02594960667192936, 0.033833544701337814, -0.033123333007097244, 0.025691622868180275, 0.0022602505050599575, -0.004162845201790333, -0.018488707020878792, 0.006552858278155327, -0.00848276074975729, -0.006775306072086096, 0.023183397948741913, -0.07292579859495163, 0.04965934902429581, -0.00911415833979845, -0.007907719351351261, 0.003414838807657361, -0.034115660935640335, 0.009523186832666397, -0.010379969142377377, 0.017459811642766, 0.014309152960777283, -0.022060295566916466, -0.047647666186094284, -0.004609370604157448, 0.017893806099891663, -0.01562866009771824, 0.007345692720264196, -0.07068844884634018, -0.0321936197578907, 0.02740457095205784, -0.00041284170583821833, 0.007982742972671986, -0.03923904150724411, -0.01810070499777794, -0.0025055960286408663, -0.00869511067867279, 0.0162116140127182, 0.027016736567020416, 0.02245677076280117, -0.027245255187153816, -0.013001082465052605, 0.028980426490306854, 0.004498816095292568, -0.024313325062394142, 0.015575004741549492, -0.0008146481122821569, 0.024177080020308495, -0.024089399725198746, 0.03316032886505127, 0.01410643570125103, 0.004278961569070816, 0.005309318657964468, -0.03113902546465397, 0.027720069512724876, 0.002564516616985202, 0.03633750230073929, -0.01068786345422268, 0.023964017629623413, -0.022205300629138947, 0.007564578205347061, -0.006231564097106457, 0.014673535712063313, 0.004717745818197727, 0.018093865364789963, -0.0029665674082934856, 0.05321681499481201, 0.0004845529911108315, 0.03328262269496918, 0.026074018329381943, -0.04176965355873108, 0.023568321019411087, -0.03801048919558525, -0.07029670476913452, -0.03286043554544449, -0.042659517377614975, 0.021520936861634254, 0.034907516092061996, 0.003090471029281616, -0.08948531001806259, 0.05788270756602287, 0.02742578461766243, 0.032445356249809265, 0.08373287320137024, -0.006047207396477461, 0.008434511721134186, -0.02077510952949524, -0.014276516623795033, -0.07746826857328415, -0.015791356563568115, 0.074341781437397, 0.025804029777646065, -0.0014823636738583446, -0.0000032891832688619616, -0.011631201952695847, 0.03796469792723656, -0.07316607981920242, -0.028933705762028694, 0.03555479273200035, -0.02888547256588936, -0.013293759897351265, 0.005184805486351252, -0.06289611756801605, 0.03284440562129021, 0.07081328332424164, -0.036528632044792175, -0.030852457508444786, -0.039095327258110046, 0.06289069354534149, 0.00894953217357397, 0.06059141829609871, -0.03419181704521179, -0.0383477546274662, 0.07293146103620529, 0.014993435703217983, -0.014170785434544086, 0.03409644216299057, -0.004578000865876675, 0.010581742972135544, 0.010564508847892284, -0.022244829684495926, 0.0035276715643703938, 0.03826052322983742, 0.019216833636164665, -0.02884197048842907, 0.04615584388375282, 0.0009300617966800928, -0.016520682722330093, -0.03674239292740822, 0.06897253543138504, 0.009246988222002983, -0.053785938769578934, -0.04419628903269768, 0.02915053628385067, -0.04850441589951515, -0.035068266093730927, -0.018140513449907303, 0.0050293863750994205, -0.021699922159314156, 0.0726766511797905, -0.0255760345607996, 0.0009379817056469619, 0.07117767632007599, -0.032489459961652756, -0.003179802792146802, 0.025042759254574776, 0.07354919612407684, 0.05676386132836342, 0.010206776671111584, -0.029601091518998146, 0.0735793188214302, 0.018140234053134918, -0.036780260503292084, -0.023790299892425537, -0.028011033311486244, -0.04486444965004921, -0.01381177268922329, -0.0030036151874810457, 0.036261897534132004, -0.01585431583225727, 0.0696302130818367, -0.029992232099175453, 0.007694636937230825, -0.012015038169920444, 0.017637629061937332, 0.025306344032287598, 0.032314006239175797, -0.010516212321817875, 0.03596816211938858, -0.05175347998738289, -0.02346929907798767, 0.059308722615242004, -0.005117183551192284, -0.01872827298939228, 0.015369129367172718, -0.005524253938347101, -0.007789792492985725, 0.012093789875507355, 0.052560850977897644, 0.0612666979432106, -0.007923778146505356, -0.03173980489373207, -0.004056418780237436, 0.013638747856020927, -0.01534183043986559, 0.009591842070221901, -0.005354747641831636, -0.014159717597067356, 0.0061438195407390594, -0.06516803801059723, -0.01067822054028511, -0.025827700272202492, -0.03679126128554344, 0.0034594901371747255, -0.03626291826367378, 0.015707755461335182, -0.042721863836050034, -0.04804291948676109, -0.033770546317100525, -0.016293257474899292, -0.0458046980202198, -0.029444653540849686, -0.07048386335372925, -0.01570114493370056, 0.029579633846879005, 0.0047296639531850815, -0.02381625398993492, -0.0393713042140007, -0.008261749520897865, -0.010142630897462368, 0.03171602264046669, -0.052645787596702576, -0.018975652754306793, 0.009250381961464882, 0.016318628564476967, 0.005430448334664106, 0.03181978687644005, 0.06022796779870987, -0.01705073192715645, -0.01364237628877163, -0.01081321481615305, 0.015091105364263058, 0.035017672926187515, 0.03411280736327171, 0.009265915490686893, -0.08103947341442108, 0.002264061477035284, 0.014735842123627663, 0.016244210302829742, -0.06129150465130806, 0.017559463158249855, 0.06693463772535324, -0.002952307928353548, 0.03438601270318031, -0.022582044824957848, -0.020333608612418175, -0.03073974698781967, -0.012995054014027119, 0.005743364803493023, 0.01831095851957798, 0.03834681585431099, -0.002329727867618203, 0.05416637286543846, 0.03055359609425068, -0.023664113134145737, -0.01533567812293768, -0.01967584900557995, -0.014032629318535328, 0.017183205112814903, -0.038452938199043274, -0.03814752399921417, -0.06520465016365051, -0.06433314830064774, -0.06628259271383286, 0.0382087305188179, 0.0018158000893890858, -0.021051060408353806, 0.02048572152853012, 0.009650156833231449, -0.04166684299707413, 0.038289908319711685, -0.04034429416060448, 0.004878858104348183, 0.006745653692632914, -0.01670931465923786, 0.0042059775441884995, 0.02573264390230179, 0.03874199464917183, -0.006094890180975199, 0.01142775360494852, -0.03463060036301613, -0.018350888043642044, -0.003842391539365053, 0.028460288420319557, 0.06052853912115097, 0.010391611605882645, 0.02220930904150009 ]
[ -0.07576972246170044, -0.016148533672094345, -0.036469291895627975, -0.006675852462649345, 0.060701701790094376, -0.06655403226613998, -0.06107907369732857, 0.01478371862322092, -0.003347368910908699, -0.024252569302916527, -0.00579106854274869, -0.06672833114862442, 0.004716651979833841, 0.01322521548718214, 0.06674442440271378, -0.007133570499718189, -0.01737895980477333, -0.05972471088171005, -0.0030609373934566975, 0.05329893156886101, 0.0025488759856671095, -0.014164766296744347, -0.01879575289785862, -0.043164949864149094, -0.0033733972813934088, 0.01950002647936344, 0.03246334567666054, -0.021678432822227478, -0.012666595168411732, -0.1751331388950348, 0.04170016944408417, -0.012708279304206371, -0.026065167039632797, -0.026598362252116203, 0.03607519716024399, 0.028408808633685112, 0.05099117383360863, -0.00911836326122284, 0.018714847043156624, 0.04389873519539833, 0.0229059886187315, 0.027423467487096786, -0.0977473184466362, 0.011737477034330368, 0.03527820110321045, 0.033367469906806946, -0.015488889068365097, -0.016227172687649727, 0.012911513447761536, 0.003903801552951336, -0.04626769199967384, 0.005055801477283239, 0.008951094932854176, -0.03740072622895241, 0.004512467421591282, -0.0006861476576887071, 0.04414980486035347, 0.10476618260145187, 0.03327703848481178, 0.02561134099960327, 0.0030969863291829824, 0.004623021464794874, -0.10801633447408676, 0.10092055797576904, 0.033569857478141785, 0.03569352626800537, -0.07059577852487564, 0.009606558829545975, 0.001889307633973658, 0.07856809347867966, -0.0337333157658577, -0.0019550251308828592, -0.04714174196124077, 0.07015162706375122, 0.000942958751693368, -0.009410166181623936, 0.005810169503092766, 0.0433068685233593, 0.022551674395799637, -0.03540544956922531, -0.04596911370754242, -0.005207907874137163, -0.023675430566072464, -0.03323758393526077, -0.03749513253569603, 0.03770575299859047, -0.01283120084553957, 0.07076507061719894, 0.0017241524765267968, 0.02327115274965763, 0.020002277567982674, -0.001959415152668953, 0.03884380683302879, 0.035096608102321625, -0.07977835834026337, -0.005369964521378279, 0.03270578011870384, 0.023060781881213188, 0.0036298802588135004, 0.38210242986679077, 0.008445301093161106, -0.004431018605828285, 0.05033104494214058, 0.06997719407081604, 0.005646690260618925, -0.03772291541099548, 0.006577064748853445, -0.05384187027812004, 0.013198626227676868, -0.01726827397942543, 0.01938987895846367, -0.03596816956996918, 0.06992478668689728, -0.09257382154464722, 0.022783279418945312, 0.022769931703805923, -0.01587716117501259, 0.013287643902003765, -0.035473715513944626, 0.014262646436691284, -0.03880571201443672, -0.006993287708610296, 0.06339836865663528, -0.014307864010334015, 0.032961491495370865, 0.03059626743197441, 0.026214059442281723, 0.04947661980986595, 0.025114014744758606, 0.021015778183937073, 0.031894274055957794, -0.0008959976257756352, -0.06743430346250534, 0.02043815329670906, -0.014673384837806225, -0.0014787226682528853, 0.01266141701489687, -0.04281967505812645, -0.008721137419342995, 0.024937285110354424, -0.010027418844401836, -0.03321926295757294, -0.0038969500456005335, -0.011116060428321362, -0.03007248044013977, 0.11261333525180817, 0.020684611052274704, -0.012599105946719646, -0.04303653910756111, -0.06532236188650131, -0.020322000607848167, 0.02426607348024845, 0.025064844638109207, -0.07621245086193085, 0.005564761348068714, 0.003009231761097908, 0.09015090018510818, 0.0006245675031095743, -0.055291593074798584, -0.011605322360992432, -0.03402907773852348, -0.03939118981361389, -0.0279049351811409, 0.05818357318639755, 0.04486031457781792, -0.11853455007076263, -0.015798326581716537, 0.009196375496685505, -0.010550281032919884, -0.06629519164562225, 0.019559655338525772, 0.004028994124382734, -0.022579804062843323, -0.01161316316574812, 0.047261547297239304, -0.03866113722324371, -0.050835397094488144, -0.002938708756119013, 0.0696287602186203, 0.00920846313238144, -0.023186391219496727, 0.013068241998553276, -0.0324467308819294, -0.0021727760322391987, -0.051317814737558365, -0.06112506613135338, -0.08198264241218567, 0.030001573264598846, -0.015257256105542183, -0.02693156898021698, -0.02284271828830242, -0.018667809665203094, -0.02622108906507492, 0.033278126269578934, -0.014587494544684887, -0.010581117123365402, -0.0036768235731869936, 0.010983885265886784, -0.009169950149953365, -0.017533937469124794, 0.04238121584057808, 0.00952918827533722, -0.026357343420386314, 0.031204117462038994, -0.05947871878743172, 0.032572247087955475, 0.05430663377046585, -0.02505977638065815, 0.06859461218118668, 0.025858039036393166, -0.03976622223854065, -0.018696483224630356, 0.005044637247920036, 0.013666241429746151, -0.028148744255304337, -0.05149708315730095, 0.01064202282577753, -0.007983902469277382, 0.04995019733905792, 0.06476979702711105, -0.05370740965008736, -0.05658829212188721, -0.0015741654206067324, -0.35188376903533936, -0.03929657116532326, -0.019834326580166817, -0.0010890389094129205, 0.06340733170509338, -0.055853914469480515, 0.030646255239844322, -0.03501714766025543, 0.0010964261600747705, 0.025392796844244003, 0.13550588488578796, 0.005554037168622017, 0.01165029127150774, -0.08112622797489166, 0.02035992033779621, 0.03875720873475075, -0.011473369784653187, 0.009154257364571095, -0.03642401844263077, 0.02446991577744484, 0.002178346738219261, -0.054209861904382706, -0.031721968203783035, -0.04748784005641937, 0.010596087202429771, -0.03875478729605675, 0.13394798338413239, 0.005241326987743378, 0.055138926953077316, -0.06253930926322937, 0.054601214826107025, 0.02148599363863468, -0.020275428891181946, -0.11328338831663132, -0.04742875322699547, -0.0003290574240963906, 0.03252806514501572, 0.03954530879855156, 0.024437062442302704, -0.006296053994446993, -0.026206815615296364, 0.016334712505340576, -0.0019731936044991016, -0.039000995457172394, -0.047548793256282806, 0.0330803245306015, -0.043303508311510086, -0.028620872646570206, 0.02140921726822853, 0.05057903751730919, -0.007243298925459385, 0.002610898809507489, 0.0007757171406410635, 0.03107784129679203, -0.006924774963408709, -0.01775248534977436, -0.06292322278022766, -0.008027026429772377, 0.01484566181898117, 0.010994098149240017, 0.010549934580922127, -0.002073144307360053, 0.05489441752433777, -0.0661664828658104, 0.029150044545531273, 0.017806096002459526, 0.02675250917673111, -0.00291788624599576, 0.039535682648420334, -0.0005521067068912089, -0.0044605666771531105, 0.13019952178001404, -0.012970629148185253, 0.05573154613375664, -0.029387587681412697, 0.058983150869607925, 0.00641749519854784, 0.043557021766901016, 0.04580934718251228, 0.005299557000398636, 0.03992830589413643, -0.0007706629694439471, 0.056540705263614655, -0.0016117187915369868, -0.014528092928230762, 0.010306539945304394, -0.007859395816922188, -0.02635766565799713, 0.04200158268213272, 0.025508511811494827, -0.005597833078354597, 0.006624407600611448, -0.04512101784348488, -0.023128343746066093, 0.05148227512836456, -0.0024304247926920652, -0.2722289264202118, 0.041205033659935, 0.001843357109464705, 0.05971851199865341, -0.008995517157018185, -0.004705720581114292, 0.038017138838768005, -0.026596423238515854, -0.001784151652827859, 0.029179025441408157, -0.003995394799858332, 0.047177959233522415, -0.024108504876494408, -0.010357550345361233, 0.00314400065690279, 0.010992743074893951, 0.0540773831307888, 0.015473972074687481, -0.02765807695686817, -0.016418583691120148, 0.022490108385682106, -0.031583309173583984, 0.16765227913856506, 0.024339761584997177, 0.023496923968195915, 0.04903984069824219, -0.023953620344400406, 0.017020683735609055, 0.06947610527276993, -0.00504368357360363, -0.014386342838406563, 0.018836146220564842, 0.0005535086966119707, 0.00014764176739845425, 0.02181973122060299, -0.047789283096790314, -0.03314247354865074, 0.02969968132674694, 0.040627770125865936, -0.032628484070301056, -0.02715947851538658, 0.018582602962851524, -0.05347263067960739, 0.024260733276605606, 0.04710780829191208, -0.02291141264140606, -0.004994024056941271, -0.05898568406701088, -0.08147308230400085, 0.014085392467677593, -0.030400870367884636, -0.03951604664325714, -0.0026767547242343426, -0.039980120956897736, 0.025269655510783195, 0.1010209247469902, 0.02201209031045437, -0.03620785474777222, -0.015691950917243958, 0.01926320418715477, 0.008592630736529827, -0.08135674148797989, 0.11114872992038727, -0.015053954906761646, -0.012000695802271366 ]
[ -0.006330779753625393, 0.03911055251955986, -0.022145522758364677, 0.019958410412073135, 0.0015916767297312617, -0.01908537745475769, -0.028574267402291298, 0.006366902496665716, -0.020842282101511955, -0.028246723115444183, -0.021057097241282463, 0.014483318664133549, 0.021812183782458305, -0.012316733598709106, -0.011928272433578968, -0.005213590804487467, -0.012742387130856514, 0.031072385609149933, 0.04200676828622818, -0.01203728187829256, -0.003896984038874507, 0.028523050248622894, 0.03874538093805313, 0.016564810648560524, 0.0007578985532745719, 0.023819126188755035, -0.06742814183235168, -0.0032089033629745245, 0.02537461370229721, -0.11046713590621948, 0.008061056025326252, -0.024686258286237717, -0.03724939748644829, -0.02657313644886017, 0.009002966806292534, 0.04685543105006218, 0.004625759087502956, 0.0012396404054015875, 0.005402922630310059, 0.026669571176171303, 0.05312172695994377, -0.007901369594037533, -0.02692301757633686, -0.020122524350881577, -0.040766868740320206, -0.030005747452378273, -0.015297778882086277, 0.008356780745089054, -0.022729601711034775, -0.00889621116220951, -0.037046484649181366, -0.0016306338366121054, -0.03970888629555702, 0.0012215623864904046, 0.012595868669450283, -0.026760434731841087, -0.006842291448265314, -0.026493901386857033, 0.00014920161629561335, -0.0179333183914423, -0.009768263436853886, -0.016387097537517548, -0.04567547142505646, -0.023417549207806587, -0.006029789336025715, -0.007425965275615454, -0.04100308567285538, 0.013923751190304756, 0.02720348723232746, 0.014212727546691895, -0.024162989109754562, 0.04583657905459404, -0.06481234729290009, -0.004051572643220425, -0.014782009646296501, -0.009721110574901104, 0.04896494746208191, -0.00042286445386707783, -0.04629916697740555, 0.007971161045134068, -0.03435882180929184, -0.015634167939424515, -0.0030919911805540323, 0.016537243500351906, -0.024276578798890114, -0.0338749885559082, 0.003201334970071912, 0.024055318906903267, 0.018104417249560356, -0.016646118834614754, -0.004948474932461977, 0.010663168504834175, 0.002339921658858657, 0.01291518285870552, -0.08770540356636047, -0.027227463200688362, 0.0323847196996212, 0.0023447482381016016, 0.0011114377994090319, 0.8207986354827881, 0.010911683551967144, -0.027933187782764435, 0.030897820368409157, 0.009373445995151997, 0.025642525404691696, -0.027740957215428352, -0.019810063764452934, -0.0014098483370617032, 0.01776069588959217, -0.0438363179564476, -0.006047328934073448, 0.014743308536708355, 0.022822892293334007, 0.01447291113436222, 0.005837330128997564, 0.02832700125873089, 0.009926087222993374, -0.006015168037265539, -0.0037110960111021996, 0.02989814803004265, 0.004296727944165468, 0.021837150678038597, 0.003492699470371008, -0.0005928221507929265, 0.023859482258558273, -0.17657147347927094, 0.023692196235060692, -7.07581844979768e-33, 0.044334761798381805, -0.013180535286664963, 0.020993122830986977, -0.006910678464919329, 0.04168088361620903, 0.010688913986086845, 0.02128315344452858, -0.021991867572069168, -0.0071566347032785416, -0.026132257655262947, -0.016806263476610184, -0.011177899315953255, 0.010029657743871212, 0.017282811924815178, 0.01813681051135063, -0.010713858529925346, 0.008417882956564426, 0.04756017029285431, 0.021025286987423897, 0.03337720409035683, 0.0319756343960762, 0.025503171607851982, 0.015397202223539352, 0.06118423864245415, 0.002471315674483776, 0.019973643124103546, -0.024035444483160973, -0.0021988125517964363, -0.024874260649085045, -0.0382506363093853, -0.030417487025260925, 0.011296962387859821, -0.007576060947030783, -0.03308980539441109, 0.032215505838394165, -0.04585522040724754, -0.026348086073994637, 0.017037408426404, -0.03721651807427406, -0.06113706901669502, -0.016520710662007332, 0.0017155947862192988, -0.02450120821595192, -0.04135633260011673, -0.0427270345389843, -0.02796914242208004, -0.034030087292194366, 0.016290592029690742, -0.005817214027047157, 0.03189876675605774, 0.01683923974633217, 0.012863555923104286, 0.02464023232460022, 0.008219393901526928, -0.026390118524432182, -0.005193215329200029, 0.01561628095805645, 0.0139393899589777, 0.054997727274894714, 0.013573260977864265, 0.021834654733538628, -0.010166333056986332, -0.007966653443872929, 0.0165114663541317, 0.012490836903452873, -0.017294803634285927, 0.03947976976633072, 0.07347756624221802, 0.03542549908161163, 0.027995146811008453, -0.04387904703617096, 0.03171062469482422, 0.004247439093887806, 0.0023636987898498774, 0.03445941582322121, -0.017413755878806114, -0.011968922801315784, -0.019418293610215187, 0.016535548493266106, 0.0369974821805954, 0.019788464531302452, -0.03677133098244667, -0.012255285866558552, -0.05455643683671951, -0.021581757813692093, 0.0017536801751703024, 0.0396142452955246, -0.005348540842533112, -0.011685537174344063, 0.019732709974050522, 0.020153678953647614, 0.028413694351911545, -0.005239341873675585, -0.024806218221783638, -0.03640470653772354, 7.206592196326659e-33, 0.013181163929402828, -0.04413167014718056, -0.00625633355230093, 0.006640238221734762, 0.012061559595167637, -0.007694703061133623, -0.010962455533444881, 0.027316926047205925, -0.02665148489177227, 0.05844486132264137, 0.006380937993526459, -0.026757678017020226, -0.022610584273934364, 0.03168664127588272, 0.03762077912688255, -0.008038071915507317, 0.040877725929021835, -0.008762625977396965, 0.03816699609160423, 0.0033429558388888836, -0.024367444217205048, -0.002508641919121146, -0.025473427027463913, 0.007333662826567888, 0.03356587886810303, 0.03394106775522232, -0.023754697293043137, -0.018917616456747055, -0.02077616937458515, 0.022575397044420242, -0.008486451581120491, -0.03647824004292488, -0.0015450897626578808, -0.012645159848034382, -0.0063634635880589485, 0.06033684313297272, -0.0030423449352383614, 0.01596633903682232, 0.0530473068356514, 0.005147034302353859, 0.06042556092143059, 0.02583634853363037, -0.0009130457765422761, 0.05283913388848305, -0.007179624401032925, 0.032750166952610016, 0.001192366355098784, 0.018310317769646645, -0.0433211475610733, 0.029837727546691895, 0.0035344178322702646, 0.02908080443739891, 0.013164587318897247, 0.02338973991572857, 0.021661007776856422, -0.05288366973400116, -0.0007980666123330593, 0.01619812846183777, -0.05351576209068298, -0.01719013787806034, -0.03967761620879173, -0.01607545278966427, -0.054635487496852875, 0.009681114926934242, -0.03426479175686836, -0.025404231622815132, -0.0276090856641531, -0.012564882636070251, 0.007632008288055658, -0.001072913408279419, 0.008916010148823261, 0.010389391332864761, -0.007900401949882507, 0.0277476217597723, 0.013061231933534145, -0.018244465813040733, -0.03425769880414009, 0.013459698297083378, -0.027221370488405228, 0.035975802689790726, 0.0038066350389271975, 0.03172735497355461, 0.01578575186431408, -0.0029463779646903276, -0.008965502493083477, -0.0028490296099334955, -0.039371978491544724, 0.013309508562088013, 0.02398260310292244, -0.045538075268268585, 0.016975540667772293, 0.0014222068712115288, -0.048543781042099, 0.04176321625709534, 0.010042297653853893, -1.2467109122837883e-8, -0.020155133679509163, -0.00840548612177372, -0.01626017317175865, 0.041403841227293015, 0.0201486274600029, 0.04841809719800949, -0.009269732981920242, 0.01772199012339115, -0.01251370832324028, 0.018962223082780838, 0.08973447978496552, -0.03022931143641472, 0.0067303366959095, -0.006063434761017561, -0.0089429821819067, -0.038547709584236145, 0.005614086054265499, -0.00042294306331314147, 0.03608239069581032, -0.01593036763370037, 0.03497806191444397, 0.024698816239833832, 0.03756515309214592, 0.0017420571530237794, 0.01864751987159252, -0.018991172313690186, 0.03285102918744087, -0.0779476910829544, -0.03950169309973717, -0.04500526934862137, -0.0026175749953836203, -0.040700607001781464, -0.04181716963648796, 0.032042331993579865, -0.005722798407077789, -0.03770845755934715, -0.0014368012780323625, 0.02889944612979889, -0.02767203561961651, 0.018311956897377968, 0.0016315765678882599, 0.0018516163108870387, -0.030574457719922066, -0.02717239409685135, -0.015152345411479473, 0.018717285245656967, -0.059981636703014374, 0.008464032784104347, 0.026414036750793457, -0.03510599583387375, 0.009105638600885868, -0.012923029251396656, 0.038717545568943024, 0.04367396980524063, 0.05730823054909706, -0.005588176194578409, 0.012343312613666058, -0.040279459208250046, -0.034885749220848083, 0.003524581203237176, 0.03082193247973919, 0.03440305218100548, -0.006720301229506731, -0.02323068678379059 ]
python-parallel-download-files-requests
https://markhneedham.com/blog/2018/07/15/python-parallel-download-files-requests
false
2018-09-05 07:26:00
Neo4j: Using LOAD CSV to process csv.gz files from S3
[ "s3", "neo4j" ]
[ "Neo4j" ]
I've been building some training material for the https://graphconnect.com/[GraphConnect^] conference that happens in a couple of weeks time and I wanted to load gzipped CSV files. I got this working using Cypher's LOAD CSV command with the file stored locally, but when I uploaded it to S3 it didn't work as I expected. I uploaded the file to an S3 bucket and then tried to read it back like this: [source, cypher] ---- LOAD CSV with headers from "https://guides.neo4j.com/listings/data/nyc/listings.csv.gz" AS row RETURN row LIMIT 1 ---- I was expecting to get back a map of key/value pairs, but instead I got this: [source, text] ---- ╒══════════════════════════════════════════════════════════════════════╕ │"row" │ ╞══════════════════════════════════════════════════════════════════════╡ │{"\u001f�?�i[\u0002�listings.csv\u0000��r�H�.�{\u001c��ҩ)ۻA�\u0000�8│ │q��([e�Z���gb�\u0001���6�\u0001P2�Ď��0�N��K�#̣�'�����\u0000(ɦˮ�ݻ\\u00│ │17["qI$V�\�o}+�9Q��a|�~�FN6M�U�>�O�":"Mo8\u000f�q2�h�g�Wi2\u000f�\u000│ │074\u0013\u0013�y�o� ���<","\/��U8��i�?�ޗ]$4l\u001a>�m?���OYH��\u001│ │f�d��{�o�$Y��c\u001ad�$�a�9�~�����_�>]��a����4\u0019�E>�>\u0004to�z�│ │�<Yzp�R���d\u001d�K%�\u001f=�":null,"/�Μ�_\u0006N�^.�t�d+\u001a8��� │ │Wy��N�q\u0015�a\u0010O��}2�\u0007)N ›�$I\u0017I2{��\u0006�m\u0018�9q�\│ │u0007���~����O�� �<H�)_j����}��p�b���~\u0018�Ж�":null} │ └──────────────────────────────────────────────────────────────────────┘ ---- After a bit of reading, I realised that the problem is to do with the meta data associated with the file. On initial upload it had `Content-Type` set to `application/x-gzip`. image::{{<siteurl>}}/uploads/2018/09/default_metadata.png[] We want the file to be processed as if it's a CSV file, so to start with we need to change that to `text/csv`. But that isn't quite enough as I found out by changing that value and running the command again! We also need to set `Content-Encoding` to `gzip`, something that I learnt that from Vince Veselosky's https://gist.github.com/veselosky/9427faa38cee75cd8e27[handy gist^] Our meta data should now look like this: image::{{<siteurl>}}/uploads/2018/09/metadata.png[] And if we run our query again we get more familiar output: [source, text] ---- ╒══════════════════════════════════════════════════════════════════════╕ │"row" │ ╞══════════════════════════════════════════════════════════════════════╡ │{"host_verifications":"['email', 'phone', 'facebook', 'reviews', 'jumi│ │o', 'government_id']","country":"United States","notes":"Please no coo│ │king at night but you can warm up food in the microwave and use the ki│ │tchen ","is_business_travel_ready":"f","picture_url":"https://a0.musca│ │che.com/im/pictures/d0489e42-4333-4360-911f-413d503fe146.jpg?aki_polic│ │y=large","house_rules":"no-smoking/please take off your shoes: cleanin│ │g fees $40","requires_license":"f","calendar_last_scraped":"2018-08-07│ │","first_review":"2008-10-13","neighborhood_overview":"","review_score│ │s_cleanliness":"9","number_of_reviews":"170","is_location_exact":"t","│ │space":"-PLEASE BOOK DIRECTLY. NO NEED TO SEND A REQUEST FOR DATES CAL│ │ENDAR IS UP TO DATE ALL AIRBNB RESERVATIONS WILL BE HONORED Nice, comf│ │ortable, and clean private guest room with shared bathroom (2 people m│ │ax) - full size bed. In very nice apartment on central Park North 4th │ │floor walk-up. same place as Chez chic #2, max capacity of the rooms 2│ │ people). You will share the apt with me and my little family. Daily c│ │leaning in common areas. Located one block from Subway 2/3,B/C on 110t│ │h street, Bus M1,2,3,4 at the corner, central park across the street. │ │ Your room: full size bed (sleeps two), desk, Digital Tv/DVD, wifi int│ │ernet, A/C, closet and desk. Sheets/Towels provided. Iron/air dryer pr│ │ovided. Separate Full bathroom shared with guestroom room #2. Access t│ │o the Kitchen from 8AM weekdays or anytime during the weekend and ligh│ │t cooking, access to kitchen at all times but no cooking in the evenin│ │g. The apartment: spacious newly renovated, hardwood floors,3BD, 2Bat│ │h apartment with Living room","review_scores_checkin":"10","cleaning_f│ │ee":"$60.00","host_location":"New York, New York, United States","pric│ │e":"$59.00","experiences_offered":"none","reviews_per_month":"1.42","n│ │eighbourhood":"Harlem","review_scores_location":"9","square_feet":null│ │,"state":"NY","id":"2515","host_identity_verified":"t","longitude":"-7│ │3.95367574543542","weekly_price":"$720.00","bed_type":"Real Bed","revi│ │ew_scores_accuracy":"9","review_scores_value":"9","host_response_time"│ │:"within a day","host_about":" loves to host and welcome travelers fro│ │m around the world in our family Apt.","bathrooms":"1.0","bedrooms":"1│ │","zipcode":"10026","market":"New York","extra_people":"$39.00","licen│ │se":null,"country_code":"US","transit":"Subway 2.3.B.C. at 110th stree│ │t around the corner and bus M.2.3.4 at the corner","xl_picture_url":nu│ │ll,"name":"Stay at Chez Chic budget room #1","availability_60":"22","h│ │ost_thumbnail_url":"https://a0.muscache.com/im/users/2758/profile_pic/│ │1338267836/original.jpg?aki_policy=profile_small","host_neighbourhood"│ │:"Harlem","cancellation_policy":"strict_14_with_grace_period","beds":"│ │2","instant_bookable":"f","scrape_id":"20180806171147","amenities":"{T│ │V,"Cable TV",Internet,Wifi,"Air conditioning",Kitchen,"Free street par│ │king","Buzzer/wireless intercom",Heating,"Family/kid friendly","Smoke │ │detector","Carbon monoxide detector","Fire extinguisher",Essentials,Sh│ │ampoo,"Lock on bedroom door",Hangers,"Hair dryer",Iron,"Laptop friendl│ │y workspace","Children’s books and toys","Window guards","Pack ’n Play│ │/travel crib","Hot water",Microwave,"Coffee maker",Refrigerator,"Dishe│ │s and silverware","Cooking basics",Oven,Stove,"Host greets you"}","hos│ │t_url":"https://www.airbnb.com/users/show/2758","neighbourhood_cleanse│ │d":"Harlem","access":"Guests will have their PRIVATE BATHROOM (NOTE: S│ │hared between June 22-Aug 22) (shared with 2nd guestroom if there are │ │guests), and the kitchen","city":"New York","latitude":"40.79920479936│ │168","description":"Step into our artistic spacious apartment and enjo│ │y your artistic Guest room with original artwork from NY artists. Shar│ │ed with my little family however we often out and you won't see us muc│ │h. across the street from Central Park - the busy city minutes away bu│ │t sleeping in quiet at night! -PLEASE BOOK DIRECTLY. NO NEED TO SEND A│ │ REQUEST FOR DATES CALENDAR IS UP TO DATE ALL AIRBNB RESERVATIONS WILL│ │ BE HONORED Nice, comfortable, and clean private guest room with share│ │d bathroom (2 people max) - full size bed. In very nice apartment on c│ │entral Park North 4th floor walk-up. same place as Chez chic #2, max c│ │apacity of the rooms 2 people). You will share the apt with me and my │ │little family. Daily cleaning in common areas. Located one block from │ │Subway 2/3,B/C on 110th street, Bus M1,2,3,4 at the corner, central pa│ │rk across the street. Your room: full size bed (sleeps two), desk, Di│ │gital Tv/DVD, wifi internet, A/C, closet and desk. Sheets/Towels provi│ │ded. Iron/air dryer provided. Separate F","require_guest_phone_verific│ │ation":"f","thumbnail_url":null,"review_scores_communication":"9","nei│ │ghbourhood_group_cleansed":"Manhattan","jurisdiction_names":null,"stre│ │et":"New York, NY, United States","has_availability":"t","medium_url":│ │null,"property_type":"Apartment","host_response_rate":"86%","availabil│ │ity_90":"52","require_guest_profile_picture":"f","summary":"Step into │ │our artistic spacious apartment and enjoy your artistic Guest room wit│ │h original artwork from NY artists. Shared with my little family howev│ │er we often out and you won't see us much. across the street from Cent│ │ral Park - the busy city minutes away but sleeping in quiet at night!"│ │,"monthly_price":"$1,690.00","security_deposit":"$0.00","availability_│ │365":"317","smart_location":"New York, NY","availability_30":"6","cale│ │ndar_updated":"5 days ago","listing_url":"https://www.airbnb.com/rooms│ │/2515","guests_included":"2","maximum_nights":"21","host_has_profile_p│ │ic":"t","host_picture_url":"https://a0.muscache.com/im/users/2758/prof│ │ile_pic/1338267836/original.jpg?aki_policy=profile_x_medium","host_id"│ │:"2758","host_listings_count":"3","host_total_listings_count":"3","hos│ │t_acceptance_rate":"N/A","review_scores_rating":"93","minimum_nights":│ │"2","last_review":"2018-07-05","calculated_host_listings_count":"3","a│ │ccommodates":"3","interaction":"We will have a list of Harlem restaura│ │nts and points of interest ready for you, as well as a subway map of N│ │YC and pratical infos.","host_is_superhost":"f","host_since":"2008-09-│ │06","host_name":"Steph","last_scraped":"2018-08-07","room_type":"Priva│ │te room"} │ └──────────────────────────────────────────────────────────────────────┘ ----
Learn how to apply Neo4j Graph Algorithms to a graph of the Python ecosystem.
null
[ 0.011066799983382225, -0.04452081024646759, -0.023468416184186935, 0.06863941997289658, 0.10961990803480148, 0.031893014907836914, -0.00427658949047327, 0.040892522782087326, 0.0070854597724974155, -0.01635891944169998, 0.008828582242131233, -0.013700291514396667, -0.060491811484098434, 0.022181041538715363, -0.005285446532070637, 0.07260742783546448, 0.06812813878059387, 0.009067214094102383, 0.002090993570163846, -0.004409555811434984, 0.024017222225666046, 0.03842204064130783, 0.0037070668768137693, 0.04116250202059746, 0.01901266537606716, -0.01926914043724537, -0.021931935101747513, 0.004991055931895971, -0.04329594597220421, 0.02007981762290001, 0.06816526502370834, -0.005148743744939566, 0.03324689716100693, -0.01632167212665081, -0.002919273916631937, 0.008411120623350143, -0.07544010877609253, 0.003073657164350152, -0.013613034971058369, 0.0013533429009839892, -0.04281240329146385, 0.023963801562786102, -0.03225436061620712, 0.015444454737007618, -0.027779240161180496, 0.016775503754615784, -0.034028422087430954, 0.035706356167793274, -0.01692356914281845, -0.009883982129395008, -0.05986703187227249, 0.0122311320155859, -0.02346900850534439, -0.02512061595916748, 0.01952943578362465, 0.05145162343978882, 0.00909224059432745, -0.06805992871522903, 0.06971988826990128, -0.02938666380941868, -0.02151716873049736, -0.033403731882572174, 0.0055230711586773396, 0.033853013068437576, -0.009098964743316174, -0.0735369324684143, -0.009076647460460663, 0.08415141701698303, -0.03852222487330437, -0.05837937816977501, 0.009621093049645424, 0.03119039349257946, -0.005870413966476917, -0.028089717030525208, -0.005388413090258837, -0.034714266657829285, -0.018080031499266624, 0.03759818896651268, 0.02267872355878353, 0.06914769113063812, -0.04046722874045372, 0.015857500955462456, -0.0032433236483484507, 0.005630249157547951, 0.009515034966170788, -0.03758080676198006, -0.057714033871889114, -0.02096312679350376, -0.039032235741615295, 0.07059063017368317, 0.031422410160303116, -0.04248615354299545, -0.008204969577491283, 0.011089424602687359, -0.003908071666955948, 0.013633346185088158, -0.005634617060422897, 0.008616441860795021, 0.016417166218161583, -0.013510687276721, -0.05406415835022926, -0.0036359711084514856, -0.0005362548981793225, 0.018497927114367485, -0.07264196872711182, 0.00414755754172802, -0.015339866280555725, -0.02937857247889042, 0.0018536383286118507, -0.017232289537787437, 0.0021322788670659065, -0.025502506643533707, -0.024010399356484413, -0.008223805576562881, -0.08882826566696167, 0.04840812087059021, 0.03246927633881569, -0.020079560577869415, -0.006403789389878511, 0.021859610453248024, 0.04832492396235466, 0.01972094736993313, 0.006327095907181501, 0.07036983221769333, 0.023808447644114494, 0.017511144280433655, 0.01740812510251999, 0.03639610484242439, -0.014508817344903946, -0.07760488241910934, -0.024770792573690414, 0.05676932632923126, 0.00721216993406415, 0.0069278148002922535, -0.0034494102001190186, -0.03195628896355629, -0.0247773639857769, 0.0034330214839428663, 0.03594912588596344, 0.017455026507377625, -0.004943101201206446, -0.03671575337648392, 0.031236860901117325, 0.00297751952894032, 0.04690355807542801, 0.03850119560956955, -0.010470817796885967, -0.04017059504985809, -0.02509632520377636, 0.027938777580857277, 0.02763473615050316, -0.0036140447482466698, 0.08142447471618652, -0.026749206706881523, -0.017710620537400246, 0.10616076737642288, 0.013636424206197262, 0.020007869228720665, -0.016112765297293663, 0.005121776834130287, 0.03767002373933792, 0.03896045312285423, 0.018624696880578995, 0.05531137436628342, -0.0057761468924582005, -0.033095862716436386, 0.000259320717304945, 0.0472637303173542, -0.02686028741300106, 0.0032661508303135633, -0.038198139518499374, -0.057838503271341324, 0.07079160213470459, -0.02887173555791378, 0.000775972381234169, 0.014217790216207504, 0.0791189968585968, 0.02905919775366783, 0.02546449936926365, -0.029760783538222313, -0.07775647938251495, 0.04368197172880173, 0.01258009858429432, 0.02344358153641224, 0.010456248186528683, 0.010882997885346413, 0.07603196054697037, 0.01987970434129238, -0.006932804826647043, 0.03623070567846298, -0.09943855553865433, -0.060726821422576904, -0.04110357165336609, 0.003820074489340186, 0.048592012375593185, -0.028002647683024406, 0.026754815131425858, 0.04879384487867355, -0.007975844666361809, 0.015018550679087639, 0.019262442365288734, -0.02045801281929016, 0.03427797928452492, -0.03995997831225395, -0.06887240707874298, 0.04188692197203636, 0.01861059106886387, -0.03766537830233574, -0.009911508299410343, 0.010444878600537777, -0.03278682380914688, 0.009018965996801853, 0.03912826254963875, -0.02929169312119484, 0.04807302728295326, 0.020777437835931778, 0.01560713816434145, -0.01985681802034378, 0.036547522991895676, -0.039538636803627014, 0.04727548733353615, -0.001598450937308371, -0.019955884665250778, 0.0019970652647316456, -0.027619799599051476, 0.11379481852054596, 0.052271414548158646, 0.035253919661045074, -0.06141209974884987, 0.02132629044353962, -0.0031917765736579895, -0.04267188534140587, 0.012127523310482502, -0.036240726709365845, -0.0334647037088871, 0.0006431624642573297, -0.04016883671283722, -0.03496279940009117, -0.004138074815273285, -0.007442784029990435, 0.02089628390967846, 0.04698440805077553, 0.01156330481171608, 0.025364361703395844, 0.009567078202962875, -0.009708194993436337, 0.01128290593624115, -0.055359307676553726, -0.04955463856458664, 0.0006050955853424966, 0.03995423763990402, 0.01219143159687519, 0.0415763221681118, -0.026075202971696854, -0.01877218671143055, -0.012405824847519398, -0.048255763947963715, 0.01729414239525795, 0.054860636591911316, 0.059186194092035294, 0.0038129270542412996, 0.04737526923418045, -0.058858733624219894, 0.02712354250252247, -0.03385906666517258, -0.022798459976911545, -0.03466974198818207, -0.030667342245578766, 0.01530247088521719, 0.0018619488691911101, 0.03815702721476555, -0.028370631858706474, 0.011813011951744556, 0.0012663170928135514, 0.02413059026002884, -0.012787401676177979, 0.029223261401057243, -0.011089959181845188, 0.012658321298658848, -0.04256432503461838, -0.00028330812347121537, 0.04166857898235321, -0.06335487961769104, -0.016288528218865395, -0.004232828505337238, -0.05449311435222626, 0.04927360266447067, -0.030532460659742355, -0.03206213563680649, -0.033632587641477585, 0.02007959596812725, 0.036827437579631805, 0.019703058525919914, 0.01627148687839508, 0.08047906309366226, 0.011070427484810352, 0.0010197520023211837, 0.02211751416325569, 0.04403820261359215, 0.07036127150058746, -0.005475330166518688, 0.02927708439528942, 0.051392294466495514, -0.014524557627737522, -0.04933129623532295, -0.05470478534698486, -0.011329764500260353, -0.03981763869524002, -0.2583231031894684, 0.07906395941972733, -0.011250820010900497, -0.043316055089235306, 0.033137571066617966, -0.03947923332452774, -0.0014728638343513012, -0.0275841373950243, -0.019102172926068306, 0.010184936225414276, 0.008057830855250359, -0.0210148636251688, -0.037628237158060074, 0.017158033326268196, 0.023679377511143684, 0.018748363479971886, -0.020349156111478806, -0.0551922470331192, 0.04121449589729309, 0.02929847501218319, -0.00653096055611968, -0.04253310337662697, 0.0027462586294859648, 0.03677617758512497, 0.011221056804060936, 0.06025828793644905, -0.07649805396795273, 0.02881869301199913, -0.05383259057998657, -0.039359498769044876, 0.004144719801843166, -0.06570874154567719, 0.013588011264801025, 0.025353064760565758, -0.01839599199593067, -0.018670424818992615, 0.04689489305019379, 0.020863400772213936, -0.01615902967751026, 0.009282996878027916, -0.03975459188222885, -0.02058211900293827, -0.007413678802549839, -0.005960030481219292, 0.09460604190826416, -0.009006847627460957, -0.05379355698823929, -0.0223569143563509, -0.017262859269976616, 0.0868711993098259, -0.04420267045497894, -0.040866248309612274, -0.03480098396539688, 0.02867264673113823, -0.01549327652901411, 0.014695486985147, 0.008304464630782604, -0.002173040993511677, -0.03438044339418411, -0.040893226861953735, 0.024014627560973167, -0.04430006444454193, 0.011755513958632946, -0.06597045809030533, -0.01975816860795021, -0.043843336403369904, -0.0816064327955246, -0.04262968897819519, 0.05032747611403465, 0.048792678862810135, -0.02367533929646015, 0.048202596604824066, 0.000833323341794312, -0.10415585339069366, -0.026677601039409637, -0.04520483687520027, -0.016322556883096695, 0.0006952530820854008, -0.0031142730731517076, 0.06376089155673981, -0.05220790207386017, -0.050360191613435745, 0.025362420827150345, 0.031767409294843674, 0.028755582869052887, -0.010264093987643719, -0.0037860709708184004, -0.03771110251545906, -0.03583862632513046, -0.0009225273970514536, 0.047878723591566086, -0.04530451446771622, -0.02788485214114189, -0.00019421163597144186, -0.017117716372013092, 0.034033048897981644, -0.006193407811224461, 0.00022876654111314565, 0.0246893297880888, 0.0440073236823082, 0.05688821151852608, -0.025037027895450592, 0.00895924773067236, -0.05545544996857643, -0.013129495084285736, -0.017962899059057236, -0.03750673681497574, 0.019943920895457268, 0.022943584248423576, 0.019394321367144585, -0.0017649773508310318, -0.005572583060711622, 0.03359078988432884, -0.052823781967163086, -0.018648440018296242, 0.015241811983287334, 0.01859033666551113, 0.016201231628656387, 0.04011554270982742, -0.035494472831487656, -0.03902596980333328, 0.022365406155586243, 0.04889460653066635, -0.016071554273366928, -0.055009905248880386, -0.009926696307957172, -0.00034793742815963924, 0.0032832950819283724, -0.029064059257507324, -0.03461763635277748, -0.02564968727529049, 0.004673770163208246, 0.02684674970805645, -0.033936042338609695, 0.026463763788342476, -0.03983869403600693, -0.033642444759607315, -0.032380636781454086, 0.018069330602884293, 0.021973541006445885, -0.022300396114587784, 0.00003431606091908179, 0.0009779955726116896, 0.05098545551300049, 0.04379148408770561, -0.0046394760720431805, 0.018279843032360077, 0.018116164952516556, 0.0058751897886395454, -0.03790663927793503, -0.01706557907164097, -0.03596177324652672, 0.018355723470449448, -0.027970707044005394, -0.033044956624507904, -0.007932552136480808, 0.044334422796964645, -0.010712230578064919, -0.005098653957247734, -0.020756341516971588, 0.05178612470626831, -0.04805133491754532, 0.00877360999584198, -0.018431946635246277, -0.009434867650270462, 0.04312999173998833, 0.016222886741161346, 0.008204814977943897, -0.011730972677469254, 0.015011386014521122, 0.010037080384790897, 0.007951570674777031, -0.02194998785853386, 0.0030933052767068148, -0.012287390418350697, 0.010276634246110916, 0.025356177240610123, 0.007440182380378246, 0.01657622680068016, 0.03111899644136429, -0.012444945983588696, -0.03796393424272537, 0.013826262205839157, 0.004533772822469473, 0.041778936982154846, 0.048922501504421234, -0.011615613475441933, 0.027940567582845688, -0.01266044843941927, -0.024959351867437363, -0.010774101130664349, -0.02347954921424389, -0.0320294126868248, -0.003925072029232979, -0.023250391706824303, -0.052536074072122574, 0.04378015175461769, -0.002056883415207267, -0.001436254009604454, 0.023132462054491043, -0.007358173374086618, 0.009734077379107475, -0.024220740422606468, 0.0008917166851460934, 0.05088064447045326, -0.048093535006046295, -0.020327992737293243, 0.019780440255999565, 0.022152885794639587, -0.01565008983016014, 0.012690258212387562, -0.06004926934838295, -0.0626409724354744, -0.006828527897596359, 0.05329486355185509, -0.028071140870451927, -0.04149622097611427, -0.03320761024951935, 0.0021484375465661287, -0.008230477571487427, -0.009366071783006191, 0.007109427824616432, -0.00035908640711568296, -0.022459805011749268, 0.011439559049904346, 0.05415095016360283, -0.001150171854533255, -0.020735187456011772, 0.016489127650856972, -0.0007185753202065825, -0.002856102306395769, -0.017370063811540604, 0.06086838245391846, 0.03882099688053131, -0.017948083579540253, -0.019500384107232094, -0.029050953686237335, 0.006428173277527094, -0.04249954968690872, 0.03986579179763794, -0.0029749779496341944, -0.0009399242117069662, -0.003335610032081604, 0.033614691346883774, -0.002789630088955164, 0.012174186296761036, -0.003059474052861333, -0.02694164775311947, 0.02475667931139469, 0.04735419154167175, 0.021331168711185455, 0.02807602286338806, -0.00152216712012887, -0.0601474903523922, 0.047227125614881516, -0.03880878910422325, -0.0486561544239521, -0.006836912129074335, -0.030248701572418213, 0.002750853542238474, 0.00666455365717411, -0.007195951882749796, -0.053008921444416046, 0.05640992894768715, 0.04611850157380104, 0.014126365073025227, 0.048381853848695755, 0.00004324845940573141, 0.03236006945371628, -0.0025516790337860584, -0.019133150577545166, -0.07781436294317245, 0.03616248816251755, 0.026737386360764503, -0.018601644784212112, -0.002143092220649123, -0.015389081090688705, -0.02466326206922531, 0.015314045362174511, -0.055566608905792236, -0.04756338894367218, 0.04830160364508629, -0.04007094353437424, 0.02828328125178814, 0.0015503306640312076, -0.06033484265208244, 0.013978407718241215, 0.05151297524571419, -0.04239562526345253, -0.02703804150223732, -0.03792363777756691, 0.07174008339643478, -0.028357481583952904, 0.0118098808452487, -0.0004695115494541824, -0.03854748606681824, 0.047840435057878494, 0.007879706099629402, 0.04446117952466011, 0.04835476726293564, -0.02485259622335434, 0.03520462289452553, 0.028314601629972458, -0.052516233175992966, 0.008684071712195873, 0.04056907445192337, -0.031099902465939522, -0.04475582018494606, 0.030152298510074615, 0.006932477932423353, 0.005097069311887026, -0.02896864153444767, 0.06672679632902145, 0.011575308628380299, -0.031535688787698746, -0.06353943794965744, 0.036213308572769165, -0.02561832405626774, -0.024432538077235222, -0.01981450244784355, 0.008351471275091171, -0.01601867750287056, 0.0478660948574543, -0.02084861882030964, -0.004482190124690533, 0.07273314893245697, 0.0006539337337017059, -0.01794198714196682, 0.019363215193152428, 0.07469981163740158, 0.08707630634307861, 0.005135715007781982, 0.025646038353443146, 0.07217910885810852, -0.002305498579517007, -0.034202832728624344, -0.0011377612827345729, -0.02373071201145649, -0.00482566561549902, -0.012071196921169758, -0.018647819757461548, 0.07219623029232025, -0.02261338382959366, 0.08967539668083191, -0.02784755453467369, -0.01515150349587202, 0.007092978805303574, 0.016853157430887222, 0.03150336816906929, 0.03766113147139549, 0.027560297399759293, 0.03191074728965759, -0.0325184129178524, -0.010151157155632973, 0.005485189612954855, 0.01688912697136402, -0.0213908813893795, 0.02029353380203247, -0.035870179533958435, -0.010644987225532532, 0.015163467265665531, 0.019828129559755325, 0.07912915199995041, -0.04125092178583145, 0.008480622433125973, -0.007546348497271538, 0.035788945853710175, -0.021092446520924568, 0.035608530044555664, -0.025775769725441933, -0.041176360100507736, -0.014903551898896694, -0.052608683705329895, -0.04721374064683914, -0.009085994213819504, -0.017133062705397606, -0.014856335707008839, 0.017498966306447983, -0.003081758739426732, 0.0188705213367939, -0.011605761013925076, -0.017719198018312454, -0.03765543922781944, -0.06533300876617432, -0.053833216428756714, -0.07087298482656479, -0.005954761523753405, -0.0016441892366856337, -0.00892129261046648, -0.006220614537596703, -0.018248198553919792, -0.04071000963449478, -0.023986192420125008, 0.021266670897603035, -0.03604675084352493, -0.009503056295216084, 0.0125868646427989, 0.018610721454024315, -0.0009326928411610425, 0.0301591195166111, 0.04091566056013107, -0.015851087868213654, 0.005212580319494009, -0.004479989875108004, 0.009935250505805016, 0.05063331499695778, 0.020615749061107635, 0.005737112369388342, -0.08239404857158661, 0.017066773027181625, 0.017353909090161324, -0.005452630575746298, -0.08222480863332748, 0.014747356064617634, 0.07177548855543137, 0.01449233666062355, 0.054325222969055176, 0.02031170204281807, -0.0029573950450867414, -0.0446554496884346, -0.017824267968535423, -0.009617906995117664, 0.01191615965217352, 0.05919172987341881, 0.003793589072301984, 0.0852740928530693, 0.04591316357254982, -0.014710243791341782, -0.03688648343086243, -0.02591109648346901, -0.0028271747287362814, 0.028482433408498764, -0.04418599233031273, -0.029558662325143814, -0.04682984575629234, -0.07249374687671661, -0.03342955932021141, 0.003037962131202221, -0.04729173332452774, -0.009152388200163841, -0.012889581732451916, -0.01936381310224533, -0.017972592264413834, -0.009136153385043144, -0.0392373651266098, 0.01781735010445118, -0.03408548980951309, -0.037414465099573135, -0.026516756042838097, 0.05093667283654213, 0.011198748834431171, -0.013506311923265457, 0.02328813448548317, -0.05087917298078537, 0.005101059563457966, -0.0023251783568412066, 0.016649814322590828, 0.047893647104501724, 0.010761468671262264, 0.034402232617139816 ]
[ -0.02778705023229122, -0.020361505448818207, -0.024425746873021126, -0.027500325813889503, 0.08991175144910812, -0.03642745316028595, -0.04798996448516846, -0.010573236271739006, -0.0042859832756221294, 0.0029152429196983576, 0.03141729533672333, -0.03713322430849075, 0.012324036099016666, 0.003970144782215357, 0.05477136746048927, -0.010758642107248306, -0.014226814731955528, -0.0370028130710125, -0.04895136505365372, 0.06626877188682556, -0.026545748114585876, -0.06150907650589943, -0.027159949764609337, -0.055893171578645706, -0.001511460985057056, -0.016089292243123055, 0.0330117829144001, -0.05152026191353798, -0.021111132577061653, -0.23330539464950562, -0.00600588321685791, -0.0069203744642436504, 0.001407643430866301, 0.0008839017245918512, 0.015212154015898705, -0.012221142649650574, 0.051948100328445435, -0.0255945585668087, 0.005603349301964045, 0.03662646934390068, 0.022952046245336533, 0.013911922462284565, -0.09023143351078033, -0.011630426160991192, 0.019427534192800522, 0.00868715438991785, -0.005406152922660112, 0.0005259927129372954, 0.0032472005113959312, 0.020548414438962936, -0.03498482704162598, 0.026160918176174164, -0.017109427601099014, -0.015325227752327919, -0.022959036752581596, 0.014088355004787445, 0.048122648149728775, 0.04572438448667526, 0.005920883733779192, 0.02599230222404003, -0.016094546765089035, 0.00019734086527023464, -0.14582742750644684, 0.09096098691225052, 0.030080551281571388, 0.035050492733716965, -0.04442714899778366, -0.009212233126163483, -0.023097237572073936, 0.08304204791784286, 0.0017118302639573812, 0.007433831691741943, -0.05679349973797798, 0.0888657346367836, 0.02055102400481701, 0.01105376984924078, -0.015486824326217175, 0.047782037407159805, 0.016785744577646255, -0.0490889772772789, -0.06428015977144241, -0.01789505034685135, -0.015351575799286366, 0.017695803195238113, -0.035830918699502945, 0.0018904453609138727, -0.023694191128015518, 0.05167405307292938, -0.006883892230689526, 0.01762218587100506, 0.01651771180331707, 0.001161269610747695, 0.0387166328728199, 0.040562208741903305, -0.09012496471405029, -0.032874803990125656, 0.012907997705042362, 0.031009798869490623, -0.003972395323216915, 0.40586018562316895, -0.029538415372371674, -0.01661771349608898, 0.0478096678853035, 0.036594703793525696, 0.012186892330646515, 0.0006902462337166071, 0.00843461137264967, -0.019899385049939156, 0.02309776283800602, -0.009038284420967102, 0.013135767541825771, -0.040081772953271866, 0.042931120842695236, -0.0854487195611, 0.011925267986953259, 0.0312013179063797, 0.015923116356134415, 0.015584051609039307, -0.04296671226620674, 0.018936408683657646, -0.008447742089629173, 0.020418589934706688, 0.031639620661735535, -0.03571971133351326, 0.028898587450385094, -0.004143774509429932, 0.023362692445516586, 0.05683548375964165, 0.050016749650239944, 0.021358970552682877, 0.03810134530067444, 0.009524539113044739, -0.06690207123756409, 0.026914579793810844, -0.01178249903023243, 0.005891037173569202, 0.04906927049160004, -0.04702681303024292, -0.0300355963408947, -0.005933919921517372, 0.006029800046235323, 0.015043617226183414, 0.041419822722673416, -0.013568880967795849, -0.012636488303542137, 0.10281845927238464, -0.024128105491399765, -0.047584738582372665, -0.013242825865745544, -0.05820599943399429, 0.026688218116760254, 0.02826324850320816, 0.028422165662050247, -0.04871669039130211, 0.001615213812328875, 0.008999709039926529, 0.08486175537109375, -0.009757662191987038, -0.09368350356817245, 0.005679116118699312, -0.03212672472000122, -0.0315357968211174, -0.04680779576301575, 0.09098892658948898, 0.06018342077732086, -0.0852758139371872, -0.022317662835121155, 0.0007924149394966662, 0.028311124071478844, -0.07013731449842453, 0.03112981468439102, 0.018986379727721214, -0.029116222634911537, -0.02108290046453476, 0.05431151017546654, -0.026358066126704216, -0.045338116586208344, -0.006230777129530907, 0.04999200999736786, 0.032658278942108154, -0.02669493854045868, 0.01577572152018547, -0.018840573728084564, 0.02137550711631775, -0.07037379592657089, -0.06279660016298294, -0.0532321073114872, 0.04751264303922653, -0.03961334750056267, -0.027156656607985497, -0.025890998542308807, -0.005923727992922068, -0.02130439132452011, 0.03301773965358734, -0.04213963449001312, -0.00011411774175940081, 0.019769228994846344, -0.02498621493577957, -0.008134697563946247, -0.05129397660493851, 0.07935715466737747, 0.0024475473910570145, -0.0315215066075325, 0.03777848184108734, -0.07183931767940521, 0.0008820618386380374, 0.05708485096693039, -0.03727111965417862, 0.030469074845314026, 0.02696366049349308, -0.013439755886793137, 0.005563868209719658, -0.013819602318108082, 0.00395278399810195, 0.003040417330339551, -0.03652667626738548, -0.008530396968126297, -0.03721051290631294, 0.01870659552514553, 0.031505413353443146, -0.04468690976500511, -0.04278602451086044, -0.033374201506376266, -0.35251376032829285, -0.033751633018255234, -0.011580045334994793, -0.013145040720701218, 0.010599039494991302, -0.022351641207933426, 0.006195257417857647, -0.0011971602216362953, 0.001016247901134193, 0.00646791560575366, 0.0997295007109642, 0.013751848600804806, -0.009219885803759098, -0.08104349672794342, 0.002540344838052988, 0.004448118153959513, -0.006583729293197393, -0.008412010967731476, -0.020090319216251373, 0.03306780382990837, 0.006516266148537397, -0.041477903723716736, -0.0451715923845768, -0.02290850691497326, 0.04225235804915428, -0.022292884066700935, 0.1155802458524704, 0.007040930911898613, 0.07484884560108185, -0.0697343572974205, 0.045996394008398056, 0.026047680526971817, 0.00931461714208126, -0.07787702232599258, 0.01758016087114811, -0.02561231143772602, 0.0011615871917456388, 0.04293269291520119, 0.011597640812397003, 0.01280433963984251, -0.05539765581488609, 0.0017162032891064882, -0.017025018110871315, -0.04730845242738724, 0.004299021791666746, 0.0044729639776051044, 0.006248718127608299, 0.0030266151297837496, -0.01702284626662731, 0.07227461040019989, -0.008170990273356438, 0.0005626382189802825, 0.005249879322946072, 0.05157095566391945, 0.05338312312960625, -0.011458692140877247, -0.06452880799770355, -0.006771225482225418, 0.02532634139060974, 0.001767534762620926, 0.005072969011962414, 0.012842319905757904, 0.04773993790149689, -0.05869820713996887, 0.010652187280356884, 0.030410345643758774, 0.020994456484913826, -0.009479652158915997, 0.029047340154647827, -0.016589872539043427, -0.012474597431719303, 0.07253685593605042, -0.011088034138083458, 0.046517979353666306, 0.027832454070448875, 0.0450521744787693, -0.004167067352682352, 0.0018330872990190983, 0.03737577423453331, -0.021518511697649956, 0.04409078136086464, 0.008535420522093773, 0.04836142063140869, -0.04108789935708046, 0.0436255969107151, 0.04685738682746887, -0.011865767650306225, -0.0007863800856284797, 0.04998655989766121, 0.009604149498045444, -0.008589524775743484, -0.026655245572328568, -0.05598970502614975, -0.058754295110702515, 0.11242786794900894, -0.03428066521883011, -0.27340254187583923, 0.028126973658800125, 0.03997393697500229, 0.0685909166932106, -0.006628856062889099, -0.007620272226631641, 0.039224375039339066, -0.05800851434469223, -0.009363065473735332, 0.023350777104496956, 0.01109717320650816, 0.05814065411686897, 0.009771623648703098, -0.007512322627007961, 0.007924186065793037, -0.01513125840574503, 0.056226830929517746, 0.029173530638217926, 0.05119885504245758, 0.02172701805830002, 0.02120354026556015, -0.024095719680190086, 0.18238712847232819, 0.05055944249033928, -0.010926591232419014, 0.034094713628292084, -0.052132852375507355, 0.0040471674874424934, 0.05069214478135109, -0.005123713985085487, -0.008440297096967697, 0.011347874999046326, 0.009963409043848515, 0.03347126021981239, 0.024179691448807716, -0.04537741839885712, -0.008448249660432339, 0.07181918621063232, 0.02266264148056507, -0.02264341153204441, -0.025599360466003418, 0.02420908212661743, -0.02770105190575123, 0.03143429011106491, 0.028232675045728683, -0.033688485622406006, -0.005183071363717318, -0.02378970943391323, -0.03977710381150246, -0.004368747118860483, -0.015222770161926746, -0.049843646585941315, -0.010373306460678577, -0.04757147282361984, -0.011190850287675858, 0.08332335203886032, 0.02006162516772747, -0.04368695616722107, 0.021921547129750252, 0.022112296894192696, -0.00029283782350830734, -0.07617153972387314, 0.08594448119401932, -0.03242327272891998, -0.01180022582411766 ]
[ -0.024052230641245842, 0.040756382048130035, -0.03942340239882469, 0.020657075569033623, 0.016280516982078552, 0.00844790879637003, -0.014787718653678894, -0.018392618745565414, -0.027493776753544807, 0.012064570561051369, -0.025912288576364517, -0.006398378871381283, 0.04532824456691742, 0.0023554761428385973, 0.011498109437525272, -0.026009729132056236, 0.0025156899355351925, 0.0228002667427063, 0.020176321268081665, -0.0331578329205513, -0.02269042655825615, 0.023098105564713478, 0.03377220779657364, -0.01897650584578514, 0.017558380961418152, 0.017015257850289345, -0.040739838033914566, 0.02086757682263851, 0.024206550791859627, -0.11017944663763046, -0.011257155798375607, -0.011345005594193935, -0.002734269481152296, 0.022357016801834106, -0.00016855089052114636, 0.0304742269217968, 0.015490010380744934, 0.03874502703547478, -0.03855283558368683, 0.04672155901789665, 0.05062658712267876, 0.004435568116605282, -0.02100488170981407, -0.0005451606120914221, 0.019126638770103455, -0.0014339634217321873, -0.017562460154294968, -0.020648783072829247, -0.00020486554421950132, 0.0015541579341515899, -0.018909282982349396, -0.01801873743534088, -0.019433267414569855, -0.01874399743974209, -0.03221271559596062, 0.004773206077516079, -0.024985015392303467, 0.013781139627099037, -0.007418098859488964, -0.021289126947522163, -0.00007594571070512757, -0.038899604231119156, -0.05048329010605812, -0.027541575953364372, 0.03948376700282097, -0.005263563711196184, -0.02099369652569294, -0.010197153314948082, -0.00394614739343524, 0.005493161268532276, -0.0030284898821264505, 0.04391614720225334, -0.08400505036115646, 0.02111034467816353, -0.0005742540233768523, 0.029889965429902077, 0.04847746342420578, -0.025115467607975006, -0.004795681219547987, -0.03945556655526161, -0.03967663273215294, -0.020121101289987564, -0.03162381798028946, -0.00009550757386023179, -0.028317628428339958, -0.01572827808558941, -0.047807615250349045, 0.02624545991420746, -0.019524672999978065, 0.03194671869277954, -0.03236430510878563, 0.005339001305401325, -0.016778748482465744, 0.030460331588983536, -0.06275321543216705, 0.021082540974020958, 0.0273069366812706, 0.0010274342494085431, 0.0025436608120799065, 0.8216326236724854, 0.0158479493111372, -0.015782486647367477, 0.003917447756975889, 0.000706787221133709, 0.015216842293739319, 0.01147381216287613, 0.0070794727653265, 0.004828277975320816, -0.02605813927948475, -0.01043892465531826, -0.01778346858918667, 0.026004603132605553, -0.007025904953479767, -0.03462826460599899, -0.02623710036277771, 0.053140535950660706, -0.008246314711868763, 0.007664925884455442, -0.01828097365796566, -0.0017316940939053893, -0.026504147797822952, -0.0257783941924572, -0.037340547889471054, -0.02139357104897499, -0.019886532798409462, -0.2236187905073166, -0.010274739935994148, -6.910876755910143e-33, 0.02016272395849228, -0.02653663419187069, 0.024965381249785423, 0.021021725609898567, 0.020733628422021866, 0.012147259898483753, 0.024318592622876167, -0.011041556484997272, -0.022387774661183357, -0.023841554298996925, -0.024399051442742348, 0.004751500673592091, 0.014494240283966064, -0.016114046797156334, -0.004314057994633913, -0.0008270408143289387, 0.015345748513936996, 0.00009884876635624096, -0.036866843700408936, -0.033406056463718414, 0.035308606922626495, 0.01667766273021698, 0.006786794867366552, 0.022088369354605675, 0.0384247824549675, 0.0026421919465065002, -0.01320323720574379, 0.0033428696915507317, 0.00805968139320612, -0.0514705590903759, -0.004971741233021021, 0.04631315916776657, -0.013450808823108673, -0.028849627822637558, 0.008750944398343563, -0.05266391113400459, -0.00521951075643301, 0.002175771165639162, -0.04311368986964226, -0.058998316526412964, -0.02293439954519272, 0.009874694980680943, -0.0061436602845788, -0.02732682414352894, -0.04675652086734772, -0.01783238723874092, -0.009575942531228065, 0.004282900132238865, -0.0024259062483906746, 0.005250776186585426, 0.04293162003159523, 0.018896935507655144, -0.010565110482275486, 0.0028514994774013758, -0.013970843516290188, 0.02219141460955143, 0.03354988992214203, 0.03565327450633049, -0.004579699132591486, 0.02227899059653282, 0.025977592915296555, 0.0010335113620385528, -0.013035845011472702, 0.030511194840073586, 0.01816117763519287, 0.025864530354738235, 0.02051130123436451, 0.02695256844162941, 0.002903766231611371, 0.008278777822852135, -0.04954655468463898, 0.06282906234264374, -0.017223645001649857, -0.021496662870049477, 0.05272350832819939, -0.02485375478863716, -0.011352300643920898, -0.023156646639108658, 0.04322713613510132, 0.005146951414644718, 0.002442469820380211, -0.035773780196905136, 0.013495184481143951, 0.01255178451538086, -0.055908720940351486, -0.02261221967637539, 0.0204010047018528, -0.015669068321585655, 0.02283443510532379, 0.015866504982113838, 0.038839664310216904, 0.0128645533695817, 0.01487360242754221, -0.013305559754371643, -0.02867685817182064, 7.037523047899797e-33, 0.006076453719288111, -0.00005444698763312772, -0.008191553875803947, 0.009842149913311005, 0.039193619042634964, 0.013175541535019875, 0.031926900148391724, 0.01454668678343296, -0.0473032183945179, 0.05792614072561264, -0.009345607832074165, -0.03689467906951904, 0.01150320004671812, -0.010596856474876404, 0.04756098985671997, 0.007880733348429203, -0.007205335423350334, -0.0067838458344340324, 0.007324259262531996, 0.017866527661681175, 0.024237461388111115, 0.013479270040988922, 0.015278824605047703, 0.015202386304736137, 0.021501457318663597, -0.0008368619019165635, -0.0024054250679910183, 0.007920973002910614, -0.026783665642142296, 0.011255152523517609, 0.01230037584900856, -0.0396888367831707, -0.018354881554841995, -0.02940806746482849, -0.005840763449668884, 0.009464006870985031, 0.020441614091396332, 0.043492093682289124, 0.013059222139418125, 0.006894974038004875, 0.028835300356149673, 0.01673290506005287, -0.05021298676729202, 0.05892905965447426, 0.05329809710383415, 0.027581684291362762, -0.00970586109906435, 0.022628193721175194, -0.01141036581248045, 0.06259317696094513, 0.00958749558776617, 0.014102759771049023, 0.001249566674232483, 0.017416594550013542, 0.05128420144319534, -0.02799716219305992, -0.008497847244143486, 0.007361214607954025, -0.016006795689463615, -0.046625543385744095, -0.05205754563212395, -0.002522955648601055, -0.012655016034841537, 0.026464274153113365, -0.012860668823122978, 0.0007627956219948828, -0.044192615896463394, 0.009914279915392399, 0.01052810251712799, 0.030726401135325432, 0.005501610226929188, -0.021376194432377815, -0.014235408045351505, 0.0033719579223543406, 0.01298526581376791, -0.024178992956876755, -0.04245898127555847, 0.01201332826167345, -0.008108140900731087, 0.031184546649456024, 0.03609764948487282, 0.03273320943117142, 0.03512207046151161, 0.04169038310647011, 0.04237290844321251, 0.04926721379160881, -0.010481907054781914, 0.04142863675951958, 0.025212207809090614, -0.005010864231735468, -0.0007829034002497792, -0.0229850672185421, -0.046850889921188354, 0.04052644595503807, -0.012200599536299706, -1.2411901728626162e-8, -0.05821578949689865, 0.03240001201629639, -0.027225099503993988, 0.011795520782470703, 0.008500418625772, 0.024123286828398705, 0.029733777046203613, 0.025647226721048355, 0.01749984547495842, 0.012954523786902428, 0.022992007434368134, -0.05285336449742317, 0.012365302070975304, -0.012772760353982449, 0.004107774700969458, -0.02061881497502327, 0.010128898546099663, 0.016622602939605713, 0.031105883419513702, -0.009078187867999077, -0.0002430856111459434, 0.05232926085591316, -0.026703454554080963, 0.041406288743019104, 0.010784278623759747, -0.006919453386217356, 0.0031422472093254328, -0.07753555476665497, -0.0013600379461422563, 0.0017323489300906658, -0.005297277122735977, -0.025159664452075958, -0.00823015347123146, 0.01335116382688284, -0.026886403560638428, -0.033213693648576736, 0.01977049745619297, 0.010207317769527435, 0.022918809205293655, 0.02691488154232502, -0.01580001227557659, 0.02621990069746971, -0.003263259306550026, -0.027950149029493332, 0.016896745190024376, 0.005056809168308973, -0.03528385981917381, 0.01773860864341259, -0.002651617396622896, -0.05002525821328163, -0.0020325379446148872, -0.01848902739584446, -0.014806621707975864, 0.021103546023368835, 0.06914521753787994, 0.008809281513094902, -0.012182382866740227, -0.02533164992928505, 0.00808872189372778, 0.007172977086156607, -0.00005111224527354352, -0.03924521058797836, -0.05209997668862343, -0.018361225724220276 ]
neo4j-load-csv-gz-s3
https://markhneedham.com/blog/2018/09/05/neo4j-load-csv-gz-s3
false
2018-09-18 07:56:00
matplotlib - MatplotlibDeprecationWarning: Adding an axes using the same arguments as a previous axes currently reuses the earlier instance. In a future version, a new instance will always be created and returned.
[ "python", "matplotlib" ]
[ "Python" ]
In my last post I showed how to link:/blog/2018/09/18/matplotlib-remove-axis-legend/[remove axes legends from a matplotlib chart^], and while writing the post I actually had the change the code I used as my initial approach is now deprecated. As in the previous post, we'll first import pandas and matplotlib: [source, python] ---- import pandas as pd import matplotlib matplotlib.use('TkAgg') import matplotlib.pyplot as plt plt.style.use('fivethirtyeight') ---- And we'll still use this DataFrame: [source, python] ---- df = pd.DataFrame({"label": ["A", "B", "C", "D"], "count": [12, 19, 5, 10]}) ---- My initial approach to remove all legends was this: [source, python] ---- df.plot(kind='bar', x='label', y='count', legend=None) plt.axes().xaxis.set_label_text("") plt.tight_layout() plt.savefig("/tmp/matplotlib_no_x_no_y.svg") plt.close() ---- If we run this code the chart will still be generated, but we'll also receive the following error message: [source, text] ---- /Users/markneedham/projects/matplotlib-examples/a/lib/python3.6/site-packages/matplotlib/cbook/deprecation.py:107: MatplotlibDeprecationWarning: Adding an axes using the same arguments as a previous axes currently reuses the earlier instance. In a future version, a new instance will always be created and returned. Meanwhile, this warning can be suppressed, and the future behavior ensured, by passing a unique label to each axes instance. warnings.warn(message, mplDeprecation, stacklevel=1) ---- The problem is on the 2nd line. Instead of mutating the axes via the `plt` object, we need to capture the `AxesSubplot` object returned by the `plot()` function and update that instead: [source, python] ---- ax = df.plot(kind='bar', x='label', y='count', legend=None) ax.xaxis.set_label_text("") plt.tight_layout() plt.savefig("/tmp/matplotlib_no_x_no_y.svg") plt.close() ---- If we run this version of the code our chart will be generated and we won't have that deprecation message anymore.
Learn how to avoid a MatplotlibDeprecationWarning message when editing axes.
null
[ 0.005701350048184395, -0.02306988276541233, 0.01659201644361019, 0.02816539630293846, 0.07239595800638199, 0.026962602511048317, -0.023713408038020134, 0.018342966213822365, -0.011955801397562027, -0.024748465046286583, -0.04587959125638008, 0.0030549303628504276, -0.06928575783967972, 0.03964175656437874, -0.013821834698319435, 0.07346151024103165, 0.07876338064670563, 0.004964355379343033, -0.006521946284919977, 0.0347411148250103, 0.03790232911705971, 0.03696970269083977, -0.025224456563591957, 0.03540699928998947, -0.014194188639521599, -0.0008906612056307495, -0.00012373292702250183, 0.007541778031736612, -0.02820242941379547, -0.010668356902897358, 0.03258225694298744, 0.0068802498281002045, 0.015372293069958687, 0.010058101266622543, 0.03220652416348457, 0.006642928346991539, -0.024177946150302887, 0.019388718530535698, -0.011140463873744011, 0.008009111508727074, -0.07306146621704102, 0.045415397733449936, -0.020533684641122818, 0.01203217450529337, -0.030783290043473244, 0.01829633116722107, -0.039316412061452866, 0.0032153993379324675, 0.0010709287598729134, -0.018108081072568893, -0.06412117183208466, 0.015069149434566498, 0.006649214308708906, -0.041456323117017746, -0.009265861473977566, 0.07093663513660431, -0.009744309820234776, -0.07274717092514038, 0.020124662667512894, -0.010211952030658722, -0.007720895577222109, 0.007332583889365196, 0.007959962822496891, 0.05368180200457573, 0.018960101529955864, -0.02993016317486763, -0.022863002493977547, 0.06431545317173004, -0.04208685830235481, -0.04613775014877319, -0.021874146535992622, -0.0050282226875424385, -0.027845151722431183, -0.021643204614520073, -0.012777144089341164, -0.028953704982995987, -0.025668954476714134, 0.03337812051177025, 0.05582329258322716, 0.0446992889046669, 0.02270396798849106, 0.004429771564900875, 0.02377314679324627, 0.0015871691284701228, 0.0017029407899826765, -0.012273597531020641, -0.038477808237075806, -0.033254846930503845, -0.07215820252895355, 0.02433408610522747, -0.016454286873340607, -0.061592165380716324, 0.04374270886182785, -0.008786587975919247, -0.0016660693800076842, -0.005975440610200167, -0.007195563055574894, -0.020258579403162003, -0.018760621547698975, -0.033822834491729736, -0.06425867229700089, -0.03351911902427673, 0.01852637529373169, 0.019584843888878822, -0.05789575353264809, -0.07078178972005844, -0.0037325420416891575, 0.017636844888329506, -0.020982651039958, -0.007499597501009703, -0.05816669762134552, -0.00801912508904934, -0.019700108096003532, -0.015084872022271156, -0.07182922214269638, 0.06237587705254555, -0.005350968334823847, -0.04618994519114494, -0.010846544057130814, 0.019262390211224556, 0.034204863011837006, 0.028482194989919662, -0.006430955603718758, 0.0812140628695488, 0.007204852066934109, 0.07131650298833847, 0.009807552210986614, 0.059386443346738815, -0.010664417408406734, -0.059878669679164886, 0.023937391117215157, 0.05735154449939728, -0.0513555146753788, -0.028329893946647644, 0.018382135778665543, -0.026300884783267975, 0.003941369242966175, 0.011076919734477997, 0.04250478371977806, 0.03709673136472702, 0.021722344681620598, -0.03311177343130112, -0.016123907640576363, 0.008604466915130615, -0.012366605922579765, 0.0014882109826430678, -0.03268170356750488, -0.05353177711367607, -0.022340791299939156, 0.0011756817111745477, 0.02675996720790863, 0.012241554446518421, 0.04016852006316185, -0.026529304683208466, -0.006254271138459444, 0.0714828297495842, 0.0052136764861643314, 0.004010413307696581, -0.044713571667671204, 0.007894824258983135, 0.035642173141241074, 0.028855158016085625, 0.021961158141493797, 0.04875652492046356, 0.0069086868315935135, -0.02564878761768341, 0.011461110785603523, 0.04127656668424606, 0.002410574583336711, -0.012008740566670895, -0.05717900022864342, -0.05894264578819275, 0.026032477617263794, -0.03815717250108719, 0.014619756489992142, 0.04953110218048096, 0.06737110763788223, 0.04315011575818062, 0.0342712365090847, 0.028466910123825073, -0.07607200741767883, 0.062298841774463654, 0.016006523743271828, -0.010324581526219845, 0.03449512645602226, -0.01003580167889595, 0.07531869411468506, 0.0003191222785972059, 0.06481920927762985, 0.0364084392786026, -0.05390409007668495, -0.03513178601861, -0.0012138368329033256, 0.009526182897388935, 0.0597049705684185, -0.04338390380144119, -0.04054546728730202, 0.07942257821559906, 0.03154957294464111, 0.0408642552793026, 0.0010357999708503485, 0.0036036043893545866, 0.004104508552700281, -0.020170478150248528, -0.0635659247636795, 0.00710334163159132, -0.00007625688886037096, -0.014138764701783657, -0.024027563631534576, 0.01728902757167816, 0.002660856582224369, -0.004387666936963797, 0.03527810797095299, -0.0007724721799604595, 0.042858824133872986, 0.052894227206707, 0.04723131284117699, -0.004942772444337606, 0.025410616770386696, -0.07578343152999878, -0.001168054179288447, -0.01528342254459858, -0.032486021518707275, -0.07421357184648514, 0.006431965623050928, 0.14204110205173492, 0.06631133705377579, -0.041498035192489624, -0.05008794739842415, -0.015393330715596676, -0.010841612704098225, -0.019655782729387283, 0.008299756795167923, -0.018840963020920753, -0.03145476058125496, 0.007170820143073797, -0.04884263128042221, -0.03195449337363243, -0.003917777445167303, -0.03872179612517357, -0.00244784913957119, 0.08363693952560425, -0.024439027532935143, 0.06198352947831154, 0.0004934858297929168, 0.0034703544806689024, -0.026136016473174095, -0.023325733840465546, -0.09536194056272507, 0.024617750197649002, 0.0030437593813985586, -0.0016630504978820682, 0.042737074196338654, -0.028064971789717674, -0.05837147682905197, -0.025576969608664513, -0.0845726951956749, -0.018321258947253227, 0.02611622028052807, 0.04681948199868202, 0.01976085640490055, 0.0043762181885540485, 0.005641064140945673, -0.0044893440790474415, -0.015963761135935783, -0.03530390188097954, -0.027413513511419296, -0.019286807626485825, 0.03026392124593258, 0.0318620428442955, 0.0348660834133625, 0.0029152431525290012, 0.014027616009116173, -0.0007026337552815676, -0.0006605255766771734, -0.006027177441865206, 0.034759923815727234, 0.027224890887737274, -0.04155528545379639, -0.03951919823884964, 0.006214159540832043, 0.04565614089369774, -0.004218501038849354, -0.022970307618379593, -0.03460116684436798, -0.039720844477415085, 0.03272143751382828, -0.04510168731212616, -0.03431472182273865, -0.0014716560253873467, 0.03476938232779503, 0.060190603137016296, 0.0000623125524725765, 0.007056034170091152, -0.014692369848489761, -0.008828746154904366, -0.01609361730515957, 0.02915390394628048, 0.01607712171971798, 0.029953286051750183, -0.003472801297903061, 0.046300750225782394, 0.04922671616077423, -0.034553732722997665, -0.03271985426545143, -0.02697739750146866, -0.0012811324559152126, -0.027862554416060448, -0.2466430813074112, 0.019729789346456528, -0.0021638423204421997, -0.026273256167769432, -0.008291402831673622, -0.00006219814531505108, -0.0015660058706998825, -0.026686958968639374, -0.0274360291659832, 0.01671171560883522, 0.010994451120495796, -0.055792588740587234, -0.008199750445783138, 0.036707598716020584, -0.006041334010660648, 0.02193484641611576, 0.010852029547095299, -0.01640143245458603, 0.007772370707243681, 0.04360735043883324, -0.010150092653930187, -0.041388481855392456, 0.0070850118063390255, 0.05819159746170044, -0.010973745957016945, 0.06768520921468735, -0.06562316417694092, 0.06426738947629929, -0.07523204386234283, -0.017687160521745682, 0.01794544979929924, -0.022360200062394142, 0.0003492560936138034, -0.011919992975890636, -0.00809203740209341, -0.032141417264938354, 0.007802492938935757, 0.021988973021507263, -0.00859121885150671, 0.0114516606554389, -0.025176402181386948, -0.020245056599378586, 0.009529375471174717, -0.010341271758079529, 0.06398696452379227, 0.02624543197453022, -0.05149967968463898, -0.0013056369498372078, -0.02720213122665882, 0.07530083507299423, 0.0060964724980294704, -0.0005294274305924773, -0.031347453594207764, 0.007893150672316551, -0.0323827788233757, 0.039268795400857925, -0.006021373905241489, -0.0008654165430925786, -0.05375709757208824, -0.03067181259393692, 0.010792736895382404, -0.005596722476184368, -0.02319456823170185, -0.05393972620368004, -0.01817493326961994, -0.02137039229273796, -0.03556894138455391, -0.0426335334777832, 0.06874378770589828, 0.04318978637456894, -0.06884322315454483, -0.0331910066306591, 0.022028101608157158, -0.09565161913633347, 0.01835004612803459, -0.04249678924679756, -0.04674956947565079, -0.0005712532438337803, 0.022768186405301094, 0.022524477913975716, -0.020602144300937653, -0.05911174416542053, 0.07543670386075974, 0.01333652250468731, -0.03781655430793762, -0.02071913704276085, -0.009119462221860886, -0.011498985812067986, -0.0036811649333685637, -0.0261441171169281, 0.06762050837278366, 0.011487659066915512, 0.006389471236616373, -0.009948627091944218, -0.061868418008089066, 0.0386490598320961, 0.050111982971429825, -0.02250094711780548, -0.004673943389207125, 0.02694081887602806, 0.0006247221026569605, -0.08164957165718079, -0.019323691725730896, -0.03323095664381981, -0.017951063811779022, -0.012981812469661236, -0.03632334619760513, -0.006930981762707233, 0.012319065630435944, -0.009978745132684708, 0.010674023069441319, -0.025510743260383606, 0.020881013944745064, -0.05076158419251442, -0.02643219195306301, -0.047643329948186874, 0.04399865120649338, 0.020154757425189018, 0.015437310561537743, -0.0428333580493927, -0.0688578188419342, 0.004820268601179123, 0.014068394899368286, 0.013534987345337868, -0.031135782599449158, -0.04119884967803955, 0.03296751156449318, 0.011636856943368912, 0.02941102348268032, 0.030257880687713623, -0.030469469726085663, 0.054144248366355896, 0.07328123599290848, -0.03983883559703827, 0.025381365790963173, -0.01199034508317709, -0.03389352560043335, -0.00865578930824995, 0.014596743509173393, 0.019991446286439896, -0.008081917650997639, 0.014600352384150028, -0.04393109679222107, -0.0020579532720148563, 0.058803994208574295, -0.014660671353340149, 0.05902958661317825, -0.004335606005042791, 0.006318795029073954, 0.014519499614834785, 0.011656664311885834, 0.005566509906202555, 0.0033867359161376953, -0.02305588871240616, -0.0169304758310318, 0.02117948792874813, 0.025732800364494324, -0.0015404882142320275, -0.007392731960862875, -0.047406867146492004, 0.025484297424554825, -0.03698289766907692, -0.03135887160897255, -0.023055359721183777, 0.005831432994455099, 0.028831444680690765, -0.01325919944792986, 0.020482752472162247, 0.02452736906707287, -0.024526841938495636, 0.020577890798449516, 0.019451146945357323, -0.034542933106422424, 0.01664860174059868, -0.034392841160297394, -0.024687139317393303, 0.018316980451345444, 0.015382369980216026, 0.020571039989590645, 0.008584893308579922, 0.0029951701872050762, -0.011108704842627048, -0.014313269406557083, 0.01104651391506195, 0.03259769454598427, 0.016044508665800095, -0.028369998559355736, -0.01907815784215927, -0.01734061911702156, -0.004567798227071762, -0.02233296073973179, -0.013727040030062199, 0.002563429530709982, 0.053531356155872345, -0.016611576080322266, -0.04574347287416458, -0.015918921679258347, -0.009307458065450191, 0.04457924887537956, 0.006841868627816439, -0.04107246920466423, 0.0210783239454031, -0.024346595630049706, 0.03571484237909317, 0.05273232236504555, -0.04394984617829323, 0.028258338570594788, 0.0021288117859512568, 0.008806993253529072, -0.029414376243948936, 0.06097538396716118, -0.07442428916692734, -0.03554024547338486, -0.024405749514698982, 0.027386458590626717, -0.0077435607090592384, -0.02351110614836216, -0.05698186904191971, 0.03159497305750847, -0.010660767555236816, 0.04291484132409096, -0.006396204698830843, -0.01343386247754097, 0.0077292462810873985, -0.020650919526815414, 0.04179951176047325, -0.010059352964162827, 0.0009647601982578635, 0.06283599883317947, -0.012020648457109928, 0.05054532736539841, -0.020274359732866287, 0.029749946668744087, 0.032981641590595245, -0.011900458484888077, 0.027887601405382156, -0.0689924955368042, -0.0009180611814372241, -0.005172962788492441, 0.02939067967236042, 0.005289377644658089, 0.02653895504772663, -0.03559828922152519, -0.011380716226994991, 0.007771223317831755, 0.016994548961520195, 0.00938419159501791, -0.04783853888511658, 0.007364796008914709, 0.05951618030667305, 0.009655611589550972, -0.010073344223201275, -0.0063499100506305695, -0.043570276349782944, 0.06049481779336929, -0.04042922705411911, -0.040980249643325806, 0.0012708524009212852, -0.042436446994543076, 0.02863353118300438, 0.010196013376116753, 0.06656674295663834, -0.04178136587142944, 0.038352977484464645, 0.026709677651524544, 0.04418574646115303, 0.06430868804454803, 0.01956278271973133, 0.008490050211548805, -0.05135825276374817, -0.024002427235245705, -0.07947441190481186, 0.024386312812566757, 0.034203700721263885, 0.006235914770513773, -0.00902647152543068, -0.0039115953259170055, -0.04576217010617256, 0.01608186587691307, -0.07358865439891815, -0.016071051359176636, 0.047943614423274994, 0.014475184492766857, 0.013329833745956421, 0.02807149849832058, -0.03443072736263275, 0.029533695429563522, 0.021019726991653442, -0.05455387011170387, -0.02075585164129734, -0.028392666950821877, 0.07363860309123993, 0.03772231936454773, 0.026448512449860573, 0.019777443259954453, 0.014775999821722507, 0.05240495875477791, 0.029437577351927757, 0.007819569669663906, 0.001411333098076284, -0.015987612307071686, 0.07065225392580032, 0.04007960110902786, 0.0012216770555824041, -0.026456298306584358, 0.027130598202347755, 0.03943302109837532, -0.04385025426745415, 0.06244965270161629, 0.014205257408320904, 0.006102636456489563, -0.06726367026567459, 0.042166899889707565, -0.00805116631090641, -0.02239467017352581, -0.04330180585384369, 0.00632192799821496, -0.05316304787993431, 0.011293813586235046, -0.015850545838475227, -0.009017426520586014, -0.011640273034572601, 0.057553693652153015, -0.061051759868860245, -0.051199302077293396, 0.04527425765991211, -0.02352825738489628, 0.025321708992123604, 0.0028069077525287867, 0.06251298636198044, 0.08223921060562134, 0.06930889189243317, 0.02273782156407833, 0.04567880555987358, -0.007223633583635092, -0.04251826927065849, 0.014479334466159344, -0.002224934985861182, 0.002727462211623788, -0.0430285781621933, 0.02417682483792305, 0.06497911363840103, -0.00840915460139513, 0.034395065158605576, 0.001783822663128376, -0.013013247400522232, -0.044002845883369446, -0.0062752035446465015, -0.008071241900324821, 0.04246097430586815, -0.01838895119726658, 0.06104674190282822, -0.015206505544483662, -0.03490045666694641, 0.040588002651929855, 0.01066662184894085, -0.03262586519122124, 0.03911938518285751, -0.011201917193830013, -0.002061429200693965, 0.04865402728319168, 0.016430934891104698, 0.10985520482063293, -0.05810568109154701, -0.03687847778201103, 0.014248325489461422, 0.05040295049548149, 0.01456573698669672, 0.01083120983093977, 0.01816655322909355, 0.015324008651077747, 0.015104065649211407, -0.05034586414694786, -0.005758451297879219, -0.07721413671970367, -0.02284647896885872, 0.0655956044793129, -0.026650648564100266, 0.009045102633535862, 0.056994177401065826, 0.002832684898748994, -0.07117220014333725, -0.020694689825177193, -0.0745115876197815, -0.040085338056087494, -0.09337911754846573, -0.0435449481010437, 0.019543135538697243, -0.0018615603912621737, -0.045314155519008636, -0.023781398311257362, -0.022161195054650307, 0.01828586496412754, -0.014925419352948666, -0.025282658636569977, -0.025620920583605766, -0.0036720293574035168, 0.024551095440983772, -0.02330097183585167, 0.003271678229793906, 0.04084916040301323, 0.008331806398928165, -0.03819141536951065, 0.00404748972505331, 0.04436153918504715, 0.024650808423757553, 0.011568134650588036, 0.019129835069179535, -0.03936292231082916, -0.00853374321013689, -0.01339535042643547, -0.017012065276503563, -0.07769775390625, 0.023756276816129684, 0.03157829865813255, 0.007413987535983324, 0.03962906822562218, -0.013136128894984722, -0.012192083522677422, -0.023638524115085602, -0.005955161061137915, -0.028589220717549324, 0.014003921300172806, 0.027372652664780617, -0.03559703752398491, 0.059968799352645874, 0.03588883578777313, 0.0063949692994356155, -0.0042075514793396, -0.03612024337053299, -0.02321929670870304, -0.004112154245376587, -0.040104612708091736, -0.044656652957201004, -0.04843108728528023, -0.05576661601662636, 0.01118036825209856, 0.04062501713633537, -0.02099679224193096, -0.0483957901597023, -0.0005582076846621931, 0.0121497493237257, -0.014917396940290928, 0.06313790380954742, -0.01369057409465313, -0.016675695776939392, -0.031221682205796242, -0.008737003430724144, -0.0030958896968513727, 0.04913286119699478, 0.030418695881962776, 0.03141038119792938, 0.025111336261034012, -0.024762582033872604, 0.034066058695316315, -0.028632257133722305, 0.006292024627327919, 0.042964473366737366, 0.0007637099479325116, 0.02675268054008484 ]
[ -0.06506938487291336, -0.03738651052117348, 0.02224467694759369, 0.011311689391732216, 0.06020207330584526, -0.07642051577568054, -0.03786837309598923, 0.026849951595067978, 0.024051450192928314, 0.020263414829969406, 0.03770780563354492, -0.06017740070819855, 0.03770892694592476, -0.02233755961060524, 0.005929760169237852, 0.0014250968815758824, -0.06061355024576187, 0.0037169151473790407, -0.04866740107536316, -0.0008414177573285997, 0.02551913820207119, -0.018123624846339226, -0.026860414072871208, -0.013268361799418926, 0.0837901160120964, 0.07830391079187393, -0.0021485895849764347, -0.07859420031309128, 0.0005517686367966235, -0.21933770179748535, 0.04158831387758255, -0.006978319957852364, -0.0033871750347316265, -0.025958023965358734, -0.018473763018846512, 0.01443193294107914, 0.02468249574303627, 0.054853007197380066, 0.060515690594911575, 0.04441883787512779, 0.008922664448618889, -0.0014953691279515624, -0.027048947289586067, -0.025579486042261124, 0.012543421238660812, 0.0014271133113652468, -0.036485664546489716, -0.029594987630844116, 0.007913132198154926, 0.01869814284145832, -0.04268573597073555, -0.004723559133708477, -0.015667714178562164, -0.009041065350174904, 0.01207449659705162, 0.036217235028743744, 0.039996251463890076, 0.032166410237550735, 0.03056945838034153, 0.04689391329884529, 0.041094955056905746, -0.004807926714420319, -0.1404053121805191, 0.12412946671247482, -0.0043276273645460606, 0.056312959641218185, -0.03100804053246975, -0.00944256316870451, -0.02443452551960945, 0.07546335458755493, -0.042578667402267456, 0.010159222409129143, -0.013102950528264046, 0.05117763578891754, 0.01812593638896942, -0.016820579767227173, -0.023328518494963646, -0.019078752025961876, 0.0528511144220829, -0.04768315702676773, -0.05809710547327995, 0.043281976133584976, -0.020704198628664017, -0.05503397062420845, 0.0025869065430015326, 0.011302921921014786, 0.004757674876600504, 0.03008279576897621, 0.03664472699165344, 0.013520541600883007, 0.04968415945768356, -0.009160605259239674, 0.05205933004617691, 0.039669379591941833, -0.07417651265859604, -0.05085458233952522, 0.002984540071338415, 0.030586866661906242, 0.005389396566897631, 0.37218520045280457, -0.07077617198228836, -0.02063463069498539, -0.009157798252999783, 0.07463888078927994, 0.03334888070821762, -0.04141443222761154, -0.029030203819274902, -0.013517585583031178, 0.008224161341786385, -0.011565795168280602, -0.004756234120577574, -0.04547516256570816, 0.01658591628074646, -0.029002273455262184, 0.05512939393520355, -0.05560906603932381, -0.01810438744723797, 0.04003414139151573, -0.024517767131328583, 0.03950382396578789, -0.038491956889629364, -0.013485336676239967, 0.043708521872758865, 0.0472446009516716, 0.044080495834350586, 0.05930798128247261, 0.02067141979932785, 0.0872897058725357, 0.03061073273420334, -0.018938159570097923, 0.011710379272699356, -0.043534569442272186, -0.11580725759267807, 0.034161221235990524, -0.01066542137414217, 0.013342329300940037, 0.05449651926755905, -0.006963270250707865, 0.03119257465004921, 0.031347379088401794, -0.02170611545443535, -0.014395245350897312, 0.03789214789867401, 0.04928308725357056, 0.01031418889760971, 0.08454374223947525, -0.02188294380903244, -0.020400019362568855, 0.008041451685130596, -0.00531192310154438, -0.003746751230210066, 0.04171222448348999, -0.013243959285318851, -0.017784150317311287, 0.029429243877530098, 0.05237571522593498, 0.03809570148587227, 0.02229911834001541, -0.033981796354055405, 0.0012532504042610526, -0.060790080577135086, -0.04483046755194664, -0.0175455454736948, 0.008254113607108593, 0.015082154422998428, -0.08888499438762665, -0.03448959439992905, 0.023296942934393883, -0.005602612160146236, -0.054932817816734314, -0.01872929185628891, -0.00040924863424152136, -0.02326369658112526, -0.02690012753009796, 0.0725633054971695, 0.029494943097233772, -0.03493264690041542, -0.0529913455247879, 0.045281823724508286, 0.015658820047974586, 0.0090467045083642, 0.0013619610108435154, -0.037562742829322815, -0.0016232734778895974, -0.03848467022180557, -0.0758221223950386, -0.01607576385140419, 0.009162398055195808, 0.009038646705448627, -0.020926663652062416, 0.041839923709630966, -0.034564293920993805, 0.013529567047953606, 0.01865854114294052, -0.02656763233244419, 0.016482433304190636, -0.004962695762515068, -0.019263435155153275, -0.01179925724864006, -0.07763754576444626, 0.04486812651157379, 0.016381362453103065, 0.009291072376072407, -0.004607549402862787, -0.06137615814805031, 0.046052172780036926, 0.061491355299949646, -0.07524853944778442, 0.04823322221636772, -0.003245258703827858, -0.019367896020412445, -0.024111418053507805, -0.01933378539979458, 0.009845169261097908, -0.041407424956560135, -0.002488579135388136, 0.0012979464372619987, 0.0343613438308239, -0.02615075744688511, -0.011410955339670181, 0.0015537358121946454, -0.03573564812541008, -0.06003586947917938, -0.3540026843547821, 0.0007899760967120528, 0.006394853349775076, -0.008116870187222958, -0.010965060442686081, -0.033913321793079376, -0.03312603011727333, -0.005328136496245861, -0.0273547675460577, 0.06447269022464752, 0.072675421833992, -0.01904606632888317, -0.0020547769963741302, -0.1370122730731964, -0.0005734823644161224, 0.03479432314634323, -0.04914644733071327, -0.03872596472501755, -0.03769323229789734, 0.004202321637421846, -0.00821911171078682, 0.00045009481254965067, -0.004553739447146654, -0.028341857716441154, 0.006685346364974976, -0.01700238324701786, 0.15341711044311523, 0.00136157451197505, 0.04494548588991165, -0.04290042445063591, 0.0016545685939490795, -0.006304244510829449, -0.0090482197701931, -0.020605914294719696, -0.0301058366894722, 0.016836727038025856, -0.01578233763575554, 0.01673065312206745, 0.0016114843310788274, -0.0542418472468853, 0.02535041607916355, 0.051930297166109085, -0.0025854024570435286, -0.07606232911348343, -0.026003627106547356, 0.025036081671714783, 0.003084752941504121, -0.004742886871099472, 0.0012404045555740595, 0.11646219342947006, 0.012583375908434391, 0.023886028677225113, 0.0354231633245945, 0.046841610223054886, 0.014528262428939342, 0.00674517871811986, -0.07119792699813843, 0.005762585438787937, -0.043844085186719894, -0.00820560846477747, -0.009868359193205833, 0.0244365893304348, 0.04984316974878311, -0.09458302706480026, -0.0022008984815329313, 0.048554908484220505, -0.006288992241024971, -0.042736686766147614, 0.05692891404032707, 0.02964409627020359, -0.043515801429748535, 0.13243180513381958, -0.014695695601403713, -0.022164663299918175, 0.005810820031911135, 0.08125759661197662, -0.027698304504156113, 0.058440178632736206, 0.010920493863523006, 0.011491477489471436, -0.002706545637920499, 0.02016400173306465, 0.03957955539226532, 0.014742910861968994, 0.01863778755068779, -0.03719991445541382, -0.03243769332766533, -0.036184161901474, 0.029704276472330093, -0.0027174323331564665, 0.0008318914915435016, -0.033829547464847565, -0.025773722678422928, 0.006794324144721031, 0.05887195095419884, 0.0009008455672301352, -0.23836371302604675, -0.004472172353416681, 0.06871436536312103, 0.06359943747520447, -0.01976238191127777, 0.006569501478224993, 0.03265624865889549, -0.016500357538461685, -0.00222320226021111, -0.015818249434232712, -0.06124299764633179, 0.04410242661833763, 0.032192423939704895, -0.04844605177640915, 0.004165241960436106, -0.04711800441145897, 0.05357815697789192, -0.002945937681943178, 0.01369149424135685, 0.02774233929812908, -0.0037764720618724823, -0.06537230312824249, 0.13671211898326874, 0.0816296637058258, -0.0244810301810503, -0.044200628995895386, 0.0006470742519013584, -0.03759864345192909, 0.078380286693573, 0.018785271793603897, 0.012036941014230251, -0.0023689756635576487, 0.05014263093471527, 0.016871165484189987, 0.04545874521136284, -0.020014768466353416, -0.009963210672140121, 0.00520714046433568, 0.022609787061810493, -0.06326404958963394, -0.022876974195241928, 0.05567409098148346, -0.05874624848365784, 0.023258376866579056, 0.09358803182840347, 0.020957866683602333, -0.003181645181030035, -0.012708675116300583, -0.04581911861896515, -0.012710331939160824, -0.030886786058545113, -0.0460202693939209, -0.03198804333806038, 0.014079810120165348, -0.0011445876443758607, 0.03074476681649685, 0.042497023940086365, 0.015889156609773636, 0.027537120506167412, -0.04103349894285202, 0.03574972599744797, -0.0769813060760498, 0.07217589020729065, -0.0004909572307951748, -0.016607536002993584 ]
[ 0.018521230667829514, 0.015379159711301327, 0.005048481281846762, -0.007023280020803213, 0.016253430396318436, -0.0036070034839212894, -0.01547902449965477, 0.003521532751619816, 0.02850915864109993, -0.01503715943545103, -0.01236867904663086, 0.017548715695738792, -0.005419064778834581, -0.02670510672032833, 0.014047951437532902, 0.002766100689768791, -0.015138986520469189, -0.018542073667049408, 0.056157954037189484, -0.019654788076877594, -0.026614347472786903, 0.012871050275862217, 0.020394936203956604, 0.01631155051290989, -0.0181522686034441, -0.011752973310649395, -0.05447011813521385, 0.0312483012676239, 0.031179236248135567, -0.09485276788473129, -0.010646051727235317, -0.004567344672977924, -0.01549321785569191, -0.0006983258062973619, -0.043053366243839264, 0.021781785413622856, -0.007134629413485527, 0.027446571737527847, -0.021084528416395187, 0.013104194775223732, 0.002692914567887783, -0.010685110464692116, 0.012181172147393227, 0.0009012451628223062, 0.005071699153631926, 0.01974029280245304, -0.015967007726430893, -0.04105978086590767, -0.020348329097032547, 0.010359527543187141, -0.03866303339600563, 0.015948118641972542, -0.015196433290839195, -0.02238066866993904, 0.025027040392160416, -0.0004695547395385802, 0.02537359669804573, -0.03277067095041275, 0.046228859573602676, -0.0029422654770314693, -0.02389344573020935, 0.033428166061639786, -0.016625236719846725, -0.03652440756559372, -0.00984214898198843, 0.007585557177662849, -0.03131876140832901, 0.010228725150227547, -0.026532255113124847, 0.047275006771087646, -0.018739620223641396, 0.008007128722965717, -0.011087947525084019, -0.02264174446463585, -0.05371982231736183, 0.0008982463041320443, -0.013944368809461594, -0.06927745044231415, -0.007740598637610674, -0.008958031423389912, -0.011698318645358086, 0.03284722566604614, 0.03023012913763523, 0.02448847144842148, 0.0012609520927071571, -0.027865400537848473, 0.002165271667763591, 0.0296030193567276, 0.02867261692881584, -0.04435382038354874, 0.01508390624076128, 0.007574670948088169, -0.018760643899440765, 0.09277806431055069, -0.08916593343019485, -0.004423447884619236, -0.008829633705317974, -0.012027337215840816, -0.014562070369720459, 0.8146292567253113, 0.0197508055716753, -0.047531455755233765, 0.03265269473195076, 0.027430938556790352, 0.020375944674015045, 0.02019955962896347, 0.008700627833604813, -0.028771743178367615, -0.034907806664705276, 0.003960425965487957, 0.01751185767352581, 0.020381880924105644, 0.010212472639977932, 0.05389239639043808, 0.06364551186561584, 0.03739481046795845, -0.01328987441956997, 0.044116776436567307, -0.02391401119530201, -0.0008136413525789976, 0.02993675507605076, 0.016085604205727577, 0.0503166988492012, 0.019740918651223183, -0.00644893990829587, -0.1626836210489273, 0.015246988274157047, -8.087625946951933e-33, -0.0008168405620381236, -0.02179519087076187, 0.01507457997649908, -0.003134669503197074, 0.022437024861574173, -0.017798731103539467, -0.05430028960108757, -0.025450540706515312, 0.046815648674964905, -0.0037625497207045555, 0.004106580279767513, -0.006671130191534758, -0.02373672090470791, 0.01729687675833702, 0.051076002418994904, -0.00436446163803339, 0.029322991147637367, 0.047751862555742264, -0.023907406255602837, -0.011529895476996899, 0.0023744383361190557, 0.03390158340334892, -0.0007276651449501514, 0.016699718311429024, -0.016571693122386932, 0.030742531642317772, 0.03861361742019653, 0.002492261119186878, 0.005187325645238161, -0.04504186287522316, -0.04596465826034546, -0.0016164724947884679, 0.018841521814465523, -0.03762759268283844, 0.03709488734602928, -0.04748774692416191, -0.026378702372312546, 0.022701652720570564, -0.04218825325369835, -0.001398329739458859, -0.03829631209373474, -0.029604347422719002, -0.0399818941950798, -0.016746019944548607, -0.02762163244187832, 0.0177680104970932, 0.004463025834411383, 0.09021513164043427, -0.009624742902815342, -0.021759288385510445, -0.010658828541636467, 0.04287424683570862, -0.01928224228322506, -0.011524840258061886, -0.005558548495173454, -0.0013529191492125392, -0.00009353889618068933, -0.000693266571033746, -0.00042668983223848045, -0.02440984919667244, 0.022861652076244354, -0.04275854304432869, -0.00625228276476264, 0.012182023376226425, -0.024960750713944435, 0.03265517204999924, 0.04798200726509094, 0.000606405723374337, -0.0076149520464241505, -0.011220146901905537, -0.08226877450942993, 0.017792070284485817, -0.03036067821085453, -0.0137943085283041, 0.034835197031497955, -0.030801206827163696, 0.001392597914673388, 0.029395930469036102, 0.014668527990579605, 0.05428590252995491, -0.004315198864787817, -0.022762227803468704, -0.01952599175274372, -0.04496015980839729, 0.0038576785009354353, -0.005358987487852573, 0.052609894424676895, 0.0374697744846344, -0.03319983929395676, -0.015445965342223644, 0.018336405977606773, -0.0056451112031936646, -0.0008416701457463205, 0.008525463752448559, -0.01446740236133337, 7.956459144499397e-33, -0.012231451459228992, 0.0310947448015213, 0.00804570410400629, 0.005815734155476093, 0.026714831590652466, -0.021244684234261513, 0.05330069363117218, 0.03317900002002716, -0.03848494589328766, 0.013879799284040928, -0.020029380917549133, -0.0523332841694355, -0.042427804321050644, 0.01825147680938244, 0.0688159167766571, 0.01299568172544241, -0.03505001217126846, 0.08796977996826172, -0.03116265870630741, -0.026527969166636467, -0.020115112885832787, 0.012215725146234035, 0.006721137557178736, 0.037916336208581924, -0.008466219529509544, 0.06647679954767227, 0.0016021921765059233, -0.016924526542425156, -0.014396842569112778, -0.03512182831764221, -0.006356371100991964, -0.03248802572488785, 0.007521210703998804, -0.05064428225159645, 0.019995322450995445, 0.046236831694841385, 0.021971745416522026, -0.03124823421239853, -0.06372357904911041, 0.022656213492155075, 0.02408398874104023, 0.019927969202399254, -0.025779159739613533, -0.002198432106524706, -0.04586615040898323, 0.02935648523271084, -0.018475184217095375, 0.030539026483893394, -0.0006419298588298261, -0.00613408163189888, -0.03326794505119324, 0.03543649613857269, 0.044641055166721344, 0.0027403905987739563, 0.019745128229260445, -0.03483129292726517, -0.02311537228524685, 0.06255127489566803, -0.024779684841632843, -0.0036705101374536753, -0.015783250331878662, -0.017713868990540504, -0.026557311415672302, 0.023250112310051918, 0.010246936231851578, 0.012186560779809952, -0.030812669545412064, -0.028246833011507988, 0.006604848895221949, 0.017442597076296806, 0.013302619569003582, -0.013592991046607494, -0.004807296674698591, 0.008039670065045357, 0.019519297406077385, 0.029390834271907806, -0.014701047912240028, -0.029477642849087715, -0.024463513866066933, 0.029750501736998558, 0.040595460683107376, -0.021643750369548798, 0.03888572379946709, 0.025352561846375465, -0.043426208198070526, 0.005789248738437891, -0.005081701558083296, -0.006699935998767614, 0.020611340180039406, 0.005771176423877478, 0.008417579345405102, -0.012292713858187199, 0.008902828209102154, 0.034656014293432236, 0.0410911850631237, -1.308524932852606e-8, -0.033013712614774704, 0.011049795895814896, 0.005425055976957083, -0.0012441258877515793, 0.008549652993679047, 0.028207525610923767, -0.03184141218662262, 0.01906551793217659, -0.000598322250880301, 0.028335455805063248, 0.002164407866075635, -0.015992464497685432, -0.026901299133896828, 0.013823078013956547, -0.05306822806596756, -0.04986113682389259, -0.005395089741796255, -0.009222296997904778, 0.04720982536673546, -0.007741261273622513, 0.014193275012075901, 0.017142312601208687, 0.020830310881137848, -0.003612245200201869, -0.021543119102716446, -0.023290550336241722, 0.030224548652768135, -0.061005834490060806, 0.008390379138290882, -0.0007000124896876514, -0.003991405479609966, -0.04555829241871834, -0.024175751954317093, 0.04582841321825981, -0.012208039872348309, 0.004602247849106789, -0.018667027354240417, 0.011676172725856304, 0.045500174164772034, 0.035777680575847626, -0.014300874434411526, -0.010940941981971264, 0.009236167185008526, -0.03395575284957886, 0.012726262211799622, 0.018378766253590584, -0.07287271320819855, -0.004312525037676096, 0.019865283742547035, -0.018851300701498985, 0.008047852665185928, -0.018886994570493698, 0.012280670925974846, 0.016179149970412254, 0.011226537637412548, -0.031913310289382935, -0.027202671393752098, 0.03012293390929699, -0.02222461998462677, -0.014216872863471508, 0.02622721530497074, -0.003776703728362918, -0.008948137052357197, -0.040508005768060684 ]
matplotlib-matplotlib-deprecation-adding-axes
https://markhneedham.com/blog/2018/09/18/matplotlib-matplotlib-deprecation-adding-axes
false
2018-09-18 07:55:00
matplotlib - Remove axis legend
[ "python", "matplotlib" ]
[ "Python" ]
I've been working with matplotlib a bit recently, and I wanted to remove all axis legends from my chart. It took me a bit longer than I expected to figure it out so I thought I'd write it up. Before we do anything let's import matplotlib as well as pandas, since we're going to plot data from a pandas DataFrame. [source, python] ---- import pandas as pd import matplotlib matplotlib.use('TkAgg') import matplotlib.pyplot as plt plt.style.use('fivethirtyeight') ---- Next we'll create a DataFrame with one column called `label` and another called `count`: [source, python] ---- df = pd.DataFrame({"label": ["A", "B", "C", "D"], "count": [12, 19, 5, 10]}) ---- We want to plot a bar chart with the label on the x-axis and the count on the y-axis. The following code will plot a chart and store it in an SVG file: [source, python] ---- df.plot(kind='bar', x='label', y='count') plt.tight_layout() plt.savefig("/tmp/matplotlib_legends.svg") plt.close() ---- This is what the chart looks like: image::{{<siteurl>}}/uploads/2018/09/matplotlib_legends.svg[] We've got legends for both axes, but we can pass in `legend=None` to the `plot()` function which should sort that out: [source, python] ---- df.plot(kind='bar', x='label', y='count', legend=None) plt.tight_layout() plt.savefig("/tmp/matplotlib_no_y.svg") plt.close() ---- This is what the chart looks like now: image::{{<siteurl>}}/uploads/2018/09/matplotlib_no_y.svg[] The y-axis legend has been removed, but the x-axis one is still there. After a bit of searching I found the https://matplotlib.org/api/_as_gen/matplotlib.axis.Axis.set_label_text.html[set_label_text^] function, which we can use like this: [source, python] ---- ax = df.plot(kind='bar', x='label', y='count', legend=None) ax.xaxis.set_label_text("") plt.tight_layout() plt.savefig("/tmp/matplotlib_no_x_no_y.svg") plt.close() ---- And now we finally have a chart with all legends removed: image::{{<siteurl>}}/uploads/2018/09/matplotlib_no_x_no_y.svg[] Success!
Learn how to remove all axis legends from a matplotlib chart.
null
[ 0.024977486580610275, -0.0155897606164217, 0.019117778167128563, 0.01628500409424305, 0.0634850487112999, 0.027589764446020126, -0.027829941362142563, 0.006232383195310831, -0.011412163265049458, -0.018299706280231476, -0.0382382795214653, 0.008650052361190319, -0.06489172577857971, 0.03852635622024536, 0.011716608889400959, 0.06881872564554214, 0.09020616114139557, 0.009706157259643078, 0.022345533594489098, 0.03438621386885643, 0.034006305038928986, 0.028139669448137283, -0.04841919615864754, 0.043016016483306885, -0.015523931942880154, -0.02788628824055195, 0.0010628282325342298, 0.016519751399755478, -0.0395941361784935, 0.0055865328758955, 0.033890292048454285, -0.01209686603397131, 0.012644591741263866, -0.0028912473935633898, 0.028747187927365303, -0.002854253863915801, -0.0157928429543972, 0.012263323180377483, -0.01084150280803442, -0.013604382984340191, -0.08825989067554474, 0.04124082252383232, -0.015998568385839462, 0.005435073748230934, -0.019487014040350914, 0.007925262674689293, -0.03805447369813919, -0.0027418166864663363, 0.011998879723250866, 0.023628294467926025, -0.048055291175842285, 0.03660103678703308, 0.01057107001543045, -0.038970429450273514, -0.0031126718968153, 0.06812920421361923, 0.019383329898118973, -0.0732789933681488, 0.018538033589720726, -0.025301821529865265, 0.015012328512966633, -0.00539416866376996, 0.004114633426070213, 0.05556667968630791, 0.026239663362503052, -0.015455454587936401, -0.017856841906905174, 0.05729517713189125, -0.033266279846429825, -0.04343116655945778, -0.022767676040530205, -0.006614078301936388, -0.03268307074904442, -0.014849940314888954, -0.024812744930386543, -0.03646276891231537, -0.024269606918096542, 0.03886646777391434, 0.03366829827427864, 0.032668959349393845, 0.00698512839153409, 0.020357303321361542, 0.01494318712502718, 0.01723199151456356, 0.0008131710346788168, -0.019166290760040283, -0.049664173275232315, -0.03505818173289299, -0.0755028948187828, 0.03898651525378227, -0.023843852803111076, -0.05639396235346794, 0.039071228355169296, 0.007763631176203489, -0.008393852971494198, -0.023712269961833954, -0.011706714518368244, -0.015020790509879589, -0.010332103818655014, -0.012050991877913475, -0.06027507036924362, -0.01963355578482151, 0.03912073373794556, 0.04422115534543991, -0.056097205728292465, -0.036267999559640884, 0.007415015250444412, -0.004137858748435974, -0.017171716317534447, 0.002912621246650815, -0.05483752861618996, -0.04400563985109329, -0.04105571284890175, -0.031025946140289307, -0.07151386141777039, 0.05379881709814072, 0.01929202489554882, -0.05713722109794617, -0.004770918749272823, 0.00465296721085906, 0.038145557045936584, 0.01850116439163685, -0.0118648000061512, 0.06349372118711472, -0.0038551148027181625, 0.0437597893178463, 0.0015030214563012123, 0.07135768979787827, -0.003253165166825056, -0.05845306068658829, 0.0022909913677722216, 0.051382727921009064, -0.04095382243394852, -0.022046415135264397, 0.03399237245321274, -0.02696453407406807, 0.0029481500387191772, 0.02058541588485241, 0.03234611824154854, 0.013920855708420277, 0.04630390182137489, -0.00851066317409277, -0.01582503505051136, -0.006761814001947641, -0.02377803437411785, -0.0012578819878399372, -0.027965258806943893, -0.06686747074127197, -0.04059065133333206, 0.001320939394645393, 0.023688804358243942, 0.028871160000562668, 0.05946023389697075, -0.015891017392277718, -0.01703815720975399, 0.08350381255149841, 0.0179898701608181, 0.01479033287614584, -0.02693447656929493, -0.01077937800437212, 0.05033915862441063, 0.028043508529663086, 0.014434208162128925, 0.05515063554048538, -0.013070591725409031, -0.025622865185141563, 0.011196533218026161, 0.0549326054751873, -0.03450465947389603, -0.01256777998059988, -0.025908837094902992, -0.03735646232962608, 0.04985620081424713, -0.023707516491413116, 0.011371340602636337, 0.05603494867682457, 0.07452105730772018, 0.036635227501392365, 0.024449791759252548, 0.023301128298044205, -0.06596150249242783, 0.04829900711774826, 0.012659911066293716, 0.016093570739030838, 0.053832054138183594, -0.004888759460300207, 0.0854046493768692, -0.013654123991727829, 0.057465922087430954, 0.026965102180838585, -0.0337190218269825, -0.03936341404914856, -0.0027314783073961735, 0.0031405265908688307, 0.05058729648590088, -0.05762157961726189, -0.029537824913859367, 0.06419309973716736, 0.015489903278648853, 0.039558302611112595, -0.010537911206483841, -0.0023394369054585695, 0.01215929351747036, -0.02500700019299984, -0.06873670220375061, -0.010826951824128628, 0.004238123539835215, -0.018361268565058708, 0.0020497494842857122, 0.006353038363158703, 0.0020187569316476583, 0.005610642023384571, 0.051104139536619186, -0.013366051949560642, 0.043229591101408005, 0.03583889827132225, 0.03524990379810333, -0.011866308748722076, 0.044525183737277985, -0.07018648087978363, 0.014160459861159325, -0.007028344552963972, -0.040827516466379166, -0.09860096871852875, 0.022791001945734024, 0.1386137157678604, 0.07064580917358398, -0.040443554520606995, -0.042475804686546326, -0.0195789635181427, -0.023842595517635345, -0.02979573979973793, 0.009355112910270691, -0.01204495970159769, -0.022299809381365776, 0.01573168858885765, -0.050777751952409744, -0.0321180559694767, -0.0007327617495320737, -0.02707037702202797, 0.014997189864516258, 0.06349050253629684, -0.017141956835985184, 0.050781622529029846, 0.027750177308917046, -0.006949321366846561, 0.0030093546956777573, -0.03865830972790718, -0.06245075538754463, 0.020766926929354668, 0.0034187943674623966, -0.0007021204801276326, 0.04045071825385094, -0.009264121763408184, -0.05874857306480408, -0.022391462698578835, -0.07678373157978058, -0.005908715073019266, 0.033215634524822235, 0.05029726400971413, 0.027336055412888527, -0.008473471738398075, -0.00439872033894062, -0.007663914002478123, -0.019489914178848267, -0.033009812235832214, -0.024172917008399963, -0.020729750394821167, 0.025219319388270378, 0.038199298083782196, 0.031405795365571976, 0.010094980709254742, 0.018488846719264984, -0.01080863643437624, 0.011345721781253815, 0.009567402303218842, 0.033998459577560425, 0.005253170151263475, -0.03346572071313858, -0.04120020195841789, 0.023161645978689194, 0.05507846176624298, 0.0008023776463232934, -0.029298704117536545, -0.009157595224678516, -0.03521617874503136, 0.03927615284919739, -0.03805556148290634, -0.024543501436710358, -0.009372982196509838, 0.03625980764627457, 0.0404464527964592, 0.019051019102334976, 0.005354465916752815, -0.01696184277534485, 0.016900988295674324, 0.003044613404199481, 0.025699077174067497, 0.009578337892889977, 0.04714084789156914, 0.004610417876392603, 0.023439770564436913, 0.07157518714666367, -0.029587123543024063, -0.03438251465559006, -0.02001747488975525, -0.009487965144217014, -0.036641206592321396, -0.25780487060546875, 0.032396987080574036, -0.010195779614150524, -0.04368039220571518, -0.01209326647222042, -0.014906209893524647, -0.002349477494135499, -0.012482519261538982, -0.03158475458621979, 0.004348750226199627, -0.009784248657524586, -0.058407120406627655, -0.017642322927713394, 0.04983149468898773, 0.006602154113352299, 0.029166806489229202, 0.01198240090161562, -0.0037210446316748857, 0.019882386550307274, 0.04407927393913269, -0.010176707990467548, -0.05652695894241333, -0.01665625534951687, 0.05761490762233734, 0.011689841747283936, 0.06685999035835266, -0.07359085232019424, 0.04639573022723198, -0.07167328894138336, -0.005791927222162485, 0.0031610920559614897, -0.03397086635231972, -0.02562580071389675, -0.021071355789899826, -0.022235404700040817, -0.058044079691171646, 0.0038787624798715115, -0.009003326296806335, -0.014030222781002522, 0.005366879049688578, -0.023243216797709465, -0.02742200903594494, -0.00946732982993126, -0.010559650138020515, 0.05337744578719139, -0.004534680861979723, -0.050623856484889984, 0.011973600834608078, -0.04861832782626152, 0.0681406632065773, -0.010007460601627827, -0.010857678949832916, -0.03200036287307739, 0.0004476556496229023, -0.05457022413611412, 0.02311304770410061, -0.016184115782380104, 0.0159596037119627, -0.058020539581775665, -0.03186884894967079, 0.000422261276980862, -0.024322472512722015, -0.03222036361694336, -0.06258538365364075, -0.012302731163799763, -0.02125343307852745, -0.030462292954325676, -0.03639250621199608, 0.04136279970407486, 0.06447254121303558, -0.06094364821910858, -0.02390407957136631, 0.005451827310025692, -0.09288389980792999, 0.01968063972890377, -0.02986246906220913, -0.01881965808570385, -0.004311999771744013, 0.023086225613951683, 0.005182621069252491, -0.02926633134484291, -0.06059641018509865, 0.0954318717122078, -0.009409950114786625, -0.04553751274943352, -0.01591327413916588, -0.0008395467884838581, -0.010730775073170662, 0.009138304740190506, -0.028683125972747803, 0.07678709924221039, 0.011774678714573383, 0.024444924667477608, 0.007528652437031269, -0.06249333173036575, 0.04842398315668106, 0.05907062813639641, -0.011778352782130241, -0.004819023422896862, 0.006660673301666975, 0.03428154066205025, -0.06324411928653717, -0.045684702694416046, -0.029496219009160995, -0.0013699717819690704, -0.006999869830906391, -0.05284114181995392, -0.009038520976901054, 0.017959803342819214, 0.000602270127274096, 0.00846474152058363, -0.025091106072068214, 0.01747199334204197, -0.06559992581605911, -0.0021226247772574425, -0.0498928539454937, 0.0526738204061985, 0.007547570858150721, 0.017785608768463135, -0.04348080977797508, -0.04896722733974457, 0.005949491634964943, 0.021018067374825478, 0.008587575517594814, -0.03624314069747925, -0.04053402692079544, 0.0332302525639534, -0.008509083651006222, 0.023361794650554657, 0.030170314013957977, -0.020268481224775314, 0.05278101935982704, 0.07338988780975342, -0.04720854014158249, 0.018556078895926476, -0.003799363039433956, -0.03239339217543602, -0.0005960157141089439, 0.0025044360663741827, 0.018921269103884697, 0.007920004427433014, 0.02390294149518013, -0.0397237204015255, 0.014545327983796597, 0.056565333157777786, -0.016036542132496834, 0.03552550449967384, 0.008153514936566353, 0.016600407660007477, 0.010364923626184464, 0.013959618285298347, 0.013449876569211483, -0.0025038942694664, -0.031822770833969116, -0.030204856768250465, 0.014754900708794594, 0.012784196995198727, -0.008244800381362438, -0.012869815342128277, -0.04437611997127533, 0.011941207572817802, -0.02595902979373932, -0.025922005996108055, -0.03869667649269104, 0.028625277802348137, 0.03521743416786194, 0.0004186011210549623, 0.04354400932788849, 0.03611563891172409, -0.019344540312886238, 0.012491635046899319, 0.027260808274149895, -0.011341333389282227, -0.0105005893856287, -0.043777044862508774, -0.026157839223742485, 0.02207479067146778, 0.025365358218550682, 0.016258252784609795, 0.006447961553931236, -0.0033569647930562496, 0.009094671346247196, -0.0013321079313755035, -0.006493634544312954, 0.01969391107559204, 0.03879157081246376, -0.0618785135447979, -0.019440162926912308, -0.043546561151742935, 0.006464352831244469, -0.008517291396856308, -0.017917761579155922, 0.009127259254455566, 0.02286340855062008, -0.0331052727997303, -0.05489524081349373, -0.028834430500864983, -0.0014099687105044723, 0.03722130507230759, -0.010229172185063362, -0.035993367433547974, 0.010948392562568188, -0.033888403326272964, 0.03561241924762726, 0.07106875628232956, -0.036464590579271317, 0.019243665039539337, 0.00913835410028696, 0.02683206833899021, -0.019143400713801384, 0.04224245622754097, -0.06947176158428192, -0.04801610857248306, -0.007063473574817181, 0.013979360461235046, -0.004051602445542812, -0.027570141479372978, -0.07043596357107162, 0.032358720898628235, 0.0018759040394797921, 0.028853867202997208, 0.007981236092746258, -0.011710169725120068, -0.018997367471456528, -0.017926860600709915, 0.017061784863471985, 0.01040561217814684, -0.013068927451968193, 0.05216052010655403, -0.018703609704971313, 0.03343876078724861, -0.018985986709594727, 0.044636908918619156, 0.036620400846004486, -0.014366978779435158, 0.021546224132180214, -0.0654488280415535, -0.014573530294001102, 0.01560440193861723, 0.03173462301492691, -0.000758062582463026, 0.022683192044496536, -0.05280366539955139, -0.019104842096567154, 0.013434384949505329, -0.0069483136758208275, 0.013104661367833614, -0.041827309876680374, 0.014514239504933357, 0.05465361475944519, 0.007547805551439524, -0.019104693084955215, 0.03164822980761528, -0.08356702327728271, 0.05750531330704689, -0.03184353932738304, -0.044601988047361374, -0.008748898282647133, -0.04277335852384567, 0.019324660301208496, -0.014586159959435463, 0.03901698812842369, -0.06193502992391586, 0.052229758352041245, 0.02218485437333584, 0.051942870020866394, 0.05750131607055664, 0.02213398925960064, 0.010549154132604599, -0.04863746091723442, 0.0034226428251713514, -0.07625681906938553, 0.014357775449752808, 0.04142732173204422, 0.01655557192862034, -0.003991877194494009, -0.005552495364099741, -0.03668738901615143, 0.0467647984623909, -0.06150197610259056, -0.016567401587963104, 0.05610702931880951, 0.041274700313806534, 0.03497999534010887, 0.01973053626716137, -0.03289686143398285, 0.013341320678591728, 0.04075224697589874, -0.05132335051894188, 0.001995745347812772, -0.02430872432887554, 0.08230094611644745, 0.026001252233982086, 0.017477087676525116, 0.01951729506254196, 0.0070870076306164265, 0.05724592134356499, 0.02580396458506584, 0.033572178333997726, 0.03025316447019577, -0.028127482160925865, 0.061781883239746094, 0.018718399107456207, -0.016554756090044975, -0.010426316410303116, 0.023569444194436073, 0.04583794251084328, -0.042776454240083694, 0.040482014417648315, 0.015279227867722511, 0.026977993547916412, -0.06978124380111694, 0.04610620066523552, -0.014342088252305984, -0.02610291913151741, -0.03100750595331192, 0.0103068295866251, -0.0437886044383049, 0.0135486526414752, -0.016501223668456078, -0.01368448231369257, 0.004102373030036688, 0.0785931721329689, -0.0648413822054863, -0.04658478498458862, 0.04180719330906868, -0.04345148056745529, 0.03114541806280613, 0.018933460116386414, 0.06190338730812073, 0.07585252821445465, 0.06412523239850998, 0.019768191501498222, 0.042328525334596634, -0.007221898529678583, -0.03730091452598572, -0.003798436839133501, -0.00014996885147411376, 0.0043561337515711784, -0.036708440631628036, 0.019200587645173073, 0.03211916610598564, -0.005225370638072491, 0.028018726035952568, 0.00946167204529047, -0.011128566227853298, -0.022617818787693977, -0.021613746881484985, -0.002783017000183463, 0.04369933903217316, -0.024396130815148354, 0.04906211420893669, -0.004327134229242802, -0.005491215270012617, 0.03692319244146347, -0.021774208173155785, -0.028716769069433212, 0.03764663636684418, -0.021006980910897255, -0.02000400237739086, 0.043147873133420944, 0.037299640476703644, 0.09211358428001404, -0.04846761375665665, -0.048040200024843216, 0.0172707699239254, 0.055880527943372726, 0.0013191261095926166, 0.004504637327045202, 0.03513268381357193, 0.02068772166967392, 0.03316301107406616, -0.03289399668574333, -0.002210151171311736, -0.07107117772102356, -0.0013611308531835675, 0.0450715497136116, -0.006207364145666361, 0.0014862845418974757, 0.03607718646526337, -0.005761527922004461, -0.060625430196523666, -0.014773926697671413, -0.0765109658241272, -0.03641461953520775, -0.08181017637252808, -0.029106833040714264, 0.03336135670542717, -0.009555782191455364, -0.04623947665095329, -0.03112645447254181, -0.003698099171742797, 0.04524444788694382, -0.02155061811208725, -0.029951559379696846, -0.0462445504963398, -0.0006724414997734129, 0.014589864760637283, -0.003216874785721302, -0.003112283768132329, 0.03831452876329422, -0.005930624902248383, -0.05015359818935394, -0.010723820887506008, 0.046679675579071045, 0.03637759014964104, 0.02937723696231842, 0.02978358417749405, -0.0521402470767498, -0.003655614098533988, -0.05134371668100357, -0.007187580224126577, -0.0763561949133873, 0.01119711808860302, 0.03215144947171211, 0.01902623474597931, 0.0357799269258976, -0.02914387173950672, -0.0015260621439665556, -0.030618922784924507, -0.01802494190633297, -0.02716449834406376, 0.016578875482082367, 0.039415810257196426, -0.04031738266348839, 0.06833041459321976, 0.009044402278959751, 0.016902489587664604, -0.007698994595557451, -0.030268779024481773, -0.03421538695693016, 0.0005526042077690363, -0.04342397674918175, -0.035508982837200165, -0.048282794654369354, -0.03187495470046997, 0.00030452621285803616, 0.0329081155359745, -0.027972934767603874, -0.03358085826039314, -0.020578546449542046, 0.028813710436224937, -0.010128529742360115, 0.04320068657398224, -0.021887898445129395, -0.0206780843436718, -0.02992568537592888, -0.016510890796780586, -0.000661019585095346, 0.05005623772740364, 0.027137190103530884, 0.0023035448975861073, 0.03084990195930004, -0.02754494734108448, 0.005457282532006502, 0.0025703799910843372, 0.018869174644351006, 0.0496257022023201, -0.02996976114809513, 0.04116497561335564 ]
[ -0.04858674481511116, -0.034163955599069595, -0.01387257780879736, 0.003983581904321909, 0.07240016758441925, -0.046291861683130264, -0.027601705864071846, 0.03175956755876541, 0.015878841280937195, 0.03399120271205902, 0.014668229036033154, -0.07576417922973633, 0.03948032855987549, -0.017881738021969795, 0.02035580389201641, 0.005261040758341551, -0.026857150718569756, -0.009450378827750683, -0.06252720206975937, 0.021769139915704727, 0.00707382382825017, -0.03567543253302574, -0.05573098734021187, -0.03110998310148716, 0.0664275735616684, 0.06225503981113434, 0.004096200689673424, -0.059950705617666245, 0.009696651250123978, -0.20223389565944672, 0.052125707268714905, -0.014474619179964066, 0.006315966136753559, -0.03431506082415581, -0.0009432951919734478, 0.007693516556173563, 0.029751112684607506, 0.04168486222624779, 0.04033924639225006, 0.032479915767908096, 0.015298188664019108, -0.023299764841794968, -0.045688144862651825, -0.03084355965256691, 0.020931556820869446, 0.007331350352615118, -0.04630317911505699, -0.02281894162297249, 0.018745755776762962, 0.019420359283685684, -0.05276370421051979, -0.007886877283453941, -0.017856203019618988, -0.009227140806615353, 0.00464219506829977, 0.02973751164972782, 0.047798074781894684, 0.014520763419568539, 0.045955024659633636, 0.039190538227558136, 0.0038389917463064194, -0.0021185590885579586, -0.12397599965333939, 0.11126796901226044, 0.01138965506106615, 0.049494292587041855, -0.03899369761347771, 0.003907844889909029, -0.010166761465370655, 0.09057740867137909, -0.026011575013399124, -0.018549073487520218, -0.01822640933096409, 0.03590373322367668, 0.007545781321823597, -0.04362685605883598, -0.01937062293291092, -0.011289763264358044, 0.034699421375989914, -0.041840653866529465, -0.07923070341348648, 0.03374733030796051, -0.017279842868447304, -0.02928079292178154, 0.02290240116417408, 0.026904506608843803, -0.009860380552709103, 0.04233827441930771, 0.00895698182284832, 0.03148110583424568, 0.04796063154935837, 0.014710304327309132, 0.025747597217559814, 0.026186397299170494, -0.07808727771043777, -0.049764104187488556, 0.006590011529624462, 0.028049850836396217, 0.007946829311549664, 0.41092467308044434, -0.04644240811467171, -0.033926669508218765, 0.037590380758047104, 0.05395953357219696, 0.011172885075211525, -0.026326457038521767, -0.021386127918958664, -0.03504425287246704, 0.01166648417711258, -0.014138753525912762, 0.002194666536524892, -0.03394690155982971, 0.019770948216319084, -0.05818750336766243, 0.03489300608634949, -0.04524131864309311, -0.02564706839621067, 0.021251102909445763, -0.020185939967632294, 0.027555150911211967, -0.012701638974249363, 0.013375482521951199, 0.030714526772499084, 0.05078738555312157, 0.042682111263275146, 0.056812774389982224, 0.04106985405087471, 0.048132218420505524, 0.021829746663570404, -0.021745458245277405, 0.028971362859010696, -0.053374990820884705, -0.10010289400815964, 0.034338414669036865, -0.009735467843711376, 0.0025960546918213367, 0.05453122779726982, -0.010099987499415874, 0.015174769796431065, 0.01746939867734909, -0.012877504341304302, -0.01990189217031002, 0.05861247330904007, 0.02028106525540352, 0.003112607169896364, 0.10237110406160355, -0.013816866092383862, -0.01165290642529726, -0.010404576547443867, -0.024956166744232178, -0.01569313183426857, 0.024697888642549515, 0.004117676056921482, -0.03752059489488602, 0.027086902409791946, 0.03643414005637169, 0.046094171702861786, 0.018163805827498436, -0.05208287760615349, -0.0013933469308540225, -0.036631736904382706, -0.03792199492454529, -0.007598607800900936, -0.0029584213625639677, 0.04322715103626251, -0.09226340800523758, -0.02290298044681549, 0.030827146023511887, -0.0008250256651081145, -0.0727754533290863, -0.014283712022006512, 0.03341004624962807, -0.03543907403945923, -0.024071238934993744, 0.09381181746721268, 0.0005703147617168725, -0.05655250698328018, -0.026428284123539925, 0.06667280942201614, 0.0040483977645635605, -0.012284566648304462, 0.020134055987000465, -0.028279684484004974, -0.00939958170056343, -0.050417810678482056, -0.07918509095907211, -0.036959461867809296, 0.0037030084058642387, -0.020113684237003326, -0.048683952540159225, 0.05287766084074974, -0.0275164432823658, 0.004408649634569883, 0.05720755457878113, -0.029889477416872978, -0.0018145256908610463, 0.0023819589987397194, -0.00988461822271347, -0.02783903479576111, -0.05238983407616615, 0.012747678905725479, -0.014105060137808323, 0.01955169066786766, 0.021462807431817055, -0.03385387361049652, 0.05034705623984337, 0.06237555667757988, -0.041502803564071655, 0.06438557058572769, 0.015179756097495556, 0.004188004415482283, -0.021150993183255196, -0.015823515132069588, 0.005506274756044149, -0.04364212602376938, 0.004198398441076279, 0.005407647229731083, 0.0007674222579225898, -0.014575197361409664, 0.01893449015915394, 0.02375730685889721, -0.05455910414457321, -0.03805457428097725, -0.3587767779827118, -0.014756536111235619, 0.009756263345479965, 0.002363699721172452, 0.014802692458033562, -0.03955990821123123, -0.015285711735486984, -0.006642799358814955, -0.006663959473371506, 0.05824468284845352, 0.08946816623210907, -0.01643875613808632, -0.0058342753909528255, -0.14155158400535583, -0.019715161994099617, 0.03142409026622772, -0.04083341360092163, -0.03537062928080559, -0.045806873589754105, -0.005383541341871023, -0.020908517763018608, 0.0067803142592310905, -0.024525992572307587, -0.018252646550536156, -0.004412900190800428, -0.01544686034321785, 0.16723309457302094, 0.0002985173196066171, 0.05901637300848961, -0.035106562077999115, 0.0036345762200653553, -0.031882744282484055, -0.018092019483447075, -0.007387107703834772, -0.022253746166825294, -0.010955628007650375, -0.02398916333913803, 0.017783652991056442, -0.014089895412325859, -0.04583181068301201, -0.012124571949243546, 0.032164182513952255, -0.004281924106180668, -0.055144112557172775, -0.03379428759217262, 0.041288357228040695, -0.0002505540323909372, -0.007267202716320753, 0.012641527689993382, 0.10026661306619644, 0.009393841028213501, 0.012216875329613686, 0.03791416808962822, 0.045043062418699265, 0.007481175009161234, 0.013188036158680916, -0.06846526265144348, -0.006462207064032555, -0.03447169065475464, -0.0221621785312891, -0.005511039402335882, 0.027672015130519867, 0.053917448967695236, -0.08350817859172821, -0.010262656025588512, 0.0333545058965683, 0.001908634789288044, -0.027875466272234917, 0.05581497773528099, 0.023242611438035965, -0.03276443108916283, 0.12277106940746307, 0.00948270596563816, -0.00908498466014862, 0.02864512801170349, 0.08065153658390045, -0.009823821485042572, 0.059717804193496704, 0.009265003725886345, 0.019315024837851524, 0.014078516513109207, 0.004672086797654629, 0.012357084080576897, 0.013244160450994968, 0.022814003750681877, -0.02596796117722988, -0.014424159191548824, -0.05754170939326286, 0.029958073049783707, 0.01540149562060833, 0.0005032274639233947, -0.015310070477426052, -0.003366283141076565, 0.0004347091307863593, 0.04444807395339012, 0.005676875356584787, -0.2773807942867279, 0.02452150359749794, 0.0414726547896862, 0.07947862148284912, -0.022157538682222366, -0.012522117234766483, 0.016895102337002754, -0.004150749649852514, 0.0012627003015950322, -0.009067517705261707, -0.0392414890229702, 0.04304773733019829, 0.02470776066184044, -0.05648043751716614, -0.01118635106831789, -0.021947624161839485, 0.06570883840322495, -0.0019187667639926076, 0.033309657126665115, 0.02862480841577053, 0.019306953996419907, -0.05210806801915169, 0.13745170831680298, 0.05613638833165169, 0.007708994206041098, -0.03021499142050743, -0.017107095569372177, -0.03283494710922241, 0.06681817770004272, 0.014090506359934807, 0.03039439767599106, -0.0124356709420681, 0.01896965503692627, 0.023089824244379997, 0.038071706891059875, -0.021593600511550903, -0.04237232357263565, 0.03507855534553528, 0.015246523544192314, -0.03993945196270943, 0.003525366773828864, 0.0402822345495224, -0.08715780824422836, 0.022042376920580864, 0.08073751628398895, -0.00826073158532381, -0.004445129539817572, -0.017693914473056793, -0.03632492572069168, -0.01665479503571987, -0.024595431983470917, -0.029927445575594902, -0.047527577728033066, -0.008044677786529064, -0.005016903392970562, 0.05140434950590134, 0.06181395798921585, 0.02585853636264801, 0.04670092463493347, -0.02993485890328884, 0.0077709355391561985, -0.08457130193710327, 0.06819294393062592, 0.004031365737318993, -0.008167709223926067 ]
[ 0.030911503359675407, 0.015249197371304035, -0.0022333667147904634, 0.004310036543756723, 0.01635618507862091, -0.014853066764771938, -0.013860161416232586, -0.0002829089353326708, 0.036558061838150024, -0.021141991019248962, -0.010070989839732647, 0.020352929830551147, -0.019229339435696602, -0.029837265610694885, 0.024155452847480774, -0.010125782340765, -0.022865409031510353, -0.01924387365579605, 0.059308670461177826, -0.01706078089773655, -0.04168888181447983, 0.015368295833468437, 0.03831047937273979, 0.0020491699688136578, -0.004857679363340139, -0.007089241407811642, -0.05716006085276604, 0.027208425104618073, 0.042492952197790146, -0.1141086220741272, -0.025862697511911392, -0.025078481063246727, -0.016948645934462547, 0.0037064719945192337, -0.042797159403562546, 0.021265719085931778, 0.007622197270393372, 0.025505555793642998, -0.019585592672228813, 0.01897631585597992, 0.0011934408685192466, -0.011084082536399364, 0.02234462834894657, 0.005283273756504059, 0.01546473428606987, 0.037757568061351776, -0.007984790951013565, -0.04393783584237099, -0.022633975371718407, 0.025893066078424454, -0.04639163240790367, 0.021852711215615273, -0.016646606847643852, 0.0003786395536735654, 0.029132099822163582, 0.00013765050971414894, 0.029479973018169403, -0.0417751781642437, 0.0352429635822773, 0.018957024440169334, -0.04010233283042908, 0.035944968461990356, -0.020175809040665627, -0.03205797076225281, -0.01632440835237503, -0.004748349077999592, -0.020349552854895592, 0.005167506169527769, -0.02218136191368103, 0.041484057903289795, -0.007092723622918129, 0.01690494269132614, -0.027620021253824234, -0.02603001333773136, -0.057558074593544006, -0.012281813658773899, -0.0055641066282987595, -0.06098827347159386, 0.004739999305456877, -0.0049764858558773994, -0.00700791459530592, 0.02845056541264057, 0.031009554862976074, 0.02506687492132187, -0.0040405611507594585, -0.02778920717537403, 0.008027167059481144, 0.019747953861951828, 0.019960422068834305, -0.0395628958940506, -0.009207267314195633, 0.020103149116039276, -0.010308408178389072, 0.07724419236183167, -0.09171873331069946, 0.015928717330098152, 0.01533256284892559, 0.004736323840916157, -0.013849048875272274, 0.7969321012496948, 0.025424404069781303, -0.05404512211680412, 0.021499743685126305, 0.019303450360894203, 0.018858028575778008, 0.013427875936031342, 0.01078663021326065, -0.02942793443799019, -0.017496168613433838, 0.021933916956186295, 0.026456642895936966, 0.018590714782476425, 0.006534479092806578, 0.05528849735856056, 0.05292581766843796, 0.029460614547133446, -0.024119306355714798, 0.024119315668940544, -0.03330780565738678, -0.001993786310777068, 0.013061588630080223, 0.014217871241271496, 0.017400246113538742, 0.014064745977520943, -0.010290253907442093, -0.1767219603061676, 0.03704078495502472, -8.403310097653043e-33, 0.008565163239836693, -0.02889505960047245, 0.016392873600125313, -0.004682163242250681, 0.024212228134274483, -0.015638573095202446, -0.057414498180150986, -0.024146942421793938, 0.03158804774284363, 0.012444877997040749, 0.011594168841838837, -0.012859010137617588, -0.033395908772945404, 0.04714414104819298, 0.045985687524080276, -0.00006448087515309453, 0.024288546293973923, 0.037999507039785385, -0.013267399743199348, 0.012754635885357857, 0.011970262043178082, 0.028263553977012634, 0.007442184258252382, 0.028630703687667847, -0.008257519453763962, 0.007501540705561638, 0.022279690951108932, 0.00933531578630209, -0.002561908680945635, -0.04353254660964012, -0.051347848027944565, -0.002728691091760993, 0.015969935804605484, -0.04988988861441612, 0.05120915547013283, -0.06529971212148666, -0.020543592050671577, 0.020376116037368774, -0.05373717471957207, -0.002880837768316269, -0.02756115421652794, -0.026698565110564232, -0.05703466385602951, -0.021142106503248215, -0.03930852189660072, 0.012707673944532871, 0.008407414890825748, 0.09353217482566833, -0.0048759556375443935, -0.018709972500801086, -0.0032283521723002195, 0.03734052553772926, -0.012556646019220352, 0.0026748592499643564, -0.007530021946877241, 0.011184124276041985, 0.000801206799224019, -0.012616179883480072, -0.015122207812964916, -0.03686952590942383, 0.03282708674669266, -0.0224462803453207, 0.008043935522437096, 0.014451109804213047, -0.045354120433330536, 0.025590680539608, 0.05167878791689873, 0.009188045747578144, -0.008815892040729523, -0.013921193778514862, -0.0773388221859932, 0.025189606472849846, -0.03548717126250267, -0.047668520361185074, 0.027691613882780075, -0.03438703343272209, -0.007184265647083521, 0.03579893335700035, 0.004919162020087242, 0.04398937523365021, 0.013472478836774826, -0.02944919466972351, -0.009611275978386402, -0.05252578854560852, -0.0028523642104119062, -0.011205973103642464, 0.049334730952978134, 0.043158113956451416, -0.02771599404513836, -0.03609834611415863, 0.03431802988052368, 0.004788024816662073, -0.0030018489342182875, 0.0027908419724553823, -0.02657175250351429, 8.480909622538607e-33, -0.014095882885158062, 0.033794838935136795, 0.006233091000467539, 0.015507335774600506, 0.026585523039102554, -0.012599028646945953, 0.05963268131017685, 0.04415222257375717, -0.030866961926221848, 0.019947586581110954, -0.008676975965499878, -0.05635838583111763, -0.041641995310783386, 0.00981396995484829, 0.06749968975782394, -0.0005609601503238082, -0.04316861927509308, 0.08319516479969025, -0.044377874583005905, -0.036926254630088806, -0.03801673278212547, 0.010249183513224125, 0.0312812477350235, 0.04472453519701958, -0.003987186588346958, 0.07158199697732925, -0.02735808677971363, -0.015150252729654312, -0.00931459292769432, -0.021405331790447235, -0.009282595477998257, -0.03847282752394676, 0.02036874368786812, -0.055062539875507355, 0.025261327624320984, 0.03654313459992409, 0.03420014679431915, -0.01781066507101059, -0.04779807850718498, 0.01638154685497284, 0.04178040847182274, 0.01594853401184082, -0.04132232069969177, 0.01618330553174019, -0.040678419172763824, 0.04058044031262398, -0.014914208091795444, 0.027849044650793076, 0.017693065106868744, -0.003930745180696249, -0.02394888922572136, 0.03744075074791908, 0.03447661176323891, 0.006195614580065012, 0.030932964757084846, -0.03682625666260719, -0.04013783484697342, 0.05478550121188164, -0.019481562077999115, 0.004503060597926378, -0.03062693029642105, -0.02282615564763546, -0.018189743161201477, 0.040719226002693176, -0.0009292893810197711, 0.017687194049358368, -0.04783916473388672, -0.016544323414564133, 0.002380452351644635, 0.023938754573464394, 0.007439147215336561, -0.009859590791165829, -0.002373775001615286, 0.00870455801486969, 0.015900708734989166, 0.014295683242380619, -0.011262861080467701, -0.04193910211324692, -0.0177469365298748, 0.04628914222121239, 0.054649315774440765, -0.03171189874410629, 0.030514247715473175, 0.02008938230574131, -0.030435845255851746, 0.007182926870882511, -0.013001024723052979, -0.03409375250339508, 0.00486223166808486, 0.0009296687203459442, 0.010591305792331696, -0.0008255406864918768, 0.00834743957966566, 0.024900294840335846, 0.03902263566851616, -1.3270210708071772e-8, -0.025558287277817726, 0.005004997365176678, 0.006998222786933184, 0.01161926705390215, 0.0069199856370687485, 0.024285972118377686, -0.022497937083244324, 0.026403412222862244, 0.008967221714556217, 0.036306362599134445, 0.008236860856413841, -0.017327621579170227, -0.030332906171679497, 0.01817077212035656, -0.05840721353888512, -0.05075661092996597, 0.007172916084527969, -0.027719123288989067, 0.05306825041770935, -0.013745381496846676, 0.015921734273433685, 0.00602085143327713, 0.024561937898397446, -0.005597542971372604, -0.008092489093542099, -0.010290469974279404, 0.015685945749282837, -0.059848397970199585, 0.01646471582353115, -0.00007652034400962293, -0.00023006384435575455, -0.052065033465623856, -0.02415238693356514, 0.047118496149778366, -0.017138661816716194, -0.009077778086066246, -0.015023992396891117, 0.009618827141821384, 0.028807232156395912, 0.030812878161668777, -0.0119846286252141, -0.013194261118769646, 0.013369896449148655, -0.03110950067639351, 0.012522405944764614, 0.025216998532414436, -0.04595273733139038, 0.0024514086544513702, 0.021385690197348595, 0.0003801993443630636, 0.012818612158298492, -0.02792529948055744, 0.013284067623317242, 0.010656367056071758, 0.014013897627592087, -0.026753533631563187, -0.019805241376161575, 0.023584261536598206, -0.018807651475071907, 0.0018572797998785973, 0.03579415753483772, -0.0013324628816917539, -0.01444101519882679, -0.03901015222072601 ]
matplotlib-remove-axis-legend
https://markhneedham.com/blog/2018/09/18/matplotlib-remove-axis-legend
false
2018-09-28 07:55:00
Neo4j Graph Algorithms: Calculating the cosine similarity of Game of Thrones episodes
[ "neo4j", "graph-algorithms" ]
[ "Python" ]
A couple of years ago I wrote a blog post showing how to https://markhneedham.com/blog/2016/08/22/neo4jscikit-learn-calculating-the-cosine-similarity-of-game-of-thrones-episodes/[calculate cosine similarity on Game of Thrones episodes^] using scikit-learn, and with the release of https://neo4j.com/docs/graph-algorithms/current/algorithms/similarity/[Similarity Algorithms^] in the Neo4j Graph Algorithms library I thought it was a good time to revisit that post. The dataset contains characters and episodes, and we want to calculate episode similarity based on the characters that appear in each episode. Before we run any algorithms we need to get the data into Neo4j. == Import the data There are three CSV files that contain everything we need. First we'll create one node per character: [source, cypher] ---- LOAD CSV WITH HEADERS FROM "https://raw.githubusercontent.com/mneedham/neo4j-got/master/data/import/characters.csv" AS row MERGE (c:Character {id: row.link}) ON CREATE SET c.name = row.character ---- Next let's create one node per episode: [source, cypher] ---- LOAD CSV WITH HEADERS FROM "https://raw.githubusercontent.com/mneedham/neo4j-got/master/data/import/overview.csv" AS row MERGE (episode:Episode {id: toInteger(row.episodeId)}) ON CREATE SET episode.season = toInteger(row.season), episode.number = toInteger(row.episode), episode.title = row.title ---- And finally let's create a relationship for each episode in which a character appeared: [source, cypher] ---- LOAD CSV WITH HEADERS FROM "https://raw.githubusercontent.com/mneedham/neo4j-got/master/data/import/characters_episodes.csv" AS row MATCH (episode:Episode {id: TOINT(row.episodeId)}) MATCH (character:Character {id: row.character}) MERGE (character)-[:APPEARED_IN]->(episode) ---- == Calculating Cosine Similarity Now that the data's loaded we're ready to calculate Cosine Similarity. To do this we first need to create a vector indicating whether a character appeared in an episode or not. e.g. imagine that we have 3 characters - A, B, and C - and 2 episodes. A and B appear in the first episode and B and C appear in the second episode. We would represent that with the following vectors: ``` Episode 1 = [1, 1, 0] Episode 2 = [0, 1, 1] ``` We could then calculate the Cosine Similarity between those two episodes like this: [source,cypher] ---- WITH [ {item: 1, weights: [1,1,0]}, {item: 2, weights: [0,1,1]}] AS data CALL algo.similarity.cosine.stream(data) YIELD item1, item2, similarity RETURN item1, item2, similarity ---- If we run that query we'll get this output: [source,text] ---- +----------------------------+ | item1 | item2 | similarity | +----------------------------+ | 1 | 2 | 0.5 | +----------------------------+ ---- The output tells us that these episodes are 50% similar to each other. In this example we've used the Cosine Similarity procedure, but we could also use the function since we're only calculating the similarity of a small number of items: [source, cypher] ---- RETURN algo.similarity.cosine([1,1,0], [0,1,1]) AS similarity ---- Now that we've covered the fundamentals of Cosine Similarity in Neo4j, let's see how to run it on our dataset. == Creating One Hot Encodings for Episodes We need to generate one vector per episode which we did in Python in the previous post. We also added the https://neo4j.com/docs/graph-algorithms/current/algorithms/one-hot-encoding/[One Hot Encoding^] function makes it easy for us to now do this directly from Cypher. If you want to read up on One Hot Encodings Rakshith Vasudev has https://hackernoon.com/what-is-one-hot-encoding-why-and-when-do-you-have-to-use-it-e3c6186d008f[a great blog post^] explaining it in more detail, but let's quickly see how it works in Neo4j. Imagine that we have 3 characters: Mark, Praveena, and Arya. We only want Praveena to be selected. We can do this by running the following function: [source, cypher] ---- RETURN algo.ml.oneHotEncoding(["Mark", "Praveena", "Arya"], ["Praveena"]) AS embedding ---- The first parameter contains a list of all the possible values. The second parameter contains a list of the ones that should be selected. If we run the query we'll see the following output: [source, cypher] ---- +-----------+ | embedding | +-----------+ | [0, 1, 0] | +-----------+ ---- Remember that a 1 indicates that the character appears and a 0 indicates that they don't. So in this case Mark and Arya didn't appear, but Praveena did. Great! Onto Game of Thrones! We can create a One Hot Encoding for our episodes by collecting lists of all characters and lists of characters by episode. The code to do that is as follows: [source, cypher] ---- MATCH (c:Character) WITH collect(c) AS characters MATCH (e:Episode) RETURN e, algo.ml.oneHotEncoding(characters, [(e)<-[:APPEARED_IN]-(c) | c]) AS embedding LIMIT 1 ---- If we run that query we'll see the following output: image::{{<siteurl>}}/uploads/2018/09/got.png[] == Calculating Cosine Similarity on Game of Thrones Now we're ready to run the Cosine Similarity algorithm. We extend the code above to do this: [source, cypher] ---- MATCH (c:Character) WITH collect(c) AS characters MATCH (e:Episode) WITH e, algo.ml.oneHotEncoding(characters, [(e)<-[:APPEARED_IN]-(c) | c]) AS embedding WITH {item:id(e), weights: embedding} as userData WITH collect(userData) as data CALL algo.similarity.cosine.stream(data) YIELD item1, item2, count1, count2, similarity WITH algo.getNodeById(item1) AS episode1, algo.getNodeById(item2) AS episode2, similarity RETURN "S" + episode1.season + "E" + episode1.number AS ep1, "S" + episode2.season + "E" + episode2.number AS ep2, similarity ORDER BY similarity DESC LIMIT 10 ---- The above code shows us the 10 most similar episodes. If we run that we'll see this output: [source, text ] ---- +---------------------------------------+ | ep1 | ep2 | similarity | +---------------------------------------+ | "S1E1" | "S1E2" | 0.6963730592072542 | | "S1E3" | "S1E4" | 0.6914173051223087 | | "S1E8" | "S1E9" | 0.6869464497590778 | | "S2E8" | "S2E10" | 0.6869037302955033 | | "S3E6" | "S3E7" | 0.6819943394704735 | | "S2E6" | "S2E7" | 0.6813598225089799 | | "S1E9" | "S1E10" | 0.6796436827080402 | | "S1E4" | "S1E5" | 0.6698105143372366 | | "S1E8" | "S1E10" | 0.6624062584864754 | | "S4E4" | "S4E5" | 0.6518358737330703 | +---------------------------------------+ ---- This query streamed the results back, but we can also run a non streaming version which by default will just return statistics about the similarity scores. We can run the non streaming version like this: [source, cypher] ---- MATCH (c:Character) WITH collect(c) AS characters MATCH (e:Episode) WITH e, algo.ml.oneHotEncoding(characters, [(e)<-[:APPEARED_IN]-(c) | c]) AS embedding WITH {item:id(e), weights: embedding} as userData WITH collect(userData) as data CALL algo.similarity.cosine(data) YIELD nodes, p50, p75, p90, p99, p999, p100 RETURN nodes, p50, p75, p90, p99, p999, p100 ---- And we'll see these results: [source, text] ---- +-------------------------------------------------------------------------------------------------------------------------------------+ | nodes | p50 | p75 | p90 | p99 | p999 | p100 | +-------------------------------------------------------------------------------------------------------------------------------------+ | 60 | 0.2863004207611084 | 0.3595731258392334 | 0.4467923641204834 | 0.6070897579193115 | 0.6869466304779053 | 0.6963765621185303 | +-------------------------------------------------------------------------------------------------------------------------------------+ ---- The fields starting with `p` represent percentiles. So 50% of the similarity scores are 0.2863 or higher, and 99% of them are 0.607 or higher. We probably aren't that interested in the lower similarity scores so we can filter those out by passing in the `similarityCutoff` parameter. We can also choose to create relationships between similar episodes by passing in the `write: true` parameter. The `write` parameter must be used in combination with a `similarityCutoff` value greater than 0 as we don't want to create relationships between nodes that are not similar at all. We can also pass in the `topK` parameter to limit the number of similar relationships we create per node. Let's say that we want to find the 3 most similar episodes. The following query does this: [source, cypher] ---- MATCH (c:Character) WITH collect(c) AS characters MATCH (e:Episode) WITH e, algo.ml.oneHotEncoding(characters, [(e)<-[:APPEARED_IN]-(c) | c]) AS embedding WITH {item:id(e), weights: embedding} as userData WITH collect(userData) as data CALL algo.similarity.cosine(data, {similarityCutoff: 0.2863, write: true, topK: 3}) YIELD nodes, p50, p75, p90, p99, p999, p100 RETURN nodes, p50, p75, p90, p99, p999, p100 ---- We can now write a query to find the most similar episodes: [source, cypher] ---- MATCH (e:Episode {season: 1, number: 1})-[similar:SIMILAR]->(other) RETURN "S" + other.season + "E" + other.number AS episode, similar.score AS score ---- That will return the following output: [source, text] ---- +-------------------------------+ | episode | score | +-------------------------------+ | "S1E2" | 0.6963730592072542 | | "S1E4" | 0.5467175210508692 | | "S1E3" | 0.48196269271187986 | +-------------------------------+ ---- Hopefully that gives you some ideas of what you can do with the similarity algorithms. If you have any suggestions for other things you'd like to see let me know in the comments and I'll see what I can do.
Learn how to calculate the Cosine Similarity of Game of Thrones episodes using Neo4j Graph Algorithms
null
[ 0.0029795952141284943, -0.020711207762360573, 0.015528627671301365, 0.0342816598713398, 0.08267071098089218, -0.007623906712979078, 0.02219914086163044, 0.019398776814341545, 0.02481606975197792, -0.0023521771654486656, -0.0013002946507185698, -0.03390354663133621, -0.05121621489524841, 0.024192506447434425, -0.007322738412767649, 0.05983259901404381, 0.049569759517908096, 0.026233116164803505, 0.00792359933257103, -0.012168558314442635, 0.0045479536056518555, 0.03834828734397888, -0.0025022639892995358, 0.03702468052506447, 0.02396269701421261, -0.015538171865046024, 0.010108604095876217, 0.0056497263722121716, -0.03221648186445236, 0.012028158642351627, 0.045258525758981705, -0.02426501177251339, 0.014275108464062214, -0.019081074744462967, 0.0358625128865242, -0.0017788411350920796, -0.05052066966891289, 0.029562652111053467, -0.011214759200811386, -0.012627574615180492, -0.04784650728106499, 0.02463262528181076, -0.02766353450715542, 0.009565267711877823, -0.03542308136820793, -0.026519278064370155, -0.06077200919389725, 0.04272975027561188, 0.012514302507042885, 0.022393302991986275, -0.0709790512919426, 0.022090451791882515, -0.0055984617210924625, -0.02527889795601368, 0.0054527088068425655, 0.06503710895776749, 0.0092313876375556, -0.06547290086746216, 0.033171333372592926, -0.0001580180396558717, -0.012286057695746422, -0.0068276626989245415, -0.024892646819353104, 0.0059056063182652, -0.011854110285639763, -0.06077195703983307, 0.0025326681789010763, 0.0896771252155304, -0.044053904712200165, 0.0027809564489871264, 0.0009125596843659878, 0.011189170181751251, 0.002173874294385314, 0.002209503436461091, 0.0023753163404762745, -0.051533643156290054, 0.013912719674408436, 0.05006956309080124, 0.029293399304151535, 0.027862250804901123, -0.029569873586297035, 0.03225785866379738, -0.025858307257294655, 0.027515500783920288, -0.013250639662146568, -0.04116178676486015, -0.036322854459285736, -0.04869870841503143, -0.07914604991674423, 0.04346582293510437, -0.016306564211845398, -0.05904325842857361, 0.009437624365091324, 0.0018463579472154379, -0.0028902902267873287, -0.006567733827978373, 0.005125160329043865, 0.008768070489168167, 0.012833238579332829, -0.006388293579220772, -0.08085911720991135, -0.039281345903873444, 0.0075612799264490604, 0.0028957927133888006, -0.05991515517234802, -0.02238260954618454, -0.008401500061154366, -0.02210363745689392, -0.004133262205868959, 0.006857766304165125, -0.024052685126662254, -0.0013467066455632448, -0.01642237789928913, 0.024361025542020798, -0.09449373930692673, 0.06793536245822906, 0.02945154905319214, -0.008488389663398266, -0.052553966641426086, 0.029651647433638573, 0.03307144716382027, 0.020745007321238518, -0.02552565559744835, 0.08663266152143478, -0.0027020256966352463, 0.014291694387793541, 0.0019703165162354708, 0.04957197234034538, -0.04318862780928612, -0.07807337492704391, -0.007158125750720501, 0.06295841932296753, -0.03139724209904671, 0.010582659393548965, 0.0028003554325550795, -0.027029648423194885, -0.02985035628080368, 0.03188274800777435, 0.056842904537916183, 0.05461464077234268, 0.0009468059870414436, -0.05541446432471275, 0.028655366972088814, 0.03077606111764908, 0.040285367518663406, 0.00019658118253573775, -0.02501767873764038, -0.037789907306432724, -0.02537696063518524, 0.00656629353761673, 0.0004257035907357931, 0.033761024475097656, 0.050401296466588974, -0.032902006059885025, 0.015911689028143883, 0.1180901750922203, 0.03574112430214882, 0.04135383293032646, -0.025943832471966743, 0.004114019684493542, 0.07155448198318481, 0.005772845353931189, 0.0009189324337057769, 0.03209850937128067, 0.00044505554251372814, -0.02417413890361786, 0.01593392714858055, 0.07809961587190628, -0.010418814606964588, 0.0014270541723817587, -0.029280900955200195, -0.027225935831665993, 0.06298607587814331, -0.026988739147782326, 0.004334305878728628, 0.0511791855096817, 0.06584995239973068, 0.03455393388867378, 0.028117164969444275, 0.0049530938267707825, -0.08182823657989502, 0.07034648954868317, 0.0011902196565642953, 0.011601055040955544, 0.0200736615806818, -0.009901651181280613, 0.09796223044395447, 0.01740720309317112, 0.004358984064310789, 0.03608718141913414, -0.08596836030483246, -0.0664951354265213, -0.0043655564077198505, -0.0042633069679141045, 0.056970976293087006, -0.023441370576620102, 0.010504476726055145, 0.06755021959543228, -0.015454952605068684, 0.03445594012737274, -0.013118029572069645, -0.018481213599443436, 0.06388568133115768, -0.036728523671627045, -0.04967229440808296, 0.053239863365888596, 0.03769722580909729, -0.05129621922969818, -0.011589311994612217, -0.015374278649687767, -0.017181552946567535, 0.018564024940133095, 0.037783801555633545, -0.03114750236272812, 0.03400086238980293, 0.021865397691726685, 0.04988390952348709, -0.015296746045351028, 0.024882500991225243, -0.04996871575713158, 0.024527760222554207, -0.005014699883759022, -0.01973056234419346, -0.016454515978693962, -0.014567689970135689, 0.13333334028720856, 0.038701847195625305, -0.03643883392214775, -0.04467054829001427, 0.016431961208581924, -0.017011575400829315, -0.0034252279438078403, -0.006072092801332474, -0.002970400033518672, -0.045904017984867096, -0.001228878740221262, -0.03438111022114754, -0.02572634257376194, 0.011014649644494057, -0.045347582548856735, 0.014157801866531372, 0.04888218268752098, -0.033060599118471146, 0.06289415061473846, 0.008687678724527359, 0.028339991346001625, -0.004824846051633358, -0.03416389971971512, -0.05516822263598442, 0.011993922293186188, 0.023349884897470474, -0.013600798323750496, 0.04689843952655792, -0.03225463628768921, -0.006986580789089203, -0.01707771047949791, -0.038012631237506866, 0.019115732982754707, 0.054941799491643906, 0.036987531930208206, 0.003651524893939495, 0.042633071541786194, -0.01129147782921791, -0.01053891982883215, -0.019022531807422638, -0.05850294977426529, -0.06138719990849495, -0.07685791701078415, 0.01754661835730076, -0.0002178112481487915, 0.05216359347105026, -0.017418265342712402, 0.015046995133161545, 0.004824768751859665, -0.0018689545104280114, -0.0017953133210539818, 0.031255580484867096, -0.029790755361318588, 0.01628335937857628, -0.03194263577461243, -0.025093981996178627, 0.04684657230973244, -0.05345982313156128, -0.014496632851660252, -0.009174714796245098, -0.058296773582696915, 0.01884743757545948, -0.04302670806646347, -0.010251743718981743, 0.005612270440906286, 0.02390926703810692, 0.06752561777830124, 0.017026837915182114, -0.006315962877124548, 0.05670163035392761, 0.01646682433784008, 0.018852613866329193, 0.01651330478489399, 0.009617098607122898, 0.05563497543334961, -0.020371152088046074, 0.02773725986480713, 0.06620851159095764, -0.015225958079099655, -0.023888153955340385, -0.016156122088432312, -0.0017864698311313987, -0.024149948731064796, -0.2978537082672119, 0.02795303612947464, -0.02195909433066845, -0.03203440457582474, 0.02574692852795124, -0.038930654525756836, 0.001856739865615964, -0.017352808266878128, -0.008105720393359661, 0.009108040481805801, -0.011996861547231674, -0.03557402268052101, -0.02782570943236351, 0.048929620534181595, 0.03809614107012749, 0.004194914363324642, -0.03651253134012222, -0.0254698246717453, 0.008093157783150673, 0.061800263822078705, -0.0007164779235608876, -0.05080235376954079, -0.013668802566826344, 0.021580534055829048, 0.03252064064145088, 0.042577169835567474, -0.10470055788755417, 0.03865367919206619, -0.07112599164247513, -0.02297387644648552, 0.01560487225651741, -0.04134101793169975, 0.001597499125637114, 0.0056541068479418755, -0.011940041556954384, -0.03536181151866913, 0.04911218583583832, -0.005954297725111246, -0.012820669449865818, 0.013502368703484535, -0.04038195312023163, -0.046220846474170685, -0.007565602194517851, 0.0016461112536489964, 0.1009611114859581, 0.01142896804958582, -0.05674543231725693, 0.013437008485198021, -0.03270554915070534, 0.0647992342710495, -0.0062479134649038315, 0.011684950441122055, -0.025070225819945335, 0.030371567234396935, -0.03868990018963814, -0.010035453364253044, -0.0015512312529608607, 0.0014038508525118232, -0.055809829384088516, -0.04230755567550659, -0.01282703410834074, -0.05355885624885559, 0.008039387874305248, -0.03835960477590561, -0.006413333583623171, -0.06997448205947876, -0.08102364093065262, -0.031798478215932846, 0.042456213384866714, 0.02634996362030506, -0.03423420339822769, -0.004280936438590288, 0.01305788941681385, -0.08920636028051376, -0.00606662780046463, -0.033451929688453674, 0.010218275710940361, 0.010561980307102203, -0.010186983272433281, 0.049890629947185516, -0.04845013841986656, -0.053836267441511154, 0.02113267406821251, -0.009176637977361679, -0.0072693126276135445, 0.0008142506121657789, 0.01582205854356289, -0.026147853583097458, -0.021951958537101746, 0.004677965771406889, 0.03740553930401802, -0.039468374103307724, -0.015747640281915665, 0.01571313664317131, -0.01771744340658188, 0.02887512557208538, 0.012849390506744385, -0.00011133377847727388, 0.03351232782006264, 0.05047382414340973, 0.0374995693564415, -0.05136251449584961, 0.010705160908401012, -0.04192575812339783, -0.02352341264486313, -0.009262307547032833, -0.03383071348071098, 0.02000834234058857, 0.03611956164240837, 0.02237848937511444, -0.022221503779292107, -0.012053540907800198, 0.009917648509144783, -0.03536517545580864, -0.016270166262984276, 0.002445077756419778, 0.030275098979473114, 0.022150151431560516, 0.035960663110017776, -0.01181628368794918, -0.07815559208393097, 0.008583389222621918, -0.005966354161500931, -0.014586450532078743, -0.06109083071351051, -0.017052562907338142, -0.007054691668599844, -0.0217482578009367, 0.013841314241290092, -0.006949330680072308, -0.03910767287015915, 0.011995181441307068, 0.015134140849113464, -0.011375500820577145, 0.040077999234199524, -0.020543746650218964, -0.047245390713214874, -0.010258584283292294, 0.02196110598742962, 0.0007119378424249589, 0.016550863161683083, -0.007593756075948477, 0.012805965729057789, 0.030779412016272545, 0.056678272783756256, 0.00353463226929307, 0.04413021728396416, 0.008295479230582714, 0.014323821291327477, -0.007759056054055691, 0.004586711525917053, -0.0022030691616237164, 0.01825900934636593, -0.03446332737803459, -0.01430522557348013, -0.009749902412295341, 0.025069763883948326, 0.010530499741435051, -0.005050742533057928, -0.04630589485168457, 0.05010071024298668, -0.06434166431427002, -0.004514862783253193, -0.023083100095391273, -0.01204502023756504, 0.06779361516237259, -0.016332540661096573, 0.028273457661271095, -0.014199619181454182, -0.006649454589933157, 0.0036917482502758503, 0.021871346980333328, -0.046409670263528824, 0.007326642517000437, -0.0018542699981480837, -0.01988525502383709, 0.019725553691387177, 0.015523608773946762, 0.021457456052303314, 0.030921557918190956, -0.04999791085720062, -0.016184233129024506, 0.004350244998931885, 0.007999984547495842, 0.047856591641902924, 0.06770867109298706, -0.020537063479423523, 0.003044962417334318, -0.025735411792993546, -0.009596452116966248, -0.004934447817504406, 0.0027975558768957853, -0.03320234641432762, -0.0048508974723517895, -0.03404243290424347, -0.04520997777581215, 0.030132900923490524, -0.023259837180376053, 0.019897114485502243, 0.0408712774515152, -0.016752587631344795, 0.01960553415119648, -0.03380913659930229, 0.028020216152071953, 0.07915512472391129, -0.055056411772966385, -0.027166001498699188, -0.005575600545853376, 0.007770336698740721, -0.01087538804858923, 0.03578752651810646, -0.0729658454656601, -0.04163165017962456, -0.017183871939778328, 0.020470749586820602, -0.038158126175403595, -0.03484153002500534, -0.02460617944598198, 0.02297334372997284, -0.005226569250226021, 0.02503184787929058, -0.016805818304419518, 0.003738967003300786, -0.013946856372058392, -0.0019898121245205402, 0.03073919750750065, -0.011792412027716637, -0.03253314644098282, 0.0006474863621406257, -0.008206713944673538, 0.04648303985595703, -0.006652981508523226, 0.02659185789525509, 0.021379739046096802, -0.024291260167956352, -0.010563896037638187, -0.05593293532729149, 0.030656857416033745, -0.020070437341928482, 0.053776971995830536, 0.027408678084611893, 0.00671805813908577, -0.02398809790611267, -0.0008113219519145787, -0.01278289407491684, 0.018428973853588104, -0.008991356007754803, 0.01684410497546196, 0.013664674945175648, 0.02173217386007309, 0.0016407737275585532, -0.020227907225489616, -0.021312842145562172, -0.051469653844833374, 0.058115918189287186, -0.06595815718173981, 0.001218350138515234, -0.025742892175912857, -0.047330092638731, -0.008556388318538666, 0.014990204945206642, 0.02667003870010376, -0.01810402050614357, 0.04993497207760811, 0.03548822179436684, 0.027756858617067337, 0.024762311950325966, -0.004217511508613825, 0.02588101476430893, -0.024776436388492584, -0.004004121758043766, -0.07737916707992554, 0.009577436372637749, 0.06470205634832382, 0.0005034536006860435, 0.025213200598955154, 0.02109229937195778, -0.016669398173689842, 0.01861565187573433, -0.0614653080701828, -0.025963205844163895, 0.02217984013259411, -0.05600573122501373, 0.023471973836421967, -0.0023323276545852423, -0.06144111603498459, 0.015638263896107674, 0.05237806588411331, -0.020427025854587555, -0.01846262812614441, -0.027308471500873566, 0.0474344938993454, -0.005419109482318163, 0.03121134825050831, 0.03283102065324783, -0.05109577998518944, 0.06743365526199341, 0.029908599331974983, 0.05818828567862511, 0.043519653379917145, -0.033946700394153595, 0.023940421640872955, 0.029810205101966858, -0.001410161261446774, 0.006423314567655325, 0.03203117102384567, -0.017090288922190666, -0.04875372722744942, 0.04583814740180969, 0.00930164847522974, -0.0040786610916256905, -0.04485652968287468, 0.07321321219205856, 0.008029516786336899, -0.020147480070590973, -0.05083514004945755, 0.04536227136850357, -0.01803712546825409, 0.005049069412052631, -0.012497464194893837, 0.013424588367342949, -0.01831192709505558, 0.05588342621922493, -0.031449317932128906, 0.01151704415678978, 0.06044025719165802, -0.023469148203730583, 0.018357066437602043, 0.0063057164661586285, 0.0808267593383789, 0.09166239202022552, 0.04143569990992546, -0.00941463652998209, 0.08633831143379211, -0.005167476832866669, -0.037799593061208725, -0.005165662616491318, -0.01328312885016203, 0.002814931096509099, 0.00927294883877039, 0.01788143441081047, 0.04867273569107056, -0.034452568739652634, 0.09115324914455414, -0.013138897716999054, -0.01776904985308647, -0.012782693840563297, -0.022579656913876534, 0.02708888240158558, 0.01687862165272236, 0.01144088339060545, 0.04576808586716652, -0.00959046371281147, -0.028886720538139343, 0.008738452568650246, 0.002018936909735203, -0.024188565090298653, 0.03872429579496384, -0.022298987954854965, 0.026589801535010338, -0.005850284360349178, 0.011235332116484642, 0.08711910247802734, -0.04140402749180794, -0.017208905890583992, 0.016782088205218315, 0.027976587414741516, -0.0027707696426659822, 0.024743933230638504, -0.026526354253292084, -0.016869252547621727, -0.008914055302739143, -0.04348142817616463, -0.02625432424247265, -0.03615829721093178, -0.02553226239979267, 0.004444978665560484, -0.012560143135488033, -0.005413880106061697, 0.0024121063761413097, -0.01454367209225893, -0.03811071068048477, -0.021541520953178406, -0.0409199483692646, -0.06835311651229858, -0.07998193055391312, -0.011385343037545681, -0.003367980942130089, -0.002725806552916765, -0.017255328595638275, -0.00629180483520031, -0.028135735541582108, -0.006312790792435408, 0.027123579755425453, -0.03291065990924835, -0.003953072242438793, 0.0003927784273400903, 0.019512875005602837, 0.011801917105913162, 0.007178580388426781, 0.0467400923371315, -0.020128529518842697, -0.014033529907464981, -0.004182160831987858, 0.029316429048776627, 0.04017595946788788, 0.042412128299474716, 0.006806914694607258, -0.08684277534484863, -0.0030458031687885523, 0.01723596267402172, -0.030334556475281715, -0.07437840849161148, -0.0071244328282773495, 0.034918393939733505, 0.006294227205216885, 0.04168311506509781, -0.002233127597719431, -0.015944289043545723, -0.03018513321876526, 0.002849981188774109, 0.001677045482210815, -0.005793456453830004, 0.05221100151538849, -0.03607209399342537, 0.07361363619565964, 0.013701233081519604, -0.028621766716241837, -0.02924492210149765, -0.002538433065637946, -0.036959607154130936, 0.016739141196012497, -0.05681699141860008, -0.015051459893584251, -0.014301923103630543, -0.07772433012723923, -0.035511478781700134, 0.020781410858035088, -0.027612153440713882, -0.0075765978544950485, 0.003893798217177391, 0.008682172745466232, -0.03594512119889259, 0.027114927768707275, -0.03340955451130867, 0.03894426301121712, -0.024538256227970123, -0.011628076434135437, -0.021749652922153473, 0.012132714502513409, -0.002798062050715089, 0.01564720645546913, 0.014708452858030796, -0.07139236479997635, -0.009840182028710842, -0.006977226585149765, 0.01718805730342865, 0.03107292950153351, 0.020434938371181488, 0.01796705648303032 ]
[ -0.061469994485378265, 0.018848273903131485, -0.01587475650012493, -0.04873507097363472, 0.0489395447075367, -0.030480332672595978, -0.011211441829800606, 0.014451073482632637, 0.033546123653650284, -0.0019430993124842644, -0.002065775915980339, -0.045000430196523666, 0.006441916339099407, 0.011947665363550186, 0.06457619369029999, -0.03634825348854065, -0.011549594812095165, -0.041183169931173325, -0.057308513671159744, 0.06651798635721207, -0.0017763468204066157, -0.0380159467458725, -0.013722013682126999, -0.057134877890348434, 0.01570591889321804, 0.03337685391306877, 0.04012725129723549, -0.03323730453848839, -0.021013502031564713, -0.2273644655942917, -0.00852495152503252, -0.001705386908724904, 0.06272207945585251, -0.017374539747834206, -0.006598633248358965, 0.005897608119994402, 0.029697235673666, 0.012468078173696995, -0.024043487384915352, 0.03793385252356529, 0.035076580941677094, 0.002393807051703334, -0.035981323570013046, -0.029224582016468048, 0.02294396050274372, 0.02546849474310875, -0.03629045933485031, 0.012543669901788235, 0.0005634597619064152, 0.047195449471473694, -0.032095253467559814, -0.023980628699064255, -0.014422403648495674, -0.010995474644005299, 0.022080382332205772, 0.024061022326350212, 0.038953475654125214, 0.03514727205038071, 0.04576481506228447, 0.04872483015060425, 0.0036757613997906446, 0.008829932659864426, -0.12479694932699203, 0.08917617052793503, -0.00016060503548942506, 0.042298704385757446, -0.02964928187429905, -0.03185860067605972, -0.01849912293255329, 0.07785056531429291, -0.014748222194612026, 0.0032873437739908695, -0.007950784638524055, 0.05821891501545906, -0.00006707773718517274, 0.039667706936597824, -0.023019028827548027, 0.0060061244294047356, -0.005502657033503056, -0.045810021460056305, -0.07341142743825912, 0.048533618450164795, -0.038212850689888, 0.0040395017713308334, -0.006421043537557125, 0.04469042643904686, -0.03300219401717186, 0.015634959563612938, -0.03431445360183716, 0.03887729346752167, 0.04104630649089813, 0.025234781205654144, 0.06335756182670593, 0.0324225090444088, -0.11021056026220322, -0.041361548006534576, 0.00034238293301314116, -0.014605557546019554, 0.00683212373405695, 0.39617952704429626, -0.014439069665968418, -0.04574853181838989, 0.04587356746196747, 0.06522047519683838, 0.006529470440000296, -0.031960759311914444, 0.015867648646235466, -0.055250752717256546, 0.03912314400076866, -0.04649043083190918, -0.02074398286640644, -0.034467220306396484, 0.030535319820046425, -0.09367838501930237, 0.02073395438492298, 0.033156152814626694, 0.04024014621973038, 0.041567280888557434, -0.009427263401448727, -0.005371186416596174, 0.028621094301342964, 0.03139903396368027, 0.003406340256333351, -0.035395197570323944, 0.012187027372419834, 0.00960505660623312, 0.04626188799738884, 0.0270987618714571, 0.06700104475021362, -0.004715712275356054, 0.04074828326702118, 0.010541901923716068, -0.07662808150053024, 0.02535153552889824, -0.00514502776786685, 0.0036269654519855976, 0.03511974215507507, -0.052897509187459946, -0.02702941931784153, -0.014731832779943943, 0.013381938450038433, -0.07506321370601654, 0.006783784367144108, 0.0487065389752388, -0.048316095024347305, 0.10923700034618378, -0.006854779552668333, -0.024586692452430725, -0.03387173265218735, -0.03459491208195686, 0.013947282917797565, 0.029086314141750336, -0.014365808106958866, -0.05867334082722664, -0.009193104691803455, 0.019589722156524658, 0.1000899001955986, -0.04131826385855675, -0.09914951026439667, -0.01584545150399208, -0.021273840218782425, -0.03476029261946678, -0.026298662647604942, 0.043224792927503586, 0.05737118795514107, -0.09600614756345749, 0.018219970166683197, 0.05686778202652931, 0.03881436213850975, -0.07313214242458344, 0.0256129652261734, -0.004937017802149057, -0.051567211747169495, -0.0016774703981354833, 0.0788760781288147, -0.0032521802932024, -0.07178574800491333, -0.0005601345328614116, 0.06304112821817398, 0.01754361018538475, 0.02964096888899803, -0.01755439303815365, -0.03932186961174011, 0.043197184801101685, -0.08777766674757004, -0.07316591590642929, -0.05958675220608711, 0.027043761685490608, -0.023705845698714256, -0.032157108187675476, 0.060625381767749786, -0.009705315344035625, -0.04344066604971886, 0.08550123870372772, -0.029250038787722588, -0.02533150091767311, 0.011139363050460815, -0.0022961513604968786, -0.03540264070034027, -0.01590985804796219, -0.012373915873467922, -0.00904605258256197, -0.0022855931892991066, -0.00867259968072176, -0.060890622437000275, 0.012429239228367805, 0.04652247577905655, -0.04354868084192276, 0.05227804183959961, 0.01978432945907116, -0.0401497520506382, -0.014964652247726917, -0.05663245543837547, 0.02493729442358017, 0.0012981650652363896, 0.001848916755989194, 0.013464278541505337, -0.006011161021888256, 0.023117071017622948, 0.044493962079286575, -0.0031822645105421543, -0.02723941020667553, -0.006662297993898392, -0.3500038683414459, -0.03835563361644745, 0.010880429297685623, -0.02150830067694187, 0.002801224822178483, -0.035451553761959076, 0.03372160717844963, -0.027367176488041878, 0.03083648346364498, 0.03364086523652077, 0.07025659829378128, -0.012850617058575153, 0.012356983497738838, -0.1087338775396347, 0.0067016552202403545, 0.04712376371026039, 0.009033042937517166, 0.005507446359843016, -0.006153045687824488, 0.023939743638038635, 0.011164884082973003, -0.03597071021795273, -0.005186797119677067, -0.06966828554868698, -0.01073550246655941, -0.013026142492890358, 0.12228795140981674, 0.022985929623246193, 0.036499861627817154, -0.05849836394190788, 0.023423662409186363, 0.018782617524266243, -0.015130099840462208, -0.06282514333724976, 0.005936977919191122, -0.026745451614260674, 0.02745378203690052, 0.017832202836871147, -0.0330805703997612, -0.03064776584506035, -0.06958314776420593, 0.016894573345780373, -0.025898102670907974, -0.029420211911201477, -0.028317660093307495, 0.015973098576068878, -0.046784382313489914, -0.024484213441610336, 0.013113139197230339, 0.08436092734336853, 0.0189878661185503, 0.0055268630385398865, 0.016901874914765358, 0.03512988239526749, -0.015597453340888023, -0.0344250462949276, -0.06140219420194626, -0.003702115500345826, 0.023783905431628227, 0.021560179069638252, 0.007806162349879742, 0.007134555373340845, -0.004633334465324879, -0.04734133183956146, 0.009506823495030403, 0.021212397143244743, -0.005411957390606403, 0.0103602334856987, 0.026996582746505737, -0.00196819962002337, -0.055377960205078125, 0.05990423634648323, -0.00998213142156601, 0.007239180617034435, 0.03870329633355141, 0.058101508766412735, -0.00990506261587143, 0.010971817187964916, 0.020948873832821846, 0.011683103628456593, 0.031790897250175476, -0.023732060566544533, 0.04033578932285309, -0.03453382849693298, 0.012545579113066196, 0.045066967606544495, 0.03439842164516449, -0.024516431614756584, 0.07457864284515381, 0.004585981369018555, -0.0071497512981295586, 0.0022985779214650393, -0.0020060050301253796, -0.05602003261446953, 0.02812325768172741, 0.007130810059607029, -0.26872965693473816, 0.06130689010024071, 0.016855528578162193, 0.08494558930397034, 0.017344148829579353, -0.038247667253017426, 0.006379608530551195, -0.024215243756771088, 0.004583883564919233, -0.009954986162483692, 0.04957711324095726, 0.034550972282886505, 0.001859231386333704, -0.005051283165812492, -0.01976412907242775, 0.0030591075774282217, 0.0731600821018219, 0.017567390576004982, 0.03839224949479103, -0.004186609759926796, 0.028169792145490646, -0.03690027818083763, 0.18479575216770172, 0.03123469650745392, -0.0016130575677379966, 0.005934164859354496, -0.011690792627632618, -0.009078322909772396, 0.02571715973317623, 0.015879707410931587, -0.032145529985427856, 0.015767743811011314, -0.014426853507757187, 0.04297514632344246, 0.02485988475382328, -0.025367015972733498, -0.007481944281607866, 0.08355064690113068, 0.01982342079281807, -0.0267446581274271, 0.018149400129914284, 0.01364146638661623, -0.06758492439985275, 0.009211208671331406, 0.049830034375190735, -0.009028198197484016, 0.004326551221311092, 0.01060979813337326, -0.08061017096042633, -0.03124549798667431, -0.04064568132162094, -0.0164819173514843, -0.012900804169476032, -0.013927887193858624, -0.00031158633646555245, 0.08612025529146194, 0.0042594862170517445, 0.017125671729445457, 0.04071195423603058, -0.003121821442618966, -0.05556382238864899, -0.04599684476852417, 0.07875676453113556, 0.01266638282686472, 0.01038755290210247 ]
[ 0.03777617588639259, 0.04056169465184212, -0.027266839519143105, -0.007875151000916958, -0.02000484988093376, 0.04229196906089783, -0.017574958503246307, 0.02631562016904354, -0.006400818005204201, 0.005378870293498039, -0.03399224579334259, -0.007347935810685158, 0.04021527245640755, -0.010021181777119637, -0.031933531165122986, -0.010739551857113838, -0.013987538404762745, 0.0013071709545329213, 0.003571909386664629, -0.00856815930455923, -0.025449980050325394, -0.0037778657861053944, 0.012876796536147594, -0.018621990457177162, -0.006056101992726326, 0.028886768966913223, -0.02983890101313591, -0.01912175863981247, 0.022419100627303123, -0.08801179379224777, -0.0022899815812706947, -0.02711315266788006, -0.005219984333962202, 0.04354311525821686, -0.024599740281701088, -0.022048383951187134, 0.005601048469543457, -0.010366048663854599, -0.014950851909816265, 0.05568172037601471, 0.013964845798909664, 0.017459576949477196, -0.02478111907839775, 0.003769861301407218, 0.019792377948760986, -0.00015710903971921653, -0.044977571815252304, -0.050593845546245575, 0.019188886508345604, 0.0007198750972747803, -0.06771574914455414, 0.014878816902637482, -0.00318298302590847, 0.01798330619931221, -0.01587519980967045, -0.017397474497556686, -0.009583636187016964, -0.013033307157456875, 0.030727464705705643, -0.02389945089817047, 0.027503883466124535, -0.05396232753992081, -0.030842021107673645, -0.01092000212520361, -0.012343362905085087, -0.021546732634305954, -0.006380862090736628, 0.03303062915802002, 0.005987817421555519, 0.012168178334832191, -0.031391557306051254, 0.06769528985023499, -0.08159326761960983, -0.025882452726364136, -0.06877480447292328, 0.018283067271113396, 0.03693622723221779, -0.06237749382853508, -0.005696374922990799, 0.010877132415771484, -0.049380723387002945, 0.0016370220109820366, 0.009396200999617577, -0.025615781545639038, -0.033668871968984604, -0.004148891195654869, -0.01984003372490406, -0.032725002616643906, -0.005665442906320095, 0.02370426058769226, -0.029860487207770348, 0.021793000400066376, -0.008010586723685265, -0.009667126461863518, -0.09564324468374252, 0.0431583896279335, 0.038532357662916183, -0.00887385569512844, 0.019916653633117676, 0.8178436756134033, -0.010201874189078808, -0.016074171289801598, -0.005616943817585707, -0.00021414883667603135, 0.008359774015843868, 0.012305955402553082, 0.05585763603448868, -0.002471740124747157, 0.0006365053704939783, -0.01249396800994873, -0.00788282323628664, 0.011138856410980225, 0.01735476776957512, 0.025503136217594147, 0.02725217677652836, 0.042929068207740784, 0.03809810057282448, 0.02106630429625511, 0.007708775345236063, -0.0014388887211680412, 0.026175301522016525, -0.006204858887940645, -0.0020670306403189898, 0.011793897487223148, -0.01272882241755724, -0.1736079603433609, 0.003973038401454687, -6.681107283258726e-33, 0.03461824357509613, 0.012245654128491879, 0.05925954878330231, -0.0023494893684983253, 0.006899505387991667, 0.0009242142550647259, -0.026536118239164352, -0.024915676563978195, -0.007181013002991676, -0.028912706300616264, -0.006755081005394459, 0.014090333133935928, -0.007307280786335468, -0.037325695157051086, -0.001027294434607029, -0.029464615508913994, 0.0013330649817362428, 0.0012373477220535278, -0.005951849743723869, -0.013379166834056377, 0.04936361312866211, 0.06382583826780319, 0.010984287597239017, 0.06072918698191643, -0.046224795281887054, 0.021327238529920578, 0.001824642880819738, -0.02877495251595974, -0.0042254263535141945, -0.051075443625450134, -0.054884426295757294, 0.04216479882597923, -0.0005064037977717817, -0.03532863408327103, 0.01677813194692135, -0.06991790980100632, -0.04276494309306145, -0.0051266951486468315, -0.015324489213526249, -0.029336022213101387, -0.022190222516655922, 0.021497834473848343, -0.009725144132971764, -0.04782068356871605, -0.04438803344964981, -0.004427934996783733, 0.017309734597802162, 0.003334322012960911, -0.008090970106422901, 0.007231429684907198, 0.028791816905140877, 0.02632664144039154, 0.022513372823596, -0.01997094787657261, -0.0073841167613863945, 0.03516847640275955, 0.006015801336616278, -0.01444261521100998, 0.00899488478899002, 0.04639876261353493, 0.03601028025150299, -0.006411296781152487, 0.008647313341498375, 0.033583708107471466, 0.014263001270592213, 0.008155488409101963, 0.054292067885398865, -0.005120936781167984, 0.02013705112040043, 0.02441813424229622, -0.03314601257443428, 0.041765689849853516, -0.013746504671871662, -0.015962740406394005, 0.03081752546131611, -0.04305550083518028, -0.008623349480330944, -0.033298250287771225, -0.004971096757799387, 0.03404373675584793, -0.014537260867655277, -0.027915101498365402, 0.012261667288839817, -0.04217609763145447, -0.016046345233917236, -0.04176272451877594, 0.025077197700738907, 0.034246671944856644, 0.006354983896017075, -0.004395949654281139, 0.054270558059215546, 0.044354356825351715, 0.010306510142982006, -0.019812513142824173, -0.032124657183885574, 6.1331043065328526e-33, -0.009884943254292011, 0.005534425377845764, -0.02001851052045822, -0.005028052255511284, 0.012168312445282936, 0.05255832150578499, 0.007884621620178223, -0.009493893012404442, -0.059508562088012695, 0.021487029269337654, -0.0144167710095644, -0.03692929819226265, -0.016091985628008842, -0.004481452517211437, 0.03640514984726906, 0.02955605462193489, -0.002976883901283145, -0.01390843279659748, -0.037425678223371506, -0.00618492579087615, 0.011944595724344254, -0.0016051764832809567, -0.020807839930057526, 0.02249848283827305, 0.07735387235879898, 0.0003553011629264802, 0.01283346675336361, 0.008926237002015114, -0.01749540865421295, -0.008600429631769657, -0.008536642417311668, -0.041266169399023056, -0.04147973284125328, -0.03555293381214142, 0.005668538622558117, 0.030858565121889114, 0.03197168558835983, -0.001779037294909358, 0.002612081356346607, -0.0028081058990210295, 0.014868062920868397, 0.015789318829774857, -0.013343991711735725, 0.07339564710855484, 0.011493688449263573, 0.02525719255208969, -0.01921946555376053, 0.024036133661866188, 0.028395280241966248, 0.02174689620733261, -0.0008523924625478685, 0.024069221690297127, -0.0061599696055054665, 0.009999063797295094, 0.019842658191919327, -0.05107557401061058, 0.008950923569500446, 0.041902344673871994, -0.045076675713062286, -0.013401400297880173, -0.04078071936964989, -0.04432046785950661, -0.016288168728351593, 0.02764318883419037, -0.013017397373914719, -0.0007044599042274058, -0.016187531873583794, -0.013438183814287186, -0.011836078017950058, -0.004471397027373314, -0.0012536610011011362, 0.00578146381303668, 0.000502650742419064, 0.00501494063064456, 0.021422311663627625, -0.004365881904959679, -0.012373650446534157, -0.015375202521681786, -0.04711024463176727, 0.033040549606084824, 0.011741816066205502, 0.016048425808548927, 0.0416937954723835, 0.007765591610223055, 0.02429237775504589, 0.018648792058229446, -0.01207522489130497, 0.024666646495461464, -0.006845635361969471, 0.011698935180902481, 0.017926061525940895, -0.04084400832653046, -0.001685206894762814, 0.029877575114369392, -0.03756539523601532, -1.2309356201001265e-8, -0.030550749972462654, -0.022888628765940666, -0.00573530001565814, -0.01540920790284872, -0.007615644950419664, 0.058461423963308334, -0.025370443239808083, -0.01341081690043211, -0.01467144675552845, -0.014242704026401043, 0.022980673238635063, 0.004049443174153566, 0.03427254036068916, 0.01734781824052334, 0.015330230817198753, -0.028945619240403175, 0.0011793667217716575, -0.02421610802412033, 0.0309365913271904, 0.02122822031378746, 0.007978837005794048, 0.03492492809891701, -0.04512782767415047, 0.02451746165752411, 0.013302537612617016, -0.02061750553548336, 0.03599286824464798, -0.05619560182094574, -0.02821621485054493, -0.03715052455663681, 0.0115809366106987, -0.027617156505584717, -0.014321657828986645, -0.024464141577482224, -0.0036877223756164312, -0.025009136646986008, 0.03883583843708038, 0.05461679771542549, 0.01234925165772438, 0.03817075863480568, -0.006548141594976187, -0.0018470225622877479, -0.0005578365526162088, -0.03706390783190727, -0.02391575090587139, 0.01627248153090477, -0.04320363327860832, -0.0020751666743308306, 0.06298097223043442, -0.03452930599451065, 0.004141739569604397, -0.02281399443745613, 0.023344416171312332, 0.04562767222523689, 0.05717369168996811, -0.009726501069962978, -0.002642222447320819, 0.009400574490427971, 0.005203627981245518, -0.029275162145495415, 0.04403654485940933, 0.008349697105586529, -0.04238981381058693, -0.006712151225656271 ]
neo4j-graph-algorithms-cosine-game-of-thrones
https://markhneedham.com/blog/2018/09/28/neo4j-graph-algorithms-cosine-game-of-thrones
false
2018-09-24 07:55:00
matplotlib - Create a histogram/bar chart for ratings/full numbers
[ "python", "matplotlib" ]
[ "Python" ]
In my continued work with matplotlib I wanted to plot a histogram (or bar chart) for a bunch of star ratings to see how they were distributed. Before we do anything let's import matplotlib as well as pandas: [source, python] ---- import random import pandas as pd import matplotlib matplotlib.use('TkAgg') import matplotlib.pyplot as plt plt.style.use('fivethirtyeight') ---- Next we'll create an array of randomly chosen star ratings between 1 and 5: [source, python] ---- stars = pd.Series([random.randint(1, 5) for _ in range(0, 100)]) ---- We want to plot a histogram showing the proportion for each rating. The following code will plot a chart and store it in an SVG file: [source, python] ---- _, ax1 = plt.subplots() ax1.hist(stars, 5) plt.tight_layout() plt.savefig("/tmp/hist.svg") plt.close() ---- This is what the chart looks like: image::{{<siteurl>}}/uploads/2018/09/hist.svg[] This is ok, but the labels on the x axis are a bit weird - the value for each rating doesn't align with the corresponding bar. I came across https://stackoverflow.com/questions/18393887/how-to-create-a-bar-chart-histogram-with-bar-per-discrete-value[this StackOverflow post^], which shows how to solve this problem by using a bar chart instead. I ended up with this code: [source, python] ---- _, ax2 = plt.subplots() stars_histogram = stars.value_counts().sort_index() stars_histogram /= float(stars_histogram.sum()) stars_histogram *= 100 stars_histogram.plot(kind="bar", width=1.0) plt.tight_layout() plt.savefig("/tmp/bar.svg") plt.close() ---- This is what the chart looks like now: image::{{<siteurl>}}/uploads/2018/09/bar.svg[] Much better!
Learn how to create a matplotlib histogram for star ratings.
null
[ 0.02919331192970276, -0.011062496341764927, 0.014571262523531914, 0.0188839603215456, 0.04539945349097252, 0.025441467761993408, -0.021647077053785324, 0.009931034408509731, 0.009184053167700768, -0.04011852294206619, -0.02319491095840931, -0.011753126047551632, -0.06661345809698105, 0.023363815620541573, -0.006165959872305393, 0.05552004650235176, 0.09304680675268173, 0.035851508378982544, 0.014348211698234081, 0.009969884529709816, 0.026679668575525284, 0.03773878887295723, -0.07446344196796417, 0.008790544234216213, -0.00857853889465332, -0.03962201997637749, 0.004698155447840691, 0.011479047127068043, -0.03621092811226845, 0.009609478525817394, 0.011307342909276485, -0.028059830889105797, -0.011023137718439102, -0.0014548723120242357, 0.006944998633116484, -0.014191273599863052, -0.0233291145414114, 0.01599469594657421, -0.011759810149669647, -0.026421085000038147, -0.04486396163702011, 0.00815826840698719, 0.0013164588017389178, -0.002238410757854581, -0.017150558531284332, -0.014997787773609161, -0.03270842134952545, 0.015416976064443588, 0.014223569072782993, 0.031554922461509705, -0.04516816884279251, 0.04572412744164467, 0.01265720184892416, -0.03391553461551666, 0.033607836812734604, 0.05213705822825432, 0.014383595436811447, -0.06063003093004227, 0.01382196880877018, -0.03646223619580269, 0.02650555595755577, 0.014588246122002602, -0.025175239890813828, 0.08190053701400757, 0.045377783477306366, -0.005004811566323042, -0.027670450508594513, 0.03936505317687988, -0.02074546553194523, -0.02674339897930622, -0.010699438862502575, 0.00693280017003417, -0.022552093490958214, -0.02711985819041729, -0.023926187306642532, -0.033575884997844696, -0.016482487320899963, 0.05046049505472183, 0.024923192337155342, -0.002817342756316066, 0.006933536380529404, 0.017510993406176567, 0.011666017584502697, 0.031593576073646545, -0.016500918194651604, -0.008513166569173336, -0.05182258039712906, -0.053661346435546875, -0.06146003305912018, 0.0335942842066288, -0.0158452857285738, -0.05477980896830559, 0.03650723770260811, 0.01166564878076315, -0.008845232427120209, -0.023143697530031204, 0.0004569633165374398, -0.01151682436466217, -0.01725129410624504, -0.015765510499477386, -0.0753379613161087, -0.04323110356926918, 0.04052276164293289, 0.05143391340970993, -0.0496041439473629, 0.018640337511897087, 0.022953452542424202, 0.0044044144451618195, -0.024474261328577995, 0.0069975764490664005, -0.05545743927359581, -0.0245526023209095, -0.020523548126220703, -0.019763318821787834, -0.07850354164838791, 0.045075517147779465, 0.04100458696484566, -0.03322865813970566, -0.02856370434165001, -0.006592771504074335, 0.04027050733566284, 0.04033735394477844, -0.021329591050744057, 0.07664553821086884, -0.011525193229317665, 0.04936109110713005, 0.0031915325671434402, 0.06777796894311905, -0.006733476649969816, -0.03101150505244732, -0.010109459049999714, 0.05556277558207512, -0.03448919951915741, -0.017576053738594055, 0.007784290239214897, -0.012640106491744518, -0.03402633219957352, -0.018114687874913216, 0.01177261769771576, 0.00764308450743556, 0.04819833114743233, -0.014228848740458488, 0.017410341650247574, -0.004973639268428087, -0.0022208350710570812, 0.0011716814478859305, 0.007185925729572773, -0.053686320781707764, -0.03100145235657692, -0.0058410437777638435, 0.034851253032684326, 0.012693830765783787, 0.05497841164469719, 0.002614902798086405, -0.012041782028973103, 0.08482135832309723, 0.023420890793204308, 0.012045708484947681, -0.005989605560898781, -0.004630146082490683, 0.03631497919559479, 0.031673505902290344, -0.01226914580911398, 0.035676971077919006, -0.005094659980386496, -0.04724346846342087, 0.026105236262083054, 0.06738904863595963, -0.06765997409820557, -0.008969360031187534, -0.029472142457962036, -0.03626781702041626, 0.018817206844687462, -0.014590997248888016, -0.00531810661777854, 0.04049672931432724, 0.07808495312929153, 0.05271587520837784, 0.04176630824804306, 0.021469594910740852, -0.07030126452445984, 0.0479746051132679, -0.00906981062144041, 0.02571243606507778, 0.04333553835749626, 0.001659227884374559, 0.06663841009140015, -0.01897462084889412, 0.04427352920174599, 0.042230747640132904, -0.04183376580476761, -0.05862506851553917, -0.0035370874684304, 0.015431288629770279, 0.0542675219476223, -0.05281950160861015, -0.01144632138311863, 0.028003409504890442, 0.03492886945605278, 0.01925770193338394, -0.019686216488480568, -0.018950115889310837, -0.005763181485235691, -0.04332679882645607, -0.08634446561336517, -0.02257487177848816, 0.024910323321819305, -0.01340875681489706, -0.04497337341308594, 0.02003355138003826, -0.0032214929815381765, -0.0246815737336874, 0.04378461837768555, -0.007807467598468065, 0.029495656490325928, 0.058433450758457184, 0.048978161066770554, -0.014682992361485958, 0.017237652093172073, -0.06804533302783966, 0.008010015822947025, -0.004816440399736166, -0.013466063886880875, -0.07118203490972519, 0.00216298783197999, 0.12591268122196198, 0.06510120630264282, -0.03322499990463257, -0.07139658182859421, -0.005195623729377985, -0.02135760709643364, -0.046458929777145386, 0.025905992835760117, 0.02610955759882927, -0.04906756430864334, 0.020905425772070885, -0.04761741682887077, -0.024716993793845177, 0.0056200758554041386, -0.05204285681247711, 0.0016066940734162927, 0.055686164647340775, -0.03335236385464668, 0.04963572695851326, 0.016406401991844177, -0.03813130781054497, 0.011270282790064812, -0.015629246830940247, -0.055080994963645935, 0.03046223521232605, -0.0075295777060091496, 0.014824462123215199, 0.027320092543959618, -0.020839467644691467, -0.038959428668022156, 0.007661757059395313, -0.07352779060602188, -0.0077688442543148994, 0.036252498626708984, 0.033796776086091995, 0.02159290574491024, -0.021731773391366005, -0.005788544658571482, -0.004868024494498968, -0.03375042602419853, -0.043651092797517776, -0.047656819224357605, -0.007020613644272089, -0.016070270910859108, 0.04619476571679115, 0.05018392577767372, 0.00027562023024074733, 0.01381283812224865, -0.003466025460511446, 0.015483682043850422, 0.009529483504593372, 0.05598052591085434, -0.0027686897665262222, -0.018992044031620026, -0.01963738538324833, 0.02046988531947136, 0.05782869830727577, -0.007308852858841419, -0.022576790302991867, 0.016692837700247765, -0.03716307505965233, 0.028107088059186935, -0.04481501877307892, 0.002460440620779991, -0.02820148877799511, 0.000053406532970257103, 0.05606122314929962, 0.04180324077606201, -0.008640104904770851, 0.013687487691640854, 0.013194475322961807, 0.010429274290800095, 0.031797993928194046, -0.003786444431170821, 0.057612594217061996, -0.0065835630521178246, 0.029430152848362923, 0.08569955825805664, 0.0033223205246031284, -0.01914956420660019, -0.030737750232219696, -0.003939175512641668, -0.03273504972457886, -0.26642873883247375, 0.009931175969541073, -0.01878422312438488, -0.009625173173844814, 0.003417683532461524, -0.0247380081564188, -0.016711696982383728, -0.0037274472415447235, -0.01043521799147129, 0.021468710154294968, -0.022751351818442345, -0.06598220765590668, -0.02526887133717537, 0.052598364651203156, 0.014734875410795212, -0.013485901989042759, 0.0069673690013587475, -0.012314528226852417, 0.025895114988088608, 0.0405779704451561, -0.03249305486679077, -0.05843855068087578, -0.020464714616537094, 0.06304868310689926, -0.008420711383223534, 0.05953177809715271, -0.08471589535474777, 0.06523530185222626, -0.03315790370106697, -0.014290605671703815, 0.000038176574889803305, -0.03336196765303612, -0.017331302165985107, 0.001455433084629476, -0.003557989839464426, -0.05538809299468994, -0.0006110949325375259, -0.02575686201453209, -0.009914947673678398, 0.01546567864716053, -0.010637303814291954, -0.017349328845739365, -0.027400000020861626, -0.016006000339984894, 0.06701384484767914, -0.009090537205338478, -0.047142788767814636, 0.006537667941302061, -0.05771183222532272, 0.057554855942726135, 0.002905753906816244, 0.006131574045866728, -0.03629408776760101, -0.0025397667195647955, -0.06335680186748505, -0.0012149701360613108, -0.01030545961111784, 0.025530215352773666, -0.054861072450876236, -0.024643784388899803, -0.030504265800118446, -0.024870945140719414, -0.016007937490940094, -0.03737490251660347, 0.008660808205604553, -0.01852339506149292, -0.035353656858205795, -0.05780543386936188, 0.026130374521017075, 0.059062253683805466, -0.047148387879133224, -0.036863017827272415, -0.010902228765189648, -0.09993673861026764, 0.04303140938282013, -0.018894221633672714, 0.012536021880805492, 0.020213259384036064, 0.0029190999921411276, 0.0170054342597723, -0.0364435538649559, -0.06917523592710495, 0.06775768846273422, -0.011330846697092056, -0.01906568557024002, -0.0008670027018524706, 0.0038491205777972937, -0.0020733082201331854, -0.005324286408722401, -0.03575798496603966, 0.07329584658145905, -0.008850706741213799, 0.02181318774819374, 0.008932717144489288, -0.03024531714618206, 0.046849291771650314, 0.04202680662274361, -0.02595479227602482, 0.0074127791449427605, 0.02327796071767807, 0.042595185339450836, -0.0812867134809494, -0.06629904359579086, -0.021355153992772102, -0.010461453348398209, 0.0032836224418133497, -0.06149201840162277, 0.0065088351257145405, 0.0249466709792614, -0.007289882283657789, -0.0041724275797605515, -0.018926160410046577, 0.016880786046385765, -0.016668304800987244, 0.02099405601620674, -0.038887813687324524, 0.029118606820702553, 0.010573551058769226, 0.00044832649291493, -0.005173813086003065, -0.053051020950078964, -0.0011395899346098304, 0.008961016312241554, -0.014748203568160534, -0.036012474447488785, -0.03988725692033768, 0.02335834689438343, 0.0011559758568182588, 0.01797167956829071, 0.001862046541646123, -0.017393434420228004, 0.04754658043384552, 0.08592832833528519, -0.016269952058792114, 0.013218523003160954, -0.01675512082874775, -0.022284111008048058, -0.00816560909152031, 0.03624428063631058, -0.008551310747861862, 0.010868470184504986, 0.01660086028277874, -0.007110040169209242, 0.035625383257865906, 0.06200529262423515, -0.03214026242494583, 0.031884174793958664, 0.002141970442607999, 0.0036545037291944027, -0.026081224903464317, -0.009827741421759129, -0.010301725007593632, 0.003556976793333888, -0.0098738893866539, -0.022875547409057617, 0.024850014597177505, 0.02495131641626358, -0.01924464851617813, -0.011682749725878239, -0.045985229313373566, 0.03497281298041344, -0.015046732500195503, -0.02785421721637249, -0.0352550745010376, 0.013123123906552792, 0.03891832008957863, -0.007579903583973646, 0.05448192358016968, 0.01808055117726326, 0.015728669241070747, 0.010682115331292152, 0.010444117709994316, 0.010903824120759964, 0.00613670889288187, -0.0794614925980568, -0.0063767749816179276, 0.033069394528865814, 0.02288007363677025, 0.012423213571310043, 0.0242034662514925, 0.003918797243386507, 0.004928283393383026, 0.006243946496397257, 0.004401379730552435, 0.032221630215644836, 0.041735898703336716, -0.07039321959018707, -0.027542011812329292, -0.027670303359627724, -0.000061017010011710227, -0.027400482445955276, -0.0038629118353128433, 0.008166909217834473, 0.01826244778931141, -0.027808522805571556, -0.030823541805148125, -0.018979672342538834, -0.01822633296251297, 0.022059865295886993, -0.009306451305747032, -0.04064863920211792, 0.028275903314352036, -0.03383026272058487, 0.009338119998574257, 0.08561140298843384, -0.042738158255815506, 0.027755439281463623, 0.0152842802926898, 0.03185954689979553, -0.0269926805049181, 0.047046441584825516, -0.05072058364748955, -0.041195210069417953, -0.006952655967324972, 0.016577063128352165, 0.02653626538813114, -0.0570143461227417, -0.07220330834388733, 0.02544287219643593, -0.007432399317622185, -0.003657684428617358, -0.007744616828858852, 0.004523527808487415, -0.026929551735520363, -0.029796451330184937, 0.0030200809706002474, 0.012205631472170353, -0.017045915126800537, 0.04533630609512329, -0.0077612437307834625, 0.03927334398031235, -0.005488318391144276, 0.026535622775554657, 0.048876721411943436, -0.003957635257393122, 0.0001345295604551211, -0.06558119505643845, -0.033258214592933655, 0.020398026332259178, 0.05274355039000511, -0.0005933580687269568, 0.025359516963362694, -0.03605222329497337, 0.0028719657566398382, 0.033928342163562775, -0.018950318917632103, 0.036578696221113205, -0.0435958206653595, 0.0016694578807801008, 0.011475956067442894, 0.006466075778007507, -0.029094193130731583, 0.032033029943704605, -0.0654820054769516, 0.06689278036355972, -0.015915660187602043, -0.03897813707590103, -0.02227075956761837, -0.07369951158761978, 0.034230880439281464, -0.030662009492516518, 0.045103561133146286, -0.07968644797801971, 0.05364557355642319, 0.010468034073710442, 0.057161543518304825, 0.04653869941830635, 0.026252510026097298, -0.008627673611044884, -0.053883861750364304, -0.006429543253034353, -0.086034394800663, 0.01358700916171074, 0.038856782019138336, 0.020057054236531258, 0.016994329169392586, 0.005012276116758585, -0.056810617446899414, 0.04210970550775528, -0.08051775395870209, -0.017261182889342308, 0.05484966188669205, 0.033547744154930115, 0.015870895236730576, 0.030248407274484634, -0.023999357596039772, -0.013675922527909279, 0.03319697827100754, -0.044591765850782394, 0.015771105885505676, -0.00864666048437357, 0.08306857943534851, 0.013631372712552547, 0.032482586801052094, 0.018910815939307213, 0.014031738042831421, 0.07393552362918854, 0.027460550889372826, 0.04425293952226639, 0.040348950773477554, -0.03658507019281387, 0.036017902195453644, 0.017946120351552963, -0.007232722360640764, -0.019638542085886, 0.0450289212167263, 0.03214596211910248, -0.049539484083652496, 0.02623257040977478, 0.008136969991028309, 0.033153846859931946, -0.072276771068573, 0.06254663318395615, -0.016250215470790863, -0.04912163317203522, -0.04131554439663887, 0.03531493619084358, -0.04559639096260071, 0.012086192145943642, -0.023902177810668945, 0.0016342069720849395, 0.0007517927442677319, 0.07243181020021439, -0.019626235589385033, -0.02912711724638939, 0.03319009020924568, -0.054714467376470566, 0.04492553696036339, 0.03693125396966934, 0.09314199537038803, 0.08301948010921478, 0.0476125031709671, 0.015018350444734097, 0.04942426085472107, -0.03418281301856041, -0.02623480185866356, -0.028861094266176224, 0.004415402188897133, 0.013443702831864357, -0.05440954118967056, -0.01722577214241028, 0.019452417269349098, -0.0013497035251930356, 0.04228784888982773, -0.0006992624257691205, 0.00129538809414953, -0.017224477604031563, -0.012899862602353096, -0.013325314037501812, 0.04164476692676544, -0.02765006572008133, 0.04166656360030174, 0.0014793628361076117, -0.01761702448129654, 0.03331886604428291, -0.00864377710968256, -0.045882903039455414, 0.03846902772784233, -0.028909383341670036, -0.014614412561058998, 0.013472214341163635, 0.026029828935861588, 0.0751471146941185, -0.015996547415852547, -0.05036230757832527, 0.029247011989355087, 0.0544278547167778, -0.008265853859484196, 0.014231730252504349, 0.03842545673251152, 0.003538350807502866, -0.004622403532266617, -0.026554934680461884, 0.013381404802203178, -0.09405035525560379, 0.048114217817783356, 0.05094502493739128, 0.02087421715259552, 0.034311678260564804, 0.02346544899046421, -0.0018842144636437297, -0.0656527727842331, -0.011284489184617996, -0.03410874307155609, -0.056843820959329605, -0.061236459761857986, 0.00018992558761965483, 0.01511338073760271, -0.011780304834246635, -0.016760285943746567, -0.016544437035918236, -0.0013394001871347427, 0.03857461363077164, -0.025645103305578232, -0.055244505405426025, -0.04260248690843582, 0.004302177112549543, 0.022644799202680588, -0.016489073634147644, -0.01560900267213583, 0.021622858941555023, -0.020097725093364716, -0.047248728573322296, -0.02259279601275921, 0.041542358696460724, 0.02970660850405693, 0.03280118852853775, 0.022556133568286896, -0.06561178714036942, 0.02234666794538498, -0.02581348642706871, -0.0008264330099336803, -0.07968418300151825, 0.024323005229234695, 0.0199605580419302, 0.0020608259364962578, 0.03611183911561966, 0.008004582487046719, 0.007198258303105831, -0.010926115326583385, -0.00594688393175602, -0.05623868107795715, 0.015924766659736633, 0.039365772157907486, -0.03279639780521393, 0.10597415268421173, -0.004845073912292719, 0.006544460076838732, -0.006153573282063007, -0.0007544404361397028, -0.005898551549762487, -0.010051154531538486, -0.032183341681957245, -0.008440771140158176, -0.04817300662398338, -0.04223683103919029, 0.01718502677977085, 0.030235443264245987, -0.02670692838728428, -0.04335397109389305, -0.025648031383752823, 0.027396144345402718, -0.000535330967977643, 0.03064902313053608, -0.009694634936749935, -0.0029291431419551373, -0.025167636573314667, -0.002769472310319543, -0.02438422106206417, 0.026829371228814125, -0.008630076423287392, 0.0022978661581873894, 0.008245062083005905, -0.03020928055047989, -0.028514640405774117, 0.013222789391875267, 0.029145676642656326, 0.03110007755458355, -0.02253495156764984, 0.04354206100106239 ]
[ -0.04338248074054718, -0.06825198233127594, -0.017527490854263306, -0.034844934940338135, 0.04762963578104973, -0.019288642331957817, -0.0071309637278318405, 0.03721527382731438, 0.01923917979001999, 0.02812281809747219, 0.006194505840539932, -0.09531830251216888, 0.029369451105594635, 0.0010841407347470522, 0.008524118922650814, 0.018979186192154884, -0.021353138610720634, -0.02016419917345047, -0.05325821787118912, 0.02370741218328476, -0.0070114703848958015, -0.02026832289993763, -0.04464905336499214, -0.07520627230405807, 0.06499488651752472, 0.031554777175188065, 0.022122502326965332, -0.042367782443761826, -0.034790750592947006, -0.20230330526828766, 0.04491030052304268, -0.020696155726909637, 0.061445750296115875, -0.041220683604478836, 0.00737899262458086, -0.006682791281491518, 0.05205764248967171, 0.03164771944284439, 0.04914310574531555, 0.03248449042439461, -0.01030025351792574, -0.043770357966423035, -0.025915026664733887, -0.04798613116145134, 0.038235314190387726, -0.009853578172624111, -0.035627663135528564, -0.03512927144765854, 0.02063506655395031, 0.02087530680000782, -0.07528422027826309, -0.041286829859018326, -0.02673979476094246, 0.005078658927232027, -0.009209193289279938, -0.005390975624322891, 0.020802337676286697, 0.017592888325452805, 0.04368468374013901, 0.044311292469501495, 0.00968511588871479, 0.0476074293255806, -0.12633399665355682, 0.09595515578985214, 0.0023379886988550425, 0.04372468963265419, -0.046430233865976334, 0.006904297042638063, -0.011933987960219383, 0.08370134979486465, 0.004796966444700956, -0.00537529494613409, 0.008032023906707764, 0.04368661716580391, -0.001981091219931841, -0.07286742329597473, 0.007420316804200411, -0.01911083608865738, 0.02701876312494278, -0.02925196662545204, -0.08828570693731308, 0.06447701156139374, -0.011629676446318626, -0.01485812570899725, 0.0399867482483387, 0.011631734669208527, -0.004445934668183327, 0.03271394595503807, 0.013199225068092346, 0.0314888134598732, 0.038865942507982254, 0.007137077860534191, -0.01847502402961254, 0.006155986804515123, -0.08776671439409256, -0.05452587082982063, 0.008952286094427109, -0.03203907608985901, -0.01181843876838684, 0.3703959286212921, -0.04092717915773392, -0.029857005923986435, 0.052719950675964355, 0.05719989538192749, 0.01065147016197443, -0.042445626109838486, -0.02054392173886299, -0.02899538166821003, -0.005529799498617649, -0.005833388306200504, 0.000946305925026536, -0.05352402478456497, 0.03571943938732147, -0.08004842698574066, 0.029688093811273575, -0.0341452993452549, -0.0283044446259737, 0.031750019639730453, 0.033800456672906876, 0.010556147433817387, -0.004516860004514456, 0.03270557150244713, 0.024197198450565338, 0.009279709309339523, 0.06223759055137634, 0.053822100162506104, 0.02825159952044487, 0.06927169859409332, 0.021499114111065865, -0.04418444260954857, 0.01847771182656288, -0.013565749861299992, -0.07488123327493668, 0.02505047619342804, -0.055253807455301285, 0.00399251002818346, 0.04774338752031326, -0.041277702897787094, 0.02158777415752411, 0.004015971440821886, 0.00015185109805315733, -0.02152688428759575, 0.0438203327357769, 0.017163990065455437, -0.01738438569009304, 0.10787229984998703, -0.01351512223482132, 0.005357909016311169, -0.0301011074334383, -0.016387131065130234, -0.011350252665579319, 0.0037078119348734617, -0.01213415339589119, -0.05212121456861496, 0.01048367191106081, 0.03706587105989456, 0.03846050053834915, 0.024051813408732414, -0.05885026976466179, 0.014092882163822651, -0.009135399013757706, -0.027243368327617645, -0.000892507319804281, -0.012370124459266663, 0.03525594249367714, -0.0825459361076355, -0.009319594129920006, 0.03410717472434044, -0.0017470589373260736, -0.0720745250582695, 0.020559197291731834, 0.043271519243717194, -0.052514176815748215, 0.017566366121172905, 0.05077757686376572, -0.01221486460417509, -0.03581997752189636, -0.01368796732276678, 0.06936803460121155, -0.0040346477180719376, 0.016483750194311142, -0.0019667737651616335, -0.040579017251729965, 0.008186853490769863, -0.05356384441256523, -0.03319103643298149, -0.039461348205804825, 0.0014644028851762414, -0.02752763219177723, -0.05500081181526184, 0.046756811439991, -0.02398967370390892, -0.0175180584192276, 0.037041034549474716, -0.00027342906105332077, -0.014132056385278702, 0.023800687864422798, 0.010876063257455826, -0.05260222405195236, -0.034806665033102036, 0.023048514500260353, -0.019838662818074226, 0.02554314397275448, 0.029875215142965317, -0.05528873950242996, 0.06744400411844254, 0.0550498440861702, -0.00606140960007906, 0.06019968166947365, 0.0015090275555849075, -0.002346294466406107, -0.03979545086622238, -0.02526777796447277, 0.004051423631608486, -0.02926851622760296, 0.010128958150744438, 0.005498659331351519, -0.03012755885720253, -0.0166305061429739, 0.038904447108507156, 0.013083441182971, -0.054096661508083344, -0.04288800060749054, -0.36952781677246094, -0.03026043437421322, 0.02947734110057354, 0.013967844657599926, 0.029828209429979324, -0.033960018306970596, 0.00008148221240844578, -0.014677373692393303, 0.0056421272456645966, 0.04760869964957237, 0.10950028896331787, -0.02936600334942341, -0.014344102703034878, -0.15706108510494232, -0.02028314583003521, 0.015689827501773834, -0.05140600726008415, -0.01647494174540043, -0.030260801315307617, 0.0021476957481354475, -0.016096016392111778, 0.03717229142785072, -0.015897950157523155, -0.02894367277622223, -0.0008192427922040224, -0.026439791545271873, 0.15562833845615387, 0.002852905075997114, 0.05418985337018967, -0.038639165461063385, 0.03919801861047745, -0.02982204593718052, -0.021075159311294556, -0.013108305633068085, 0.0010233917273581028, 0.008029600605368614, -0.02069195918738842, 0.06785060465335846, -0.03731183707714081, -0.03868184611201286, -0.03424863517284393, 0.04767752066254616, -0.0007662817370146513, -0.03231179714202881, -0.06168906018137932, -0.0020183532033115625, 0.019596317782998085, 0.0015964023768901825, 0.018503567203879356, 0.03363586217164993, -0.02793828770518303, 0.02439301274716854, 0.03615038841962814, 0.011387367732822895, 0.01938447915017605, 0.014768385328352451, -0.06900592148303986, -0.021649515256285667, -0.04002642259001732, -0.02155270427465439, 0.00019600802625063807, 0.026021623983979225, 0.06024667248129845, -0.060745541006326675, -0.01749396324157715, -0.0019809119403362274, 0.01172026339918375, -0.008203518576920033, 0.028991898521780968, 0.03926262632012367, -0.026259446516633034, 0.12454383075237274, -0.005333608016371727, -0.0012631024001166224, 0.07822778075933456, 0.06179110333323479, 0.023198619484901428, 0.06488484889268875, 0.010537841357290745, 0.00615340331569314, 0.0014669124502688646, 0.008100750856101513, 0.015032281167805195, 0.019346406683325768, 0.02785782888531685, -0.008570371195673943, -0.025197774171829224, -0.004021693952381611, 0.024756183847784996, -0.0013129451544955373, 0.03125099092721939, 0.01986733078956604, -0.0024580578319728374, -0.004029580857604742, -0.0035956702195107937, 0.014127762988209724, -0.2847612500190735, 0.04764832928776741, 0.009959238581359386, 0.09291046857833862, -0.01194649189710617, -0.026771288365125656, 0.05209144204854965, -0.025020593777298927, 0.014701914973556995, -0.013257727958261967, -0.024013236165046692, 0.016276709735393524, 0.007150668650865555, -0.0492289736866951, -0.02802218310534954, -0.056906722486019135, 0.05324753746390343, -0.011786269024014473, 0.05699867010116577, -0.0024955407716333866, 0.06548834592103958, -0.0404726043343544, 0.15142478048801422, 0.0332285612821579, 0.016228636726737022, -0.005015707574784756, -0.00410495325922966, -0.029883651062846184, 0.0703573003411293, 0.012719832360744476, 0.04133157059550285, 0.005266775842756033, 0.04789923503994942, 0.020168492570519447, 0.03707200288772583, 0.03420792147517204, -0.029592595994472504, 0.04045307636260986, 0.001224318752065301, -0.036950238049030304, 0.008340481668710709, 0.03142823278903961, -0.09258013218641281, 0.006172266323119402, 0.08584657311439514, 0.020859014242887497, 0.01676417887210846, -0.02237001061439514, -0.04167646914720535, 0.005412702448666096, -0.03295751288533211, -0.022381868213415146, -0.06499496847391129, -0.004908550065010786, -0.008802914060652256, 0.07648271322250366, 0.024420127272605896, 0.01908252201974392, 0.017819533124566078, 0.0008017913205549121, 0.011965216137468815, -0.04735295847058296, 0.09575893729925156, -0.020137421786785126, 0.009329600259661674 ]
[ 0.02273060381412506, 0.03240351378917694, 0.012074432335793972, 0.015588562935590744, -0.023123903200030327, 0.002516635227948427, 0.022108353674411774, -0.01722976751625538, -0.01529707107692957, -0.009636161848902702, -0.026508966460824013, 0.009415623731911182, 0.01655670441687107, -0.031045662239193916, -0.005026506260037422, -0.025301571935415268, 0.009388192556798458, -0.039222441613674164, 0.0389801524579525, 0.01664881408214569, -0.036899201571941376, 0.022763878107070923, -0.014832084998488426, -0.011071675457060337, 0.014577487483620644, -0.025470800697803497, -0.05626760795712471, 0.026249278336763382, 0.02574877254664898, -0.10053162276744843, -0.002816328778862953, -0.02809963747859001, 0.005790587514638901, 0.035857368260622025, -0.0685860812664032, 0.00013260284322313964, -0.007643353659659624, -0.017631439492106438, -0.03816547617316246, 0.02081245370209217, 0.013392828404903412, 0.0010028363903984427, -0.003078908659517765, 0.03796662017703056, 0.0042338743805885315, 0.004768326412886381, -0.07442149519920349, -0.04166075959801674, 0.021604670211672783, 0.025895128026604652, -0.08429711312055588, 0.008650273084640503, 0.006896461360156536, -0.013276257552206516, 0.019470809027552605, -0.007020866964012384, -0.0001983954425668344, -0.04504061117768288, 0.03490650653839111, -0.03610113263130188, 0.010278649628162384, 0.028106175363063812, -0.032530538737773895, -0.025345465168356895, 0.012729674577713013, -0.014481920748949051, -0.0482914038002491, 0.012884709052741528, -0.01991746760904789, 0.01944653131067753, -0.0011849902803078294, 0.016628654673695564, -0.0055051869712769985, -0.015034629963338375, -0.027832210063934326, -0.03507193550467491, -0.00336375180631876, -0.07346196472644806, 0.02266368269920349, -0.024294588714838028, -0.03992222249507904, 0.024089254438877106, 0.031621042639017105, 0.007899525575339794, -0.02265630103647709, -0.04545310139656067, 0.03233284130692482, 0.022729290649294853, 0.008602375164628029, 0.010868298821151257, 0.0018573406850919127, 0.04846027120947838, -0.03162558749318123, 0.026484599336981773, -0.08797916024923325, 0.029086874797940254, -0.00032826047390699387, -0.029488377273082733, 0.025098176673054695, 0.7915355563163757, 0.038687366992235184, -0.0310170017182827, 0.022692495957016945, -0.006686765234917402, 0.012696295976638794, -0.0026266593486070633, 0.046594519168138504, -0.02024088241159916, -0.01956944726407528, 0.0016733126249164343, 0.0012489303480833769, 0.033562976866960526, 0.015929721295833588, 0.018394503742456436, 0.020142516121268272, 0.022560255602002144, -0.024006783962249756, 0.040539756417274475, -0.0042053041979670525, -0.018802234902977943, 0.02886183001101017, 0.04750172793865204, 0.023806262761354446, 0.021460464224219322, -0.027917014434933662, -0.15259377658367157, 0.014062144793570042, -7.30120259383656e-33, 0.012530261650681496, -0.07017628103494644, 0.012680919840931892, 0.02767345868051052, 0.0054916017688810825, 0.020569831132888794, -0.049102652817964554, -0.004603544715791941, 0.029375988990068436, -0.008753383532166481, -0.0017886330606415868, 0.01339885126799345, -0.015339341945946217, 0.044528815895318985, 0.05792875215411186, -0.0030632640700787306, 0.018987204879522324, 0.057139281183481216, -0.018101751804351807, -0.03391550853848457, 0.0049667200073599815, 0.03548068553209305, 0.03337935358285904, 0.021716196089982986, 0.02171739935874939, 0.01340529415756464, 0.034198492765426636, 0.011800285428762436, -0.01072196289896965, -0.03366295248270035, -0.04967951029539108, 0.0495956726372242, 0.05241634324193001, -0.060573335736989975, 0.005551788490265608, -0.04205376282334328, -0.014829729683697224, 0.03842505067586899, -0.039622511714696884, -0.030585717409849167, 0.021143540740013123, -0.005202720407396555, -0.054176297038793564, -0.004128910601139069, -0.03751308098435402, 0.04046371206641197, -0.001432606135495007, 0.06414122134447098, -0.02159283682703972, 0.006544456817209721, -0.012350847944617271, 0.024394283071160316, -0.015655692666769028, -0.015301707200706005, -0.0030386035796254873, 0.011379352770745754, -0.0007316624978557229, -0.0012784975115209818, 0.0019926594104617834, -0.052737969905138016, 0.005476498976349831, 0.002505895681679249, 0.028058694675564766, 0.018824812024831772, -0.03920552134513855, 0.03568381443619728, 0.043250713497400284, 0.009129896759986877, -0.038595590740442276, 0.001081722555682063, -0.0909569039940834, 0.05544392019510269, -0.02854149043560028, -0.04160270467400551, -0.0036852997727692127, -0.03276548162102699, 0.013850092887878418, 0.01782311499118805, -0.008649546653032303, 0.024344798177480698, 0.011681724339723587, -0.03221037983894348, 0.028255177661776543, -0.05310400202870369, 0.005547415465116501, -0.00218654191121459, 0.055132120847702026, 0.05604226887226105, -0.05436582863330841, -0.03995966911315918, 0.04148121178150177, 0.017915064468979836, 0.0168650820851326, -0.028729349374771118, -0.02666282095015049, 6.288874205748099e-33, -0.03741244226694107, 0.004103366751223803, 0.024484783411026, -0.00042342793312855065, 0.03734790161252022, -0.01708335429430008, 0.03205631673336029, -0.02197699248790741, -0.024024995043873787, 0.04429291561245918, -0.05510758236050606, -0.056260280311107635, -0.02445985935628414, -0.01989077962934971, 0.05567581579089165, 0.01736375316977501, -0.04197584092617035, 0.09286537766456604, -0.05880972370505333, -0.01202229131013155, -0.005528461188077927, 0.044173069298267365, 0.012407902628183365, 0.04279617965221405, -0.0078309066593647, 0.03219094127416611, -0.014731260016560555, -0.018532369285821915, -0.0021862925495952368, -0.016548462212085724, 0.015954865142703056, -0.03942680358886719, 0.01730678789317608, -0.02602282539010048, 0.02623474970459938, 0.020023969933390617, 0.02028263919055462, -0.05694852024316788, -0.033117979764938354, 0.02893686853349209, 0.01841532625257969, 0.022418320178985596, -0.009716175496578217, 0.00838787667453289, -0.007969978265464306, 0.02838269993662834, 0.0029983180575072765, -0.00038066698471084237, -0.01260364893823862, -0.008144065737724304, -0.0010555654298514128, 0.014996537938714027, 0.013696568086743355, 0.03767513111233711, 0.0024904136080294847, 0.0048988196067512035, -0.029239891096949577, 0.053699247539043427, -0.04062182456254959, 0.01655973121523857, -0.04670886695384979, -0.023787297308444977, -0.000964408041909337, 0.007500132545828819, 0.002366086235269904, 0.004127372056245804, -0.004357990343123674, -0.014659360982477665, -0.0059605869464576244, 0.024231547489762306, 0.014017543755471706, -0.02287336438894272, 0.025733813643455505, 0.005407744087278843, -0.003802042920142412, 0.05176074802875519, -0.005137850064784288, 0.010542251169681549, -0.007205522619187832, 0.04047505930066109, 0.031304579228162766, -0.015828877687454224, 0.044222574681043625, 0.012590862810611725, -0.015585901215672493, -0.030123980715870857, 0.004338177386671305, -0.032635774463415146, 0.026203691959381104, 0.004248357377946377, 0.03166757524013519, -0.002918554935604334, 0.03164560720324516, 0.0030720748472958803, 0.06312500685453415, -1.2316290209923864e-8, 0.006349861156195402, 0.005954379681497812, -0.016540855169296265, 0.049199171364307404, 0.018296733498573303, 0.04304996877908707, -0.025223098695278168, -0.016624918207526207, -0.0041450010612607, 0.023139048367738724, 0.015292832627892494, -0.02498866431415081, -0.019061319530010223, -0.004646694287657738, -0.029875949025154114, -0.10672953724861145, -0.023975512012839317, -0.008723186329007149, 0.051225446164608, 0.017911985516548157, -0.020200276747345924, 0.02845635637640953, 0.020791471004486084, -0.0018241199431940913, -0.02801232784986496, -0.03135577216744423, 0.017101716250181198, -0.06483610719442368, -0.007494267541915178, -0.05990506708621979, -0.0005151009536348283, -0.017155131325125694, -0.03925147280097008, 0.0064289988949894905, -0.0023544100113213062, 0.0011164902243763208, 0.016525818035006523, 0.01153999287635088, 0.04615209624171257, 0.029299896210432053, 0.006139677949249744, -0.024706300348043442, 0.018428975716233253, -0.04236477613449097, -0.034190114587545395, 0.016713714227080345, -0.026905832812190056, -0.007241059094667435, 0.022401202470064163, -0.022139353677630424, -0.01848682016134262, -0.009404231794178486, -0.0033146811183542013, -0.030843958258628845, 0.011993286199867725, -0.005729631520807743, -0.027624966576695442, 0.029158329591155052, -0.015355882234871387, 0.0021738435607403517, 0.050795696675777435, -0.01569671742618084, -0.05476837232708931, -0.0214120764285326 ]
matplotlib-histogram-bar-chart-ratings-full-values
https://markhneedham.com/blog/2018/09/24/matplotlib-histogram-bar-chart-ratings-full-values
false
2018-01-18 23:35:25
Strava: Calculating the similarity of two runs
[ "python", "strava", "running", "strava-api", "dtw", "dynamic-time-warping", "google-encoded-polyline-algorithm-format" ]
[ "Software Development" ]
I go running several times a week and wanted to compare my runs against each other to see how similar they are. I record my runs with the https://www.strava.com/[Strava] app and it has an https://strava.github.io/api[API] that returns lat/long coordinates for each run in the https://strava.github.io/api/#polylines[Google encoded polyline algorithm format]. We can use the https://pypi.python.org/pypi/polyline/[polyline] library to decode these values into a list of lat/long tuples. For example: [source,python] ---- import polyline polyline.decode('u{~vFvyys@fS]') [(40.63179, -8.65708), (40.62855, -8.65693)] ---- Once we've got the route defined as a set of coordinates we need to compare them. My Googling led me to an algorithm called https://en.wikipedia.org/wiki/Dynamic_time_warping[Dynamic Time Warping] ____ DTW is a method that calculates an optimal match between two given sequences (e.g. time series) with certain restrictions. The sequences are "warped" non-linearly in the time dimension to determine a measure of their similarity independent of certain non-linear variations in the time dimension. ____ The https://pypi.python.org/pypi/fastdtw[fastdtw] library implements an approximation of this library and returns a value indicating the distance between sets of points. We can see how to apply fastdtw and polyline against Strava data in the following example: [source,python] ---- import os import polyline import requests from fastdtw import fastdtw token = os.environ["TOKEN"] headers = {'Authorization': "Bearer {0}".format(token)} def find_points(activity_id): r = requests.get("https://www.strava.com/api/v3/activities/{0}".format(activity_id), headers=headers) response = r.json() line = response["map"]["polyline"] return polyline.decode(line) ---- Now let's try it out on two runs, https://www.strava.com/activities/1361109741[1361109741] and https://www.strava.com/activities/1346460542[1346460542]: [source,python] ---- from scipy.spatial.distance import euclidean activity1_id = 1361109741 activity2_id = 1346460542 distance, path = fastdtw(find_points(activity1_id), find_points(activity2_id), dist=euclidean) >>> print(distance) 2.91985018100644 ---- These two runs are both near my house so the value is small. Let's change the second route to be https://www.strava.com/activities/1246017379[from my trip to New York]: [source,python] ---- activity1_id = 1361109741 activity2_id = 1246017379 distance, path = fastdtw(find_points(activity1_id), find_points(activity2_id), dist=euclidean) >>> print(distance) 29383.492965394034 ---- Much bigger! I'm not really interested in the actual value returned but I am interested in the relative values. I'm building a little application to generate routes that I should run and I want it to come up with a routes that are different to recent ones that I've run. This score can now form part of the criteria.
Learn how to compare runs from the Strava API using the Dynamic Time Warping algorithm.
null
[ 0.01697874628007412, -0.036639392375946045, -0.033919043838977814, 0.022482411935925484, 0.07136565446853638, 0.046827562153339386, 0.012661588378250599, 0.045556385070085526, 0.01150758471339941, -0.026641398668289185, 0.017129428684711456, -0.03046482242643833, -0.06486822664737701, 0.02337932027876377, -0.0007950711296871305, 0.05984148383140564, 0.07393918931484222, -0.022748693823814392, 0.01569731906056404, 0.0004913533921353519, 0.01750275120139122, 0.03277484327554703, -0.01003268826752901, 0.016034912317991257, -0.009167286567389965, 0.014343434013426304, 0.017497025430202484, -0.002125953556969762, -0.05037214607000351, -0.007955332286655903, 0.04888993501663208, -0.014708959497511387, 0.004137993790209293, 0.006295023486018181, 0.05123794078826904, 0.009951002895832062, -0.015424508601427078, 0.0009487460483796895, -0.010862286202609539, -0.007435676641762257, -0.05327543616294861, 0.014036418870091438, -0.07029079645872116, 0.010496467351913452, -0.03872492164373398, 0.039285819977521896, -0.026067053899168968, 0.02100127376616001, -0.027462348341941833, 0.007643286604434252, -0.04409898445010185, 0.050485316663980484, -0.02864469774067402, 0.015366616658866405, 0.00039113921229727566, 0.06760559231042862, 0.0021439469419419765, -0.07723577320575714, 0.028751162812113762, -0.034850623458623886, 0.0053746639750897884, -0.009980564936995506, 0.012494492344558239, 0.03300592675805092, 0.01534739788621664, -0.037384118884801865, 0.00414664251729846, 0.061753567308187485, -0.011272271163761616, -0.011657539755105972, -0.017955206334590912, 0.03350437059998512, -0.007312549743801355, 0.029501574113965034, 0.0006174930604174733, -0.03803213685750961, 0.0006883939495310187, 0.05661342665553093, 0.011781209148466587, 0.020730700343847275, 0.022710775956511497, -0.019118312746286392, 0.00513122696429491, 0.051187243312597275, -0.016894543543457985, -0.010847742669284344, -0.03501081094145775, -0.03174601495265961, -0.06360074877738953, 0.04500233009457588, 0.006140170618891716, -0.05146533250808716, 0.026005398482084274, 0.002266065450385213, -0.006111375521868467, -0.033119164407253265, -0.012120427563786507, -0.00843415129929781, -0.016746997833251953, -0.049267347902059555, -0.05744088813662529, -0.02910573035478592, 0.011432568542659283, 0.05307585000991821, -0.05905316025018692, -0.030754156410694122, -0.034567058086395264, -0.019846905022859573, 0.030743084847927094, 0.023035865277051926, -0.06027939170598984, 0.0040876660495996475, -0.007583661004900932, 0.002123425714671612, -0.07355808466672897, 0.06422644108533859, 0.005389200057834387, -0.028129175305366516, -0.03527370095252991, -0.021665425971150398, 0.03672759234905243, 0.01706550270318985, -0.009984194301068783, 0.049799539148807526, 0.004659106954932213, 0.07101219147443771, 0.005705390125513077, 0.02750220149755478, -0.01568596623837948, -0.05005757510662079, -0.03791091591119766, 0.040813229978084564, -0.025766976177692413, 0.013720818795263767, 0.0155082568526268, -0.019026292487978935, -0.032099854201078415, 0.005623107310384512, 0.057537589222192764, 0.018222542479634285, 0.00525155384093523, -0.02607397362589836, 0.025915872305631638, -0.00906082522124052, 0.0030071723740547895, 0.013619986362755299, -0.003931813407689333, -0.05186471343040466, -0.024947889149188995, -0.0003525122592691332, 0.009031955152750015, 0.026341218501329422, 0.08291205018758774, -0.041362177580595016, -0.00904858112335205, 0.0835455060005188, 0.03625788912177086, 0.03762277960777283, -0.019954992458224297, 0.0034618794452399015, 0.03638172522187233, 0.027649005874991417, -0.027202486991882324, 0.0404076874256134, 0.018278997391462326, -0.008503874763846397, 0.03743427246809006, 0.06385989487171173, -0.009779311716556549, -0.006289753131568432, -0.04935026913881302, -0.04847075417637825, 0.06955418735742569, -0.026391368359327316, -0.012787261977791786, 0.03737074136734009, 0.05824631080031395, 0.028921646997332573, 0.028611958026885986, -0.0017660607118159533, -0.0709250420331955, 0.058319929987192154, 0.012849099934101105, 0.019263867288827896, 0.05863230302929878, -0.016387566924095154, 0.09101711958646774, -0.0019346330082044005, -0.03173515945672989, 0.0004489136626943946, -0.0460892990231514, -0.050950415432453156, -0.04434673860669136, -0.02451721765100956, 0.06629188358783722, -0.05355850234627724, 0.017387259751558304, 0.05673694610595703, 0.01800636760890484, 0.0561334565281868, 0.017673280090093613, 0.0011587373446673155, 0.018675142899155617, -0.0337134450674057, -0.04965946078300476, 0.024835821241140366, 0.03881043568253517, -0.043504517525434494, -0.010649759322404861, -0.00003251395537517965, -0.02065293677151203, 0.0048334491439163685, 0.002683827420696616, -0.014130051247775555, 0.024514202028512955, 0.03167888522148132, 0.04755116626620293, -0.0007915893802419305, 0.04823508858680725, -0.050129327923059464, 0.023711852729320526, 0.009643285535275936, -0.03889063373208046, -0.029627099633216858, -0.02296825684607029, 0.11150659620761871, 0.042311202734708786, -0.0005436671199277043, -0.06853799521923065, -0.011492094956338406, -0.0114006157964468, -0.02488831989467144, -0.023284444585442543, -0.03836152330040932, 0.0006195530877448618, -0.0021666092798113823, -0.015895318239927292, -0.03431001678109169, 0.013917066156864166, -0.046765245497226715, -0.013948053121566772, 0.06613657623529434, -0.013343531638383865, 0.051717594265937805, 0.016287898644804955, -0.035854361951351166, 0.011086962185800076, -0.005376453511416912, -0.07792022824287415, -0.009134233929216862, 0.00040461146272718906, -0.0055731660686433315, 0.051081620156764984, -0.011043368838727474, -0.054823581129312515, -0.038766805082559586, -0.025843864306807518, 0.016010502353310585, 0.07564396411180496, 0.04442942142486572, 0.019050665199756622, 0.06262347102165222, 0.013188745826482773, 0.022080913186073303, -0.021915074437856674, -0.06803591549396515, -0.06983941793441772, -0.026221567764878273, 0.020541442558169365, 0.03394928574562073, 0.04500430077314377, 0.043923888355493546, 0.0350341834127903, -0.016449928283691406, -0.01937047392129898, 0.006074492819607258, 0.06279393285512924, 0.008329895325005054, -0.03386383131146431, 0.010757465846836567, -0.011651657521724701, 0.06150292605161667, -0.03489632532000542, -0.030309446156024933, -0.00011321601050440222, -0.054642997682094574, 0.03971724584698677, -0.040696579962968826, -0.01621057838201523, 0.03137556463479996, -0.008775082416832447, 0.057085223495960236, -0.00476660393178463, 0.016841959208250046, 0.06540331989526749, 0.03271869942545891, 0.014075400307774544, 0.011798816733062267, 0.005149377975612879, 0.0062097120098769665, 0.01391491387039423, 0.018446821719408035, 0.05152888596057892, -0.01900613121688366, -0.028566988185048103, -0.021052340045571327, -0.01648763008415699, -0.05969415232539177, -0.2856099307537079, 0.02944767475128174, -0.029756003990769386, -0.03707757592201233, 0.02884332649409771, 0.006593251600861549, 0.015843471512198448, -0.01748768985271454, -0.03748228773474693, 0.008640656247735023, 0.004812910221517086, -0.03851449489593506, -0.03056594729423523, 0.031068505719304085, 0.009447087533771992, -0.007540872786194086, -0.03306219354271889, -0.03992460295557976, 0.02794978953897953, 0.057280488312244415, 0.01810372993350029, -0.07142500579357147, -0.0026435551699250937, 0.035458970814943314, 0.024465693160891533, 0.04795225337147713, -0.07985557615756989, 0.013362634927034378, -0.053597453981637955, -0.04015526548027992, 0.04232991859316826, -0.014346178621053696, 0.02173078991472721, -0.000444993085693568, -0.008864679373800755, -0.07999075204133987, 0.014312277548015118, -0.0012023824965581298, 0.030272264033555984, -0.011337456293404102, -0.03311506286263466, -0.026343654841184616, 0.010046016424894333, -0.0049964990466833115, 0.06427417695522308, 0.05307791382074356, -0.03932521492242813, -0.004528326448053122, 0.006195006426423788, 0.07341790944337845, -0.008376531302928925, -0.02587452344596386, -0.03251618519425392, 0.038713857531547546, -0.05634650960564613, -0.03904794901609421, 0.006566168740391731, -0.030142031610012054, -0.0647144541144371, -0.006977630313485861, 0.017507893964648247, -0.029066650196909904, 0.0019958941265940666, -0.08165939152240753, -0.038284871727228165, -0.040445663034915924, -0.060290005058050156, -0.005191875156015158, 0.03152785450220108, 0.03359697759151459, -0.04464210942387581, 0.013558858074247837, -0.03158452361822128, -0.11815434694290161, -0.008651443757116795, -0.00751773826777935, -0.012166986241936684, -0.00878200400620699, -0.007500431966036558, 0.02847086638212204, -0.06675691157579422, -0.043021995574235916, 0.005990571342408657, 0.03560953214764595, 0.03072606772184372, -0.021116798743605614, 0.009123709984123707, -0.048157379031181335, -0.0012410724302753806, -0.022007254883646965, 0.07184825092554092, -0.03508641570806503, -0.02718440257012844, 0.005759416148066521, -0.0305843073874712, 0.015228045172989368, 0.015199271962046623, 0.023691317066550255, 0.01499058399349451, 0.011006512679159641, -0.00023975579824764282, -0.03893706947565079, -0.0024618892930448055, -0.060363829135894775, 0.02967177703976631, -0.012271932326257229, -0.035109102725982666, -0.0117488456889987, 0.018785487860441208, 0.004670265596359968, 0.005255309399217367, -0.025340436026453972, 0.025777693837881088, -0.05611353740096092, -0.0196109376847744, -0.022420747205615044, 0.042776960879564285, 0.034482717514038086, 0.02483106590807438, 0.0007700492860749364, -0.04681233689188957, 0.03693472594022751, 0.002657610457390547, -0.0017862186068668962, -0.027013367041945457, -0.006902072578668594, -0.029095830395817757, -0.0033086310140788555, -0.0025715415831655264, 0.03188548982143402, -0.030497422441840172, 0.026858355849981308, 0.032799605280160904, -0.02472505159676075, 0.025252852588891983, -0.011437385343015194, -0.038254283368587494, -0.029237186536192894, 0.023432476446032524, 0.017894744873046875, -0.0030458637047559023, 0.012972950004041195, 0.01043135765939951, 0.023546723648905754, 0.043713346123695374, 0.009944251738488674, 0.04421691596508026, -0.006986914202570915, -0.0036950986832380295, -0.04833066463470459, 0.005783788859844208, -0.026936398819088936, 0.01183533575385809, -0.014760497026145458, 0.011866049841046333, -0.011626223102211952, 0.01960800029337406, 0.004170346539467573, -0.024827245622873306, -0.053554944694042206, 0.03690044581890106, -0.035188477486371994, -0.018735703080892563, -0.008284514769911766, -0.011438276618719101, 0.049538999795913696, -0.008858960121870041, 0.01048059482127428, 0.005427352152764797, -0.030452528968453407, 0.0015590154798701406, -0.02798977680504322, -0.006451861001551151, 0.016365183517336845, -0.05709586665034294, 0.011670644395053387, 0.019675742834806442, 0.038180842995643616, -0.01320081576704979, -0.02181069739162922, 0.004403820261359215, 0.0075445231050252914, 0.01878964900970459, 0.004569912329316139, 0.007874654605984688, 0.030327079817652702, -0.02939174883067608, 0.0010530571453273296, -0.01530840527266264, 0.00675421254709363, -0.02596132643520832, 0.016270238906145096, -0.04176637902855873, -0.02822897769510746, -0.011002760380506516, -0.0690615326166153, 0.0068923672661185265, 0.03256586194038391, -0.011841228231787682, -0.0077949450351297855, -0.03631792217493057, 0.011741253547370434, -0.0061776223592460155, -0.004121351055800915, 0.06555771082639694, -0.030823232606053352, 0.0000327062007272616, 0.015683962032198906, 0.022153526544570923, -0.005661822855472565, -0.0005604405887424946, -0.06505344808101654, 0.0019230657489970326, -0.0007298333221115172, -0.01555628702044487, -0.0019588307477533817, -0.0163579098880291, -0.030709197744727135, 0.01866907812654972, -0.010806465521454811, 0.055764805525541306, 0.018449142575263977, -0.04081199690699577, 0.008219441398978233, -0.016867052763700485, 0.02912106364965439, -0.013399931602180004, -0.033748820424079895, 0.05716670677065849, 0.0000027706005312211346, -0.008210623636841774, -0.045222800225019455, 0.04744434356689453, 0.028311550617218018, -0.01887018419802189, -0.005919078830629587, -0.062490835785865784, -0.010177732445299625, -0.025414831936359406, 0.04457220062613487, -0.005268729291856289, -0.004713708534836769, -0.023770933970808983, 0.014012239873409271, 0.0059746610932052135, 0.0338931567966938, 0.0033858187962323427, -0.02030142955482006, 0.018451783806085587, 0.053258225321769714, 0.005308866500854492, 0.05927276983857155, -0.0077899908646941185, -0.07753339409828186, 0.03170070797204971, -0.030864974483847618, -0.057431504130363464, -0.035973962396383286, -0.027904992923140526, 0.004871009383350611, -0.003073593135923147, 0.014341035857796669, -0.04738645628094673, 0.03321632742881775, 0.0208745114505291, 0.044696494936943054, 0.0835876315832138, 0.006863981951028109, 0.016292685642838478, -0.022746413946151733, 0.01205323077738285, -0.10227633267641068, 0.029492465779185295, 0.04806215316057205, -0.0015562463086098433, -0.011181963607668877, 0.02150694839656353, -0.022666627541184425, 0.04521438851952553, -0.06235843524336815, -0.025315528735518456, 0.056350190192461014, 0.01839272305369377, -0.006767504848539829, 0.015754787251353264, -0.015413293614983559, 0.0398370586335659, 0.059235088527202606, -0.05520259588956833, -0.004072436131536961, -0.019756924360990524, 0.04300638660788536, -0.013600816950201988, 0.018095742911100388, -0.033199988305568695, -0.027118105441331863, 0.05935008078813553, 0.02415635623037815, -0.008936754427850246, 0.01557355746626854, -0.02708512917160988, 0.044995926320552826, 0.01817350834608078, -0.04067213088274002, -0.022134996950626373, 0.01725359633564949, 0.046628423035144806, -0.08065894991159439, 0.09284189343452454, 0.026457032188773155, -0.004451977554708719, -0.040678102523088455, 0.06910337507724762, 0.0303901806473732, -0.02756984531879425, -0.030611252412199974, 0.03620168939232826, -0.04209952428936958, -0.009716035798192024, -0.0029453057795763016, -0.005984369199723005, -0.041767846792936325, 0.06266769021749496, -0.019416360184550285, 0.0043544163927435875, 0.07081528753042221, 0.0029653895180672407, -0.013645903207361698, 0.03900013864040375, 0.0947587788105011, 0.07079160213470459, 0.024606864899396896, -0.023408666253089905, 0.07087405771017075, -0.008535409346222878, -0.032660000026226044, -0.008312148973345757, -0.039801694452762604, -0.03262081742286682, -0.016162458807229996, 0.010512822307646275, 0.055570296943187714, 0.02002047374844551, 0.07021172344684601, -0.044734761118888855, 0.006708146072924137, -0.009437322616577148, 0.02660633623600006, 0.045496344566345215, 0.010018398985266685, 0.018992850556969643, 0.07177995890378952, -0.022629432380199432, -0.021913912147283554, 0.03744541481137276, -0.0033517691772431135, 0.009489183314144611, 0.045008137822151184, -0.015447787009179592, 0.0036066975444555283, -0.005727301351726055, 0.022965382784605026, 0.06342087686061859, -0.020774848759174347, -0.025993572548031807, -0.02723400853574276, 0.024711936712265015, -0.009175089187920094, 0.00628255307674408, -0.0003976764273829758, -0.004825359210371971, 0.014732949435710907, -0.06286711990833282, -0.026548542082309723, -0.0032752107363194227, -0.02884795516729355, 0.0266573503613472, -0.018327882513403893, 0.04301263391971588, 0.008475692011415958, -0.019318673759698868, -0.05072285607457161, -0.031232494860887527, -0.06849011778831482, -0.03802145645022392, -0.06880640983581543, -0.019619040191173553, -0.00394549360498786, 0.010839894413948059, -0.04546092823147774, -0.04830734059214592, -0.01242775283753872, 0.007216945290565491, 0.015900105237960815, -0.06322170794010162, -0.020427558571100235, 0.03219467028975487, 0.025396917015314102, 0.003965053707361221, 0.0049225459806621075, 0.04840776324272156, -0.024354251101613045, 0.0011122438590973616, -0.030315332114696503, 0.0010705603053793311, 0.07469798624515533, 0.01867729239165783, -0.004966917913407087, -0.0531141422688961, 0.012646222487092018, 0.037332404404878616, -0.013108030892908573, -0.08043711632490158, 0.00755855580791831, 0.04909514635801315, 0.031511448323726654, 0.02975425124168396, -0.030779846012592316, -0.01629413291811943, -0.03601241484284401, -0.041438356041908264, 0.018545959144830704, -0.024764658883213997, 0.02644762396812439, -0.026402505114674568, 0.05864724889397621, 0.030801743268966675, -0.00787314958870411, -0.029278231784701347, 0.0028374316170811653, -0.004493597894906998, -0.016903676092624664, -0.03277844935655594, -0.06587984412908554, -0.06662241369485855, -0.0729098692536354, -0.0070088570937514305, 0.03241279348731041, -0.04199317470192909, -0.03687276318669319, 0.027490435168147087, 0.04832813888788223, -0.00980439968407154, 0.03993035480380058, -0.018557894974946976, 0.0273995790630579, -0.040160637348890305, -0.01578647457063198, -0.010475867427885532, 0.028490860015153885, -0.009175730869174004, 0.028629077598452568, 0.019266581162810326, -0.013644428923726082, 0.0023062725085765123, -0.01219918392598629, 0.02711106650531292, 0.04538934305310249, 0.005151678342372179, 0.02282230742275715 ]
[ -0.08131945878267288, -0.03495939448475838, -0.01965724304318428, 0.022719936445355415, 0.0716046467423439, -0.03336532041430473, -0.022180700674653053, 0.03602141886949539, 0.036702610552310944, -0.002692952984943986, -0.0033193619456142187, -0.0743451863527298, -0.019065173342823982, -0.008555351756513119, 0.0231173075735569, -0.027174124494194984, -0.020809689536690712, -0.03038806840777397, -0.02554052509367466, 0.04670335724949837, 0.024927515536546707, -0.01629026047885418, -0.0509338341653347, -0.03191916644573212, 0.036775484681129456, 0.04369821771979332, 0.05870462581515312, -0.05336732417345047, -0.015779728069901466, -0.22359471023082733, -0.007424428593367338, -0.007848456501960754, 0.013907086104154587, -0.00528216315433383, -0.02340814843773842, 0.07098359614610672, -0.013180327601730824, 0.04608604684472084, -0.027494527399539948, 0.047568269073963165, 0.0059992787428200245, 0.041172854602336884, -0.031851060688495636, 0.03309665247797966, 0.0034365816973149776, 0.013164306059479713, -0.057952750474214554, 0.013479258865118027, 0.011261923238635063, 0.0129859559237957, -0.03102182224392891, 0.01143263652920723, -0.02506345324218273, -0.006933409254997969, 0.0019826977513730526, 0.004465341567993164, 0.03263358026742935, 0.06692269444465637, 0.05885539948940277, -0.0034107754472643137, -0.0013981536030769348, -0.02196802943944931, -0.144031822681427, 0.060087643563747406, -0.012973399832844734, 0.03722243010997772, -0.005160654429346323, 0.0016612607287243009, -0.05112714692950249, 0.06504862755537033, -0.014739946462213993, 0.010280268266797066, -0.009737309999763966, 0.06027836352586746, 0.01612677052617073, -0.017138885334134102, -0.023384563624858856, 0.016374120488762856, 0.024056944996118546, 0.010554153472185135, 0.0024113920517265797, 0.008740881457924843, -0.04531048610806465, -0.03559218347072601, -0.018488945439457893, -0.006816030014306307, -0.008454863913357258, 0.049147412180900574, 0.046848658472299576, 0.03362387791275978, 0.011373834684491158, -0.02861662395298481, 0.026960425078868866, -0.015235927887260914, -0.10323125869035721, -0.04852018877863884, 0.031747251749038696, 0.010550466366112232, 0.051466263830661774, 0.38424381613731384, -0.03634247928857803, 0.013906062580645084, 0.02027452364563942, 0.08598747104406357, 0.026310995221138, -0.012740298174321651, -0.025428997352719307, -0.050375692546367645, 0.011527213267982006, -0.006234294734895229, 0.04032586142420769, -0.001398979569785297, 0.04662125185132027, -0.06552278250455856, 0.003957406152039766, 0.02872462384402752, 0.008614210411906242, 0.04393454268574715, -0.010177304036915302, 0.0062429700046777725, -0.05826640874147415, -0.019168786704540253, 0.02257845178246498, -0.0010660955449566245, 0.014017985202372074, 0.016150783747434616, 0.05415540561079979, 0.04048262909054756, 0.050954774022102356, 0.027860447764396667, 0.07831007242202759, -0.044172219932079315, -0.08833156526088715, 0.012925231829285622, -0.019812658429145813, 0.002733169822022319, 0.02899951860308647, -0.005405812989920378, -0.010125859640538692, 0.004554358776658773, -0.038893844932317734, -0.05225908383727074, 0.08028805255889893, 0.004838531371206045, -0.03427169471979141, 0.13557641208171844, -0.03156663477420807, -0.02946968376636505, -0.027951911091804504, -0.04918661341071129, 0.01253590639680624, 0.003754755249246955, -0.005213303957134485, -0.07583736628293991, 0.0068260133266448975, 0.043472111225128174, 0.07598697394132614, -0.017177103087306023, -0.03471941128373146, -0.025316618382930756, -0.0241924449801445, -0.01961110532283783, -0.023861996829509735, 0.051851172000169754, 0.03947759047150612, -0.09769017994403839, -0.003463772125542164, 0.02219816856086254, 0.01454110536724329, -0.11448897421360016, 0.020965054631233215, -0.009268137626349926, 0.006835336796939373, -0.010922694578766823, 0.04918934032320976, -0.008357662707567215, -0.041231874376535416, 0.012397229671478271, 0.07320139557123184, 0.026702746748924255, -0.02177373878657818, 0.001948257558979094, -0.014375681057572365, 0.00033858465030789375, -0.015529340133070946, -0.03947841376066208, -0.050385043025016785, 0.02594345435500145, 0.002043520798906684, -0.035800203680992126, -0.005248917266726494, -0.0879039615392685, -0.07678362727165222, 0.052813977003097534, -0.016626399010419846, 0.00035895174369215965, -0.0023132888600230217, 0.017822135239839554, -0.008061811327934265, -0.028647037222981453, 0.017797406762838364, 0.02479637786746025, 0.009843669831752777, 0.047214314341545105, -0.026917017996311188, -0.004241486545652151, 0.0365155003964901, -0.048634376376867294, 0.06152665242552757, 0.05937448889017105, -0.0375179797410965, -0.027320213615894318, -0.024586642161011696, -0.02297750487923622, 0.0056419833563268185, -0.03670026361942291, -0.01850004866719246, -0.02775660902261734, -0.039965249598026276, 0.08729484677314758, -0.017912933602929115, -0.042992182075977325, 0.0006010927027091384, -0.3598959147930145, -0.03808891400694847, -0.0052039106376469135, 0.042085085064172745, 0.07395068556070328, -0.031124340370297432, -0.01949351653456688, 0.005913779605180025, 0.0195031575858593, 0.014624505303800106, 0.12991677224636078, 0.025451572611927986, -0.004935679491609335, -0.08457163721323013, 0.010863182134926319, 0.06282173097133636, -0.03177150338888168, 0.002849247772246599, -0.03699531778693199, -0.017170829698443413, -0.01048484817147255, -0.024815041571855545, -0.0457598902285099, -0.011256148107349873, -0.0088332649320364, -0.023037726059556007, 0.13716895878314972, -0.015446477569639683, 0.04701928049325943, -0.0392613522708416, 0.01660187728703022, -0.029676534235477448, -0.03499693050980568, -0.05884012579917908, 0.000351204740582034, -0.01996445097029209, 0.04301699995994568, 0.02481221593916416, -0.0017755560111254454, -0.05281674861907959, -0.07105658948421478, 0.023681195452809334, -0.017030034214258194, -0.012410415336489677, -0.0682973563671112, 0.006575827021151781, -0.009690853767096996, -0.03501741960644722, 0.008327141404151917, 0.06946441531181335, 0.0031351943034678698, 0.020882364362478256, 0.008281467482447624, 0.004742568824440241, 0.019495824351906776, -0.028414925560355186, -0.08676145225763321, -0.016498787328600883, -0.037600889801979065, -0.02244134247303009, -0.010151454247534275, 0.024144476279616356, 0.04829583317041397, -0.03861512616276741, 0.026280438527464867, 0.05104618892073631, 0.011249142698943615, -0.032032303512096405, 0.07968486100435257, 0.019748086109757423, 0.00724427355453372, 0.08712846785783768, -0.03433831036090851, 0.015490810386836529, 0.060180988162755966, 0.014236098155379295, 0.009119364432990551, 0.04833705723285675, 0.028332972899079323, 0.0003885469923261553, 0.04422784224152565, 0.011306257918477058, 0.028937602415680885, -0.008260124363005161, 0.0107781533151865, -0.018537109717726707, 0.013135471381247044, 0.014506706036627293, 0.04638001322746277, 0.024674303829669952, -0.02743532881140709, 0.0016569428844377398, 0.006419349927455187, -0.052557483315467834, 0.025009719654917717, 0.021243177354335785, -0.2710709571838379, 0.04821451008319855, 0.05497018247842789, 0.02892424538731575, -0.021119536831974983, -0.029332099482417107, 0.001432516030035913, -0.05069079250097275, -0.00014638682478107512, -0.024773482233285904, -0.018280260264873505, 0.07341878116130829, -0.00226410711184144, 0.004672505427151918, -0.008615597151219845, 0.017613407224416733, 0.05648062750697136, 0.015146655030548573, 0.025409197434782982, 0.003327104961499572, 0.019394073635339737, -0.03986908867955208, 0.15661035478115082, 0.01364745944738388, 0.026805173605680466, -0.021425915881991386, 0.0007377983420155942, 0.015539124608039856, 0.06358819454908371, 0.025737188756465912, -0.020497914403676987, -0.03552524745464325, 0.05018213763833046, -0.003976156935095787, 0.058289170265197754, -0.016881927847862244, -0.012255318462848663, 0.06073490157723427, 0.025841379538178444, -0.04149112477898598, 0.028980057686567307, -0.016923554241657257, -0.04598722979426384, -0.020878558978438377, 0.08874393999576569, 0.006681143771857023, -0.0067571112886071205, -0.01828886568546295, -0.05342691019177437, -0.01975829526782036, -0.041910573840141296, -0.05203985795378685, -0.04443049430847168, 0.00680209044367075, 0.01903049647808075, 0.0653911754488945, 0.009288203902542591, -0.0258799958974123, 0.01747703365981579, 0.0066949715837836266, 0.007204087916761637, -0.057797301560640335, 0.053130555897951126, -0.028455659747123718, 0.03071334771811962 ]
[ 0.013357852585613728, 0.026063645258545876, -0.03246399015188217, 0.009560555219650269, -0.03246242552995682, -0.012923254631459713, -0.020038720220327377, 0.00453509297221899, -0.011390866711735725, -0.029592793434858322, -0.03812246769666672, 0.03646114468574524, -0.0029005089309066534, -0.015118109062314034, 0.022280162200331688, -0.0058339545503258705, -0.015498547814786434, 0.00455402722582221, 0.054040051996707916, 0.004308674484491348, -0.0025083182845264673, 0.034037359058856964, 0.01065579429268837, 0.0322844572365284, -0.022031428292393684, 0.002648178953677416, -0.02569635398685932, 0.0010115195764228702, 0.0011023090919479728, -0.13654489815235138, -0.009867520071566105, -0.020177675411105156, -0.01166542898863554, 0.009126518853008747, -0.027452507987618446, 0.02817625366151333, -0.04289441928267479, -0.018580500036478043, -0.023476827889680862, 0.017235754057765007, 0.03776973858475685, -0.03434431552886963, -0.009753606282174587, 0.008480251766741276, -0.02988422103226185, 0.00311486329883337, -0.016321741044521332, -0.013397317379713058, -0.009418698027729988, -0.0013843928463757038, -0.031844571232795715, 0.004018452484160662, -0.01779455505311489, 0.0041399188339710236, -0.001428346149623394, -0.005197729915380478, -0.01385870948433876, 0.020770030096173286, 0.01603824272751808, -0.05243207886815071, 0.017129408195614815, 0.01493049692362547, -0.011201612651348114, -0.023506805300712585, -0.0296233631670475, -0.024781307205557823, 0.009044963866472244, -0.007704577408730984, 0.004636852536350489, -0.007252970244735479, -0.032123710960149765, 0.05844184011220932, -0.06918622553348541, -0.0030036442913115025, -0.032780565321445465, -0.016560841351747513, 0.00918382778763771, -0.01881003938615322, -0.010915499180555344, 0.00525521719828248, 0.005684154573827982, -0.007533336989581585, -0.015393801964819431, 0.05532200634479523, 0.01544494554400444, -0.006116804666817188, 0.00956828985363245, 0.010404897853732109, 0.0509464405477047, -0.016642369329929352, 0.011676473543047905, 0.0033547456841915846, 0.006276095286011696, 0.004926022607833147, -0.07199426740407944, -0.015219176188111305, -0.003987273667007685, -0.024793267250061035, -0.02375118061900139, 0.8357563614845276, 0.010308058932423592, -0.014064867980778217, 0.0008560679852962494, 0.03607136383652687, 0.04088173434138298, 0.03980536758899689, 0.015169787220656872, -0.02973213791847229, -0.0013935858150944114, -0.033606767654418945, 0.004788617137819529, 0.000799140427261591, 0.021790513768792152, 0.017643986269831657, 0.03676615282893181, 0.030788980424404144, 0.006433217786252499, 0.017294883728027344, 0.02042216621339321, 0.014894611202180386, -0.009239058941602707, -0.032370660454034805, 0.021278757601976395, -0.0011133956722915173, 0.001539127086289227, -0.17949071526527405, 0.01663653366267681, -6.902939964990184e-33, 0.02716897614300251, -0.016794903203845024, 0.04599274694919586, -0.032541099935770035, 0.036733999848365784, -0.003370806807652116, -0.013897438533604145, -0.01090437825769186, -0.00975264422595501, -0.02547258883714676, -0.028382187709212303, 0.01018215250223875, 0.023830847814679146, 0.0036609703674912453, 0.05099219083786011, -0.035311974585056305, 0.006875091232359409, 0.04986952617764473, 0.015778686851263046, 0.022063210606575012, 0.011139853857457638, -0.006801467388868332, 0.01908976584672928, 0.01488657295703888, 0.006652566138654947, -0.005848969332873821, 0.004644923377782106, 0.024312499910593033, -0.02747347392141819, -0.05303950235247612, -0.03468352556228638, -0.020021380856633186, -0.0019949977286159992, -0.013294192962348461, 0.03350395709276199, -0.026531580835580826, -0.03194113075733185, -0.0048220218159258366, -0.03507799655199051, -0.011256053112447262, -0.004305072594434023, 0.007604848127812147, -0.004558370914310217, -0.011284603737294674, -0.04307398572564125, -0.001768522895872593, -0.017352353781461716, 0.060910746455192566, -0.0014496088260784745, 0.06349179893732071, 0.016551747918128967, 0.049389470368623734, -0.022057557478547096, -0.055061548948287964, -0.027863947674632072, -0.015587057918310165, 0.013950799591839314, 0.030945787206292152, 0.022155070677399635, 0.025168126448988914, 0.03304355964064598, -0.030633388087153435, 0.002352324780076742, 0.019893281161785126, 0.007225154899060726, -0.01503025647252798, 0.03949140012264252, 0.029991714283823967, 0.033526916056871414, -0.0029909485019743443, -0.06672267615795135, 0.024462508037686348, -0.011365513317286968, -0.008232712745666504, 0.03038928657770157, -0.0464884415268898, 0.0007091015577316284, 0.010801803320646286, 0.031414829194545746, 0.014657975174486637, 0.024036478251218796, -0.026632679626345634, 0.008407154120504856, -0.014992092736065388, -0.04444488137960434, 0.00508535373955965, 0.05324661359190941, -0.008104532957077026, -0.04067661985754967, 0.021395232528448105, 0.02312966249883175, 0.00601373752579093, 0.0076905773021280766, 0.02329179272055626, -0.017361067235469818, 7.013083050978263e-33, -0.021567074581980705, -0.03632830083370209, 0.00439954549074173, 0.0015665710670873523, 0.018919238820672035, -0.00939453300088644, 0.03790498897433281, 0.014857626520097256, -0.042335644364356995, 0.03838964179158211, -0.01666315272450447, -0.012294728308916092, -0.025589387863874435, 0.02518370933830738, 0.09822387993335724, 0.008269363082945347, 0.020370176061987877, -0.003289958694949746, -0.006010614335536957, -0.01736639440059662, -0.008403405547142029, 0.015978001058101654, -0.007431258447468281, 0.0013180440291762352, 0.028781339526176453, 0.03095189668238163, 0.016872115433216095, -0.004869572352617979, -0.04342202842235565, -0.002648761263117194, -0.015600042417645454, -0.01801430433988571, -0.014913260005414486, -0.0019167197169736028, -0.014633873477578163, 0.033258818089962006, -0.0016520620556548238, 0.011103836819529533, 0.05510556325316429, -0.011669761501252651, 0.0682268962264061, 0.01978849619626999, 0.004537687636911869, 0.009919775649905205, -0.0017986188177019358, 0.029331587255001068, -0.021950773894786835, 0.009386539459228516, -0.026903389021754265, 0.02983124554157257, 0.005504163447767496, 0.0495772510766983, -0.0054213483817875385, 0.02326074056327343, 0.02551141381263733, 0.0032233705278486013, -0.03494748845696449, 0.03382690250873566, -0.03778541088104248, -0.02251187339425087, -0.03854193538427353, -0.01197035238146782, -0.008906407281756401, 0.057330403476953506, -0.011892431415617466, -0.016537806019186974, -0.029383346438407898, -0.05110560357570648, 0.011786766350269318, -0.0026745882350951433, -0.02074899524450302, -0.0286918543279171, -0.046042390167713165, 0.04764639958739281, -0.016110451892018318, -0.035189833492040634, -0.033773358911275864, 0.009183582849800587, -0.033968355506658554, 0.03802435100078583, 0.030663853511214256, -0.010762600228190422, 0.038713447749614716, -0.03419854864478111, -0.016962094232439995, 0.018659505993127823, -0.004647976718842983, 0.02060786634683609, 0.04513300582766533, 0.015478045679628849, 0.014448218047618866, -0.006572633050382137, -0.028102299198508263, -0.005866385065019131, 0.009017782285809517, -1.2556881756609073e-8, -0.01061242539435625, 0.014376203529536724, -0.013024709187448025, 0.028990650549530983, 0.019720926880836487, 0.029945455491542816, -0.0044656069949269295, -0.01668112352490425, -0.016301237046718597, 0.004756512586027384, 0.03182678669691086, -0.033074311912059784, -0.0076217493042349815, 0.02894321084022522, 0.024928925558924675, 0.0003523975610733032, -0.022370874881744385, -0.006143808364868164, 0.024574607610702515, -0.003812475362792611, -0.006696478463709354, 0.03390859439969063, -0.025379568338394165, 0.014092552475631237, 0.020680708810687065, 0.014568622224032879, 0.02829192951321602, -0.05747733637690544, 0.015696540474891663, -0.00817635003477335, 0.011857151985168457, -0.04120222479104996, -0.04114978387951851, -0.02586495317518711, -0.01968996413052082, -0.0026455186307430267, -0.0005602060700766742, -0.012417545542120934, 0.02671537548303604, 0.0408795066177845, -0.019859621301293373, 0.009534327313303947, 0.005465222988277674, -0.028367038816213608, 0.013904403895139694, 0.007170439697802067, -0.03207385540008545, -0.007160048931837082, 0.024987205862998962, -0.036850545555353165, 0.029860705137252808, 0.018094221130013466, -0.015563782304525375, 0.008474939502775669, 0.027300406247377396, 0.006314930506050587, -0.009803801774978638, -0.04682043194770813, -0.04519812390208244, -0.01239708997309208, 0.010082274675369263, 0.005032972898334265, -0.005195241421461105, -0.034470878541469574 ]
strava-calculating-similarity-two-runs
https://markhneedham.com/blog/2018/01/18/strava-calculating-similarity-two-runs
false
2018-01-29 06:51:10
Tensorflow: Kaggle Spooky Authors Bag of Words Model
[ "kaggle", "machine-learning", "tensorflow" ]
[ "Machine Learning" ]
I've been playing around with some Tensorflow tutorials recently and wanted to see if I could create a submission for https://www.kaggle.com/c/spooky-author-identification[Kaggle's Spooky Author Identification competition] that I've written about recently. My model is based on one from the https://github.com/tensorflow/tensorflow/blob/master/tensorflow/examples/learn/text_classification.py[text classification tutorial]. The tutorial shows how to create custom Estimators which we can learn more about in https://developers.googleblog.com/2017/12/creating-custom-estimators-in-tensorflow.html[a post on the Google Developers blog]. == Imports Let's get started. First, our imports: [source,python] ---- from __future__ import absolute_import from __future__ import division from __future__ import print_function import numpy as np import pandas as pd import tensorflow as tf from sklearn import preprocessing from sklearn.model_selection import train_test_split ---- We've obviously got Tensorflow, but also scikit-learn which we'll use to split our data into a training and test sets as well as convert the author names into numeric values. == Model building functions Next we'll create a function to create a bag of words model. This function calls another one that creates different +++<cite>+++EstimatorSpec+++</cite>+++s depending on the context it's called from. [source,python] ---- EMBEDDING_SIZE = 50 MAX_LABEL = 3 WORDS_FEATURE = 'words' # Name of the input words feature. def bag_of_words_model(features, labels, mode): bow_column = tf.feature_column.categorical_column_with_identity(WORDS_FEATURE, num_buckets=n_words) bow_embedding_column = tf.feature_column.embedding_column(bow_column, dimension=EMBEDDING_SIZE) bow = tf.feature_column.input_layer(features, feature_columns=[bow_embedding_column]) logits = tf.layers.dense(bow, MAX_LABEL, activation=None) return create_estimator_spec(logits=logits, labels=labels, mode=mode) def create_estimator_spec(logits, labels, mode): predicted_classes = tf.argmax(logits, 1) if mode == tf.estimator.ModeKeys.PREDICT: return tf.estimator.EstimatorSpec( mode=mode, predictions={ 'class': predicted_classes, 'prob': tf.nn.softmax(logits), 'log_loss': tf.nn.softmax(logits), }) loss = tf.losses.sparse_softmax_cross_entropy(labels=labels, logits=logits) if mode == tf.estimator.ModeKeys.TRAIN: optimizer = tf.train.AdamOptimizer(learning_rate=0.01) train_op = optimizer.minimize(loss, global_step=tf.train.get_global_step()) return tf.estimator.EstimatorSpec(mode, loss=loss, train_op=train_op) eval_metric_ops = { 'accuracy': tf.metrics.accuracy(labels=labels, predictions=predicted_classes) } return tf.estimator.EstimatorSpec(mode=mode, loss=loss, eval_metric_ops=eval_metric_ops) ---- == Loading data Now we're ready to load our data. [source,python] ---- Y_COLUMN = "author" TEXT_COLUMN = "text" le = preprocessing.LabelEncoder() train_df = pd.read_csv("train.csv") X = pd.Series(train_df[TEXT_COLUMN]) y = le.fit_transform(train_df[Y_COLUMN].copy()) X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.33, random_state=42) ---- The only interesting thing here is the +++<cite>+++LabelEncoder+++</cite>+++. We'll keep that around as we'll use it later as well. == Transform documents At the moment our training and test dataframes contain text, but Tensorflow works with vectors so we need to convert our data into that format. We can use the +++<cite>+++http://tflearn.org/data_utils/#vocabulary-processor[VocabularyProcessor]+++</cite>+++ to do this: [source,python] ---- MAX_DOCUMENT_LENGTH = 100 vocab_processor = tf.contrib.learn.preprocessing.VocabularyProcessor(MAX_DOCUMENT_LENGTH) X_transform_train = vocab_processor.fit_transform(X_train) X_transform_test = vocab_processor.transform(X_test) X_train = np.array(list(X_transform_train)) X_test = np.array(list(X_transform_test)) n_words = len(vocab_processor.vocabulary_) print('Total words: %d' % n_words) ---- == Training our model Finally we're ready to train our model! We'll call the Bag of Words model we created at the beginning and build a train input function where we pass in the training arrays that we just created: [source,python] ---- model_fn = bag_of_words_model classifier = tf.estimator.Estimator(model_fn=model_fn) train_input_fn = tf.estimator.inputs.numpy_input_fn( x={WORDS_FEATURE: X_train}, y=y_train, batch_size=len(X_train), num_epochs=None, shuffle=True) classifier.train(input_fn=train_input_fn, steps=100) ---- == Evaluating our model Let's see how our model fares. We'll call the +++<cite>+++evaluate+++</cite>+++ function with our test data: [source,python] ---- test_input_fn = tf.estimator.inputs.numpy_input_fn( x={WORDS_FEATURE: X_test}, y=y_test, num_epochs=1, shuffle=False) scores = classifier.evaluate(input_fn=test_input_fn) print('Accuracy: {0:f}, Loss {1:f}'.format(scores['accuracy'], scores["loss"])) ---- [source,text] ---- INFO:tensorflow:Saving checkpoints for 1 into /var/folders/k5/ssmkw9vd2yb3h5wnqlxnqbkw0000gn/T/tmpb6v4rrrn/model.ckpt. INFO:tensorflow:loss = 1.0888131, step = 1 INFO:tensorflow:Saving checkpoints for 100 into /var/folders/k5/ssmkw9vd2yb3h5wnqlxnqbkw0000gn/T/tmpb6v4rrrn/model.ckpt. INFO:tensorflow:Loss for final step: 0.18394235. INFO:tensorflow:Starting evaluation at 2018-01-28-22:41:34 INFO:tensorflow:Restoring parameters from /var/folders/k5/ssmkw9vd2yb3h5wnqlxnqbkw0000gn/T/tmpb6v4rrrn/model.ckpt-100 INFO:tensorflow:Finished evaluation at 2018-01-28-22:41:34 INFO:tensorflow:Saving dict for global step 100: accuracy = 0.8246673, global_step = 100, loss = 0.44942895 Accuracy: 0.824667, Loss 0.449429 ---- Not too bad! I managed to get a log loss score of ~ 0.36 with a scikit-learn ensemble model but it is better than some of my first attempts. == Generating predictions I wanted to see how it'd do against Kaggle's test dataset so I generated a CSV file with predictions: [source,python] ---- test_df = pd.read_csv("test.csv") X_test = pd.Series(test_df[TEXT_COLUMN]) X_test = np.array(list(vocab_processor.transform(X_test))) test_input_fn = tf.estimator.inputs.numpy_input_fn( x={WORDS_FEATURE: X_test}, num_epochs=1, shuffle=False) predictions = classifier.predict(test_input_fn) y_predicted_classes = np.array(list(p['prob'] for p in predictions)) output = pd.DataFrame(y_predicted_classes, columns=le.classes_) output["id"] = test_df["id"] output.to_csv("output.csv", index=False, float_format='%.6f') ---- Here we go: image::{{<siteurl>}}/uploads/2018/01/2018-01-29_06-44-30.png[2018 01 29 06 44 30,456] The score is roughly the same as we saw with the test split of the training set. If you want to see all the code in one place I've https://github.com/mneedham/spooky-author-identification/blob/master/tf_test.py[put it on my Spooky Authors GitHub repository].
In this mini tutorial you can learn how to create a Tensorflow Bag of Words model for Kaggle'e Spooky Authors halloween competition.
null
[ -0.00641815597191453, -0.039527278393507004, -0.005674878600984812, 0.03888597711920738, 0.08125004917383194, 0.02287774346768856, 0.016873955726623535, 0.019120149314403534, 0.018025869503617287, 0.014583874493837357, -0.020788736641407013, 0.0005069779581390321, -0.057364221662282944, 0.03401870280504227, -0.04698244854807854, 0.06648978590965271, 0.07406259328126907, 0.005687716417014599, 0.02175987884402275, 0.018860694020986557, 0.039549749344587326, 0.02279938943684101, 0.008613395504653454, 0.01697085238993168, 0.03336983546614647, 0.0043074083514511585, 0.014320388436317444, 0.0025611836463212967, -0.028435034677386284, 0.00891103595495224, 0.02299153245985508, -0.0001424897782271728, -0.0063675385899841785, -0.030167419463396072, 0.030845001339912415, 0.014815913513302803, -0.04805774241685867, 0.027668509632349014, 0.00209646113216877, 0.025373335927724838, -0.07623074948787689, 0.03942699357867241, -0.04545019194483757, 0.021150607615709305, -0.0685911774635315, 0.00018880142306443304, -0.0517827644944191, 0.0037293967325240374, 0.014769677072763443, -0.030868923291563988, -0.0689038634300232, 0.04242375120520592, -0.016404040157794952, -0.03599117696285248, 0.0045651658438146114, 0.031531162559986115, 0.025201547890901566, -0.0755646824836731, 0.03711899369955063, -0.012203486636281013, 0.010970464907586575, 0.005890307482331991, -0.006334473844617605, 0.04065583273768425, -0.005339840427041054, -0.011631104163825512, -0.015682507306337357, 0.03860118240118027, -0.039387065917253494, 0.024397773668169975, -0.012950106523931026, 0.020334571599960327, -0.0013787791831418872, -0.001561171025969088, -0.025555355474352837, -0.02095683291554451, 0.021839898079633713, 0.07668034732341766, 0.04249183088541031, 0.03316669911146164, 0.0060859015211462975, -0.04686073958873749, 0.03884696960449219, 0.005795889999717474, -0.018303459510207176, -0.03882838785648346, -0.05927780643105507, -0.03634241595864296, -0.061250731348991394, 0.06127137318253517, 0.0015531691024079919, -0.07744438946247101, 0.005645499564707279, -0.009251640178263187, -0.013639136217534542, 0.024947255849838257, 0.017760885879397392, -0.02761729434132576, -0.018134048208594322, -0.0029655410908162594, -0.02135823853313923, -0.03137366101145744, -0.005728906951844692, 0.027319731190800667, -0.06923083961009979, -0.020413342863321304, -0.005912118591368198, -0.02668023481965065, 0.0006299680098891258, 0.004440476652234793, -0.007039846386760473, 0.004114064853638411, -0.031203938648104668, -0.010560119524598122, -0.07208021730184555, 0.040492475032806396, 0.0038647116161882877, -0.001439447165466845, -0.022788232192397118, 0.007869378663599491, 0.06381328403949738, 0.022896429523825645, -0.023224685341119766, 0.05362221598625183, 0.012680063024163246, 0.035729747265577316, 0.005374516826122999, 0.06847050040960312, -0.010817461647093296, -0.07800750434398651, -0.03498152643442154, 0.010467917658388615, -0.019782165065407753, 0.013497276231646538, 0.015555310063064098, -0.04634615406394005, -0.023152004927396774, 0.019602131098508835, 0.05219472572207451, 0.030705157667398453, 0.02774081379175186, 0.008596197701990604, -0.0054052481427788734, -0.02866780199110508, 0.028682131320238113, 0.014793429523706436, -0.01111341081559658, -0.02305907942354679, -0.03871508315205574, 0.035078730434179306, -0.00996254850178957, -0.005327627062797546, 0.037079714238643646, -0.03539453446865082, 0.024917161092162132, 0.0643499419093132, 0.031055158004164696, 0.010957491584122181, 0.0030236318707466125, 0.016790024936199188, 0.06324505060911179, 0.032491497695446014, -0.02403600700199604, 0.05047307163476944, -0.003318607108667493, -0.04046235978603363, 0.03959432616829872, 0.03368639200925827, -0.033239323645830154, -0.014961506240069866, -0.03901725262403488, -0.037361856549978256, 0.055887870490550995, -0.022774845361709595, 0.016905371099710464, 0.025569356977939606, 0.06836546957492828, 0.02826305665075779, 0.06082206964492798, 0.0046743606217205524, -0.07568052411079407, 0.06125589460134506, 0.026744753122329712, 0.02182072587311268, 0.041346676647663116, -0.026805805042386055, 0.08479554206132889, 0.02094266377389431, 0.01432366669178009, 0.03370567411184311, -0.06903120875358582, -0.056360140442848206, -0.031500134617090225, 0.0029854588210582733, 0.055291805416345596, -0.04044266417622566, 0.015845082700252533, 0.10232290625572205, 0.0007009818800725043, 0.00926508940756321, 0.032483138144016266, -0.02276829071342945, -0.010736379772424698, -0.013659789226949215, -0.04464880749583244, 0.02658016048371792, 0.0026812180876731873, -0.025548096746206284, -0.02336159348487854, 0.01839386112987995, 0.005008250009268522, -0.016082825139164925, 0.018923670053482056, -0.008532050997018814, 0.04049798101186752, 0.04633338004350662, 0.032172415405511856, 0.0015102714532986283, 0.039354484528303146, -0.03687193617224693, 0.03825420141220093, 0.0009787346934899688, -0.021077604964375496, -0.030860107392072678, -0.017967212945222855, 0.14079368114471436, 0.054821815341711044, -0.021030204370617867, -0.0523371547460556, -0.013331927359104156, -0.0019601581152528524, -0.053906895220279694, 0.041753776371479034, 0.0012934973929077387, -0.001230926951393485, -0.0017782725626602769, -0.02398301288485527, -0.033038429915905, 0.029492653906345367, -0.033577658236026764, -0.00863246712833643, 0.09732072055339813, -0.048899102956056595, 0.05031757429242134, -0.009006022475659847, 0.01059861108660698, 0.006121699698269367, 0.006217533256858587, -0.04089197888970375, -0.010545375756919384, 0.03166985884308815, -0.003589604515582323, 0.03090699017047882, -0.03772664815187454, -0.03921942412853241, -0.023006314411759377, -0.07542920112609863, 0.02954726852476597, 0.05556860566139221, 0.05120605602860451, -0.007952810265123844, 0.07440892606973648, -0.03737429529428482, 0.03542108088731766, -0.021547364071011543, -0.04434759169816971, -0.019018342718482018, -0.05666065216064453, 0.022693809121847153, 0.039405569434165955, 0.0422491617500782, 0.0013970944564789534, 0.005630539730191231, 0.006173738744109869, 0.001895481371320784, 0.0032638413831591606, 0.027221573516726494, -0.00035388334072194993, -0.03759366646409035, -0.06088586524128914, -0.0186428502202034, 0.034680046141147614, -0.021736670285463333, -0.02511107176542282, 0.008523364551365376, -0.07179989665746689, 0.01716906763613224, -0.05865073204040527, -0.027989985421299934, -0.01693766564130783, -0.0018566654762253165, 0.05518462136387825, 0.027465377002954483, 0.012611210346221924, 0.012930971570312977, 0.056221283972263336, 0.00012239714851602912, 0.03232294321060181, 0.012787033803761005, 0.05488390475511551, 0.0016264221630990505, 0.010448545217514038, 0.037497375160455704, 0.011026584543287754, -0.031001899391412735, -0.04678206518292427, 0.00969109870493412, -0.009043894708156586, -0.2943283021450043, 0.022164352238178253, 0.006442411802709103, -0.020054055377840996, 0.012350846081972122, -0.05238594859838486, 0.015056136064231396, -0.0255360659211874, -0.011923969723284245, -0.00010300612484570593, -0.05127519369125366, -0.01644786447286606, -0.01838715188205242, 0.052975837141275406, -0.004594875033944845, 0.010298171080648899, -0.006491858512163162, -0.03771558403968811, 0.015336793847382069, 0.05538935214281082, 0.00015813227219041437, -0.05088886246085167, -0.020727330818772316, 0.05123624950647354, 0.008258005604147911, 0.06256087869405746, -0.08754928410053253, 0.02012590877711773, -0.043551597744226456, -0.010594873689115047, -0.014497597701847553, -0.0256882905960083, -0.0231059230864048, 0.0007434079889208078, 0.005569317378103733, -0.03331442549824715, 0.01541281770914793, 0.01923344098031521, 0.012344887480139732, 0.017098024487495422, -0.019057374447584152, -0.04644555598497391, -0.0055823419243097305, -0.01012969296425581, 0.08176932483911514, -0.007208480965346098, -0.044868454337120056, 0.012953939847648144, -0.03975103795528412, 0.0664510577917099, -0.050819557160139084, -0.058353181928396225, -0.012948143295943737, 0.03684588521718979, -0.023130251094698906, -0.014551175758242607, -0.001609262777492404, -0.0011125231394544244, -0.011176013387739658, -0.02909339964389801, -0.03421258553862572, -0.02883211337029934, -0.002203269861638546, -0.07121775299310684, -0.006034955848008394, -0.03471910208463669, -0.06421621888875961, -0.01993377134203911, 0.04185406491160393, 0.047223787754774094, -0.05214730277657509, 0.025561081245541573, -0.019510509446263313, -0.1159675195813179, 0.015974052250385284, -0.027828052639961243, 0.017008086666464806, 0.0014045118587091565, 0.042181164026260376, 0.03003932721912861, -0.05712422728538513, -0.08916384726762772, 0.044366270303726196, -0.019351860508322716, -0.00004438542600837536, -0.005294719245284796, 0.020064707845449448, -0.015261038206517696, -0.017457464709877968, -0.025317225605249405, 0.04831123352050781, -0.011430680751800537, 0.008509955368936062, -0.007511395029723644, -0.025132765993475914, 0.03050563670694828, 0.03371959924697876, 0.01825515553355217, -0.00756086828187108, 0.04727590084075928, 0.01877431571483612, -0.053886085748672485, -0.05822831392288208, -0.05303945764899254, -0.016007913276553154, 0.008904830552637577, -0.061725009232759476, 0.008312775753438473, 0.06393493711948395, -0.007793968543410301, -0.023707693442702293, -0.02023131027817726, 0.003299980191513896, -0.04413601756095886, -0.03260105475783348, -0.016373101621866226, 0.016108116135001183, 0.00030131576932035387, -0.012879002839326859, -0.016439152881503105, -0.05121932178735733, 0.032337188720703125, 0.00377663248218596, -0.013663477264344692, -0.024487106129527092, -0.03551967814564705, 0.0038746902719140053, -0.03066348470747471, 0.009425552561879158, -0.032728660851716995, -0.02348444238305092, 0.014230332337319851, 0.018601762130856514, -0.030015353113412857, 0.047029394656419754, -0.009157495573163033, -0.03108205832540989, -0.02729053981602192, 0.03077751398086548, 0.017654703930020332, -0.008838272653520107, -0.016002289950847626, 0.004246820695698261, -0.003176707774400711, 0.06199024245142937, 0.012954586185514927, 0.020351678133010864, 0.015591064468026161, 0.010312194004654884, 0.028517624363303185, 0.032292649149894714, -0.01367462333291769, -0.01864667423069477, -0.017232656478881836, -0.028537249192595482, 0.017323758453130722, 0.03293059766292572, -0.014083191752433777, -0.004498778376728296, -0.02314874902367592, 0.033437032252550125, -0.01681174710392952, -0.01497038546949625, -0.014758553355932236, 0.00820494256913662, 0.049612581729888916, -0.011307797394692898, 0.012728004716336727, 0.010311977937817574, 0.016758833080530167, 0.017697103321552277, -0.0007904234225861728, -0.0164345633238554, -0.00028945942176505923, -0.020069709047675133, -0.002108931075781584, 0.03476947918534279, 0.0389789380133152, 0.010623169131577015, 0.022330116480588913, 0.0037386692129075527, -0.010212564840912819, 0.01675860583782196, 0.013000212609767914, 0.05263827368617058, 0.06466109305620193, -0.017573295161128044, -0.005892093759030104, -0.034906189888715744, -0.00889599695801735, -0.05211317539215088, 0.013984478078782558, 0.006107245106250048, -0.02047179825603962, -0.024387482553720474, -0.0683848038315773, 0.009892965666949749, 0.03644507750868797, -0.00016126359696500003, -0.025981014594435692, -0.020259562879800797, -0.006778012495487928, -0.021457811817526817, 0.045505210757255554, 0.07822902500629425, -0.06444253027439117, 0.001065954566001892, -0.017859995365142822, 0.008365245535969734, -0.018082205206155777, 0.03673601895570755, -0.033513545989990234, -0.03309483081102371, -0.030299585312604904, 0.01316944882273674, -0.042614519596099854, -0.03809197247028351, -0.030074404552578926, 0.03901667147874832, -0.002263948554173112, 0.017198894172906876, -0.018817050382494926, 0.02721135877072811, -0.017694534733891487, -0.03834196925163269, 0.015375787392258644, 0.011868325062096119, 0.031482189893722534, 0.007976789027452469, -0.028836999088525772, 0.026947513222694397, -0.03839419037103653, 0.031655602157115936, 0.03394600749015808, -0.023633670061826706, -0.02021797001361847, -0.03594224527478218, 0.014838125556707382, 0.0033126582857221365, 0.03652966767549515, 0.016273025423288345, 0.0008201855816878378, -0.0595734640955925, 0.012524261139333248, -0.04206011816859245, 0.02380431443452835, 0.011255817487835884, -0.006972537841647863, 0.02248445525765419, 0.043907903134822845, 0.0036208699457347393, 0.0422070175409317, -0.020864788442850113, -0.016955746337771416, 0.05210048332810402, -0.042402125895023346, -0.03183779865503311, -0.014702824875712395, -0.043178629130125046, 0.03419492021203041, 0.026544101536273956, 0.02733488939702511, -0.06699278205633163, 0.060129664838314056, 0.02197202853858471, 0.018231626600027084, 0.034022700041532516, 0.009947375394403934, 0.029393978416919708, -0.015921706333756447, -0.022117380052804947, -0.09320414811372757, -0.01579618640244007, 0.04774279147386551, -0.017999565228819847, -0.008361998945474625, 0.0021155322901904583, -0.028245195746421814, 0.04479678347706795, -0.060922298580408096, -0.03180668503046036, 0.04111970588564873, -0.0033594362903386354, -0.0007741830195300281, 0.00463091442361474, -0.03875981271266937, 0.025529148057103157, 0.028410179540514946, -0.042600248008966446, -0.02836756594479084, -0.02334420755505562, 0.0645979642868042, -0.04445952922105789, -0.0025272062048316, -0.015449200756847858, -0.00635670218616724, 0.07788611203432083, 0.03952177241444588, 0.028852397575974464, 0.03688019886612892, -0.00271532847546041, 0.04486268758773804, 0.020021848380565643, 0.003855537623167038, 0.010844176635146141, 0.015410971827805042, -0.0076230731792747974, -0.07198570668697357, 0.0536181814968586, 0.023121606558561325, -0.009234345518052578, -0.0427720807492733, 0.059370122849941254, 0.0063740103505551815, -0.03676117956638336, -0.0704905241727829, 0.019405361264944077, -0.05825534462928772, -0.011534465476870537, -0.028388256207108498, -0.015871919691562653, -0.031140482053160667, 0.048428725451231, 0.017177363857626915, -0.03530743718147278, 0.059814609587192535, -0.04271424561738968, -0.010665331967175007, 0.013259156607091427, 0.05850137397646904, 0.07042050361633301, 0.08389222621917725, -0.005938936956226826, 0.0428004190325737, -0.0025629079900681973, -0.05507031828165054, 0.017730772495269775, -0.005396368447691202, -0.0044039348140358925, -0.017210176214575768, 0.00034714717185124755, 0.0675770491361618, -0.008023177273571491, 0.04693866893649101, -0.04453776776790619, 0.02649933099746704, -0.013624805957078934, 0.04219513013958931, -0.009977757930755615, 0.05380325764417648, 0.011965439654886723, 0.004981182981282473, -0.009458138607442379, -0.050519902259111404, 0.00679726293310523, -0.0006207900587469339, 0.0014171110233291984, 0.028383344411849976, -0.028210118412971497, 0.012921205721795559, -0.0025311140343546867, 0.04406614601612091, 0.08659360557794571, -0.02787064015865326, -0.007955209352076054, 0.014793011359870434, 0.02002626098692417, -0.015455195680260658, 0.04398556798696518, -0.014766900800168514, -0.0008928918396122754, -0.011039870791137218, -0.05007675290107727, -0.006323275621980429, -0.017375854775309563, -0.021229803562164307, 0.012211186811327934, -0.033142756670713425, -0.004743360914289951, 0.036857590079307556, -0.0056188711896538734, -0.045717742294073105, -0.054170913994312286, -0.035466812551021576, -0.04728500172495842, -0.06870193034410477, -0.026048168540000916, 0.013484018854796886, -0.003929708153009415, -0.0516350120306015, -0.027075162157416344, -0.029344698414206505, -0.013538806699216366, 0.04792729392647743, -0.0200167428702116, -0.003705294569954276, 0.005439390894025564, 0.014951548539102077, -0.009615877643227577, 0.023618051782250404, 0.036668963730335236, 0.006399746518582106, -0.020174823701381683, 0.021620940417051315, 0.030857011675834656, 0.04400744289159775, 0.039148446172475815, 0.018507463857531548, -0.09392689913511276, 0.00010091614967677742, -0.006326563656330109, -0.014321480877697468, -0.08615852147340775, 0.01603385992348194, 0.057471152395009995, 0.014421448111534119, 0.029724441468715668, -0.005883762147277594, 0.01894870586693287, -0.05289914831519127, -0.017585208639502525, -0.021435370668768883, 0.018055664375424385, 0.04528336226940155, -0.010027225129306316, 0.06904911994934082, 0.04746731370687485, -0.019797371700406075, -0.023822348564863205, -0.032092075794935226, -0.004809440113604069, -0.0023662508465349674, -0.04964643344283104, -0.026144985109567642, -0.05282329022884369, -0.05188404768705368, 0.019613005220890045, 0.027833107858896255, -0.04097181558609009, -0.00010496107279323041, 0.020604383200407028, 0.001368550001643598, -0.022485796362161636, 0.04288064315915108, -0.0548747256398201, 0.00201559835113585, -0.022473473101854324, -0.02397345006465912, -0.046078264713287354, 0.060208115726709366, 0.015074053779244423, 0.02259870432317257, 0.001273998524993658, -0.04902997985482216, -0.028487946838140488, -0.008573539555072784, 0.04273233935236931, 0.03713607043027878, -0.013371647335588932, 0.037854406982660294 ]
[ -0.06933316588401794, -0.03035561740398407, -0.02380061335861683, 0.007237259764224291, 0.03048490732908249, -0.04351038113236427, -0.0020072900224477053, 0.025012636557221413, 0.016474761068820953, 0.0029427853878587484, -0.010860607959330082, -0.08330310136079788, -0.0277814120054245, -0.01611926779150963, 0.0818679928779602, 0.003963951952755451, -0.00914966780692339, -0.0464915856719017, -0.02353576198220253, 0.0028243614360690117, 0.02999091148376465, -0.021503198891878128, -0.0186716727912426, -0.041335899382829666, -0.01748022437095642, 0.029871700331568718, 0.0212191604077816, -0.03038908541202545, -0.008579842746257782, -0.20015659928321838, 0.04068896919488907, 0.004255860112607479, 0.03554941713809967, -0.009389138780534267, 0.0209223460406065, 0.04723380133509636, -0.0002244221541332081, 0.03622838109731674, -0.017010845243930817, 0.03606712073087692, 0.011318513192236423, 0.000473658466944471, -0.044925473630428314, -0.0319003164768219, 0.1035519614815712, -0.020498674362897873, -0.019770575687289238, -0.040207285434007645, -0.05590544641017914, 0.015234469436109066, -0.037040285766124725, -0.026709401980042458, -0.028712943196296692, -0.0013898909091949463, 0.01899770274758339, 0.001200304483063519, 0.0470125786960125, 0.06367674469947815, 0.06215144693851471, 0.03106633573770523, 0.0041953702457249165, 0.019106056541204453, -0.14229130744934082, 0.0885256826877594, 0.010250028222799301, 0.059371381998062134, -0.04850172996520996, -0.05232594534754753, 0.011729811318218708, 0.07469017058610916, 0.013994756154716015, -0.006222537253051996, -0.020709766075015068, 0.046812575310468674, 0.010373442433774471, 0.006940427701920271, 0.038516949862241745, 0.032794442027807236, 0.07732068747282028, -0.023770177736878395, -0.023407652974128723, 0.038066018372774124, -0.01681508682668209, -0.03423340618610382, -0.018214968964457512, 0.028954243287444115, 0.010038673877716064, 0.04996712878346443, 0.008089475333690643, 0.014276491478085518, 0.03131336718797684, -0.02471325732767582, 0.007994545623660088, 0.04186820983886719, -0.05736570805311203, -0.03446954861283302, 0.006686091423034668, 0.014837762340903282, -0.04015543684363365, 0.38992395997047424, -0.014159370213747025, -0.026188567280769348, 0.02267552725970745, 0.05967837944626808, 0.003678030101582408, -0.017022252082824707, -0.000045441145630320534, -0.04893871396780014, -0.01139353308826685, -0.03189140930771828, -0.016272269189357758, 0.011111144907772541, 0.03784995526075363, -0.07444560527801514, 0.030651474371552467, 0.0032655938994139433, 0.0012723793042823672, 0.0077977366745471954, -0.012135742232203484, 0.010246205143630505, -0.009187002666294575, -0.006732133682817221, 0.02067014016211033, 0.013239541091024876, 0.014966967515647411, 0.025952402502298355, 0.007623334415256977, 0.07711830735206604, 0.04327337071299553, 0.02138608507812023, 0.03379186987876892, -0.000847891962621361, -0.10898435115814209, -0.005109790246933699, 0.023159466683864594, 0.003858257783576846, 0.005535054486244917, -0.011508255265653133, 0.0015957677969709039, 0.0239492766559124, -0.0018598174210637808, 0.005854225717484951, 0.043818820267915726, 0.005892604123800993, -0.03224487975239754, 0.1421305239200592, -0.03789311647415161, -0.019177019596099854, -0.0550965815782547, -0.06012631580233574, 0.01303652673959732, 0.0382005013525486, -0.027388237416744232, -0.04349289461970329, 0.035441089421510696, 0.044525571167469025, 0.09301212430000305, -0.03169350326061249, -0.10051055997610092, -0.006944649387151003, -0.018648607656359673, -0.05027264729142189, -0.02548782341182232, 0.013918023556470871, 0.035319097340106964, -0.11093387752771378, -0.03409392386674881, 0.014296121895313263, 0.014485792256891727, -0.047239407896995544, 0.020689958706498146, -0.02848789282143116, -0.045213937759399414, 0.015850966796278954, 0.018753360956907272, -0.016285723075270653, -0.04748731479048729, 0.008176128380000591, 0.05824008211493492, 0.002872902899980545, -0.009539630264043808, -0.0058012125082314014, -0.017279719933867455, 0.004474144894629717, -0.06488873064517975, -0.08531934022903442, -0.03275636211037636, -0.03175700828433037, -0.04543335735797882, -0.016086872667074203, -0.019835438579320908, 0.019546352326869965, -0.06581970304250717, 0.05744406208395958, -0.039851609617471695, -0.025615422055125237, 0.0441298671066761, 0.017517371103167534, -0.034638870507478714, -0.04304962977766991, -0.025196842849254608, 0.06361278891563416, -0.006025586277246475, -0.010158451274037361, -0.06605455279350281, 0.0307188518345356, 0.031309738755226135, -0.008328204043209553, 0.06620916724205017, 0.03669873625040054, -0.019236896187067032, -0.028452923521399498, -0.0210577342659235, 0.0073181274347007275, -0.0390695258975029, 0.004857450723648071, -0.012499737553298473, 0.007595167960971594, -0.005558711942285299, 0.03548409789800644, -0.01250816322863102, -0.0406041219830513, -0.026035239920020103, -0.35667839646339417, -0.030367454513907433, 0.000979611766524613, -0.03100128285586834, 0.02845608815550804, -0.07761110365390778, 0.05135773494839668, 0.0009795957012102008, -0.00149889150634408, 0.03218110278248787, 0.10362212359905243, -0.02094740979373455, -0.005049299448728561, -0.0886240229010582, -0.0007415805594064295, 0.05265633389353752, -0.016223449259996414, -0.049280259758234024, -0.015326087363064289, 0.010395174846053123, 0.0007107753772288561, -0.007954390719532967, 0.007774266414344311, -0.050631213933229446, -0.01604636199772358, -0.019588598981499672, 0.11012474447488785, 0.0362696498632431, 0.058014750480651855, -0.0509781576693058, 0.03382982313632965, 0.0013683279976248741, 0.0050504268147051334, -0.07777038216590881, 0.03798629716038704, -0.03751092404127121, 0.01518925465643406, 0.0111269885674119, 0.0025016632862389088, -0.03947161138057709, -0.046119507402181625, 0.0538228414952755, 0.003769841743633151, -0.03339240327477455, -0.047872528433799744, 0.018340550363063812, -0.0479838103055954, -0.011324550956487656, -0.04424664005637169, 0.07797873020172119, 0.021368620917201042, 0.009520568884909153, 0.031052561476826668, 0.013908280991017818, -0.004345416557043791, -0.03945700451731682, -0.08779710531234741, 0.016454778611660004, -0.03710088133811951, -0.001746501075103879, 0.05266687273979187, 0.0032199816778302193, 0.02343006245791912, -0.07937721908092499, 0.015624811872839928, -0.003094826824963093, -0.018506770953536034, -0.01363364141434431, 0.07003021985292435, -0.023835770785808563, -0.027884263545274734, 0.09331013262271881, 0.011710042133927345, 0.0384414903819561, 0.08674682676792145, 0.03951306641101837, -0.0022887408267706633, 0.006392353214323521, 0.00451977364718914, 0.006710808724164963, 0.026060456410050392, -0.009834429249167442, 0.0465332493185997, -0.0014204727485775948, 0.02962992526590824, 0.018438078463077545, 0.007245915941894054, -0.023117434233427048, 0.04974180459976196, 0.01516785193234682, -0.026314804330468178, 0.008423304185271263, -0.017562538385391235, -0.011881780810654163, 0.06674396991729736, -0.013772070407867432, -0.2648043632507324, 0.015312266536056995, 0.07881610095500946, 0.09407950192689896, 0.010200310498476028, -0.014855627901852131, 0.027879444882273674, -0.05646685138344765, 0.001045992481522262, -0.027319813147187233, -0.0003721421235240996, 0.026340002194046974, 0.02565675973892212, 0.020820315927267075, -0.01005969662219286, 0.013729958795011044, 0.05031696707010269, -0.038528624922037125, 0.026715517044067383, -0.020645858719944954, -0.0037385160103440285, -0.027247590944170952, 0.1777350753545761, 0.0026794406585395336, -0.00484293419867754, -0.001545590814203024, -0.01781402714550495, -0.026318514719605446, 0.0962434709072113, 0.015264718793332577, 0.024852249771356583, -0.012787061743438244, 0.05719156935811043, 0.038516536355018616, 0.04047539830207825, -0.038701627403497696, -0.01812233217060566, 0.015894776210188866, 0.025760551914572716, -0.024101821705698967, 0.03355437144637108, 0.004961926955729723, -0.028636055067181587, 0.021369382739067078, 0.03932914882898331, -0.01919367164373398, 0.0009370353072881699, -0.02430376224219799, -0.09430424869060516, -0.02074562944471836, 0.0021041426807641983, -0.015102176927030087, 0.0055374461226165295, 0.008146381936967373, 0.023124458268284798, 0.07424716651439667, 0.06178341433405876, -0.011936339549720287, 0.0010980293154716492, 0.0210849791765213, -0.010082731023430824, -0.06065914034843445, 0.10043036192655563, 0.010131157003343105, -0.021237537264823914 ]
[ 0.01628199964761734, -0.037940606474876404, -0.027454912662506104, 0.03352348878979683, -0.0025525230448693037, 0.020761223509907722, 0.018571762368083, 0.001039830967783928, -0.000640000042039901, -0.015506424941122532, -0.020001759752631187, 0.006947469897568226, -0.02676914446055889, -0.01300810370594263, -0.0486210435628891, 0.01756170205771923, 0.019662324339151382, 0.01855372078716755, 0.03558996319770813, -0.024743305519223213, -0.048666130751371384, 0.03214699402451515, 0.028659110888838768, 0.023192988708615303, 0.0033732375595718622, -0.02164720930159092, -0.04356899484992027, 0.03120042197406292, 0.03769946098327637, -0.0873693972826004, -0.021689560264348984, -0.025158176198601723, 0.015042810700833797, 0.002347395522519946, -0.01662110537290573, -0.005125811323523521, -0.04036751389503479, 0.01708414778113365, -0.02951604686677456, 0.035025618970394135, -0.002060337457805872, -0.03966720029711723, -0.026548463851213455, -0.008669833652675152, -0.002287972718477249, 0.005614880472421646, -0.012648860923945904, -0.007115921005606651, -0.005162826739251614, -0.00809886958450079, -0.0464458242058754, 0.006291464436799288, -0.04775764048099518, -0.01062851957976818, -0.010981117375195026, -0.04714757576584816, -0.009652209468185902, -0.021199850365519524, 0.01187901757657528, -0.041191596537828445, -0.012981763109564781, 0.00046666874550282955, -0.01455435249954462, -0.017112867906689644, 0.005863521248102188, -0.006773924455046654, -0.028406502678990364, 0.026940995827317238, -0.004953715484589338, 0.005823727697134018, 0.02415730617940426, 0.026014328002929688, -0.058531686663627625, -0.009630952961742878, -0.0006983705679886043, -0.025868786498904228, 0.03419124335050583, -0.0021975378040224314, 0.04657602682709694, 0.01060977391898632, -0.0331522673368454, 0.0058118486776947975, 0.05346272140741348, -0.004537329543381929, -0.015877576544880867, -0.04584190249443054, -0.0077210343442857265, 0.02955603413283825, 0.00885830819606781, -0.03630628436803818, -0.01910886913537979, 0.003485867055132985, 0.016664689406752586, 0.031030621379613876, -0.06529925018548965, 0.007828849367797375, -0.020000405609607697, 0.00530633982270956, -0.01019181590527296, 0.8488030433654785, -0.02397063374519348, 0.018573200330138206, -0.009658576920628548, 0.022839710116386414, 0.024888692423701286, 0.002729548839852214, 0.04683127626776695, -0.030323047190904617, 0.0020445676054805517, -0.016525330021977425, 0.022465886548161507, 0.005066301207989454, 0.02184959314763546, 0.02341631054878235, 0.06217771768569946, 0.03475480526685715, -0.03775990381836891, 0.038895007222890854, 0.003174014389514923, 0.010420274920761585, -0.014215001836419106, 0.011490889824926853, 0.005612698849290609, 0.012183276936411858, -0.018134061247110367, -0.15753816068172455, -0.01762576401233673, -7.244900087852019e-33, 0.03463578224182129, -0.0005301492637954652, 0.020025331526994705, 0.011279396712779999, 0.023862171918153763, 0.008042372763156891, 0.006393429357558489, -0.00885722041130066, -0.003434217069298029, -0.008621743880212307, 0.0005111831706017256, 0.005461903754621744, -0.030591223388910294, -0.011096494272351265, 0.023263225331902504, 0.007573307957500219, -0.004782627336680889, 0.0446079857647419, 0.006560442037880421, 0.06449871510267258, 0.06099406257271767, 0.012073718942701817, 0.006953117903321981, 0.026551727205514908, 0.021527661010622978, -0.01659497432410717, 0.010430527850985527, 0.007127286866307259, -0.02505684085190296, -0.042818404734134674, -0.056567102670669556, -0.0017621101578697562, 0.006085388828068972, -0.06220308318734169, 0.008094153366982937, -0.07486065477132797, -0.028571950271725655, 0.02435138076543808, -0.026897216215729713, -0.007745270151644945, -0.011650169268250465, 0.008803552947938442, -0.020597906783223152, -0.052727069705724716, -0.04750773310661316, 0.018201980739831924, 0.034644000232219696, 0.04716707766056061, -0.0009813625365495682, 0.02085530385375023, 0.004910152871161699, -0.01933067850768566, 0.007799752522259951, 0.034974146634340286, 0.009116269648075104, 0.018471326678991318, -0.007414977066218853, 0.006623782217502594, 0.040297698229551315, -0.023673420771956444, -0.017426403239369392, 0.007411197293549776, 0.015284102410078049, 0.0294538214802742, 0.020867519080638885, -0.013540318235754967, 0.016444992274045944, 0.008565220981836319, 0.030847828835248947, 0.01687796786427498, -0.08072590827941895, 0.019851060584187508, -0.05369355529546738, -0.007070756983011961, -0.006303844973444939, -0.05381682887673378, 0.029894785955548286, -0.00920388288795948, 0.010413805022835732, 0.052079781889915466, 0.0010879895417019725, -0.011639224365353584, -0.01075797714293003, -0.0253097303211689, -0.04440656676888466, -0.006949076894670725, 0.026389161124825478, 0.0019424549536779523, -0.011282751336693764, -0.022476185113191605, 0.03288320079445839, 0.02400422841310501, -0.0022631054744124413, -0.0026120247785001993, -0.03095230832695961, 7.389622544221443e-33, 0.022763261571526527, 0.00284334528259933, -0.040890030562877655, 0.004605819936841726, 0.01676999218761921, -0.019866907969117165, 0.043058715760707855, 0.02528322860598564, -0.022301189601421356, 0.02005639299750328, -0.01469812449067831, -0.03234238922595978, -0.030212845653295517, 0.007609884720295668, 0.06693096458911896, -0.01981947384774685, -0.00814130436629057, -0.00035289523657411337, 0.0025003175251185894, -0.02837173454463482, -0.03364822641015053, 0.03340236842632294, 0.012590398080646992, -0.01270621083676815, 0.00936884619295597, 0.04585719108581543, -0.016743240877985954, 0.013253483921289444, -0.00898648239672184, -0.015279026702046394, -0.0016229802276939154, -0.011433866806328297, -0.010697745718061924, -0.0011586571345105767, -0.01531390380114317, 0.027011796832084656, 0.03399469703435898, -0.015251067467033863, 0.006670362316071987, 0.012209821492433548, 0.03177884966135025, 0.0467693917453289, -0.020431043580174446, 0.014606259763240814, 0.00043120660120621324, 0.04388878867030144, 0.017612317577004433, -0.015907099470496178, 0.014783917926251888, -0.02697233110666275, -0.042332954704761505, 0.000057288012612843886, 0.009560209698975086, 0.028331035748124123, -0.012725051492452621, -0.0004509153950493783, 0.015415421687066555, 0.013140512630343437, -0.014984862878918648, 0.008633502759039402, -0.021823838353157043, 0.006459872238337994, -0.005877162329852581, -0.01824871264398098, -0.03768978640437126, -0.01134411245584488, -0.04713541269302368, 0.003071116516366601, -0.016402438282966614, -0.0030586665961891413, -0.03499803692102432, -0.03258390724658966, -0.00535503588616848, 0.028378108516335487, -0.0034127661492675543, 0.010611285455524921, -0.005124335177242756, -0.0037041509058326483, -0.0037933047860860825, 0.0030026405584067106, 0.027727369219064713, -0.009759915061295033, 0.042575348168611526, -0.006337725091725588, 0.03544357791543007, 0.016580386087298393, -0.024209067225456238, 0.018327509984374046, 0.035328492522239685, 0.005760364234447479, -0.012740300968289375, -0.024869263172149658, -0.004198846872895956, 0.0042699286714196205, -0.01372168492525816, -1.304668728607794e-8, -0.05072205513715744, 0.04894436150789261, 0.0042808218859136105, 0.02747882530093193, 0.01489273551851511, 0.016108937561511993, -0.010112217627465725, -0.009229414165019989, 0.010825307108461857, 0.0014366882387548685, 0.03300156071782112, -0.02139546535909176, -0.011048288084566593, 0.0032288848888128996, 0.026870546862483025, -0.019947532564401627, -0.012001789174973965, 0.005476127378642559, 0.029234113171696663, -0.0414227731525898, 0.052679210901260376, 0.018057584762573242, -0.01212038192898035, -0.011134098283946514, -0.02217884548008442, -0.010202145203948021, 0.004668027628213167, -0.07512980699539185, -0.011765272356569767, 0.03701683506369591, 0.012012309394776821, -0.03747227042913437, -0.01042882725596428, 0.018987486138939857, 0.011679071933031082, -0.013460541144013405, 0.0071090999990701675, 0.0013403008924797177, 0.011334901675581932, 0.017387215048074722, -0.03740035742521286, 0.00849325954914093, -0.02297063171863556, -0.03524983674287796, -0.026582781225442886, 0.00920439139008522, -0.025538893416523933, -0.005441454239189625, 0.038564618676900864, -0.004887485411018133, 0.04272875189781189, -0.016773877665400505, 0.008337289094924927, 0.04523109644651413, 0.04901759698987007, 0.022749781608581543, 0.005891897715628147, -0.031614113599061966, -0.016138605773448944, -0.019435003399848938, 0.003140767104923725, 0.010518028400838375, -0.018757712095975876, -0.019538193941116333 ]
tensorflow-kaggle-spooky-authors-bag-words-model
https://markhneedham.com/blog/2018/01/29/tensorflow-kaggle-spooky-authors-bag-words-model
false
2018-01-23 21:11:49
Asciidoc to Asciidoc: Exploding includes
[ "asciidoc", "asciidoctor" ]
[ "Software Development" ]
One of my favourite features in http://asciidoctor.org/docs/asciidoc-syntax-quick-reference/#include-files[AsciiDoc] is the ability to include other files, but when using lots of includes is that it becomes difficult to read the whole document unless you convert it to one of the supported backends. [source,bash] ---- $ asciidoctor --help Usage: asciidoctor [OPTION]... FILE... Translate the AsciiDoc source FILE or FILE(s) into the backend output format (e.g., HTML 5, DocBook 4.5, etc.) By default, the output is written to a file with the basename of the source file and the appropriate extension. Example: asciidoctor -b html5 source.asciidoc -b, --backend BACKEND set output format backend: [html5, xhtml5, docbook5, docbook45, manpage] (default: html5) additional backends are supported via extensions (e.g., pdf, latex) ---- I don't want to have to convert my code to one of these formats each time - I want to convert asciidoc to asciidoc! For example, given the following files: +++<cite>+++mydoc.adoc+++</cite>+++ [source,text] ---- = My Blog example == Heading 1 Some awesome text == Heading 2 \include::blog_include.adoc[] ---- .blog_include.adoc [source,text] ---- Some included text ---- I want to generate another asciidoc file where the contents of the include file are exploded and displayed inline. After a lot of searching I came across https://github.com/asciidoctor/asciidoctor-extensions-lab/blob/master/scripts/asciidoc-coalescer.rb[an excellent script] written by Dan Allen and put it in a file called +++<cite>+++adoc.rb+++</cite>+++. We can then call it like this: [source,bash] ---- $ ruby adoc.rb mydoc.adoc = My Blog example == Heading 1 Some awesome text == Heading 2 Some included text ---- Problem solved! In my case I actually wanted to explode HTTP includes so I needed to pass the +++<cite>+++-a allow-uri-read+++</cite>+++ flag to the script: [source,bash] ---- $ ruby adoc.rb mydoc.adoc -a allow-uri-read ---- And now I can generate asciidoc files until my heart's content. </p>
null
null
[ -0.02827003039419651, -0.00949760153889656, -0.025569533929228783, 0.021393902599811554, 0.062336571514606476, -0.010621890425682068, -0.010242762975394726, 0.04462267830967903, 0.02163025550544262, -0.028404591605067253, -0.001435840385966003, 0.010062186978757381, -0.05790727213025093, 0.01946485973894596, -0.013034834526479244, 0.0711556002497673, 0.04582024738192558, 0.02081705816090107, 0.0023982892744243145, -0.03503775596618652, 0.02514967881143093, 0.035080354660749435, 0.010365408845245838, 0.014852236025035381, 0.009125849232077599, 0.021107500419020653, -0.023748433217406273, -0.017071016132831573, -0.07498884946107864, -0.026531027629971504, 0.03089960664510727, -0.010872896760702133, 0.02154003269970417, -0.01680362969636917, 0.026887845247983932, -0.013648095540702343, -0.03759266436100006, 0.007515427656471729, -0.008157722651958466, -0.012274990789592266, -0.049637746065855026, 0.04646719619631767, 0.012043054215610027, 0.010491457767784595, -0.0369260236620903, 0.014950104989111423, -0.03477222099900246, 0.0279321800917387, -0.022787299007177353, -0.011563822627067566, -0.06188248097896576, 0.018331188708543777, 0.005565097089856863, -0.0213986337184906, -0.002005254616960883, 0.049811117351055145, 0.020600611343979836, -0.052479080855846405, 0.006991648115217686, -0.0347416028380394, -0.01221432350575924, -0.01603461243212223, 0.02062910422682762, 0.045033443719148636, 0.052709367126226425, -0.01639401912689209, -0.02786868065595627, 0.04344625398516655, -0.048929568380117416, -0.04046255722641945, 0.04755791649222374, 0.022462444379925728, -0.04139219969511032, -0.023466261103749275, 0.0175592303276062, -0.026408597826957703, -0.05420152097940445, 0.06639866530895233, 0.0228227898478508, 0.05415094271302223, -0.0052620419301092625, 0.03623342141509056, -0.00099330919329077, 0.012319407425820827, -0.012285619974136353, -0.020953290164470673, -0.025245921686291695, 0.044849928468465805, -0.035722456872463226, 0.037544045597314835, -0.012486523948609829, -0.05995820462703705, 0.036049798130989075, 0.007639901712536812, 0.0013150761369615793, 0.004187711514532566, -0.023593874648213387, 0.01563916727900505, 0.0021629049442708492, 0.014562455005943775, -0.07573945820331573, -0.008971920236945152, 0.056868936866521835, -0.002034103497862816, -0.059519607573747635, -0.005379089154303074, -0.04171537980437279, -0.023618236184120178, 0.01798880472779274, 0.0012777685187757015, 0.007204507943242788, -0.014689124189317226, -0.04174992814660072, -0.045154277235269547, -0.053037941455841064, 0.04928956180810928, 0.05996004864573479, 0.03557109087705612, 0.013802398927509785, 0.010699219070374966, 0.04551223665475845, 0.04804493114352226, 0.024312661960721016, 0.05617855489253998, 0.019223183393478394, 0.031513843685388565, -0.03209406137466431, 0.029221544042229652, -0.020343557000160217, -0.06816030293703079, -0.006052736192941666, 0.03255230933427811, -0.04159724339842796, 0.00540506187826395, 0.008471117354929447, -0.01925150491297245, -0.04739933833479881, 0.01079275831580162, 0.0253726989030838, 0.04179169237613678, -0.025043878704309464, -0.03663315623998642, -0.059318315237760544, -0.016200972720980644, 0.034846097230911255, 0.02685043029487133, -0.03864532336592674, -0.024153972044587135, -0.013745958916842937, 0.04093575105071068, 0.016170684248209, 0.01574120670557022, 0.05374838039278984, 0.0037173612508922815, 0.01994667947292328, 0.09223238378763199, 0.05007001385092735, 0.03602932021021843, 0.0033751074224710464, 0.016987914219498634, 0.015012125484645367, 0.019122524186968803, 0.008818322792649269, 0.04752735793590546, -0.022148098796606064, -0.025212187319993973, -0.028483353555202484, 0.047158997505903244, 0.00119104387704283, 0.031219661235809326, -0.04138032719492912, -0.054385632276535034, 0.07261043041944504, -0.03823594003915787, 0.032268624752759933, 0.02311057783663273, 0.061886079609394073, 0.04157865792512894, 0.02602146379649639, -0.015043596737086773, -0.07353609055280685, 0.03923861309885979, 0.00907951220870018, 0.00688188336789608, -0.008681893348693848, -0.010960038751363754, 0.0868518203496933, 0.048543769866228104, 0.02392520010471344, 0.018203699961304665, -0.07698246836662292, -0.10186051577329636, -0.009852987714111805, -0.030533442273736, 0.07579346001148224, -0.022033486515283585, -0.02115182764828205, 0.0641549825668335, 0.025297189131379128, -0.003205962013453245, 0.030647573992609978, 0.004524750169366598, 0.020430415868759155, -0.03275301679968834, -0.029189635068178177, 0.015597173944115639, 0.0505441352725029, -0.007264136336743832, 0.0030916668474674225, -0.008605004288256168, -0.02337554283440113, 0.042818013578653336, 0.023691436275839806, -0.023473408073186874, 0.04740539938211441, 0.022997476160526276, 0.08156082034111023, -0.0023360804188996553, 0.029734821990132332, -0.04110343009233475, 0.01723170280456543, -0.022406181320548058, -0.0004976994823664427, -0.0019946121610701084, -0.02107464335858822, 0.12747998535633087, 0.048614904284477234, -0.007582429330796003, -0.061964504420757294, 0.012805354781448841, -0.041332926601171494, -0.042566824704408646, 0.02309279330074787, -0.00013425482029560953, -0.026933034881949425, -0.0029489658772945404, -0.03560574725270271, -0.00887132529169321, -0.01296354178339243, -0.010162272490561008, -0.0061992765404284, 0.06256668269634247, -0.03600329905748367, 0.0405939519405365, 0.005809305235743523, -0.00036690584965981543, 0.007367228623479605, -0.013548933900892735, -0.061715029180049896, 0.0017240571323782206, 0.041028350591659546, 0.0042710695415735245, 0.015292927622795105, -0.04453655332326889, 0.0009174123988486826, -0.011440183036029339, -0.05574566125869751, 0.018057571724057198, 0.0327150896191597, 0.03989015519618988, -0.027443954721093178, 0.03053537756204605, -0.019277043640613556, 0.023521587252616882, -0.023750774562358856, -0.03556245192885399, -0.035671357065439224, 0.012219187803566456, 0.006422553677111864, 0.019485794007778168, -0.0011740786721929908, 0.05347832664847374, -0.012720732018351555, -0.023858197033405304, -0.016598254442214966, 0.009256006218492985, -0.0002601345186121762, -0.011906983330845833, 0.01009160466492176, -0.05318453907966614, -0.03613448143005371, 0.056418195366859436, -0.05295374244451523, -0.04859649017453194, -0.017729662358760834, -0.062405362725257874, 0.016357945278286934, -0.07881452143192291, -0.057299401611089706, -0.032190822064876556, -0.005118143744766712, 0.004776772111654282, -0.001191547024063766, 0.02068956010043621, 0.04179898276925087, 0.0037004833575338125, 0.03519711643457413, -0.00513008888810873, 0.028331758454442024, 0.03804108500480652, -0.027627721428871155, -0.0012501851888373494, 0.0888792872428894, 0.002855551429092884, -0.0017006404232233763, -0.025936584919691086, 0.03662264347076416, -0.020777862519025803, -0.24817319214344025, 0.07492587715387344, -0.03658708930015564, -0.04562284052371979, 0.02960907481610775, -0.056141383945941925, -0.0006293509504757822, -0.05011085048317909, -0.027031930163502693, 0.005871717352420092, -0.04798491671681404, -0.035142913460731506, 0.0015063825994729996, 0.031173890456557274, -0.011301625519990921, 0.03402125835418701, -0.005459141917526722, -0.014966750517487526, 0.018435942009091377, 0.04021153971552849, 0.00486628757789731, -0.019115418195724487, 0.011324210092425346, 0.04242496192455292, 0.008363072760403156, 0.0036158200819045305, -0.06879538297653198, 0.06485573202371597, -0.02874659188091755, -0.03508313000202179, 0.01972855255007744, 0.0084995673969388, 0.008286427706480026, -0.022868512198328972, -0.032629720866680145, -0.035112567245960236, 0.07780919224023819, 0.02644437924027443, -0.008198505267500877, 0.006783075165003538, -0.01866217330098152, -0.05187465623021126, 0.0010470710694789886, -0.055296655744314194, 0.05465152487158775, -0.032329365611076355, -0.07873449474573135, 0.016391180455684662, -0.03788360208272934, 0.09054262191057205, -0.017499083653092384, -0.054754529148340225, -0.022349156439304352, 0.04141218587756157, -0.02125692367553711, -0.015456384979188442, -0.005890408996492624, 0.0005678168381564319, -0.046598341315984726, -0.021953383460640907, 0.003226143540814519, -0.03145996108651161, -0.02406594343483448, -0.06702617555856705, 0.007883448153734207, -0.048590172082185745, -0.07205293327569962, -0.022083809599280357, 0.060989778488874435, 0.043779801577329636, -0.041849952191114426, 0.031184975057840347, -0.02323365956544876, -0.11272542923688889, 0.009618612937629223, -0.033619340509176254, -0.023017339408397675, -0.00818607211112976, -0.02279522456228733, 0.057603415101766586, -0.030385876074433327, -0.022426409646868706, 0.041754331439733505, 0.0037365818861871958, -0.0004329654620960355, 0.020096629858016968, 0.013241929933428764, 0.010058734565973282, -0.0014407191192731261, -0.022208666428923607, 0.07357685267925262, -0.006572400685399771, -0.01028949860483408, -0.009776821359992027, -0.00855228304862976, -0.0061990050598979, 0.03459832817316055, -0.007208490278571844, 0.029218047857284546, 0.005527934059500694, 0.0350048653781414, -0.007389809004962444, 0.017444869503378868, -0.04681604355573654, -0.015913670882582664, -0.017664501443505287, -0.05031545087695122, 0.018528439104557037, -0.00196948298253119, 0.02729153446853161, -0.04526582732796669, -0.013009476475417614, 0.009898037649691105, -0.03590962290763855, -0.0169413760304451, 0.010757804848253727, 0.022992879152297974, 0.024148665368556976, 0.06670709699392319, -0.024547485634684563, -0.024666208773851395, 0.002528503770008683, -0.0006404457963071764, -0.06266417354345322, -0.015463958494365215, 0.0034647914581000805, -0.009208401665091515, 0.013099102303385735, 0.01367971207946539, -0.004958765581250191, -0.035032082349061966, 0.006091286428272724, 0.033528249710798264, -0.011536109261214733, 0.03448193520307541, -0.018867215141654015, -0.027045344933867455, -0.012276582419872284, -0.008203044533729553, 0.0009980060858651996, -0.004523159936070442, -0.012124383822083473, -0.012510514818131924, 0.045010991394519806, 0.07430972903966904, 0.011363271623849869, 0.026872355490922928, 0.030542276799678802, 0.022171668708324432, -0.009991750121116638, 0.021545875817537308, 0.0012497317511588335, -0.008827529847621918, -0.02121749520301819, -0.0387209951877594, -0.029360221698880196, 0.03616267070174217, -0.006125252228230238, -0.004118090961128473, -0.03990783169865608, 0.046986229717731476, -0.05792490392923355, 0.012572906911373138, -0.011776476167142391, 0.03758622705936432, 0.05647490918636322, 0.009416894055902958, 0.05834968388080597, -0.00907405186444521, 0.028562748804688454, 0.01061378326267004, 0.0503421425819397, -0.03290494158864021, 0.00867572333663702, -0.002311235060915351, -0.004310581833124161, 0.005192987155169249, 0.03198620304465294, 0.037218134850263596, 0.0176271703094244, 0.0245262049138546, -0.040659185498952866, 0.03874077647924423, 0.013658234849572182, 0.029921460896730423, 0.016507504507899284, 0.003938538488000631, -0.008535757660865784, -0.050654467195272446, -0.04878247156739235, -0.02902873046696186, 0.04562688246369362, -0.021588094532489777, -0.0012450703652575612, -0.04951730743050575, -0.08636544644832611, 0.02271847426891327, 0.04103631153702736, 0.00514962337911129, 0.0122087886556983, -0.01496130134910345, 0.003336928552016616, -0.07687707990407944, 0.019701510667800903, 0.02670099027454853, -0.06498833000659943, 0.0036136361304670572, -0.011973347514867783, -0.030422931537032127, -0.018718775361776352, 0.04399282485246658, -0.05927249789237976, -0.047049641609191895, -0.016436539590358734, -0.004441218450665474, -0.01804853044450283, -0.004617542959749699, -0.06234882399439812, 0.00028554993332363665, -0.010272810235619545, 0.016911832615733147, -0.012060425244271755, -0.0038541085086762905, 0.02472887933254242, -0.03362636640667915, -0.008990281261503696, -0.024552326649427414, -0.011280473321676254, 0.02736901305615902, 0.00189378357026726, 0.06662169098854065, -0.0252979788929224, 0.039312053471803665, 0.023018525913357735, -0.029182445257902145, -0.017037179321050644, -0.0579369030892849, 0.008757190778851509, -0.0046494933776557446, 0.0381707027554512, -0.000022108426492195576, 0.005233443342149258, -0.010706858709454536, 0.03359689936041832, -0.01837475597858429, 0.0063645802438259125, -0.05372164398431778, -0.038734834641218185, -0.023387297987937927, 0.06598949432373047, 0.018444595858454704, 0.024860695004463196, -0.0038569443859159946, -0.06459233164787292, 0.026904676109552383, -0.04751706123352051, -0.08076829463243484, -0.005163799040019512, -0.06759108603000641, 0.03231557831168175, 0.04981973394751549, 0.03928383067250252, -0.037483636289834976, 0.0539521723985672, 0.04071590304374695, -0.010611740872263908, 0.026694584637880325, -0.009207138791680336, 0.04917437583208084, -0.02419903315603733, -0.02567322365939617, -0.06658840924501419, 0.0009675271576270461, 0.029647495597600937, 0.020961953327059746, -0.018321845680475235, 0.03374379128217697, -0.04239216819405556, 0.048245012760162354, -0.061930835247039795, -0.0502217561006546, 0.0724254697561264, 0.009421391412615776, 0.02080070786178112, -0.024934977293014526, -0.03323528543114662, 0.007594281807541847, 0.05528389289975166, -0.05984307453036308, -0.028008021414279938, -0.05939764156937599, 0.0638706311583519, -0.023499224334955215, 0.027648640796542168, -0.007267829496413469, -0.04140631854534149, 0.02799670584499836, 0.02213096432387829, -0.01319704856723547, 0.012493053451180458, 0.0007476686732843518, 0.03958727791905403, 0.022925883531570435, -0.010546877980232239, 0.016204386949539185, -0.01157753448933363, -0.0040408107452094555, -0.03581991791725159, 0.020683491602540016, 0.011495931074023247, -0.0009684034157544374, -0.01235156413167715, 0.05202855169773102, 0.02400699071586132, -0.009481568820774555, -0.04914090409874916, 0.02473076805472374, -0.031073562800884247, -0.01166344154626131, -0.0363927036523819, 0.017677955329418182, -0.04795841872692108, 0.045256730169057846, -0.03037162497639656, -0.006804835982620716, 0.08591384440660477, 0.01964990422129631, -0.01466925535351038, 0.0011178272543475032, 0.05919966101646423, 0.08064763247966766, 0.03920910134911537, -0.013256676495075226, 0.02624155767261982, -0.037281353026628494, -0.019240304827690125, -0.005164646543562412, -0.01437737513333559, 0.04902537539601326, -0.0030463235452771187, -0.019035201519727707, 0.05921964347362518, -0.024098798632621765, 0.07843150198459625, 0.014754786156117916, -0.040777694433927536, -0.014493454247713089, 0.0267479345202446, 0.025763018056750298, 0.02795388735830784, 0.018124591559171677, 0.01890842616558075, -0.03497953712940216, -0.020493021234869957, 0.03775397315621376, -0.031449105590581894, 0.009325682185590267, -0.014062872156500816, 0.03803202509880066, 0.020466359332203865, -0.000018486342014512047, 0.08354256302118301, 0.05324371159076691, 0.00491776829585433, 0.0025209570303559303, 0.021618885919451714, 0.020511750131845474, -0.023174762725830078, -0.0007943414384499192, 0.0006645792745985091, -0.047426626086235046, -0.03549664467573166, -0.044459834694862366, 0.0012601674534380436, 0.0033025252632796764, 0.00022791609808336943, 0.03480212390422821, -0.024017347022891045, -0.0034819897264242172, 0.020934700965881348, -0.025365836918354034, -0.04649185761809349, -0.05106749013066292, -0.0077320304699242115, -0.05436854436993599, -0.06158393248915672, -0.002242225455120206, 0.01587654836475849, 0.010247706435620785, -0.006063253153115511, -0.039666589349508286, -0.04091816768050194, -0.01681448332965374, -0.006359327584505081, -0.03860650584101677, -0.017956584692001343, -0.007447242271155119, 0.032906148582696915, 0.013386763632297516, 0.03422117233276367, 0.023614710196852684, 0.02155657485127449, -0.019034424796700478, 0.006765016354620457, -0.0021488869097083807, 0.03656671568751335, 0.0076867626048624516, 0.031153399497270584, -0.08437254279851913, 0.011149944737553596, 0.051750440150499344, 0.0634973868727684, -0.07564568519592285, 0.047351811081171036, 0.04425550624728203, -0.06553750485181808, 0.029399266466498375, -0.027963560074567795, 0.03183348849415779, -0.0013149816077202559, -0.03162926062941551, -0.028302686288952827, 0.013681963086128235, 0.05265551805496216, 0.0010870762635022402, 0.08267991244792938, 0.03614271059632301, 0.0034432196989655495, -0.03184586018323898, -0.03267066553235054, -0.011796061880886555, -0.0009691945160739124, -0.03525758534669876, 0.016972126439213753, -0.0859917476773262, -0.07254206389188766, -0.06666744500398636, -0.012501387856900692, -0.05175191909074783, -0.025797002017498016, 0.007630419451743364, 0.026752492412924767, -0.03022751770913601, 0.0022369830403476954, -0.031943757086992264, -0.012589157558977604, 0.022236742079257965, -0.011255252175033092, 0.004131644032895565, 0.024885190650820732, 0.06590548902750015, -0.011087925173342228, 0.010561471804976463, -0.0447285957634449, 0.020349543541669846, -0.0025401017628610134, -0.00682683102786541, 0.04555656388401985, 0.024104034528136253, 0.02774009481072426 ]
[ -0.09544434398412704, 0.004545517265796661, -0.031703561544418335, 0.006872371770441532, 0.03834948316216469, -0.05343494936823845, -0.04484112933278084, -0.002022948581725359, -0.015621278434991837, -0.013289089314639568, 0.05136783793568611, -0.025741202756762505, -0.006424497812986374, -0.04936295002698898, 0.06376147270202637, -0.007572853937745094, -0.02054360695183277, -0.022184599190950394, -0.023301340639591217, 0.03003598004579544, -0.02261381223797798, -0.01379779726266861, 0.0015761373797431588, -0.006960126105695963, -0.016423344612121582, 0.04894012212753296, 0.006388262379914522, -0.06237988546490669, -0.010225267149508, -0.21110767126083374, -0.012730616144835949, -0.0031107894610613585, 0.0003671105660032481, -0.023621482774615288, 0.007464962545782328, 0.03379862383008003, 0.03576432168483734, 0.03641272708773613, -0.034643542021512985, 0.025234675034880638, -0.0004723379679489881, 0.027797818183898926, -0.021369218826293945, -0.01996401883661747, 0.01824157126247883, -0.028369607403874397, 0.00046752369962632656, -0.03392394632101059, 0.022466303780674934, 0.048631973564624786, -0.05951488018035889, 0.009205186739563942, -0.015786966308951378, -0.02117294818162918, -0.014424239285290241, 0.024015206843614578, 0.05884997546672821, 0.029145793989300728, 0.0020266883075237274, 0.018021471798419952, 0.030072269961237907, -0.0009271415765397251, -0.14314626157283783, 0.0990004763007164, 0.007295671384781599, 0.05035560205578804, -0.07179854810237885, 0.00017932157788891345, -0.0095277801156044, 0.068525031208992, -0.04664815217256546, -0.04614056274294853, -0.034909363836050034, 0.08758116513490677, 0.03101951628923416, -0.03758672997355461, 0.008067797869443893, -0.004617953673005104, 0.022500766441226006, -0.058646030724048615, -0.03370281681418419, -0.023502564057707787, -0.05463213846087456, -0.012239376083016396, 0.006495293229818344, -0.0239481870085001, 0.01290151197463274, 0.03238401561975479, 0.01242479495704174, 0.008884773589670658, 0.01893799751996994, -0.05354310944676399, 0.03629610687494278, 0.014691639691591263, -0.09885288774967194, -0.0356166809797287, -0.00013739617133978754, -0.0015241095097735524, 0.0023885134141892195, 0.3703525960445404, -0.03703455999493599, -0.0281151682138443, 0.06606293469667435, -0.01224920991808176, -0.03221419081091881, 0.020248791202902794, 0.024686384946107864, -0.02984035015106201, 0.032979320734739304, -0.021967168897390366, 0.005069950129836798, -0.018770361319184303, 0.01460519153624773, -0.07085295021533966, 0.022205282002687454, -0.0022056465968489647, 0.009754686616361141, 0.002633486408740282, 0.01500691007822752, 0.019863201305270195, 0.02753690630197525, -0.020720291882753372, -0.020165009424090385, 0.058200202882289886, 0.045444514602422714, -0.01979488506913185, 0.04816897585988045, 0.028485428541898727, 0.04941288009285927, 0.0437232069671154, 0.0537816546857357, 0.010419445112347603, -0.03651271387934685, -0.03558064624667168, 0.022380894050002098, 0.03724417835474014, 0.03364420309662819, -0.016279390081763268, 0.019435660913586617, 0.0032300297170877457, 0.01422448456287384, 0.0032108882442116737, -0.0014876603381708264, 0.03664878383278847, -0.02697346732020378, 0.10583162307739258, -0.01852090284228325, -0.020449578762054443, -0.051147859543561935, -0.052400507032871246, -0.000030334109396790154, 0.06440141052007675, 0.006555747240781784, -0.01728101260960102, -0.0003971392288804054, 0.018996933475136757, 0.055292438715696335, -0.05394892022013664, -0.08995749801397324, -0.024619843810796738, 0.011921222321689129, -0.032279543578624725, -0.018055720254778862, 0.09374726563692093, 0.07410780340433121, -0.0922621414065361, -0.06596964597702026, 0.031038695946335793, 0.004370813257992268, -0.1134776771068573, -0.004158355295658112, -0.003921108786016703, -0.017480162903666496, -0.02134525589644909, 0.06261741369962692, 0.0038683509919792414, -0.010725506581366062, 0.017802514135837555, 0.06408339738845825, 0.015480348840355873, 0.06187180057168007, -0.02461794577538967, -0.06514915078878403, 0.009939993731677532, -0.05436186492443085, -0.07546668499708176, -0.055286381393671036, -0.013272352516651154, -0.02113313600420952, 0.008532089181244373, 0.001789886155165732, 0.018988870084285736, -0.03306056931614876, 0.06696382164955139, -0.015915030613541603, 0.01037776842713356, 0.004852962214499712, -0.007840332575142384, -0.03380122408270836, -0.050227001309394836, 0.055534858256578445, 0.031192874535918236, -0.015989819541573524, 0.052206214517354965, -0.04143663868308067, 0.015536409802734852, 0.04875442013144493, -0.02285689488053322, 0.06197459623217583, -0.01541480515152216, -0.07328478991985321, -0.026870274916291237, 0.038848720490932465, 0.04331620782613754, -0.038640253245830536, -0.022034073248505592, -0.001305762561969459, 0.015574617311358452, 0.0407988578081131, 0.005293438211083412, -0.009209305047988892, -0.0626223012804985, 0.010655579157173634, -0.33221113681793213, 0.01057531125843525, 0.0006647788104601204, 0.015383901074528694, 0.050472620874643326, -0.076060451567173, -0.045812636613845825, -0.016992373391985893, -0.0395318865776062, 0.0039315070025622845, 0.049273859709501266, 0.0025369110517203808, 0.028826124966144562, -0.06676731258630753, -0.049633655697107315, 0.02147786319255829, -0.0066058882512152195, -0.0302509143948555, 0.02275810018181801, 0.04132530465722084, 0.0031624026596546173, -0.015498113818466663, -0.05450952425599098, -0.005711405538022518, -0.01421288587152958, -0.05243545398116112, 0.07511427998542786, 0.01476801186800003, 0.08003684133291245, -0.05712323263287544, 0.043129365891218185, 0.028587913140654564, 0.0063753691501915455, -0.09580358117818832, -0.04283462464809418, -0.064351387321949, -0.010235702618956566, -0.0065399943850934505, 0.03651776164770126, 0.006673190742731094, 0.04078902304172516, -0.00282293907366693, -0.04059961810708046, -0.03953610733151436, 0.013260778039693832, -0.015226860530674458, -0.02260717935860157, -0.029794344678521156, 0.03278786689043045, 0.03885004669427872, -0.02590027265250683, 0.036947574466466904, -0.010402713902294636, 0.03979790210723877, -0.01061203982681036, -0.03106892853975296, -0.0648326724767685, -0.04806062579154968, 0.022912578657269478, 0.0002873993362300098, 0.06204947084188461, 0.06583315134048462, 0.05862226337194443, -0.03832012787461281, -0.012997747398912907, 0.05027839168906212, -0.005074595101177692, -0.007449081167578697, 0.06546557694673538, -0.014611726626753807, 0.01609358750283718, 0.08388493955135345, -0.02610543556511402, 0.005915735382586718, 0.039105214178562164, 0.06403009593486786, 0.03600560128688812, 0.007339103613048792, 0.00030740592046640813, -0.0020315712317824364, 0.033878400921821594, -0.008820331655442715, 0.03577115386724472, -0.029144728556275368, 0.02215217426419258, 0.06278257071971893, -0.04167424514889717, -0.04152866452932358, 0.02124449983239174, 0.02978653274476528, -0.03296257182955742, -0.01978396624326706, 0.0011172492522746325, -0.03444068506360054, 0.0390964113175869, 0.015373827889561653, -0.2707987427711487, 0.01346155907958746, 0.09171339869499207, 0.05919767543673515, -0.006550744641572237, 0.03553273156285286, 0.049352023750543594, -0.08253514021635056, 0.006409592926502228, 0.04944228753447533, 0.023470425978302956, 0.04269309714436531, -0.00616513891145587, -0.02562183514237404, 0.030612019822001457, -0.008828358724713326, 0.08557634800672531, 0.0512830950319767, 0.0485549122095108, 0.02464255318045616, 0.0011131855426356196, -0.04464979097247124, 0.20885291695594788, 0.023995069786906242, -0.06509828567504883, 0.006444801576435566, -0.019180040806531906, 0.006015363615006208, 0.06132908910512924, 0.026410110294818878, 0.021777832880616188, 0.028564883396029472, 0.052785053849220276, -0.00010940819629468024, 0.011657029390335083, -0.0475805439054966, -0.03188531473278999, 0.08042994886636734, 0.010714703239500523, -0.004937459714710712, -0.03389712795615196, 0.028821952641010284, -0.09596207737922668, 0.009571921080350876, 0.05387810990214348, -0.003203993896022439, -0.03198700770735741, -0.012996301986277103, -0.04799509793519974, 0.0027092816308140755, -0.02523631975054741, -0.04229309782385826, -0.023959707468748093, -0.0047743008472025394, -0.02227572165429592, 0.05675797164440155, -0.01359238475561142, 0.005907166749238968, 0.02012963779270649, -0.01807054691016674, 0.0014035606291145086, -0.04009602218866348, 0.08492609113454819, 0.05828876420855522, 0.024662526324391365 ]
[ -0.002317673061043024, 0.01038320641964674, -0.05412167310714722, 0.04378661885857582, 0.05675049126148224, 0.013852778822183609, -0.01741093210875988, 0.01752147451043129, -0.008904942311346531, -0.024462027475237846, 0.016981756314635277, 0.002758375834673643, 0.005756285507231951, -0.003036651760339737, 0.017240380868315697, -0.0153739545494318, 0.003995210397988558, -0.021177781745791435, 0.016487743705511093, 0.013904438354074955, -0.0019938629120588303, 0.04693194478750229, 0.01695821061730385, 0.017748242244124413, 0.024434057995676994, 0.02905123680830002, -0.07527611404657364, -0.033052295446395874, 0.017849348485469818, -0.1653006374835968, 0.014081880450248718, 0.001990214455872774, 0.015974918380379677, -0.003868228755891323, 0.008384471759200096, 0.00790519081056118, -0.006301931571215391, 0.007021106313914061, 0.01281215064227581, 0.01916804164648056, -0.002547841053456068, 0.011269131675362587, -0.023487159982323647, 0.003593968693166971, -0.023977704346179962, -0.026100587099790573, -0.02918902412056923, -0.011953377164900303, -0.03092331625521183, 0.011705055832862854, -0.035552069544792175, 0.00010439032485010102, -0.01197225134819746, -0.0020605118479579687, -0.05409039556980133, 0.01974230818450451, -0.025853127241134644, -0.006454235874116421, 0.001968222903087735, -0.0228984747081995, -0.008894595317542553, 0.01294771209359169, -0.08322055637836456, -0.009756214916706085, -0.01567755453288555, -0.02091028355062008, -0.06223733350634575, -0.005222249310463667, -0.014445577748119831, 0.031837109476327896, 0.011088724248111248, -0.019362254068255424, 0.02946544624865055, -0.017864713445305824, 0.026685908436775208, 0.018403593450784683, -0.003737076884135604, -0.007188267540186644, -0.043466467410326004, -0.01853281818330288, -0.012527844868600368, 0.01611858606338501, 0.01667395792901516, 0.0006979143363423645, 0.02561205066740513, 0.019592344760894775, 0.04560128226876259, -0.0021495867986232042, -0.01111602783203125, -0.025145148858428, 0.02917891927063465, -0.04483628645539284, 0.04580385982990265, -0.00928276777267456, -0.0894908681511879, -0.01261032186448574, 0.03378311172127724, 0.00591648044064641, -0.023848632350564003, 0.8185170292854309, -0.006545727141201496, 0.023032786324620247, 0.040953051298856735, 0.004663800820708275, 0.0001952155726030469, -0.043563202023506165, 0.02431699074804783, 0.008958706632256508, 0.05016588792204857, -0.03869302198290825, 0.021992087364196777, -0.021109744906425476, 0.0068290685303509235, -0.010514085181057453, 0.05326662212610245, 0.022374257445335388, 0.04826098307967186, -0.0316513366997242, 0.019697247073054314, 0.01885787397623062, 0.03299861028790474, -0.020637789741158485, 0.0026119332760572433, 0.05319257080554962, 0.03646164759993553, -0.15582984685897827, -0.011408250778913498, -5.802087668735189e-33, 0.0579882450401783, 0.011336170136928558, -0.027691641822457314, -0.00732640502974391, -0.003201180836185813, 0.022952737286686897, -0.012316510081291199, -0.001445875852368772, -0.025220884010195732, -0.008141615428030491, -0.012261278927326202, 0.017305731773376465, -0.023913558572530746, 0.011258251965045929, 0.005939987953752279, -0.02758737839758396, -0.011375531554222107, 0.035690996795892715, 0.03851861506700516, 0.02737285941839218, 0.014227359555661678, 0.012604204006493092, 0.003970990888774395, 0.03458870202302933, -0.006706755142658949, 0.04426199570298195, 0.025426577776670456, -0.021315494552254677, -0.016675518825650215, -0.041777871549129486, -0.008003251627087593, 0.023424530401825905, -0.01377248577773571, -0.060267772525548935, -0.009350523352622986, -0.020947976037859917, -0.02173977717757225, 0.011208560317754745, -0.023384980857372284, 0.0020302743650972843, -0.05308127403259277, 0.024271396920084953, -0.04358115419745445, -0.007081963121891022, -0.009835627861320972, -0.026532500982284546, -0.004820156376808882, 0.04967556521296501, -0.0016321537550538778, 0.004234382417052984, -0.028528301045298576, -0.007303983438760042, 0.039344459772109985, 0.04120251163840294, 0.012667165137827396, 0.008048477582633495, -0.018560918048024178, 0.02285643480718136, 0.016422271728515625, 0.0317031592130661, 0.018141474574804306, -0.025127604603767395, -0.018429655581712723, 0.04238102212548256, -0.02901420369744301, -0.012143674306571484, 0.03604406863451004, 0.027515938505530357, 0.0698750838637352, -0.015091112814843655, -0.04982165992259979, 0.006971979979425669, 0.0018807812593877316, 0.002609618939459324, 0.009798931889235973, -0.0032256643753498793, -0.02696453034877777, -0.0011104425648227334, 0.013971291482448578, 0.011171223595738411, -0.020527150481939316, -0.021075449883937836, 0.01778242364525795, -0.017391100525856018, -0.012921086512506008, 0.00782240740954876, 0.043046027421951294, -0.02553446963429451, -0.05204595625400543, 0.013829534873366356, 0.043373871594667435, 0.024260031059384346, 0.01865442283451557, -0.04257814213633537, 0.02141660265624523, 6.677915816096243e-33, 0.031716760247945786, -0.0301319919526577, 0.0069715240970253944, -0.0016038960311561823, -0.009078683331608772, -0.0025580287910997868, 0.01106966845691204, 0.03251948207616806, -0.0497315376996994, 0.018706228584051132, -0.03550596162676811, 0.026768656447529793, -0.010629856027662754, -0.009254110977053642, 0.039003897458314896, -0.019666539505124092, -0.005144058261066675, -0.02401472069323063, 0.05500572919845581, 0.023583197966217995, -0.015741460025310516, -0.004625367466360331, 0.022378046065568924, 0.034981634467840195, 0.045954879373311996, 0.054601918905973434, -0.02911538816988468, -0.003138588974252343, -0.027862422168254852, -0.036135751754045486, -0.019654184579849243, 0.006958032958209515, -0.0296533964574337, -0.023312391713261604, -0.01751560904085636, 0.04342908039689064, -0.016469795256853104, 0.05930742621421814, 0.01640021800994873, -0.008069289848208427, 0.026982616633176804, 0.024538682773709297, 0.006617699284106493, 0.01678367890417576, -0.007060732692480087, -0.00320017640478909, -0.0077780005522072315, 0.021555747836828232, 0.00959109328687191, 0.001348635763861239, -0.006808839272707701, -0.04089077189564705, 0.014344127848744392, -0.030997131019830704, 0.02658075839281082, -0.048226792365312576, 0.000737262365873903, -0.0013069432461634278, -0.08254289627075195, 0.014157910831272602, -0.00815126858651638, 0.04416519030928612, -0.011572601273655891, -0.004857649561017752, -0.049959976226091385, -0.036014460027217865, -0.018339671194553375, -0.030001167207956314, 0.017517630010843277, 0.0341290682554245, -0.00732298381626606, -0.04865965619683266, -0.026140613481402397, 0.062144726514816284, 0.019480984658002853, -0.0005101165152154863, 0.005135510116815567, 0.016455084085464478, 0.006639669183641672, 0.014050588943064213, -0.024999821558594704, 0.00015332525072153658, -0.01231900043785572, -0.03610551357269287, 0.03477578982710838, 0.012716582044959068, -0.012938182801008224, -0.001167368027381599, 0.039027754217386246, 0.012795419432222843, 0.008521328680217266, -0.019711561501026154, 0.0082071702927351, 0.012703648768365383, 0.009714714251458645, -1.2331560661493768e-8, -0.0034442367032170296, -0.03137480840086937, -0.02778048813343048, 0.0024506226181983948, 0.054706793278455734, 0.022009553387761116, -0.023570168763399124, -0.021857187151908875, -0.0011009053559973836, -0.0194716714322567, 0.022094663232564926, -0.015319137834012508, 0.024668825790286064, 0.03535471856594086, 0.020962638780474663, -0.017725124955177307, 0.0661950558423996, -0.00026456027990207076, 0.016375266015529633, -0.0160197950899601, 0.009735668078064919, 0.04009654000401497, 0.02035420946776867, -0.043378591537475586, 0.02371448464691639, -0.005272465758025646, -0.010247008875012398, -0.06250424683094025, -0.03937723860144615, -0.019906993955373764, 0.04325325787067413, -0.015993714332580566, -0.047542180866003036, -0.021144025027751923, 0.03288031369447708, 0.0035028671845793724, 0.023686900734901428, -0.025608517229557037, -0.011965000070631504, -0.009506466798484325, 0.0014863981632515788, 0.025563698261976242, -0.009826249442994595, -0.02455074153840542, -0.02531609684228897, -0.04853347688913345, -0.019998908042907715, -0.008263866417109966, 0.04050230234861374, -0.0027837995439767838, -0.003511400893330574, -0.03468019887804985, 0.02255619876086712, 0.012023909017443657, -0.005586603656411171, 0.00587532389909029, 0.03445373848080635, 0.010197572410106659, -0.05026427283883095, -0.014515526592731476, -0.009507196955382824, -0.008607130497694016, 0.0006012035300955176, -0.0363289937376976 ]
asciidoc-asciidoc-exploding-includes
https://markhneedham.com/blog/2018/01/23/asciidoc-asciidoc-exploding-includes
false
2018-06-03 20:11:21
Neo4j 3.4: Gotchas when working with Durations
[ "neo4j", "cypher", "datetime" ]
[ "Neo4j" ]
Continuing with my explorations of Strava data in Neo4j I wanted to share some things I learnt while trying to work out my pace for certain distances. Before we get into the pace calculations let's first understand how the duration function works. If we run the following query we might expect to get back the same value that we put in... [source, cypher] ---- RETURN duration({seconds: 413.77}).seconds AS seconds ---- [source, text] ---- ╒═════════╕ │"seconds"│ ╞═════════╡ │413 │ └─────────┘ ---- ...but as you can see the value gets rounded down to the nearest number, losing us some accuracy. The rest of the value is available under the `millisecondsOfSecond` property, so we could retrieve the whole value by executing this query: [source, cypher] ---- WITH duration({seconds: 413.77}) AS duration RETURN duration.seconds AS s, duration.millisecondsOfSecond AS ms ---- [source, text] ---- ╒═══╤════╕ │"s"│"ms"│ ╞═══╪════╡ │413│769 │ └───┴────┘ ---- That's now split into two different values but I want to get a single value in seconds which we can do by returning the value in milliseconds and dividing by 1,000: [source, cypher] ---- RETURN duration({seconds: 413.77}).milliseconds / 1000.0 AS seconds ---- [source, text] ---- ╒═════════╕ │"seconds"│ ╞═════════╡ │413.769 │ └─────────┘ ---- == Calculating pace The actual problem I'm solving is to work out the pace I was running at for different distances. For example, we could represent my most recent predicted 5km like this: [source, cypher] ---- RETURN duration({minutes: 21, seconds: 24}) AS elapsedTime, toFloat(5000) AS distance ---- [source, cypher] ---- ╒═════════════╤══════════╕ │"elapsedTime"│"distance"│ ╞═════════════╪══════════╡ │"P0M0DT1284S"│5000.0 │ └─────────────┴──────────┘ ---- If we want to work out my pace per mile and per kilometre we can write the following query: [source, cypher] ---- WITH duration({minutes: 21, seconds: 24}) AS elapsedTime, toFloat(5000) AS distance RETURN duration({seconds: elapsedTime.seconds / distance * 1609.34}) AS pacePerMile, duration({seconds: elapsedTime.seconds / distance * 1000}) AS pacePerKm ---- [source, text] ---- ╒══════════════════════╤══════════════════════╕ │"pacePerMile" │"pacePerKm" │ ╞══════════════════════╪══════════════════════╡ │"P0M0DT413.278511999S"│"P0M0DT256.799999999S"│ └──────────────────────┴──────────────────────┘ ---- Let's use `apoc.date.format` to format that a bit more nicely: [source, cypher] ---- WITH duration({minutes: 21, seconds: 24}) AS elapsedTime, toFloat(5000) AS distance WITH duration({seconds: elapsedTime.seconds / distance * 1609.34}) AS pacePerMile, duration({seconds: elapsedTime.seconds / distance * 1000}) AS pacePerKm RETURN apoc.date.format(pacePerMile.milliseconds, "ms", "mm:ss") AS pacePerMile, apoc.date.format(pacePerKm.milliseconds, "ms", "mm:ss") AS pacePerKm ---- [source, text] ---- ╒═════════════╤═══════════╕ │"pacePerMile"│"pacePerKm"│ ╞═════════════╪═══════════╡ │"06:53" │"04:16" │ └─────────────┴───────────┘ ---- So far so good. We have a bit of duplication on lines 3 and 4 which we can remove by calculating the `pacePerMetre` and then multiplying that in the next step. The following query should do the trick: [source, cypher] ---- WITH duration({minutes: 21, seconds: 24}) AS elapsedTime, toFloat(5000) AS distance WITH duration({seconds: elapsedTime.seconds / distance}) AS pacePerMetre RETURN apoc.date.format(toInteger(pacePerMetre.milliseconds * 1609.34), "ms", "mm:ss") AS pacePerMile, apoc.date.format(pacePerMetre.milliseconds * 1000, "ms", "mm:ss") AS pacePerKm ---- Let's run that: [source, text] ---- ╒═════════════╤═══════════╕ │"pacePerMile"│"pacePerKm"│ ╞═════════════╪═══════════╡ │"06:51" │"04:16" │ └─────────────┴───────────┘ ---- The `pacePerKm` still looks good but the `pacePerMile` is now 2 seconds less than it was before. The rounding has struck again but let's break it down and see exactly what's happened. The following query shows us how the rounding has resulted in completely different end values: [source, cypher] ---- WITH duration({minutes: 21, seconds: 24}) AS elapsedTime, toFloat(5000) AS distance WITH duration({seconds: elapsedTime.seconds / distance * 1609.34}) AS pacePerMile, duration({seconds: elapsedTime.seconds / distance}) AS pacePerMetre RETURN pacePerMile.milliseconds AS millis1, pacePerMetre.milliseconds * 1609.34 AS millis2 ---- [source, text] ---- ╒═════════╤═════════╕ │"millis1"│"millis2"│ ╞═════════╪═════════╡ │413278 │411991.04│ └─────────┴─────────┘ ---- To solve our problem we'll need to return the `pacePerMetre` in microseconds and then convert it into `pacePerMile`. Let's first tweak the query above so that we get the same millisecond values: [source, cypher] ---- WITH duration({minutes: 21, seconds: 24}) AS elapsedTime, toFloat(5000) AS distance WITH duration({seconds: elapsedTime.seconds / distance * 1609.34}) AS pacePerMile, duration({seconds: elapsedTime.seconds / distance}) AS pacePerMetre RETURN pacePerMile.milliseconds AS millis1, pacePerMetre.microseconds * 1.60934 AS millis2 ---- [source, text] ---- ╒═════════╤════════════╕ │"millis1"│"millis2" │ ╞═════════╪════════════╡ │413278 │413276.90266│ └─────────┴────────────┘ ---- Now the 2nd value is actually more accurate but since we're only measuring down to the second it doesn't matter. We can use the same approach to get an accurate `pacePerMile` value. The following query does the trick, and we'll even add in `metresPerSecond` for good measure: [source, cypher] ---- WITH duration({minutes: 21, seconds: 24}) AS elapsedTime, toFloat(5000) AS distance WITH duration({seconds: elapsedTime.seconds / distance}) AS pacePerMetre RETURN apoc.date.format(toInteger(pacePerMetre.microseconds * 1.60934), "ms", "mm:ss") AS pacePerMile, apoc.date.format(pacePerMetre.microseconds, "ms", "mm:ss") AS pacePerKm, 1.0 / (pacePerMetre.microseconds / 1000.0 / 1000.0) AS metresPerSecond ---- And if we run that: [source, text] ---- ╒═════════════╤═══════════╤══════════════════╕ │"pacePerMile"│"pacePerKm"│"metresPerSecond" │ ╞═════════════╪═══════════╪══════════════════╡ │"06:53" │"04:16" │3.8940961608105953│ └─────────────┴───────────┴──────────────────┘ ---- Sweet! That's all I've got for now but let me know in the comments if you've had a chance to play around with the temporal data type and what your experience has been like.
Learn how to work around some rounding gotchas when working with Neo4j's new Duration data type.
null
[ 0.03430366888642311, -0.018574010580778122, -0.005248212721198797, 0.03798961639404297, 0.09356338530778885, 0.018789570778608322, 0.0345974937081337, 0.009726347401738167, 0.019533909857273102, -0.0048491861671209335, 0.027002770453691483, -0.0096138259395957, -0.05146316438913345, 0.01595069095492363, 0.012464046478271484, 0.06914982944726944, 0.08156819641590118, -0.0068020946346223354, -0.0015423191944137216, -0.010690067894756794, 0.014445108361542225, 0.03147692605853081, 0.00845059659332037, 0.0391797199845314, 0.04864376038312912, 0.017233343794941902, -0.020942065864801407, -0.002107711508870125, -0.05572052299976349, -0.008280416019260883, 0.058120246976614, -0.011492885649204254, 0.005071958526968956, -0.019393347203731537, 0.04219699651002884, 0.00873878039419651, -0.04078764468431473, 0.0018534002592787147, -0.010754283517599106, -0.03673199564218521, -0.058203283697366714, 0.020299486815929413, -0.028939008712768555, 0.023610588163137436, -0.048059530556201935, 0.010244820266962051, -0.03287838026881218, 0.011605444364249706, -0.02190212346613407, -0.0009591507841832936, -0.07177875936031342, 0.03294139355421066, -0.010642082430422306, 0.02465813048183918, -0.01359468512237072, 0.04145599156618118, 0.011350668035447598, -0.08458026498556137, 0.027308108285069466, -0.022661758586764336, 0.009581259451806545, -0.021785857155919075, -0.015672272071242332, 0.014149636030197144, 0.018392980098724365, -0.03845502808690071, 0.023886628448963165, 0.0580778531730175, -0.035504523664712906, 0.011374438181519508, -0.002017071470618248, 0.015877367928624153, 0.0025124193634837866, 0.03558840975165367, -0.014604265801608562, -0.04768557846546173, 0.014054995961487293, 0.04291960969567299, 0.04866280406713486, 0.02593120187520981, -0.01729748584330082, -0.005668507423251867, 0.022593827918171883, 0.04310128465294838, -0.014677135273814201, -0.01863887533545494, -0.020544569939374924, -0.022964024916291237, -0.04305160790681839, 0.05003093555569649, 0.03041912242770195, -0.07088204473257065, 0.01049345638602972, -0.010211779735982418, -0.0005418228101916611, 0.004951325245201588, -0.0017276772996410728, -0.021116137504577637, -0.00233139144256711, -0.03592199459671974, -0.029873063787817955, -0.046535931527614594, -0.005490978714078665, 0.034376904368400574, -0.07024573534727097, -0.017403436824679375, -0.04652347043156624, -0.02263535186648369, 0.04578619822859764, 0.014759763143956661, -0.06288023293018341, 0.016807297244668007, -0.012021563947200775, 0.01928228884935379, -0.08291047811508179, 0.04179368540644646, 0.021221240982413292, -0.007115365006029606, -0.030225560069084167, -0.006048126611858606, 0.05379331111907959, 0.022192995995283127, -0.007087797857820988, 0.06350117176771164, -0.006797595880925655, 0.0768747329711914, 0.018953323364257812, 0.024255359545350075, -0.010097642429172993, -0.04467421770095825, -0.03890734910964966, 0.031304262578487396, -0.005096409935504198, 0.009596035815775394, -0.021854404360055923, -0.04699952155351639, -0.01966608688235283, 0.008263709023594856, 0.04706360027194023, 0.0356672927737236, 0.04271075129508972, -0.02494220621883869, 0.04190151393413544, -0.00127071188762784, 0.01982777565717697, 0.021477075293660164, -0.03625132888555527, -0.03918671980500221, 0.0011129870545119047, -0.0007232032949104905, 0.017395593225955963, 0.03806283697485924, 0.05547415092587471, -0.033810198307037354, 0.0064841993153095245, 0.10273388028144836, 0.035825882107019424, 0.009523678570985794, -0.020097749307751656, 0.03554178401827812, 0.04623575136065483, 0.02538580447435379, -0.0023241706658154726, 0.06623861938714981, 0.006638539023697376, -0.0071207862347364426, 0.005217222962528467, 0.07566110789775848, -0.025734521448612213, -0.02239823155105114, -0.025115540251135826, -0.041525211185216904, 0.07592837512493134, -0.0606018528342247, -0.02731313928961754, 0.04513692110776901, 0.05039994791150093, 0.03620213642716408, 0.016531262546777725, -0.014495170675218105, -0.0732814148068428, 0.0460638664662838, 0.014569385908544064, 0.02630000002682209, 0.0381392240524292, -0.011692092753946781, 0.0790916159749031, 0.010152788832783699, -0.03360351175069809, 0.0011349458945915103, -0.06030895933508873, -0.07363629341125488, -0.0008460702956654131, -0.021834641695022583, 0.060525812208652496, -0.05103808268904686, 0.014584675431251526, 0.03386653959751129, -0.0020182065200060606, 0.044716257601976395, 0.021829184144735336, -0.008557039313018322, 0.04278173670172691, -0.04318207874894142, -0.03169775381684303, 0.059345848858356476, 0.03906634449958801, -0.03751448169350624, -0.029124896973371506, 0.027798885479569435, -0.033736154437065125, 0.017746364697813988, 0.031016524881124496, -0.011588840745389462, 0.028148328885436058, 0.02371707372367382, 0.02870665304362774, -0.009175898507237434, 0.01306652557104826, -0.03184634819626808, 0.03486700356006622, 0.025622503831982613, -0.022525040432810783, -0.014070173725485802, -0.04277318716049194, 0.09721526503562927, 0.05412902310490608, -0.016466623172163963, -0.08205542713403702, 0.008526735939085484, 0.002578413113951683, -0.028381161391735077, 0.000043402440496720374, -0.022504933178424835, 0.008930607698857784, -0.02203453704714775, -0.03113555908203125, -0.026315225288271904, -0.002309344010427594, -0.028832226991653442, 0.014503256417810917, 0.040429309010505676, -0.00723491283133626, 0.06841059774160385, -0.019547702744603157, -0.001289183972403407, -0.0020601653959602118, -0.025476325303316116, -0.0670013576745987, 0.011526290327310562, -0.0031389561481773853, -0.008136266842484474, 0.05593030899763107, -0.015040004625916481, -0.006074132863432169, -0.03332115709781647, -0.021738937124609947, 0.04022069275379181, 0.05224952474236488, 0.05357906222343445, 0.02918824553489685, 0.07267926633358002, 0.007075671572238207, 0.02133476547896862, -0.030869416892528534, -0.06670021265745163, -0.0698423758149147, -0.03430484980344772, 0.02348671667277813, 0.000022525404347106814, 0.028015827760100365, -0.008443770930171013, 0.025571251288056374, -0.01225871592760086, 0.004008276388049126, -0.004432450979948044, 0.05063601955771446, -0.014210786670446396, -0.022375332191586494, -0.01671511121094227, -0.016137629747390747, 0.07308824360370636, -0.053713202476501465, -0.03877727687358856, 0.0020363591611385345, -0.032625649124383926, 0.05855222046375275, -0.07402516156435013, -0.006562902592122555, 0.012602001428604126, 0.020833224058151245, 0.05626683682203293, 0.03364272788167, 0.03497181832790375, 0.08464895188808441, 0.024833912029862404, 0.019845863804221153, 0.02177281863987446, -0.004660406615585089, 0.03534379601478577, -0.003801372367888689, 0.016437627375125885, 0.04850555956363678, -0.01929934322834015, -0.018885817378759384, -0.04175944626331329, -0.036701008677482605, -0.03792291879653931, -0.2418898046016693, 0.050367631018161774, -0.06338039040565491, -0.04582831636071205, 0.009425649419426918, -0.04605192318558693, 0.004095946904271841, -0.014197148382663727, -0.047299858182668686, 0.002076973207294941, -0.0066942316479980946, -0.047022540122270584, -0.012912175618112087, 0.043611351400613785, 0.020075511187314987, -0.004519295878708363, -0.029637405648827553, -0.05502130463719368, -0.015980828553438187, 0.04778919368982315, 0.02015915885567665, -0.058001287281513214, -0.007812874391674995, 0.0027170598041266203, 0.025066770613193512, 0.0517389215528965, -0.0627056136727333, 0.006340513937175274, -0.06691933423280716, -0.02404450997710228, 0.0047907233238220215, -0.021314065903425217, 0.04407772794365883, -0.020569169893860817, 0.0060553220100700855, -0.04419044032692909, 0.017325324937701225, 0.003889793995767832, 0.021914537996053696, 0.007982948794960976, -0.04473797231912613, -0.04664149507880211, 0.031144652515649796, -0.013578089885413647, 0.07562530785799026, 0.027479106560349464, -0.048857953399419785, 0.007762891240417957, -0.01688479632139206, 0.07687811553478241, -0.027540454640984535, -0.026590853929519653, -0.043702542781829834, 0.01668293960392475, -0.029495643451809883, -0.0591559112071991, -0.01897338777780533, -0.0314367301762104, -0.024440689012408257, -0.0165555477142334, -0.017688676714897156, -0.042421553283929825, 0.03222927823662758, -0.06541838496923447, -0.0038422157522290945, -0.049510397017002106, -0.0837654396891594, -0.01679595187306404, 0.02842000499367714, 0.01182233914732933, -0.048670694231987, 0.004253741353750229, -0.0270618237555027, -0.10448340326547623, -0.05492798984050751, -0.01738583669066429, 0.007792377844452858, -0.010755940340459347, -0.018882878124713898, 0.04912390932440758, -0.07115929573774338, -0.0725039467215538, -0.012265060096979141, 0.03196362406015396, 0.03399480879306793, 0.0012154990108683705, -0.013914436101913452, -0.022480597719550133, 0.005615395028144121, 0.004166873171925545, 0.08258875459432602, -0.02303825318813324, -0.030355384573340416, -0.022196829319000244, -0.002234815154224634, 0.00800648145377636, -0.015293887816369534, -0.011822122149169445, 0.0090499771758914, 0.023597100749611855, 0.02830425277352333, -0.04150233790278435, 0.010764884762465954, -0.05293767899274826, -0.011645710095763206, -0.04210624843835831, -0.04831035062670708, 0.008847611024975777, 0.033270642161369324, 0.01582781970500946, 0.008725566789507866, -0.010665366426110268, 0.0051400489173829556, -0.033964913338422775, -0.04641379788517952, -0.03885330259799957, 0.01251616794615984, 0.030983969569206238, 0.04813004285097122, 0.012081587687134743, -0.0644768700003624, 0.04005634784698486, 0.007953241467475891, -0.0211007222533226, -0.04378289356827736, -0.015650467947125435, -0.029127823188900948, -0.03247862309217453, -0.007659940980374813, 0.022353123873472214, -0.050195757299661636, 0.038009028881788254, 0.03277658671140671, -0.0034963663201779127, 0.031056484207510948, -0.0050837076269090176, -0.03596608713269234, -0.03271626681089401, 0.016012050211429596, -0.0107575049623847, -0.003096597967669368, -0.005243685562163591, 0.019953949376940727, 0.053167443722486496, 0.04588494077324867, 0.01580660417675972, 0.028149791061878204, -0.03018796443939209, 0.006284663453698158, -0.01347055658698082, -0.0018622749485075474, -0.026358870789408684, 0.002777345711365342, -0.040111809968948364, -0.009052922017872334, -0.011860175989568233, 0.03968336805701256, -0.01615060865879059, -0.039524391293525696, -0.02522280253469944, 0.019306158646941185, -0.036310825496912, -0.008758965879678726, -0.01592685841023922, 0.003255939343944192, 0.042388856410980225, -0.013007120229303837, 0.010593997314572334, -0.036688294261693954, -0.02360367961227894, 0.0070924218744039536, -0.022366655990481377, -0.042783524841070175, 0.015456076711416245, -0.02135358937084675, -0.004457124043256044, 0.01213288214057684, 0.028365574777126312, 0.012298560701310635, -0.0003098730812780559, 0.006728463340550661, -0.0026850849390029907, 0.01655748300254345, 0.009665755555033684, 0.030728869140148163, 0.035202961415052414, -0.008534126915037632, -0.009473319165408611, -0.01637849025428295, 0.0046847001649439335, -0.003428432159125805, -0.0017898970982059836, -0.05194082483649254, -0.02319132536649704, -0.025980161502957344, -0.05562682822346687, 0.03238752484321594, 0.024043818935751915, -0.008840546943247318, 0.052740100771188736, 0.021642694249749184, -0.019621631130576134, -0.011090083979070187, 0.02624420076608658, 0.05905701592564583, -0.026754092425107956, 0.012579265981912613, 0.022828934714198112, 0.0022023958154022694, -0.00457751052454114, 0.004969130735844374, -0.045533064752817154, -0.038290590047836304, -0.003700213972479105, 0.009119675494730473, -0.02578735165297985, -0.046455446630716324, -0.023739781230688095, -0.007443440146744251, -0.01929573155939579, 0.04902446269989014, 0.0020736779551953077, -0.0255538709461689, -0.02598647214472294, 0.004963824059814215, 0.04335174337029457, -0.007632626686245203, 0.006343713495880365, 0.033736519515514374, -0.008074064739048481, -0.02308075875043869, -0.04373388737440109, 0.04662159085273743, 0.024379117414355278, -0.00663780840113759, -0.028805922716856003, -0.0776771530508995, 0.009771629236638546, -0.03790339455008507, 0.044488437473773956, -0.011750140227377415, 0.015082231722772121, -0.023455459624528885, 0.022804025560617447, -0.01895792782306671, 0.019913917407393456, 0.008354512974619865, -0.0323130302131176, 0.008797106333076954, 0.04562373459339142, 0.005220904015004635, 0.0462312288582325, -0.023132937029004097, -0.036371711641550064, 0.053658559918403625, -0.028221972286701202, -0.058324672281742096, -0.008719249628484249, -0.03606867790222168, -0.00243644742295146, 0.006327299866825342, -0.019734065979719162, -0.03948069363832474, 0.05251699313521385, 0.04887409880757332, 0.044465042650699615, 0.04468775540590286, -0.03560797497630119, 0.020761271938681602, -0.019843200221657753, 0.010507923550903797, -0.08998256921768188, 0.002966185798868537, 0.034429896622896194, 0.01732238009572029, 0.014718781225383282, 0.004977854434400797, -0.013832496479153633, 0.028806576505303383, -0.07549403607845306, -0.03326953947544098, 0.04898424819111824, -0.010327005758881569, 0.036305394023656845, 0.018390696495771408, -0.057394083589315414, 0.004802389536052942, 0.044273074716329575, -0.031884849071502686, -0.0160464346408844, -0.018994886428117752, 0.038617394864559174, -0.033431023359298706, 0.047132477164268494, -0.030788954347372055, -0.019185611978173256, 0.0801607072353363, 0.020435523241758347, 0.03285178542137146, 0.04918258264660835, -0.028111211955547333, 0.048175565898418427, 0.047480180859565735, -0.03780410438776016, -0.0415206253528595, 0.022188546136021614, 0.0030661653727293015, -0.057038314640522, 0.053095944225788116, 0.008810611441731453, 0.007776396349072456, -0.03988753259181976, 0.07181692123413086, 0.013794021680951118, -0.03746368736028671, -0.05260128155350685, 0.020740026608109474, -0.020163414999842644, -0.018365956842899323, -0.009215712547302246, 0.007566225249320269, -0.05315220728516579, 0.06849260628223419, -0.013048376888036728, -0.003248835913836956, 0.0868508443236351, 0.004620830528438091, 0.006685085594654083, 0.044542521238327026, 0.08870658278465271, 0.07811912894248962, 0.044146593660116196, -0.021323228254914284, 0.08152321726083755, -0.010000810027122498, -0.03823991119861603, -0.016183990985155106, -0.04743633419275284, -0.035264648497104645, -0.019193366169929504, 0.043382421135902405, 0.0724920928478241, -0.022276727482676506, 0.07776787132024765, -0.04940315708518028, -0.006914018653333187, -0.006255225744098425, -0.010941674001514912, 0.028224755078554153, 0.03176512569189072, 0.019678454846143723, 0.052360910922288895, -0.028810033574700356, -0.024122238159179688, 0.01745302975177765, -0.010245779529213905, 0.0059260097332298756, 0.0515059195458889, -0.016004186123609543, 0.0012006694450974464, 0.010758394375443459, 0.016799412667751312, 0.08962681889533997, -0.030839288607239723, 0.004583769477903843, 0.0011645894264802337, 0.031324200332164764, -0.003375398926436901, 0.015446974895894527, 0.003257082775235176, -0.009789775125682354, -0.019199391826987267, -0.03171215206384659, -0.056851744651794434, -0.0047840215265750885, -0.031093979254364967, 0.007908771745860577, -0.027606740593910217, 0.02130306139588356, 0.007928271777927876, -0.047030363231897354, -0.041799239814281464, -0.042183104902505875, -0.0501164011657238, -0.04406854510307312, -0.09640788286924362, 0.011519141495227814, 0.011292302049696445, 0.001432324294000864, -0.0038129249587655067, 0.01770065911114216, 0.002115862676873803, -0.008570904843509197, 0.015778549015522003, -0.030062029138207436, -0.01852993108332157, 0.03042270429432392, 0.016090426594018936, 0.012018293142318726, 0.01956031285226345, 0.060295913368463516, -0.0013766192132607102, 0.010363573208451271, -0.025941533967852592, 0.007108853664249182, 0.06571833789348602, 0.0349578931927681, -0.0060232835821807384, -0.04349074885249138, -0.00005211360257817432, 0.032112158834934235, -0.013587652705609798, -0.0868644118309021, 0.018559487536549568, 0.04678858816623688, 0.024135852232575417, 0.03492629900574684, -0.026511162519454956, -0.02030561864376068, -0.050447579473257065, -0.012147454544901848, 0.0283314548432827, -0.0019080772763118148, 0.04415776580572128, -0.018283797428011894, 0.07751205563545227, 0.009841999970376492, -0.03795589506626129, -0.02764883078634739, -0.01719055324792862, -0.012905103154480457, -0.008884101174771786, -0.03233696147799492, -0.03159668669104576, -0.044813916087150574, -0.09094123542308807, -0.017346246168017387, -0.009326416067779064, -0.026691684499382973, -0.026080112904310226, 0.03138820081949234, 0.03465932980179787, -0.004771992098540068, 0.040622908622026443, -0.021070988848805428, 0.03525659441947937, -0.026148468255996704, -0.0342002734541893, -0.009451664984226227, 0.002560504013672471, -0.008398696780204773, 0.02239513024687767, 0.032521773129701614, -0.048829980194568634, -0.0009845863096415997, -0.0286176148802042, 0.02684982866048813, 0.0385567732155323, 0.021489255130290985, 0.02802932634949684 ]
[ -0.07363799214363098, -0.0009262331295758486, -0.029698576778173447, 0.019489631056785583, 0.06113602966070175, -0.03616326302289963, -0.021354058757424355, -0.0069192079827189445, 0.03834111988544464, -0.021622654050588608, 0.0041960193775594234, -0.0374857634305954, -0.01281830482184887, 0.000624197768047452, 0.02953485958278179, -0.04306802526116371, -0.025151319801807404, -0.06425806879997253, -0.016598088666796684, 0.05185237526893616, -0.015096989460289478, -0.04870518669486046, -0.012861326336860657, -0.03207222372293472, 0.04279973730444908, 0.051644522696733475, 0.048636239022016525, -0.03284519538283348, -0.03991009667515755, -0.1969728171825409, 0.018696052953600883, 0.022517405450344086, -0.010644428431987762, -0.002328575123101473, -0.02150329202413559, 0.04071144014596939, 0.02344517782330513, -0.00911672879010439, 0.024707116186618805, 0.08407445251941681, 0.03128682076931, 0.027868250384926796, -0.042276911437511444, 0.0005682214978151023, 0.024416614323854446, 0.014570201747119427, -0.038069769740104675, -0.002540613291785121, -0.0005681681795977056, 0.030067959800362587, -0.010982461273670197, 0.009088202379643917, 0.002377852564677596, 0.019329387694597244, 0.019369781017303467, 0.043257053941488266, 0.058302853256464005, 0.052737049758434296, 0.05378780514001846, -0.022149480879306793, -0.011993245221674442, -0.011930590495467186, -0.1382041722536087, 0.06278146058320999, -0.004223327152431011, -0.003587893908843398, -0.028640830889344215, -0.006786123383790255, -0.0423913449048996, 0.06288982927799225, -0.0006697195349261165, -0.0030459025874733925, -0.052393097430467606, 0.05648000165820122, 0.0047347270883619785, 0.012652113102376461, -0.0003057983412873, 0.009050887078046799, 0.04424407333135605, -0.011155889369547367, -0.021182622760534286, 0.01379870530217886, -0.07158750295639038, -0.005609054118394852, 0.01463480293750763, 0.0382964201271534, 0.01511681079864502, 0.05856790766119957, 0.025556785985827446, 0.04469785839319229, 0.025070421397686005, 0.016489263623952866, 0.018520846962928772, 0.024433035403490067, -0.08808332681655884, -0.027417758479714394, 0.01862487941980362, 0.043264664709568024, 0.006428103428333998, 0.37924954295158386, 0.009063484147191048, 0.041083041578531265, -0.003228782443329692, 0.060299020260572433, 0.005155162885785103, -0.009659750387072563, -0.02379484474658966, -0.043437715619802475, 0.014803864061832428, -0.003847479121759534, 0.01791924051940441, -0.014281881973147392, 0.03842894732952118, -0.10454823076725006, 0.021877435967326164, 0.04751458391547203, 0.0524594783782959, 0.006248083431273699, -0.0024564582854509354, 0.0031945945229381323, -0.03326011076569557, 0.0011317619355395436, 0.044360045343637466, -0.007125471718609333, 0.00977204367518425, -0.0004933264572173357, 0.04838275536894798, 0.05909796804189682, 0.010557757690548897, 0.034715600311756134, 0.08021868765354156, -0.006394611205905676, -0.09629824757575989, 0.020059751346707344, -0.015956230461597443, 0.014463071711361408, 0.020847830921411514, -0.042599841952323914, -0.010144270025193691, 0.009248842485249043, -0.043558694422245026, -0.027826864272356033, 0.06363136321306229, -0.01302206888794899, -0.030528876930475235, 0.12885549664497375, 0.02122151479125023, -0.0285494402050972, -0.02233256585896015, -0.04265262186527252, -0.013197570107877254, 0.028460346162319183, -0.006983055733144283, -0.07685568928718567, -0.003708300180733204, 0.031144388020038605, 0.08609237521886826, -0.016372116282582283, -0.07670576870441437, -0.01647857576608658, -0.05245188623666763, -0.021287543699145317, -0.03843163326382637, 0.08288700133562088, 0.0596381351351738, -0.1120297983288765, -0.007468985393643379, 0.055431291460990906, 0.028920622542500496, -0.08660756051540375, 0.02113807387650013, 0.010587768629193306, -0.023617371916770935, -0.04845671355724335, 0.11394694447517395, -0.0043745688162744045, -0.02212434448301792, -0.0023813426960259676, 0.03378133103251457, 0.0191314946860075, -0.003255672985687852, 0.011397414840757847, -0.01949238032102585, 0.01722511276602745, -0.050576046109199524, -0.05612128973007202, -0.07859454303979874, 0.030180783942341805, -0.03979456424713135, -0.018924515694379807, -0.005068691447377205, -0.0706133097410202, -0.06093812361359596, 0.08522669970989227, -0.06048395857214928, -0.04989653825759888, -0.015876170247793198, 0.016617227345705032, -0.029735032469034195, -0.03959376737475395, 0.044367216527462006, -0.018047988414764404, -0.007365745957940817, 0.019578009843826294, -0.018246522173285484, 0.010834283195436, 0.06667015701532364, -0.051387857645750046, 0.048040345311164856, 0.05939702317118645, -0.03814343363046646, -0.012781593017280102, -0.018383145332336426, -0.016298087313771248, 0.010389341041445732, -0.011208910495042801, -0.019250603392720222, 0.0031883700285106897, 0.008544115349650383, 0.06439275294542313, -0.03852224349975586, -0.0341106578707695, -0.028610866516828537, -0.35024675726890564, -0.02550017088651657, -0.007900210097432137, 0.00654922379180789, 0.051737893372774124, -0.024067210033535957, -0.026881199330091476, -0.024840692058205605, 0.026643497869372368, -0.013633332215249538, 0.08370684832334518, -0.0192538071423769, -0.021204650402069092, -0.11844717711210251, 0.018948251381516457, 0.036521319299936295, -0.005153823643922806, -0.0005462882108986378, -0.01606779173016548, -0.0054376996122300625, 0.011697706766426563, -0.04801258444786072, -0.05184050276875496, -0.05300917103886604, -0.007687754463404417, -0.01004210114479065, 0.09355983883142471, -0.035728856921195984, 0.045797985047101974, -0.09602585434913635, 0.023884089663624763, -0.02779238112270832, -0.009072565473616123, -0.02738572657108307, -0.009907509200274944, -0.03746955469250679, 0.05604607239365578, 0.020860545337200165, -0.010509494692087173, -0.013088002800941467, -0.0566011518239975, 0.012569772079586983, -0.025008613243699074, 0.019972700625658035, -0.051520127803087234, 0.019136706367135048, -0.010717558674514294, -0.01468660682439804, 0.019907282665371895, 0.04686925187706947, -0.0016971699660643935, 0.023320669308304787, 0.009346235543489456, 0.02135319449007511, 0.06187152862548828, -0.019614573568105698, -0.07812929153442383, 0.0006323697161860764, -0.015168396756052971, 0.022771157324314117, -0.03212480992078781, 0.03315816447138786, 0.045279063284397125, -0.08562371879816055, 0.011612706817686558, 0.014907852746546268, -0.009869868867099285, -0.01305461023002863, 0.03230242803692818, -0.023936618119478226, -0.01963069476187229, 0.0961088016629219, -0.03465911000967026, -0.014274136163294315, 0.06984476745128632, 0.007488274946808815, -0.007162471767514944, 0.028418196365237236, 0.052114736288785934, 0.029502730816602707, 0.04114009067416191, -0.02865147590637207, 0.049155332148075104, -0.014794928021728992, -0.017723221331834793, 0.006539335940033197, 0.00844491831958294, -0.03159632533788681, 0.012423762120306492, 0.010485853999853134, -0.04360327497124672, -0.014844692312180996, 0.0030593799892812967, -0.05262475088238716, 0.06283506006002426, -0.03388676792383194, -0.24319984018802643, 0.07037834823131561, 0.04582512378692627, 0.04813293367624283, -0.008226971141994, -0.03987252712249756, 0.002440186683088541, -0.05187734216451645, -0.03676873818039894, -0.005314449314028025, 0.006464794278144836, 0.07853415608406067, -0.006198746617883444, 0.004652361385524273, 0.007509922608733177, 0.019671039655804634, 0.04185241833329201, 0.030217301100492477, 0.029339417815208435, 0.017208533361554146, 0.06612584739923477, -0.01909082755446434, 0.16188864409923553, 0.04481163248419762, 0.0026811216957867146, 0.030544182285666466, -0.02528262324631214, 0.004458126612007618, 0.08318949490785599, -0.036649685353040695, -0.02348044142127037, 0.02248057723045349, 0.02622559666633606, 0.04300924018025398, 0.0005859290831722319, -0.0405496321618557, -0.018872682005167007, 0.07544063776731491, 0.02490445412695408, -0.022399667650461197, 0.03982491046190262, -0.01282203383743763, -0.009543298743665218, 0.012550674378871918, 0.11269553005695343, -0.03659909591078758, -0.0095031363889575, -0.049254924058914185, -0.08677291870117188, -0.0023674522526562214, -0.03896643593907356, -0.02436947263777256, -0.02656727097928524, -0.0032842864748090506, -0.00848329160362482, 0.08824838697910309, 0.022071674466133118, -0.03190697729587555, 0.027992695569992065, 0.006248438730835915, -0.024868810549378395, -0.036959413439035416, 0.06916926056146622, -0.04762975499033928, 0.021517504006624222 ]
[ 0.017041873186826706, 0.07744963467121124, -0.016019022092223167, 0.06467574089765549, -0.006941382307559252, 0.016879770904779434, -0.03487752377986908, -0.000018005313904723153, -0.017862623557448387, -0.042466647922992706, -0.029840942472219467, -0.018548671156167984, 0.014964483678340912, -0.015238646417856216, 0.009312227368354797, -0.04494782164692879, 0.03521385043859482, 0.05273325741291046, 0.03696993738412857, 0.0002448188606649637, -0.011799233965575695, 0.03091362491250038, 0.04765377193689346, 0.02847471460700035, -0.0033043117728084326, 0.023079678416252136, -0.02160729095339775, 0.010823626071214676, 0.005635489709675312, -0.12177292257547379, -0.026494568213820457, -0.03154025599360466, -0.0011441984679549932, 0.009903033263981342, -0.05326589196920395, 0.02609439194202423, 0.03128495067358017, 0.04516496881842613, -0.04401438310742378, 0.01962847262620926, 0.03246939554810524, -0.029864294454455376, -0.015874264761805534, 0.030753368511795998, 0.010179116390645504, -0.010536202229559422, -0.011912648566067219, -0.020126821473240852, -0.028587818145751953, 0.010079065337777138, -0.058313239365816116, -0.024555420503020287, -0.04632418602705002, 0.0010751514928415418, 0.019764399155974388, 0.02022981457412243, -0.05616322532296181, 0.034723106771707535, -0.007998442277312279, -0.07634410262107849, 0.036077458411455154, -0.02100885845720768, -0.06692525744438171, -0.0348861925303936, -0.010245302692055702, -0.026831578463315964, 0.019708165898919106, 0.005204166751354933, 0.01798252947628498, -0.017266081646084785, 0.04001545533537865, 0.02464303746819496, -0.007670837454497814, -0.0015099982265383005, -0.040113408118486404, 0.05407204106450081, 0.024074260145425797, -0.018262868747115135, 0.0029009028803557158, -0.0013046968961134553, 0.019823450595140457, 0.014715786091983318, -0.02214893139898777, 0.004729422740638256, -0.008843651041388512, -0.0033417099621146917, 0.014140535145998001, 0.04376775771379471, 0.04182431474328041, -0.009503656066954136, 0.00876844022423029, -0.0012516529532149434, -0.05379476398229599, 0.0024379442911595106, -0.05961612984538078, 0.017932286486029625, -0.024449151009321213, 0.036434680223464966, 0.03324473649263382, 0.7770746946334839, 0.04659475013613701, -0.03636610880494118, -0.015398810617625713, 0.08351440727710724, 0.03449911251664162, 0.0018559596501290798, 0.03131014108657837, -0.000383388833142817, 0.006187545135617256, 0.00003855024988297373, 0.030388323590159416, 0.014017079956829548, -0.004674597177654505, 0.027058105915784836, 0.039629969745874405, 0.0379023514688015, -0.006604362279176712, 0.011082950979471207, 0.0030214895959943533, 0.026920270174741745, -0.023814909160137177, -0.01097072847187519, -0.009960734285414219, -0.006978392135351896, 0.016584714874625206, -0.1636873483657837, -0.02128196321427822, -6.0339553988028236e-33, -0.011186627671122551, -0.0028876005671918392, 0.09630749374628067, -0.01783144287765026, 0.009754691272974014, 0.004332998301833868, -0.014231939800083637, -0.001356917549856007, 0.04764285683631897, -0.034614451229572296, -0.04798965901136398, 0.030583979561924934, 0.014374461024999619, -0.050507787615060806, 0.00567112909629941, -0.04665738344192505, 0.004694647621363401, 0.0007970251608639956, 0.004730675369501114, -0.03282434493303299, 0.04056018590927124, 0.007051799912005663, -0.03913062810897827, 0.019002143293619156, 0.036356180906295776, 0.018531586974859238, 0.02203322760760784, -0.016976719722151756, 0.002474406734108925, -0.029515651986002922, -0.054969076067209244, 0.0011705966899171472, -0.031564611941576004, 0.018332986161112785, 0.03783763200044632, -0.0528361052274704, -0.018071742728352547, 0.014999231323599815, -0.016251031309366226, -0.034727998077869415, -0.05407630652189255, -0.008448973298072815, -0.02192455157637596, -0.013193616643548012, -0.05882975831627846, -0.009628958068788052, 0.009513375349342823, 0.032879143953323364, -0.01035455521196127, -0.009057724848389626, 0.019435914233326912, 0.00791926495730877, -0.011170420795679092, -0.033023055642843246, -0.014233523979783058, 0.010967916809022427, 0.04995277523994446, 0.011728393845260143, -0.044102344661951065, 0.029184110462665558, 0.028240684419870377, 0.031591322273015976, 0.01427824329584837, 0.005573147442191839, 0.02712559700012207, 0.00846071820706129, -0.05400251969695091, -0.005711155943572521, -0.0033175272401422262, 0.059800032526254654, -0.041619885712862015, -0.01054408960044384, -0.005206013098359108, -0.02376183494925499, 0.053569577634334564, -0.027435852214694023, -0.002433975227177143, -0.021857352927327156, -0.014593119733035564, 0.011362537741661072, -0.03324687108397484, -0.035451505333185196, -0.014274396002292633, -0.027904119342565536, 0.005419886205345392, -0.02992895431816578, 0.015017728321254253, 0.02609204314649105, -0.00005616162161459215, 0.022464027628302574, 0.06205611675977707, 0.018395226448774338, -0.0056215329095721245, -0.007486251648515463, -0.04420908913016319, 6.681393810006738e-33, -0.015122863464057446, 0.010479789227247238, 0.0038590331096202135, 0.0048266067169606686, 0.02244674600660801, 0.025087175890803337, 0.012075026519596577, 0.013556646183133125, -0.01294031459838152, 0.03835919499397278, -0.028279732912778854, -0.06864216923713684, -0.009712259285151958, 0.04877249523997307, 0.051907800137996674, 0.003523972351104021, 0.04203144460916519, -0.03792295977473259, -0.006363579072058201, 0.028085073456168175, 0.013642476871609688, -0.006637345068156719, 0.0025940295308828354, 0.015415817499160767, 0.04924197867512703, 0.01675928197801113, 0.054901622235774994, -0.011541428044438362, -0.02171064354479313, -0.027012737467885017, 0.015719784423708916, -0.07842721790075302, -0.0207496490329504, -0.039958689361810684, -0.02746513858437538, 0.022720780223608017, 0.010346805676817894, 0.005147161427885294, -0.006612909026443958, -0.013478864915668964, 0.03954767435789108, -0.012096964754164219, -0.001753224991261959, 0.058216989040374756, 0.0393584668636322, 0.032759517431259155, 0.006073440425097942, 0.0057509406469762325, -0.011142609640955925, 0.029163731262087822, 0.045702505856752396, -0.00844523310661316, -0.03975097835063934, 0.04529310390353203, 0.013974335044622421, -0.041274841874837875, -0.03159040957689285, 0.028806230053305626, 0.006443530786782503, -0.014050633646547794, -0.012994094751775265, -0.03782462328672409, -0.022957541048526764, 0.014303157106041908, 0.008598237298429012, -0.02035672776401043, 0.009987346827983856, -0.014153990894556046, -0.031181195750832558, -0.0006692216265946627, -0.002748592756688595, 0.009886998683214188, -0.02778848633170128, 0.061452072113752365, -0.013559247367084026, -0.020660042762756348, -0.02335982769727707, -0.007097545079886913, -0.02181323431432247, 0.022566284984350204, 0.06516695767641068, -0.019618576392531395, 0.0381525456905365, -0.008528183214366436, -0.02041110023856163, 0.011434465646743774, 0.00620182603597641, 0.024227406829595566, 0.028245413675904274, 0.01497030258178711, 0.022558240219950676, 0.0007489098934456706, -0.034187499433755875, 0.07766687124967575, -0.03102717362344265, -1.1803847677072099e-8, -0.029410213232040405, 0.016822852194309235, -0.02625459060072899, 0.014397487044334412, 0.01661408320069313, -0.0005320495110936463, -0.010079873725771904, -0.026513466611504555, 0.0084903659299016, 0.028900284320116043, 0.027458885684609413, -0.03543439880013466, 0.03580346703529358, 0.010543298907577991, -0.020455706864595413, -0.052759651094675064, -0.014066565781831741, -0.018489496782422066, 0.05879814922809601, 0.011441508308053017, -0.012738225050270557, 0.04629157483577728, -0.058969128876924515, 0.03538023680448532, 0.05605458840727806, -0.021265972405672073, 0.023112820461392403, -0.0717899426817894, 0.051137275993824005, -0.01052885688841343, -0.00924534909427166, -0.02244080789387226, 0.008807113394141197, 0.04678183048963547, -0.06584930419921875, -0.04282575845718384, 0.007041488774120808, 0.07381610572338104, 0.052754975855350494, 0.05775229632854462, -0.012054984457790852, 0.014917457476258278, -0.04301035404205322, -0.026901384815573692, -0.00633331248536706, -0.004143524914979935, -0.03333643451333046, -0.04536548629403114, -0.007193606812506914, -0.04002431780099869, 0.006993133574724197, 0.008660707622766495, 0.022117430344223976, 0.015285407193005085, 0.04161893576383591, -0.015421222895383835, -0.0051352595910429955, -0.053375620394945145, -0.05977018177509308, -0.030496884137392044, -0.011595929972827435, -0.0252090971916914, -0.01591542363166809, -0.018230535089969635 ]
neo4j-3.4-gotchas-working-with-durations
https://markhneedham.com/blog/2018/06/03/neo4j-3.4-gotchas-working-with-durations
false
2018-06-03 04:08:21
Neo4j 3.4: Formatting instances of the Duration and Datetime date types
[ "neo4j", "cypher", "datetime" ]
[ "Neo4j" ]
In my https://markhneedham.com/blog/2018/06/02/neo4j-3.4-comparing-durations/[last blog post^] I showed how to compare instances of Neo4j's https://neo4j.com/docs/developer-manual/current/cypher/syntax/temporal/#cypher-temporal-durations[Duration data type^], and in the middle of the post I realised that I needed to use the https://neo4j-contrib.github.io/neo4j-apoc-procedures/[APOC library^] to return the value in the format I wanted. This was the solution I ended up with: [source, cypher] ---- WITH duration({seconds: 100}) AS duration RETURN apoc.text.lpad(toString(duration.minutes), 2, "0") + ":" + apoc.text.lpad(toString(duration.secondsOfMinute), 2, "0") ---- If we run that query this is the output: [source, text] ---- ╒═══════╕ │"value"│ ╞═══════╡ │"01:40"│ └───────┘ ---- It works but it's not very nice so I wanted to see if I could come up with something better. == `apoc.text.format` My first attempt used the `apoc.text.format` function, which allows us to https://github.com/neo4j-contrib/neo4j-apoc-procedures/issues/269[format Strings in sprintf format^]. This is how we can format the duration using that function: [source, cypher] ---- WITH duration({seconds: 100}) AS duration RETURN apoc.text.format("%02d:%02d", [duration.minutes, duration.secondsOfMinute]) AS value ---- This is better than our first version but what if we want to include the number of hours as well? We'd have to do this: [source, cypher] ---- WITH duration({minutes: 100, seconds: 30}) AS duration RETURN apoc.text.format("%02d:%02d:%02d", [duration.hours, duration.minutesOfHour, duration.secondsOfMinute]) AS value ---- If we execute that query we'll see this output: [source, text] ---- ╒══════════╕ │"value" │ ╞══════════╡ │"01:40:30"│ └──────────┘ ---- Not bad. At this point I remembered that APOC has lots of https://neo4j-contrib.github.io/neo4j-apoc-procedures/#_date_and_time_conversions[date formatting functions^] and I wondered if I could use one of them to make life even easier. == `apoc.date.format` Yes we can! If we can convert our duration into milliseconds we can use `apoc.date.format` to solve the problem. The following code does the trick: [source, cypher] ---- WITH duration({minutes: 100, seconds: 30}) AS duration RETURN apoc.date.format(duration.milliseconds, 'ms', 'HH:mm:ss') AS value ---- == Formatting dates We can use the same approach to format dates as well. We can extract the timestamp of a Datetime from the `epochSeconds` property. The following query formats the current Datetime: [source, cypher] ---- RETURN apoc.date.format(datetime().epochSeconds, 's', 'MMM d yyyy') AS value ---- [source, text] ---- ╒════════════╕ │"value" │ ╞════════════╡ │"Jun 3 2018"│ └────────────┘ ---- If we want to extract the timestamp in milliseconds we can do that as well: [source, cypher] ---- RETURN apoc.date.format(datetime().epochMillis, 'ms', 'MMM d yyyy') AS value ----
Learn how to format the Duration and Datetime types introduced in Neo4j 3.4
null
[ 0.028354933485388756, -0.004936969373375177, -0.01883317530155182, 0.03642181307077408, 0.07640483975410461, 0.022490723058581352, 0.021881291642785072, 0.02383694052696228, 0.019490938633680344, -0.010571833699941635, 0.01063968800008297, 0.029630476608872414, -0.045070428401231766, 0.012870097532868385, 0.0324942022562027, 0.0482085682451725, 0.04803675785660744, -0.024359997361898422, 0.021601831540465355, -0.00925689097493887, 0.019081274047493935, 0.022162841632962227, 0.008329704403877258, 0.017707763239741325, 0.04513365402817726, 0.027671286836266518, -0.036708153784275055, -0.014249597676098347, -0.04883222281932831, -0.010552150197327137, 0.040651530027389526, -0.0018365917494520545, 0.012864233925938606, -0.019862519577145576, 0.020343337208032608, 0.01663070358335972, -0.05158849433064461, -0.00031319231493398547, -0.0018970659002661705, 0.001781592844054103, -0.051419056951999664, -0.0064603970386087894, 0.010465200059115887, 0.005229349713772535, -0.0420597568154335, 0.005872706882655621, -0.029336633160710335, 0.02777819335460663, -0.02190484292805195, 0.011255398392677307, -0.10128964483737946, 0.0027648096438497305, -0.000721507880371064, 0.006456071976572275, 0.006069858092814684, 0.05837193503975868, 0.020577184855937958, -0.05459487810730934, 0.009479004889726639, -0.004342458676546812, 0.011313125491142273, -0.00683780200779438, 0.01874483749270439, 0.014832315035164356, -0.010025598108768463, -0.04212109372019768, 0.011484864167869091, 0.04272310808300972, -0.0642072930932045, -0.010927718132734299, 0.006479783449321985, 0.03573301061987877, -0.008959504775702953, 0.024839621037244797, -0.015862753614783287, -0.03766462206840515, 0.013473753817379475, 0.05027344450354576, 0.03663463890552521, 0.06407243013381958, -0.011100499890744686, 0.015057859010994434, 0.026635529473423958, 0.03478530794382095, -0.017955219373106956, -0.0022093323059380054, -0.057246167212724686, -0.01926402375102043, -0.027827177196741104, 0.04617808014154434, 0.01763961650431156, -0.041797906160354614, 0.044380877166986465, -0.00517320679500699, 0.014147869311273098, 0.05035436525940895, -0.00919667910784483, 0.023956526070833206, 0.0030351404566317797, 0.015904339030385017, -0.04474268853664398, -0.0666099339723587, -0.00035821928759105504, 0.020698949694633484, -0.06274046003818512, -0.03325799107551575, -0.083710215985775, -0.01769893802702427, 0.03898363560438156, 0.022765837609767914, -0.05673704296350479, 0.018159249797463417, 0.005497714504599571, 0.03335105627775192, -0.07317084819078445, 0.040932368487119675, 0.023283762857317924, 0.008485136553645134, -0.030903536826372147, -0.00012347269512247294, 0.026739822700619698, 0.0320165753364563, 0.042622365057468414, 0.05269169434905052, -0.0036469486076384783, 0.07531615346670151, 0.009483376517891884, 0.017441216856241226, -0.02504914440214634, -0.03341607376933098, -0.022138943895697594, 0.02226816862821579, 0.0031440018210560083, 0.006753786001354456, -0.029937734827399254, -0.01734328083693981, -0.019939836114645004, 0.021083122119307518, 0.05598624423146248, 0.019883396103978157, 0.029831329360604286, -0.05522802099585533, -0.008797382935881615, -0.008018581196665764, 0.03512350469827652, 0.035720936954021454, -0.059957507997751236, -0.043329063802957535, 0.00985361821949482, -0.023501010611653328, 0.009078462608158588, -0.001305963727645576, 0.04944636672735214, -0.012760696932673454, 0.008191079832613468, 0.09346289932727814, 0.053592000156641006, 0.01409637276083231, -0.01955789141356945, 0.033679667860269547, 0.02328513376414776, 0.036349814385175705, -0.02469382807612419, 0.07592139393091202, -0.0020245870109647512, -0.016374384984374046, -0.007514274213463068, 0.04841350018978119, -0.02236521989107132, -0.01638016477227211, -0.0385485514998436, -0.030034441500902176, 0.07750584185123444, -0.072156623005867, -0.012141214683651924, 0.043356239795684814, 0.06261823326349258, 0.011365469545125961, 0.0018526110798120499, -0.02619139477610588, -0.07766132801771164, 0.06270292401313782, 0.002190756844356656, -0.0005143890157341957, 0.007305547129362822, -0.008070382289588451, 0.08187003433704376, 0.0184207521378994, 0.006946583744138479, 0.011365226469933987, -0.07889127731323242, -0.07204762101173401, 0.023595429956912994, -0.018626606091856956, 0.062253423035144806, -0.0431220717728138, 0.017077472060918808, 0.054587122052907944, 0.03497592359781265, 0.033906158059835434, 0.02276759035885334, 0.0030593276023864746, -0.005999577697366476, -0.06091250851750374, -0.028195060789585114, 0.05618416517972946, 0.019366679713129997, -0.06779221445322037, -0.019159942865371704, 0.0020852924790233374, -0.024472305551171303, 0.05876237154006958, 0.02452435903251171, -0.0012671654112637043, 0.037455964833498, 0.029220985248684883, 0.04721825569868088, -0.008947297930717468, 0.004628087393939495, -0.07307340204715729, 0.03609321638941765, 0.008891700766980648, -0.016770094633102417, -0.023261547088623047, -0.03313297778367996, 0.09794732928276062, 0.05453575402498245, -0.024107638746500015, -0.05243653804063797, 0.027643298730254173, -0.011906198225915432, -0.017551448196172714, 0.00834503024816513, -0.02293625846505165, 0.0055471803061664104, -0.01677430421113968, -0.0188860222697258, 0.0012825533049181104, -0.027969863265752792, 0.0017202380113303661, 0.03701528161764145, 0.05501173436641693, -0.015618733130395412, 0.03860604763031006, -0.02375490963459015, 0.007930326275527477, -0.0302695594727993, -0.03059658780694008, -0.06127508357167244, 0.028315307572484016, 0.016818707808852196, -0.004872938618063927, 0.07141891866922379, -0.014935435727238655, -0.00005242352563072927, -0.04562324658036232, -0.05304025858640671, 0.028206711634993553, 0.03215537220239639, 0.03519269451498985, 0.027924859896302223, 0.07518550753593445, -0.0356341116130352, 0.003109257435426116, -0.020964493975043297, -0.07407847791910172, -0.0681256502866745, -0.014844254590570927, 0.01875927858054638, 0.0017010780284181237, 0.027905046939849854, -0.020095733925700188, 0.01813000999391079, -0.018184758722782135, -0.004629022907465696, -0.01614232175052166, 0.06690338253974915, -0.014441482722759247, -0.011394396424293518, -0.031991250813007355, -0.02435615286231041, 0.06195073574781418, -0.07447735220193863, -0.06908613443374634, -0.02249375730752945, -0.04559310898184776, 0.051428068429231644, -0.07513489574193954, -0.01514378935098648, -0.00040634858305566013, 0.018091905862092972, 0.05158507078886032, 0.03162972256541252, 0.04707629606127739, 0.10723470896482468, 0.012154518626630306, 0.02750600129365921, 0.01063941977918148, 0.005541989114135504, 0.02951253205537796, -0.02661084569990635, 0.0315253809094429, 0.030313188210129738, -0.013292714022099972, 0.00782058760523796, -0.03931444510817528, -0.03602040931582451, -0.036686189472675323, -0.25646311044692993, 0.03572077304124832, -0.09265929460525513, -0.053230851888656616, -0.02174733579158783, -0.05640089139342308, 0.004815133288502693, -0.02749147079885006, -0.020844297483563423, 0.003690579207614064, -0.008111853152513504, -0.008368555456399918, -0.0051445201970636845, 0.055433426052331924, 0.00443694181740284, 0.03813127428293228, -0.03149193152785301, -0.06571923196315765, 0.000578950101044029, 0.021194392815232277, 0.024153076112270355, -0.052247438579797745, 0.004273212514817715, 0.028356891125440598, 0.008229726925492287, 0.03727315366268158, -0.04951382428407669, 0.028896957635879517, -0.05700129270553589, -0.04086286574602127, 0.026527727022767067, -0.024795958772301674, 0.04566135257482529, -0.014345364645123482, 0.0029295727144926786, -0.0026040025986731052, 0.031976569443941116, 0.014566686935722828, 0.01921725459396839, 0.02919861674308777, -0.03604445606470108, -0.06140982359647751, 0.030057407915592194, -0.032771043479442596, 0.06081864610314369, 0.032109033316373825, -0.07408159226179123, -0.017229847609996796, -0.0062584420666098595, 0.07658945769071579, -0.010075676254928112, -0.04518241807818413, -0.04242517054080963, -0.0014287697849795222, -0.02944020926952362, -0.049115490168333054, 0.0002935384982265532, -0.029382910579442978, -0.01586034521460533, -0.02161088027060032, -0.008318563923239708, -0.04210329428315163, 0.038792483508586884, -0.037481095641851425, -0.03709353506565094, -0.04153532162308693, -0.07957315444946289, -0.009871028363704681, 0.03622462600469589, 0.0344003289937973, -0.05722780153155327, 0.018272748216986656, -0.026414591819047928, -0.10968682169914246, -0.06334654986858368, -0.039575353264808655, -0.0062655238434672356, 0.00876607745885849, -0.01786491833627224, 0.061725910753011703, -0.04909719154238701, -0.03873259946703911, -0.0035352071281522512, 0.014899224042892456, 0.04086440056562424, 0.01152120903134346, -0.01699225977063179, -0.02939995937049389, -0.004533017054200172, 0.020050376653671265, 0.04879147186875343, -0.0286719873547554, -0.0360347181558609, 0.011833883821964264, -0.0024334180634468794, 0.003989540506154299, 0.0002614659897517413, 0.0014032613253220916, 0.01937430165708065, 0.02137339860200882, 0.02854274958372116, -0.017779214307665825, 0.01982640102505684, -0.0729973241686821, -0.022723183035850525, -0.03537483513355255, -0.05119027942419052, 0.018592456355690956, 0.0059305522590875626, 0.00953764095902443, -0.01388314738869667, 0.0376814603805542, 0.013569927774369717, -0.033313266932964325, -0.03446665778756142, -0.02551412396132946, 0.0014072158373892307, 0.015298556536436081, 0.025915469974279404, -0.01273373793810606, -0.06746826320886612, 0.02472076751291752, 0.023996848613023758, -0.029072396457195282, -0.03551098704338074, -0.026997020468115807, -0.020871596410870552, -0.029913295060396194, 0.004699914716184139, 0.03478708118200302, -0.03885168954730034, 0.02340887300670147, 0.039796192198991776, -0.007254378404468298, 0.03187691047787666, -0.015231644734740257, -0.0026197577826678753, -0.04303451254963875, 0.04116230830550194, -0.020349642261862755, 0.005103371571749449, -0.007143588736653328, 0.0005149208591319621, 0.05360103398561478, 0.03925935924053192, -0.00646653538569808, 0.0034992313012480736, -0.009564613923430443, 0.015188812278211117, -0.01221402082592249, 0.010603738948702812, -0.035971175879240036, -0.016857024282217026, -0.0512273944914341, -0.009497834369540215, -0.002497227629646659, 0.031957101076841354, -0.007280169054865837, -0.01711313985288143, -0.03458749130368233, 0.02353340946137905, -0.05495297163724899, -0.0054518552497029305, -0.016167661175131798, -0.002073446288704872, 0.024054167792201042, -0.0041165100410580635, 0.05316619947552681, -0.03953368589282036, -0.010509764775633812, -0.004461403004825115, 0.020254401490092278, -0.04270923137664795, 0.023849980905652046, -0.0005587683408521116, -0.006628254894167185, 0.027746770530939102, 0.04675431549549103, 0.0072162761352956295, 0.036102294921875, -0.0027938750572502613, -0.025376440957188606, 0.026640573516488075, 0.012491462752223015, 0.026241306215524673, 0.05353573337197304, -0.00891940575093031, -0.014843601733446121, -0.04619266092777252, -0.019662752747535706, -0.01244524959474802, -0.019107162952423096, -0.0351773165166378, -0.005431575700640678, -0.017414703965187073, -0.061998818069696426, 0.05873410031199455, 0.011264384724199772, 0.016429297626018524, 0.06440766900777817, 0.01804562471807003, -0.022541500627994537, -0.02266746200621128, 0.01036367192864418, 0.028783194720745087, -0.03247006982564926, 0.014661706052720547, 0.014257639646530151, -0.0022421819157898426, -0.0055764177814126015, 0.02565881237387657, -0.06282263249158859, -0.05889170616865158, -0.00816970132291317, 0.0013053076108917594, -0.009071985259652138, -0.018244126811623573, -0.024267075583338737, -0.018988363444805145, -0.01869172975420952, 0.02712853066623211, 0.014696754515171051, -0.025641029700636864, -0.0010030559496954083, -0.016201134771108627, 0.06926564872264862, -0.016889411956071854, -0.0029822385404258966, 0.042077962309122086, -0.007485318463295698, 0.005959514994174242, -0.03982888162136078, 0.01155663002282381, 0.04243982210755348, -0.02117639034986496, -0.037028614431619644, -0.09177560359239578, 0.01574627496302128, -0.03422767296433449, 0.051827169954776764, -0.04303648695349693, 0.018519649282097816, -0.010341624729335308, 0.01445420365780592, -0.014547531493008137, -0.005496792960911989, 0.017955662682652473, -0.03068038448691368, -0.00202959100715816, 0.05536183342337608, 0.0019844172056764364, 0.03683296963572502, -0.02763160690665245, -0.022840701043605804, 0.03884501755237579, -0.014063707552850246, -0.08041312545537949, 0.002211161656305194, -0.04705376923084259, 0.02193119376897812, 0.024218810722231865, -0.010652453638613224, -0.02578633278608322, 0.06289172172546387, 0.04198655113577843, 0.021168414503335953, 0.06298274546861649, -0.011463121511042118, 0.0058358535170555115, -0.010677943006157875, -0.005021280609071255, -0.08137884736061096, 0.011882276274263859, 0.05795958638191223, 0.024562349542975426, -0.01571362465620041, -0.0013866667868569493, -0.009565337561070919, 0.06468979269266129, -0.04632244259119034, -0.04156310856342316, 0.04735909774899483, -0.004228631965816021, 0.03070256859064102, 0.015350792557001114, -0.04776281490921974, -0.004252798855304718, 0.051691193133592606, -0.02609407901763916, -0.02985730767250061, -0.01728834956884384, 0.04719433933496475, -0.021090516820549965, 0.04278162494301796, -0.05301540344953537, -0.014474009163677692, 0.05834075063467026, 0.015049327164888382, -0.0005583717720583081, 0.02358458749949932, -0.0069594597443938255, 0.026478169485926628, 0.039028480648994446, -0.0327380932867527, -0.018775494769215584, 0.00709262490272522, -0.017758574336767197, -0.050190623849630356, 0.00850603450089693, 0.014510623179376125, 0.004217030014842749, -0.014663627371191978, 0.06536481529474258, 0.023573167622089386, -0.012845690362155437, -0.04589812457561493, -0.0007692971848882735, -0.019138852134346962, -0.03203848749399185, -0.02367844060063362, 0.004462915007025003, -0.04048603028059006, 0.044892940670251846, -0.00607312610372901, 0.03813827782869339, 0.09555960446596146, 0.02308255434036255, 0.012721864506602287, 0.03145728260278702, 0.049254681915044785, 0.0819908007979393, 0.04910581186413765, -0.004850144498050213, 0.062417931854724884, -0.0016515094321221113, -0.01754906214773655, -0.0222042016685009, -0.046290405094623566, -0.022189417853951454, -0.007516208104789257, 0.02788015455007553, 0.0644206702709198, -0.016780374571681023, 0.057368047535419464, -0.026606233790516853, -0.011234929785132408, -0.05046390742063522, -0.010478035546839237, 0.04257602244615555, 0.034586478024721146, 0.03433604910969734, 0.047249242663383484, -0.002579485299065709, -0.013395210728049278, 0.02231040596961975, -0.01470966823399067, 0.007587068248540163, 0.053739335387945175, -0.010848821140825748, -0.014989621937274933, 0.0037077979650348425, 0.037235841155052185, 0.07022227346897125, -0.016006246209144592, 0.009705467149615288, 0.01075824722647667, 0.02567664533853531, 0.006164011545479298, 0.023253614082932472, 0.013708691112697124, -0.009598568081855774, -0.01824437640607357, -0.01971025951206684, -0.008856989443302155, -0.01957882195711136, -0.051850613206624985, 0.0214685145765543, -0.012928826734423637, 0.012005037628114223, 0.010538868606090546, -0.050408463925123215, -0.02553722634911537, -0.052632614970207214, -0.039641667157411575, -0.03589487448334694, -0.1067226454615593, 0.012068706564605236, 0.035891078412532806, -0.004690821748226881, -0.028653576970100403, 0.035993658006191254, -0.002084743697196245, 0.012155327945947647, 0.015813978388905525, -0.00344599736854434, 0.009461332112550735, 0.023915661498904228, -0.0019787249621003866, 0.00022272334899753332, 0.030949775129556656, 0.05297412350773811, 0.001599221141077578, 0.023472348228096962, -0.0346231609582901, 0.017615126445889473, 0.038922108709812164, 0.030551249161362648, -0.020616888999938965, -0.04991418868303299, -0.044996581971645355, 0.026663299649953842, 0.025794928893446922, -0.07806288450956345, 0.014494998380541801, 0.025806378573179245, 0.013787026517093182, 0.04793275520205498, -0.009538978338241577, 0.009177223779261112, -0.018664129078388214, 0.009700356051325798, -0.013577036559581757, 0.02326837182044983, 0.03381996601819992, -0.010983632877469063, 0.07043109089136124, 0.029053332284092903, -0.0535476915538311, -0.005023724399507046, -0.01728040538728237, -0.011367754079401493, -0.0006442053709179163, -0.05929427593946457, -0.039182718843221664, -0.07763455808162689, -0.0600726455450058, -0.03847436606884003, -0.0037452366668730974, -0.02959699183702469, -0.0268024280667305, 0.02294018119573593, 0.0049340007826685905, -0.016945967450737953, 0.018180346116423607, -0.057405270636081696, 0.04413483664393425, -0.012167193926870823, -0.03936702758073807, -0.02266339212656021, -0.00971226580440998, -0.01848125271499157, -0.019315028563141823, 0.049772195518016815, -0.05400858446955681, -0.02478238381445408, -0.05275541916489601, 0.007937083020806313, 0.039271771907806396, 0.04449190944433212, 0.006176617927849293 ]
[ -0.07768437266349792, 0.020010661333799362, -0.009325671009719372, 0.0032564441207796335, 0.03430977091193199, -0.06370873749256134, -0.04103197529911995, -0.02620222605764866, 0.012134864926338196, -0.012319820001721382, -0.005965926684439182, -0.008793891407549381, 0.00743275647982955, -0.0000424379286414478, 0.015771882608532906, -0.042807403951883316, -0.05924069881439209, -0.03950302302837372, -0.025504443794488907, 0.06109592318534851, 0.050711557269096375, -0.05205250903964043, 0.008414379321038723, -0.010195388458669186, 0.020366493612527847, 0.05886347219347954, 0.044140443205833435, -0.0006022063898853958, -0.04753994941711426, -0.20164328813552856, -0.02201029658317566, 0.00043122912757098675, 0.020648906007409096, 0.0012368726311251521, 0.00034366227919235826, 0.020505864173173904, 0.02443569526076317, -0.04106224700808525, -0.0009884763276204467, 0.08417713642120361, 0.0527660995721817, 0.037844467908144, -0.05028769001364708, 0.007537045981734991, 0.027981827035546303, -0.0015388265019282699, -0.03834664449095726, -0.047661393880844116, -0.007504961919039488, 0.06047612428665161, -0.010521475225687027, 0.021850818768143654, 0.025966959074139595, 0.0218264851719141, 0.009546714834868908, 0.020840875804424286, 0.04182777926325798, 0.06723224371671677, 0.06055888533592224, -0.03371049463748932, 0.002660189988091588, -0.018118007108569145, -0.127280592918396, 0.11729784309864044, -0.0054451520554721355, -0.017802882939577103, -0.028840838000178337, 0.00431447708979249, -0.03656494989991188, 0.028418153524398804, -0.023106718435883522, -0.0022135507315397263, -0.04167305305600166, 0.06797746568918228, -0.03460955247282982, 0.017857931554317474, -0.012260322459042072, -0.0142779890447855, 0.06916560977697372, -0.034150585532188416, -0.02327708899974823, 0.04307250306010246, -0.03800339996814728, -0.036084290593862534, 0.028652263805270195, -0.003578559495508671, -0.011445019394159317, 0.04374063387513161, 0.021177109330892563, 0.048680514097213745, 0.04927954822778702, 0.009599855169653893, 0.016781272366642952, 0.06465679407119751, -0.0467304103076458, -0.021933626383543015, 0.02440480887889862, 0.039081208407878876, 0.026976142078638077, 0.312095582485199, -0.008161027915775776, 0.044591546058654785, -0.029057500883936882, 0.031730759888887405, 0.009279172867536545, -0.009507487528026104, 0.027333708480000496, -0.024957578629255295, 0.022608429193496704, 0.00898195430636406, -0.018541421741247177, -0.04600832238793373, 0.028304215520620346, -0.09147091209888458, -0.011356744915246964, 0.03596906363964081, 0.06695409119129181, -0.027321938425302505, 0.02544359862804413, 0.01922309212386608, -0.0174443107098341, -0.06424618512392044, 0.0455348864197731, -0.03170761093497276, 0.038979507982730865, 0.08579089492559433, 0.08048824220895767, 0.035535696893930435, 0.02361467480659485, 0.03815757855772972, 0.07812976092100143, -0.005189699586480856, -0.06737154722213745, 0.022681541740894318, -0.02832666039466858, 0.010606521740555763, 0.006877249106764793, -0.0412832573056221, -0.013099456205964088, -0.03958471864461899, 0.0037884321063756943, -0.03667687252163887, 0.014224083162844181, 0.04932401701807976, -0.034559328109025955, 0.12931619584560394, -0.016125408932566643, 0.003176127327606082, -0.057066410779953, -0.032890576869249344, -0.009973471984267235, 0.03482045605778694, -0.026749052107334137, -0.05318371206521988, -0.03858884796500206, -0.008040176704525948, 0.0846172571182251, -0.0066611687652766705, -0.03526338189840317, -0.03174632415175438, -0.040137603878974915, -0.005494318436831236, -0.04698469862341881, 0.10934692621231079, 0.009202730841934681, -0.07964908331632614, 0.008208392187952995, 0.022815873846411705, -0.0027267190162092447, -0.10601858049631119, 0.0017652707174420357, -0.011775480583310127, -0.01594325713813305, -0.07264731824398041, 0.12596279382705688, 0.011801106855273247, 0.036401696503162384, 0.0010274986270815134, 0.08760037273168564, 0.039818741381168365, 0.033919572830200195, -0.045878030359745026, -0.024095827713608742, 0.02557452581822872, -0.01903596892952919, -0.03903275355696678, -0.07980122417211533, 0.03664499148726463, -0.0331529900431633, 0.01709262654185295, -0.04398273304104805, -0.05633391812443733, -0.04529672861099243, 0.09749051183462143, -0.09181970357894897, -0.06937699019908905, -0.003158648731186986, -0.003215255681425333, -0.029737450182437897, -0.03162944316864014, 0.05190036818385124, -0.007529976777732372, -0.005297409370541573, -0.015552567318081856, 0.02517484873533249, 0.007008619140833616, 0.023479100316762924, -0.04627396911382675, 0.04916873574256897, 0.008055433630943298, -0.1006995439529419, -0.0000026313123271393124, -0.0070424373261630535, 0.01651720330119133, -0.032181017100811005, 0.02131003886461258, -0.017423536628484726, 0.007960807532072067, -0.0036314413882791996, 0.08427965641021729, -0.07646364718675613, -0.01068678218871355, -0.012113618664443493, -0.31946495175361633, -0.023352688178420067, -0.02025439590215683, -0.02321462146937847, 0.04890034720301628, -0.013094033114612103, -0.02897154539823532, -0.03781099244952202, 0.02050676755607128, 0.010487711057066917, 0.06559712439775467, -0.022621430456638336, -0.011351527646183968, -0.0925939753651619, 0.00786623079329729, 0.02981458231806755, 0.05517560988664627, -0.005393924657255411, 0.03898945450782776, -0.006562503986060619, 0.02533569373190403, -0.10588109493255615, -0.028756506741046906, -0.041384898126125336, -0.0037236064672470093, -0.024335768073797226, 0.08325668424367905, -0.030673131346702576, -0.0015991858672350645, -0.08839099109172821, 0.02828611433506012, -0.009293759241700172, -0.0075480276718735695, -0.044036172330379486, -0.010295575484633446, -0.034238651394844055, 0.023234674707055092, 0.060883425176143646, -0.023032015189528465, 0.004473461303859949, -0.016112877056002617, 0.04016656056046486, -0.029993750154972076, -0.03417569026350975, -0.00573688605800271, -0.009471587836742401, -0.03161048889160156, -0.008053538389503956, 0.01525931991636753, 0.027469990774989128, -0.003574855625629425, 0.025308605283498764, -0.035326726734638214, 0.028658688068389893, 0.03079633228480816, -0.017986033111810684, -0.0622698999941349, -0.013302469626069069, -0.008316108025610447, 0.043609868735075, -0.032318390905857086, 0.04238389432430267, 0.07597892731428146, -0.058501794934272766, 0.042021267116069794, 0.04855583608150482, -0.0012169262627139688, 0.011276624165475368, 0.004463487770408392, -0.028019219636917114, 0.009628331288695335, 0.06257326155900955, -0.08017022162675858, -0.03422645479440689, 0.08201485127210617, -0.0022389471996575594, -0.003879958763718605, -0.012141733430325985, 0.05556374788284302, 0.040974535048007965, 0.02293669618666172, -0.0009866893524304032, 0.0767049789428711, 0.009408809244632721, -0.01582133024930954, 0.02551931142807007, -0.008718856610357761, 0.024283410981297493, 0.026174074038863182, -0.0003468184731900692, -0.04136848449707031, -0.013090454041957855, -0.019203707575798035, -0.035470303148031235, 0.06245600804686546, -0.018155302852392197, -0.25463491678237915, 0.06978597491979599, 0.03301015496253967, 0.0582011453807354, -0.003785549895837903, -0.024377567693591118, -0.003826049854978919, -0.03963349759578705, -0.05781770125031471, -0.025650421157479286, 0.00009496593702351674, 0.06533864885568619, -0.019363120198249817, 0.009144865907728672, -0.015874452888965607, 0.04101032018661499, 0.07297470420598984, 0.04773335158824921, 0.026318885385990143, -0.019333744421601295, 0.04921863600611687, -0.04475203529000282, 0.16305463016033173, -0.0036728442646563053, -0.006061721593141556, 0.03036080300807953, -0.0001503521780250594, -0.0028478235471993685, 0.11095874011516571, -0.03388415649533272, -0.011659941636025906, 0.05608860030770302, 0.04741103574633598, 0.02358410879969597, -0.02375398389995098, 0.021590134128928185, -0.024907898157835007, 0.04511328414082527, -0.005492364522069693, -0.01503710076212883, 0.017042910680174828, -0.0183407012373209, -0.05276339128613472, -0.0024752160534262657, 0.11365650594234467, -0.010939083062112331, 0.0012777842348441482, -0.06410098075866699, -0.10650507360696793, -0.015280766412615776, -0.06043438985943794, -0.04370511695742607, -0.0076090265065431595, 0.01762104593217373, -0.00041205325396731496, 0.09842995554208755, 0.010386276990175247, 0.0130313690751791, 0.028608977794647217, 0.02518097124993801, -0.028670944273471832, -0.050163768231868744, 0.08868863433599472, -0.036849528551101685, 0.008292985148727894 ]
[ 0.0462510846555233, 0.10578105598688126, -0.012322369031608105, 0.0198129303753376, -0.03245801851153374, -0.0009868073975667357, -0.019309038296341896, 0.01912885718047619, 0.015047821216285229, -0.021904177963733673, -0.03463772311806679, 0.007672672625631094, 0.0245513953268528, 0.010735809803009033, 0.00336618535220623, 0.0008239044691435993, 0.007110766600817442, 0.04256874695420265, 0.04464738070964813, -0.0000023526624772785, -0.002363651990890503, 0.005701113026589155, 0.0632893368601799, 0.0167378019541502, -0.01710902526974678, 0.007468817755579948, -0.03234396502375603, 0.02070963755249977, 0.028126612305641174, -0.09370623528957367, 0.00029495879425667226, -0.019484151154756546, 0.006577715743333101, 0.002686824183911085, -0.0065270522609353065, -0.002197280526161194, 0.028315186500549316, 0.016075704246759415, -0.00023425549443345517, 0.026604585349559784, 0.033676449209451675, -0.011464819312095642, -0.028719985857605934, 0.029115090146660805, 0.03554076328873634, -0.034624624997377396, -0.0272093266248703, -0.05195457488298416, -0.016154957935214043, 0.027222946286201477, -0.014611591584980488, -0.016202643513679504, -0.05244820564985275, -0.015837619081139565, 0.0085513386875391, 0.006117211189121008, -0.060276612639427185, 0.016902867704629898, 0.0034907853696495295, -0.015306230634450912, 0.007724953815340996, -0.0005843733670189977, -0.07001683861017227, -0.005267199594527483, -0.0038178586401045322, 0.004213153384625912, 0.017415886744856834, 0.00937365647405386, -0.0003407361509744078, 0.0022405071649700403, -0.010172081179916859, 0.03219626843929291, -0.04164699837565422, -0.008673135191202164, -0.028417661786079407, 0.01999962143599987, 0.035705361515283585, -0.041446808725595474, -0.03125980496406555, -0.016708848997950554, 0.02338518761098385, 0.01187725830823183, -0.022147849202156067, 0.014209987595677376, -0.03984811529517174, -0.010363975539803505, 0.03438552841544151, 0.05423132702708244, -0.02687571384012699, -0.010112331248819828, -0.0033025392331182957, -0.002375800861045718, -0.0006256656488403678, -0.0239576306194067, -0.09733911603689194, 0.0005304621299728751, 0.008264090865850449, 0.014200286008417606, 0.027393728494644165, 0.8016358017921448, 0.015321006998419762, -0.053559597581624985, -0.028707217425107956, 0.002566433511674404, 0.004563627298921347, 0.002375640906393528, 0.030508412048220634, 0.012686696834862232, 0.00629761628806591, 0.04375457763671875, -0.004200982861220837, 0.01136808656156063, -0.0006555509171448648, 0.005134746432304382, 0.048225097358226776, 0.051826704293489456, -0.0023584235459566116, -0.012518922798335552, 0.020579291507601738, 0.04717133939266205, 0.02914210595190525, 0.027659792453050613, -0.017609568312764168, 0.008409783244132996, -0.0032990335021167994, -0.14696365594863892, 0.040098413825035095, -5.668625346220688e-33, 0.031394101679325104, -0.007619536016136408, 0.06983500719070435, 0.009943410754203796, -0.0025036404840648174, 0.04781771078705788, -0.007929232902824879, -0.04890096187591553, 0.020123913884162903, -0.05032160133123398, -0.027801096439361572, -0.001267040497623384, -0.009376094676554203, -0.04035307094454765, 0.003949894569814205, -0.03203202784061432, 0.02575015090405941, 0.023006496950984, 0.014321183785796165, 0.014773393981158733, -0.01035093329846859, -0.0039770943112671375, -0.03160654753446579, 0.04350565746426582, 0.03735619783401489, 0.03510582447052002, 0.005958905443549156, -0.013330256566405296, -0.009522431530058384, -0.06118365004658699, -0.05945175141096115, 0.015864873304963112, -0.03520903363823891, -0.0009969341335818172, 0.031558144837617874, -0.06529095768928528, 0.004726824350655079, 0.010166692547500134, -0.013360967859625816, -0.05617367848753929, -0.08801577240228653, 0.005947215482592583, -0.005933003965765238, -0.014806970953941345, -0.024566613137722015, -0.03588225692510605, -0.02391786314547062, 0.03375169634819031, -0.02562856674194336, -0.0027739915531128645, 0.021359827369451523, 0.0482034906744957, 0.007211543619632721, -0.030290966853499413, -0.05437743291258812, 0.0015740232774987817, 0.02818654477596283, -0.014874155633151531, -0.026150766760110855, 0.031745895743370056, 0.0567638985812664, 0.014641454443335533, 0.0163912121206522, 0.010872717946767807, 0.014682554639875889, 0.023388145491480827, -0.0361730195581913, -0.010899717919528484, 0.013325467705726624, 0.0501132532954216, -0.052192289382219315, 0.01646518148481846, -0.004941845778375864, -0.019852399826049805, 0.02133852243423462, -0.053251639008522034, 0.016321862116456032, -0.03713826462626457, -0.0249348022043705, 0.04633508622646332, -0.007006707135587931, -0.059318963438272476, 0.030659442767500877, -0.00371972075663507, 0.012510159984230995, -0.03748015686869621, 0.04191123694181442, 0.02869047224521637, 0.007394260726869106, 0.04708695411682129, 0.04196038097143173, -0.005350302904844284, -0.0029240509029477835, -0.0033289180137217045, -0.01081477664411068, 5.987338966269058e-33, -0.0052468301728367805, -0.0018833904759958386, -0.03252001106739044, -0.010171825997531414, 0.022601386532187462, 0.03395909070968628, 0.0006436106050387025, 0.03446650132536888, -0.02394655905663967, 0.051146022975444794, 0.010001801885664463, -0.05598359555006027, -0.020413054153323174, 0.009790265932679176, 0.05488952249288559, 0.023748068138957024, 0.018961960449814796, -0.03736612945795059, 0.02044113166630268, 0.03960789367556572, 0.00874313060194254, 0.01962878555059433, -0.005867602303624153, 0.012362921610474586, 0.008739389479160309, 0.0010200922843068838, 0.02213129587471485, -0.017081368714571, -0.017654478549957275, 0.0019072744762524962, -0.010369597934186459, -0.06643477082252502, -0.03919430449604988, -0.02307112328708172, -0.03108799085021019, -0.0070012710057199, 0.012404421344399452, -0.0263908039778471, 0.011063948273658752, 0.004305429290980101, 0.05195804312825203, -0.0013519789790734649, -0.012321751564741135, 0.04319430887699127, 0.015829378738999367, 0.0201795045286417, -0.0017453096807003021, 0.02675563097000122, -0.0025139080826193094, 0.009854099713265896, 0.006152601446956396, -0.017837295308709145, -0.037689659744501114, 0.031708285212516785, 0.021792734041810036, -0.08219818770885468, -0.013709848746657372, -0.036053985357284546, 0.006598479114472866, -0.011096518486738205, -0.046569086611270905, -0.014945881441235542, -0.0061203655786812305, 0.021880589425563812, 0.0002789369900710881, -0.013975230045616627, 0.0028771490324288607, -0.026911716908216476, -0.030723927542567253, -0.005659782327711582, 0.04889204725623131, -0.003942137584090233, -0.028091637417674065, 0.0485474169254303, 0.021542439237236977, 0.015705034136772156, -0.06212567538022995, -0.007405217736959457, -0.0661037489771843, 0.022782975807785988, 0.03117571398615837, 0.026323813945055008, 0.011820911429822445, 0.023574000224471092, -0.04060732200741768, 0.009366912767291069, -0.007338258903473616, 0.01567682810127735, -0.011736963875591755, -0.01422117743641138, 0.055769748985767365, 0.006729630287736654, -0.023762982338666916, 0.058245815336704254, -0.008980813436210155, -1.1812231193175649e-8, -0.03246660158038139, 0.02292671613395214, -0.022222135215997696, 0.006354698911309242, -0.02826637215912342, -0.011653144843876362, -0.0025475320871919394, -0.017151758074760437, 0.027843983843922615, 0.032428935170173645, 0.03304949402809143, -0.027700092643499374, 0.03842886537313461, -0.0008243058109655976, 0.01054517924785614, -0.006172896828502417, 0.008510604500770569, -0.04849066585302353, 0.04219845309853554, 0.02451675571501255, -0.018443727865815163, 0.01876549981534481, -0.04030326381325722, -0.0038922771345824003, -0.008667632937431335, 0.0072524878196418285, 0.04249332472681999, -0.035242438316345215, 0.016838571056723595, -0.03344859555363655, 0.03816727548837662, -0.01512238010764122, -0.04818490520119667, 0.007274111267179251, -0.04628627374768257, -0.06155989691615105, 0.03036944381892681, 0.03731327876448631, 0.008840438909828663, 0.07013854384422302, -0.004632086958736181, -0.02386963926255703, -0.030081845819950104, -0.021183332428336143, -0.008370449766516685, -0.026209380477666855, -0.03963509202003479, -0.020272064954042435, 0.03345698118209839, -0.01387212797999382, 0.022008253261446953, 0.007370916195213795, 0.0036056104581803083, -0.017373526468873024, 0.04032934084534645, -0.007353009190410376, 0.021484285593032837, -0.01813146099448204, -0.023908723145723343, -0.03801625221967697, 0.03672581911087036, -0.0013783603208139539, -0.01741628348827362, -0.026382537558674812 ]
neo4j-3.4-formatting-instances-durations-dates
https://markhneedham.com/blog/2018/06/03/neo4j-3.4-formatting-instances-durations-dates
false
2018-06-05 05:30:21
Neo4j APOC: Importing data from Strava's paginated JSON API
[ "neo4j", "cypher", "apoc", "strava" ]
[ "Neo4j" ]
Over the weekend I've been playing around with loading data from the http://developers.strava.com/[Strava API^] into Neo4j and I started with the following Python script which creates a node with a `Run` label for each of my activities. If you want to follow along on your own data you'll need to get an API key via the https://www.strava.com/settings/api['My API Application'^] section of the website. Once you've got that put it in the `TOKEN` environment variable and you should be good to go. [source, python] ---- import os from neo4j.v1 import GraphDatabase password = os.environ["NEO4J_PASSWORD"] driver = GraphDatabase.driver("bolt://localhost", auth=("neo4j", password)) with driver.session() as session: page = 1 while True: result = session.run("""\ WITH "https://www.strava.com/api/v3/athlete/activities?page=" + $page AS uri CALL apoc.load.jsonParams(uri, {Authorization: $stravaToken}, null) YIELD value MERGE (run:Run {id: value.id}) SET run.distance = toFloat(value.distance), run.startDate = datetime(value.start_date_local), run.elapsedTime = duration({seconds: value.elapsed_time}) RETURN count(*) AS count """, {"page": page, "stravaToken": "Bearer {0}".format(os.environ["TOKEN"])}) runs_imported = result.peek()["count"] print("Runs imported:", runs_imported) if runs_imported == 0: break else: page += 1 ---- The Strava API is a bit unusual in that it doesn't return any meta data indicating whether there are more pages to come - you get the data and only the data! We'll receive an empty array once we reach the end so we have to check for that condition and exit our loop when its met. Most of the word is being done by https://neo4j-contrib.github.io/neo4j-apoc-procedures/#_further_functions[APOC^]'s `apoc.load.jsonParams` procedure - we're only handling the pagination stuff in Python. Much as I love a good Python script, I was curious whether I could write the whole import script using just Cypher and get rid of the Python code completely. image::{{<siteurl>}}/uploads/2018/06/apoc-all-the-things.jpg[] == Attempt 1: Using an `Import` meta data node Let's get started! Before we do anything we'll create a parameter containing our Strava token: [source, cypher] ---- :params {stravaToken: "Bearer <insert-strava-token>"} ---- My first solution for handling this pagination is to create a separate meta data node which can keep track of the page we're up to. We should then be able to increment a `page` property on that node after every call to the Strava API. We'll wrap our call to `apoc.load.jsonParams` inside one of APOC's https://neo4j-contrib.github.io/neo4j-apoc-procedures/#_further_functions[periodic commit procedures^]. First let's create our meta data node: [source, cypher] ---- CREATE (:Import {page: 1}) ---- Now we need to work out which of the periodic commit procedures is the best fit. There are several to pick from: * `apoc.periodic.commit` - runs the given kernelTransaction in separate transactions until it returns 0 * `apoc.periodic.rock_n_roll_while` - run the action kernelTransaction in batches over the iterator kernelTransaction’s results in a separate thread. * `apoc.periodic.rock_n_roll` - run the action kernelTransaction in batches over the iterator kernelTransaction’s results in a separate thread. * `apoc.periodic.iterate` - run the second kernelTransaction for each item returned by the first kernelTransaction. After playing around with a solution in my head and then sketching out a toy example in the Neo4j browser (as well as doubting that this was even possible), I figured out that `apoc.periodic.commit` would be best suited. We can wrap our call to `apoc.load.jsonParams` in the following call to `apoc.periodic.commit`: [source, cypher] ---- call apoc.periodic.commit(" MATCH (import:Import) WITH 'https://www.strava.com/api/v3/athlete/activities?page=' + import.page AS uri, import.page AS initialPage, import CALL apoc.load.jsonParams(uri, {Authorization: $stravaToken}, null) YIELD value MERGE (run:Run {id: value.id}) SET run.distance = toFloat(value.distance), run.startDate = datetime(value.start_date_local), run.elapsedTime = duration({seconds: value.elapsed_time}) WITH initialPage, import, CASE WHEN count(*) < 30 THEN 0 ELSE count(*) END AS count FOREACH(ignoreMe in CASE WHEN count = 0 THEN [] ELSE [1] END | MERGE (import) SET import.page = initialPage+1 ) RETURN count ", {stravaToken: $stravaToken}) ---- This script will read the `page` property from our `Import` node and call the Strava API starting at that page via `apoc.load.jsonParams`. We create a node with the label `Run` for each activity and then we check if any rows were actually returned. The default activities per page is 30 so if we receive less than that back then we know we're reached the end of the stream and can return a count of `0`. We then use the https://markhneedham.com/blog/2014/06/17/neo4j-load-csv-handling-conditionals/[FOREACH hack^] to increment the `page` property on the `Import` node before returning the count. Finally we return the count and once the value returned is 0 the Cypher statement will complete. This works but it's a bit annoying to have to create the `Import` node to store our page number. We also can't easily reuse the code to pick up any new runs. We'd have to set the page back to `1` and then it would go through everything again which is a bit of a waste. == Attempt 2: The `after` parameter and timestamps While trying to come up with a cleaner way to paginate I realised that the Strava API allows you to pass in an `after` parameter. The `after` parameter indicates a minimum timestamp for the activities that should be returned. We can use this to simplify our Cypher statement! The `Run` nodes that we're creating contain a `startDate` which we can convert into a timestamp and pass to the API. If we haven't loaded any runs yet we can use the https://neo4j.com/docs/developer-manual/current/cypher/functions/scalar/#functions-coalesce[coalesce function^] to start from 0. We now end up with a much simpler script: [source, cypher] ---- call apoc.periodic.commit(" OPTIONAL MATCH (run:Run) WITH run ORDER BY run.startDate DESC LIMIT 1 WITH coalesce(run.startDate.epochSeconds, 0) AS after WITH 'https://www.strava.com/api/v3/athlete/activities?after=' + after AS uri CALL apoc.load.jsonParams(uri, {Authorization: $stravaToken}, null) YIELD value MERGE (run:Run {id: value.id}) SET run.distance = toFloat(value.distance), run.startDate = datetime(value.start_date_local), run.elapsedTime = duration({seconds: value.elapsed_time}) RETURN CASE WHEN count(*) < 30 THEN 0 ELSE count(*) END AS count ", {stravaToken: $stravaToken}) ---- We no longer need to create a meta data node, and we can easily execute this to pick up new activities. Thank you APOC!
Learn how to paginate through JSON APIs and load the data into Neo4j using only APOC's Load JSON procedure.
null
[ 0.02678048051893711, -0.030088646337389946, -0.003822293598204851, 0.028772857040166855, 0.07183153927326202, 0.006456300150603056, 0.032387711107730865, 0.04178842902183533, 0.00407053017988801, -0.000525266514159739, -0.0001329805818386376, -0.008581285364925861, -0.06586088240146637, 0.0005733739235438406, 0.01945033110678196, 0.038783177733421326, 0.09074071794748306, -0.007086182478815317, 0.01615549623966217, -0.021189730614423752, 0.002020294778048992, 0.03272690996527672, 0.001622229116037488, 0.03982727602124214, 0.017531298100948334, -0.0034884908236563206, 0.0026855715550482273, -0.005474403966218233, -0.06473830342292786, 0.007435264531522989, 0.03344966098666191, -0.00878254696726799, 0.017911218106746674, 0.00394730968400836, 0.04993470758199692, -0.009813050739467144, -0.018957320600748062, -0.016879471018910408, -0.011426127515733242, 0.0037122080102562904, -0.05393609032034874, 0.007514650467783213, -0.03895477578043938, 0.02445690520107746, -0.031085683032870293, 0.031009159982204437, -0.016050396487116814, 0.04218398034572601, 0.0048657371662557125, -0.006565077230334282, -0.07291602343320847, 0.02548176236450672, -0.03367641940712929, 0.027678394690155983, 0.026031702756881714, 0.04748409613966942, 0.024633003398776054, -0.08211861550807953, 0.028078269213438034, -0.03843327611684799, 0.010856416076421738, -0.011159788817167282, 0.0068226284347474575, 0.02158135548233986, 0.011739242821931839, -0.03850582614541054, 0.02124151960015297, 0.07344231754541397, -0.04098259657621384, -0.0052675423212349415, -0.006460877135396004, 0.0037851969245821238, -0.030099444091320038, 0.003467875998467207, -0.0003985745715908706, -0.06552001088857651, 0.006612424273043871, 0.05866117775440216, 0.018852241337299347, 0.03164193779230118, 0.012662559747695923, -0.0036529020871967077, 0.014789883978664875, 0.047400686889886856, -0.00871151965111494, -0.044499609619379044, -0.037363968789577484, -0.024251382797956467, -0.028762074187397957, 0.03436780348420143, 0.021201925352215767, -0.040355995297431946, 0.0033382645342499018, -0.003066153032705188, -0.02497006207704544, -0.005198746453970671, -0.00446260254830122, 0.0012029771460220218, 0.002531013684347272, -0.030647585168480873, -0.041080042719841, -0.029141061007976532, -0.016076207160949707, 0.0078886728733778, -0.07171649485826492, -0.014198864810168743, -0.037425197660923004, -0.026554111391305923, 0.030470123514533043, 0.005863810423761606, -0.040820490568876266, -0.007667308207601309, -0.022874198853969574, 0.0057846116833388805, -0.06366677582263947, 0.05626935511827469, -0.0033152305986732244, -0.028435368090867996, -0.040570370852947235, -0.001487099681980908, 0.05800384655594826, 0.04769859090447426, -0.007639677729457617, 0.06432611495256424, -0.017907053232192993, 0.05944058299064636, 0.006817829329520464, 0.03322647884488106, 0.0037419479340314865, -0.048160355538129807, -0.041315384209156036, 0.048552658408880234, 0.00014111849304754287, 0.019726891070604324, 0.008279266767203808, -0.025966303423047066, -0.013893801718950272, 0.02106117270886898, 0.07054747641086578, 0.007920471951365471, 0.00988716073334217, -0.033803295344114304, 0.02290719747543335, 0.00982888974249363, 0.03685234114527702, 0.014940787106752396, -0.0004896391183137894, -0.04610477387905121, -0.031138500198721886, 0.01873413659632206, 0.020048223435878754, 0.023411663249135017, 0.06416413187980652, -0.020542051643133163, -0.0027907018084079027, 0.09766722470521927, 0.024617495015263557, 0.02472776733338833, -0.023416530340909958, 0.02154257334768772, 0.05732045695185661, 0.03525598719716072, 0.0030827566515654325, 0.0726919174194336, -0.004096389282494783, -0.004942373838275671, -0.005050468724220991, 0.050029147416353226, -0.012959313578903675, 0.005524604581296444, -0.03312570974230766, -0.0714847519993782, 0.05860486254096031, -0.0497119314968586, -0.02262338064610958, 0.051911529153585434, 0.06595157086849213, -0.014823663979768753, 0.024797923862934113, -0.004905719310045242, -0.06841068714857101, 0.050487957894802094, 0.01017844770103693, 0.025386804714798927, 0.023920943960547447, 0.012827452272176743, 0.08916080743074417, 0.012750350870192051, -0.01890539564192295, 0.006656065583229065, -0.07591202110052109, -0.07519495487213135, -0.04087691009044647, -0.015850219875574112, 0.06849828362464905, -0.044317178428173065, 0.009004847146570683, 0.05805337801575661, 0.004274823237210512, 0.049305543303489685, 0.022767847403883934, -0.02724424935877323, 0.02278868481516838, -0.06692049652338028, -0.0570228286087513, 0.04689587280154228, 0.056014060974121094, -0.049835558980703354, -0.03142338991165161, 0.018151292577385902, -0.0592573843896389, 0.010998772457242012, 0.02466573566198349, -0.027044015005230904, 0.04136544466018677, 0.01582229882478714, 0.023988986387848854, 0.0030544637702405453, 0.017377205193042755, -0.018414368852972984, 0.050333958119153976, 0.017171422019600868, -0.023609543219208717, -0.015409792773425579, -0.01619872637093067, 0.10625680536031723, 0.04472450539469719, -0.021097520366311073, -0.0719541683793068, 0.02372642792761326, 0.027067488059401512, -0.03256089612841606, 0.002861934481188655, -0.009416557848453522, -0.009305790066719055, 0.003207129891961813, -0.026417255401611328, -0.017635194584727287, -0.019525736570358276, -0.04393000155687332, 0.025189615786075592, 0.04352755472064018, -0.02362595871090889, 0.06303656101226807, 0.013575544580817223, -0.0018690883880481124, 0.007898755371570587, -0.04229776933789253, -0.06406322121620178, -0.0011846644338220358, 0.010352966375648975, -0.012110884301364422, 0.056417737156152725, 0.012555199675261974, -0.026520751416683197, -0.04059550166130066, -0.026519164443016052, 0.033903881907463074, 0.05905326083302498, 0.05109857767820358, 0.004989940673112869, 0.0407276414334774, -0.03933883085846901, 0.017926093190908432, -0.033431582152843475, -0.05697530880570412, -0.06030385568737984, -0.02892708033323288, 0.020215263590216637, 0.026871319860219955, 0.031575147062540054, 0.0002127813349943608, 0.029586995020508766, -0.00753101147711277, 0.011690870858728886, 0.010888855904340744, 0.04959635064005852, 0.008357089944183826, -0.0014123331056907773, -0.014669753611087799, -0.02999136969447136, 0.05990651622414589, -0.0789494663476944, -0.04178478196263313, 0.0152366878464818, -0.07219765335321426, 0.06488759815692902, -0.04065939411520958, -0.0354984849691391, 0.007885882630944252, 0.02032593823969364, 0.0509750097990036, 0.014722125604748726, 0.0203692689538002, 0.08921398222446442, 0.02418355643749237, 0.01712743192911148, 0.010617132298648357, -0.025620145723223686, 0.047668058425188065, 0.0051989261992275715, 0.025236738845705986, 0.024057941511273384, -0.04496366158127785, 0.00486694136634469, -0.03559669852256775, -0.004153947811573744, -0.04640274494886398, -0.2790767252445221, 0.055378083139657974, -0.021584440022706985, -0.03698163479566574, 0.021635090932250023, -0.0072274040430784225, 0.005583691876381636, -0.010421397164463997, -0.028274325653910637, 0.010293013416230679, -0.0029387488029897213, -0.037989888340234756, -0.01997528038918972, 0.035853758454322815, 0.017460238188505173, 0.01971111260354519, -0.013001127168536186, -0.06282505393028259, 0.019301827996969223, 0.036900509148836136, 0.012882417067885399, -0.05563216283917427, 0.0011714166030287743, 0.011150578036904335, 0.019259782508015633, 0.03602812439203262, -0.08464889228343964, 0.0437355600297451, -0.04027336835861206, -0.033854853361845016, 0.012725930660963058, -0.031216152012348175, 0.03246484696865082, -0.006443026475608349, -0.01756412163376808, -0.03544133901596069, 0.04388967901468277, -0.004150672350078821, 0.015569746494293213, -0.015773452818393707, -0.04968734830617905, -0.04692380130290985, -0.007834944874048233, -0.017882663756608963, 0.0956774577498436, 0.00669114151969552, -0.07639062404632568, -0.0003828170301858336, -0.01796422339975834, 0.07395096868276596, -0.03373682126402855, -0.030768688768148422, -0.03922183811664581, 0.03606175631284714, -0.02647090144455433, -0.035422082990407944, -0.02244679443538189, 0.009938573464751244, -0.04031706973910332, -0.00849052332341671, -0.0025518136098980904, -0.034754469990730286, 0.018011048436164856, -0.0662006363272667, -0.03274781256914139, -0.04742494598031044, -0.05804344266653061, -0.020455297082662582, 0.045328278094530106, 0.037034254521131516, -0.06634026020765305, 0.0445781834423542, -0.019478484988212585, -0.10614393651485443, -0.027504470199346542, -0.04941095784306526, -0.005932834930717945, -0.012437534518539906, -0.027423935011029243, 0.03216658532619476, -0.05387434735894203, -0.05659133195877075, 0.006382325664162636, 0.011407886631786823, 0.040379006415605545, -0.011444589123129845, 0.012168015353381634, -0.04436167702078819, -0.02223154529929161, 0.014509431086480618, 0.08739449828863144, -0.021377110853791237, -0.013036499731242657, 0.00929642841219902, -0.02789737470448017, 0.0232346560806036, 0.010391347110271454, -0.012375947088003159, 0.022267285734415054, 0.04684264957904816, 0.05217062681913376, -0.021223491057753563, -0.0074054161086678505, -0.04204264283180237, 0.009725133888423443, -0.04082910344004631, -0.05046122148633003, 0.010838281363248825, 0.014672749675810337, 0.02594923786818981, 0.007840760983526707, -0.0016819366719573736, 0.0035155892837792635, -0.05968194827437401, -0.002517036395147443, 0.01377498172223568, 0.023190973326563835, 0.01591779664158821, 0.03793267160654068, -0.01149566937237978, -0.061700958758592606, 0.023800786584615707, 0.04291000962257385, -0.011811826378107071, -0.04617977514863014, -0.02781110629439354, -0.026426808908581734, -0.019619110971689224, 0.021171117201447487, 0.013942423276603222, -0.024315742775797844, 0.017447801306843758, 0.026130707934498787, -0.018683670088648796, 0.01756700500845909, -0.031109753996133804, -0.022326737642288208, -0.035594094544649124, 0.0264750849455595, 0.00044487701961770654, -0.011523215100169182, -0.004765741061419249, -0.004917577374726534, 0.04852744936943054, 0.04053119570016861, -0.007429161109030247, 0.032652176916599274, 0.003745499299839139, -0.002783228177577257, -0.030470745638012886, -0.002658107550814748, -0.03854277357459068, -0.009419981390237808, -0.020128224045038223, -0.021786972880363464, -0.03223736584186554, 0.04240015149116516, -0.016778122633695602, -0.017416566610336304, -0.0222550630569458, 0.032271530479192734, -0.07096470892429352, 0.007674142252653837, 0.01386121567338705, -0.026428069919347763, 0.04074329137802124, 0.0037249941378831863, 0.004799967166036367, -0.009861258789896965, -0.03987172991037369, 0.0031183985993266106, -0.025879742577672005, -0.026534661650657654, -0.0004965640255250037, -0.022944150492548943, -0.004132035654038191, -0.004234433639794588, 0.032998427748680115, 0.012674856930971146, -0.012482209131121635, 0.016070783138275146, 0.005403260700404644, 0.03335331007838249, -0.0162158515304327, 0.03270838409662247, 0.040035560727119446, -0.025040743872523308, 0.013808033429086208, -0.005747768096625805, 0.016210319474339485, -0.019007978960871696, 0.0018548454390838742, -0.024875881150364876, -0.006183424033224583, 0.0019030437106266618, -0.05461869016289711, 0.0167123731225729, 0.009421322494745255, 0.003097022417932749, 0.04079366475343704, -0.012402455322444439, -0.013758470304310322, -0.019145429134368896, 0.05327308550477028, 0.03743152692914009, -0.021921297535300255, -0.021365251392126083, 0.01858983002603054, 0.0027152427937835455, 0.004911013413220644, 0.013185269199311733, -0.0716288760304451, -0.018807413056492805, -0.00553259439766407, -0.005516250152140856, -0.00447111576795578, -0.06088457256555557, -0.033416133373975754, -0.027452683076262474, -0.004101501312106848, 0.0316564105451107, 0.026181938126683235, -0.013152262195944786, -0.04398277401924133, 0.0004672658396884799, 0.023576907813549042, -0.012814056128263474, -0.027887454256415367, 0.012095953337848186, -0.005325051490217447, -0.012258602306246758, -0.031193876639008522, 0.04165254533290863, 0.006148649845272303, -0.0010788512881845236, -0.007216078229248524, -0.07484562695026398, 0.009592725895345211, -0.015725847333669662, 0.04525003582239151, -0.01914210245013237, 0.01843506284058094, -0.038210149854421616, 0.008621023036539555, -0.0058122603222727776, 0.004465400706976652, -0.018238181248307228, 0.003413532394915819, 0.025719549506902695, 0.03685005009174347, 0.028919817879796028, 0.04265168681740761, -0.00008804925164440647, -0.04827156290411949, 0.048812929540872574, -0.036508671939373016, -0.055018480867147446, -0.021793853491544724, -0.03765413165092468, -0.0021476992405951023, 0.03407597169280052, 0.0213026013225317, -0.05628492683172226, 0.05810113623738289, 0.04681805521249771, 0.03341549634933472, 0.05464450642466545, -0.03378377482295036, 0.0480118989944458, -0.023803696036338806, 0.013361027464270592, -0.08333457261323929, 0.012127544730901718, 0.06327274441719055, -0.01168271154165268, -0.002391256159171462, -0.003952199127525091, -0.03500707447528839, 0.017706355080008507, -0.05619415268301964, -0.03161333501338959, 0.05724802613258362, -0.005617174785584211, 0.000272813398623839, -0.01325481291860342, -0.061045870184898376, 0.01332966797053814, 0.05696958675980568, -0.033917903900146484, -0.0002687379892449826, -0.020446792244911194, 0.05673641711473465, -0.027851641178131104, 0.055506639182567596, -0.022795075550675392, -0.04318113252520561, 0.07626338303089142, 0.00801475252956152, 0.020331399515271187, 0.052169300615787506, -0.03441876918077469, 0.04353370517492294, 0.017795389518141747, -0.01642627641558647, -0.024743186309933662, 0.03189016506075859, 0.007727430202066898, -0.07427556812763214, 0.03147277608513832, 0.02687685936689377, 0.0005203692708164454, -0.0634620264172554, 0.06955917179584503, 0.017008857801556587, -0.0443367101252079, -0.034985534846782684, 0.0440744087100029, -0.035272013396024704, -0.04291621223092079, -0.028046490624547005, 0.0054708546958863735, -0.03900454193353653, 0.05470762401819229, -0.023295553401112556, -0.003159850835800171, 0.07099517434835434, -0.022976594045758247, 0.006529456470161676, 0.02949175052344799, 0.074287548661232, 0.07620929181575775, 0.02523138001561165, 0.003303210949525237, 0.07594125717878342, 0.011282202787697315, -0.03505758196115494, -0.01817743107676506, -0.04305010661482811, -0.04519878700375557, -0.0022511505521833897, -0.001883755438029766, 0.06254477798938751, -0.018608679994940758, 0.07296402752399445, -0.02900882624089718, -0.017778856679797173, -0.009847837500274181, 0.0067471410147845745, 0.024374306201934814, 0.027097348123788834, 0.027682283893227577, 0.060205504298210144, -0.039262328296899796, -0.03731849789619446, 0.0241275392472744, -0.018803991377353668, -0.007385293021798134, 0.04999339580535889, -0.009964978322386742, -0.00314971711486578, 0.02217688597738743, 0.025689847767353058, 0.08412033319473267, -0.029235195368528366, -0.004939069505780935, -0.0215215552598238, 0.041342463344335556, -0.01885703019797802, 0.029712799936532974, -0.013958337716758251, -0.012749802321195602, 0.004031917080283165, -0.04849988594651222, -0.040305327624082565, 0.002747887745499611, -0.03955300152301788, 0.03405197709798813, -0.016736121848225594, 0.013454010710120201, -0.0215191338211298, -0.02600555308163166, -0.034804414957761765, -0.03890978917479515, -0.05598151683807373, -0.04747055098414421, -0.07766315340995789, -0.007402637507766485, 0.005504353903234005, 0.009733766317367554, -0.013551708310842514, -0.008747617714107037, -0.00045581560698337853, 0.0032475930638611317, 0.04640553146600723, -0.03739876672625542, -0.0205613374710083, 0.016948895528912544, 0.011466504074633121, 0.007351384963840246, 0.021561408415436745, 0.05681656673550606, 0.00012537742441054434, -0.0021277419291436672, -0.02096870169043541, 0.017873326316475868, 0.06435553729534149, 0.01869831420481205, -0.02051166631281376, -0.06614181399345398, 0.01271474827080965, 0.027799276635050774, -0.0002634263946674764, -0.07742150127887726, 0.010568213649094105, 0.05363708361983299, 0.035757578909397125, 0.04298319295048714, -0.016671089455485344, 0.000058462021115701646, -0.020890098065137863, -0.0168002899736166, 0.036864928901195526, 0.012910783290863037, 0.03499511629343033, -0.017097845673561096, 0.08053500205278397, 0.027496645227074623, -0.011507914401590824, -0.021172812208533287, -0.016161013394594193, -0.0034084138460457325, 0.006808699108660221, -0.03457276523113251, -0.04053539037704468, -0.062121983617544174, -0.07062365114688873, -0.015801167115569115, 0.008208123035728931, -0.029345877468585968, -0.02353728376328945, 0.019765060395002365, 0.0376005545258522, 0.0019535694736987352, 0.03694557398557663, -0.010336162522435188, 0.03311225026845932, -0.03499414771795273, -0.028860848397016525, -0.013347353786230087, 0.004793794825673103, -0.018930848687887192, 0.015686791390180588, 0.032928820699453354, -0.0401785708963871, -0.014709008857607841, -0.013309617526829243, 0.03473025560379028, 0.03619241341948509, -0.01969953253865242, 0.020064810290932655 ]
[ -0.05672638490796089, -0.05580022186040878, -0.034537531435489655, -0.024396482855081558, 0.0657079741358757, -0.04106210917234421, -0.029824094846844673, 0.036288220435380936, 0.034686747938394547, -0.0040960172191262245, 0.005342451855540276, -0.026063304394483566, -0.015712030231952667, -0.0018354158382862806, 0.06047973781824112, -0.02368484064936638, -0.035441312938928604, -0.07927235215902328, -0.02802494913339615, 0.04475634917616844, -0.03033660724759102, -0.01985139586031437, -0.012307888828217983, -0.04483934864401817, -0.007196111138910055, 0.045622795820236206, 0.035695601254701614, -0.02239684760570526, -0.02129005454480648, -0.19721418619155884, -0.0014381714863702655, -0.015608018264174461, 0.004248787648975849, 0.02263582870364189, 0.017085447907447815, 0.03992617130279541, 0.027159828692674637, 0.000669809349346906, 0.005912961903959513, 0.04485996812582016, 0.009114804677665234, 0.022992121055722237, -0.08721653372049332, 0.009148051030933857, 0.040568429976701736, 0.02012079954147339, -0.039234839379787445, 0.00904569961130619, 0.005307699553668499, 0.009465699084103107, -0.02546028234064579, 0.023279404267668724, 0.005539919715374708, -0.009287051856517792, 0.01097860001027584, 0.025890229269862175, 0.04772409796714783, 0.07024569064378738, 0.030880384147167206, 0.03503242880105972, -0.00107644556555897, -0.0022055518347769976, -0.13264568150043488, 0.05810985714197159, -0.0007681804709136486, 0.023345032706856728, -0.04991215839982033, 0.005838318262249231, -0.016351500526070595, 0.05404384061694145, 0.005832747556269169, -0.002030913718044758, -0.02745327353477478, 0.052502695471048355, 0.026232756674289703, 0.011814650148153305, -0.01495315320789814, 0.02924436703324318, 0.04230368137359619, -0.020808029919862747, -0.029618803411722183, 0.0003584079386200756, -0.05170324444770813, 0.0036642327904701233, -0.03673567250370979, 0.026016712188720703, -0.023445989936590195, 0.08264579623937607, 0.033817656338214874, 0.04341266676783562, 0.019118884578347206, -0.002117779338732362, 0.04760877043008804, 0.021109111607074738, -0.10045036673545837, -0.01499386876821518, 0.022749925032258034, 0.013936137780547142, 0.01865427754819393, 0.4157591164112091, 0.016700156033039093, 0.011268108151853085, 0.019740667194128036, 0.04814404249191284, -0.009508642368018627, -0.024327963590621948, -0.01858963817358017, -0.05541875585913658, 0.026750652119517326, -0.003354310756549239, 0.04807617515325546, -0.0025410091038793325, 0.04551418498158455, -0.09848782420158386, -0.0040557472966611385, 0.02047060802578926, 0.0034766749013215303, 0.0247726459056139, -0.047228649258613586, 0.015289477072656155, -0.019176535308361053, -0.008152785710990429, 0.038266196846961975, 0.01769980415701866, 0.03840788081288338, 0.007630614563822746, 0.03966211527585983, 0.04226309806108475, 0.02193264290690422, 0.03074566274881363, 0.06324628740549088, 0.0021470512729138136, -0.08787326514720917, 0.027530796825885773, -0.010631563141942024, -0.019577888771891594, 0.013977608643472195, -0.04516483098268509, -0.016710951924324036, 0.031674519181251526, -0.028495226055383682, -0.04694422706961632, 0.03562372922897339, -0.026171062141656876, -0.055795662105083466, 0.13005311787128448, 0.029388073831796646, -0.031695425510406494, -0.005609505344182253, -0.0685177817940712, 0.006981920450925827, 0.0372106172144413, 0.011062010191380978, -0.07785410434007645, -0.015155861154198647, 0.011259211227297783, 0.08287785947322845, -0.013826865702867508, -0.08248566091060638, -0.010415148921310902, -0.009047462604939938, -0.03445577993988991, -0.03198020160198212, 0.06499513238668442, 0.057874031364917755, -0.1160726323723793, -0.013157409615814686, 0.02964920364320278, 0.0060707866214215755, -0.06830764561891556, 0.011661612428724766, -0.0024578843731433153, -0.04155798628926277, -0.020232630893588066, 0.07735100388526917, 0.0031101100612431765, -0.026424137875437737, -0.006825414020568132, 0.035168807953596115, 0.0029702289029955864, -0.03302541375160217, -0.004236753098666668, -0.04632364958524704, -0.014207446947693825, -0.05743113160133362, -0.05399440601468086, -0.07081946730613708, 0.03337216004729271, -0.028186989948153496, -0.05359164625406265, -0.020401177927851677, -0.005449505057185888, -0.06814642995595932, 0.0694524273276329, -0.0344206839799881, -0.024685760959982872, -0.027134696021676064, 0.012773752212524414, -0.009382515214383602, -0.03252154588699341, 0.03199706971645355, 0.0014103942085057497, 0.009251095354557037, 0.053697340190410614, -0.02733447216451168, 0.010104629211127758, 0.04696835204958916, -0.024972906336188316, 0.06958024948835373, 0.03576036915183067, -0.03668579086661339, 0.01221008226275444, 0.0012313735205680132, 0.019438505172729492, -0.002509759273380041, -0.037224989384412766, -0.011399873532354832, -0.031290024518966675, 0.027454055845737457, 0.04360228031873703, -0.036880578845739365, 0.0024111110251396894, -0.00898495689034462, -0.34946587681770325, -0.023185724392533302, -0.0182657390832901, 0.030305391177535057, 0.014069661498069763, -0.03227270767092705, 0.02050749585032463, -0.019424472004175186, 0.01316864974796772, 0.006976416800171137, 0.12667584419250488, 0.0020224505569785833, 0.014876343309879303, -0.08216499537229538, 0.02375439554452896, 0.05217006430029869, -0.011375521309673786, -0.0031313153449445963, -0.016900399699807167, -0.00003670012665679678, -0.005788929760456085, -0.062041155993938446, -0.016432661563158035, -0.02686377801001072, -0.010730176232755184, -0.02859819121658802, 0.12688879668712616, 0.002825218252837658, 0.029769133776426315, -0.04965604096651077, 0.03647739440202713, -0.010218143463134766, -0.034664615988731384, -0.09461536258459091, -0.007655367720872164, -0.026633933186531067, 0.046592727303504944, 0.033349741250276566, 0.0035093154292553663, -0.015703385695815086, -0.03940124437212944, 0.009296066127717495, -0.03520982712507248, -0.025628501549363136, 0.004263139329850674, 0.0012291811872273684, -0.03795303404331207, -0.022644514217972755, 0.01276350673288107, 0.07140684872865677, -0.003842908190563321, 0.03002113290131092, 0.009169157594442368, 0.055092111229896545, 0.012653367593884468, -0.017313562333583832, -0.06258796900510788, -0.0078464075922966, 0.02208535559475422, 0.026320569217205048, -0.02143849804997444, 0.04854375869035721, 0.019852129742503166, -0.07194074988365173, 0.02096998505294323, -0.002388277556747198, -0.017772406339645386, -0.013963842764496803, 0.0367530919611454, -0.035158757120370865, -0.030680662021040916, 0.09258970618247986, -0.003906812984496355, 0.035327211022377014, 0.05174699053168297, 0.043913211673498154, -0.01783972978591919, 0.005749806761741638, 0.06301475316286087, 0.040923941880464554, 0.008742742240428925, -0.018644293770194054, 0.04456901550292969, -0.009673677384853363, -0.005882311146706343, 0.060573555529117584, -0.004372707102447748, -0.03259226679801941, 0.056089770048856735, 0.006798839196562767, -0.018088236451148987, -0.003809932619333267, -0.017869286239147186, -0.06597817689180374, 0.052184540778398514, -0.017674805596470833, -0.2779051959514618, 0.04438021406531334, 0.024654118344187737, 0.06765619665384293, 0.002383370418101549, -0.0260560754686594, 0.005781974643468857, -0.03789576143026352, -0.016019241884350777, 0.016202185302972794, 0.028073882684111595, 0.052178289741277695, -0.02104283683001995, 0.011729586869478226, -0.004543512128293514, 0.02426900900900364, 0.03675147891044617, 0.014623398892581463, 0.029222622513771057, 0.0069994754157960415, 0.0339290052652359, -0.01656566932797432, 0.16514045000076294, 0.03415410965681076, 0.003104024799540639, 0.04138647019863129, -0.043836355209350586, 0.03931208327412605, 0.038444068282842636, 0.00556692061945796, -0.02153165452182293, 0.012247132137417793, 0.02600262500345707, 0.040770288556814194, 0.03901183605194092, -0.06847110390663147, -0.019961630925536156, 0.03378325700759888, 0.022234680131077766, -0.03368402644991875, -0.0057984343729913235, 0.011676107533276081, -0.04790100082755089, 0.037826456129550934, 0.08189715445041656, -0.04565392807126045, -0.0007680181879550219, -0.048302680253982544, -0.07466285675764084, -0.00728187570348382, -0.051129989326000214, -0.061791274696588516, -0.03908858448266983, -0.01811457984149456, 0.00018797858501784503, 0.0630875825881958, 0.024919694289565086, -0.04193510115146637, 0.03422985225915909, 0.0070357187651097775, -0.011914498172700405, -0.04785512760281563, 0.07435888797044754, -0.0035879812203347683, 0.006236633285880089 ]
[ 0.05716760456562042, 0.06382136046886444, -0.03705029562115669, 0.04572281986474991, -0.04483531042933464, 0.024242496117949486, -0.027295589447021484, -0.009392577223479748, -0.006432053633034229, -0.02270224131643772, -0.035608965903520584, 0.013837208971381187, 0.03886115923523903, -0.010479411110281944, 0.017173396423459053, -0.004308218602091074, -0.015366870909929276, -0.008298375643789768, 0.03791333734989166, -0.0009015431278385222, -0.00610609445720911, 0.03104201890528202, 0.02108396589756012, -0.0007024457445368171, -0.03611965849995613, 0.03920551761984825, -0.061490144580602646, -0.021191135048866272, 0.016327979043126106, -0.12608590722084045, 0.004750202409923077, -0.02389819361269474, -0.009563506580889225, 0.006528193596750498, -0.028437059372663498, -0.0009523899643681943, -0.018530378118157387, 0.0010541697265580297, -0.023013446480035782, 0.035938818007707596, 0.013356080278754234, -0.01247386448085308, -0.02382952906191349, 0.027183420956134796, -0.016592025756835938, -0.012065030634403229, -0.003727151080965996, -0.0063117798417806625, 0.004138602409511805, -0.009566901251673698, -0.006288318429142237, -0.030684752389788628, -0.01327004935592413, -0.006626086309552193, -0.013110494241118431, -0.012945516034960747, -0.02937317080795765, -0.014957314357161522, 0.03156500309705734, -0.01422822941094637, 0.08356540650129318, 0.0048418533988296986, -0.01491398736834526, -0.029285410419106483, -0.020299093797802925, -0.012029015459120274, 0.008795330300927162, -0.013759322464466095, -0.012159371748566628, 0.004669546615332365, 0.009134179912507534, 0.0590854212641716, -0.047711875289678574, -0.029197460040450096, -0.05275498703122139, -0.004042427521198988, 0.03700556978583336, -0.01990578882396221, -0.012746036052703857, 0.01922748051583767, -0.014418513514101505, 0.005647729616612196, -0.05155205354094505, 0.0518355667591095, -0.00618313904851675, 0.021984996274113655, -0.019813403487205505, -0.009223220869898796, 0.024700384587049484, 0.00822999607771635, -0.05047398433089256, -0.001884901663288474, -0.025995925068855286, -0.0026317411102354527, -0.07655961066484451, 0.0067380620166659355, -0.016132252290844917, -0.0059743584133684635, 0.010498321615159512, 0.7989726662635803, 0.004404348321259022, -0.020836826413869858, 0.0062817721627652645, 0.04351332038640976, 0.00930988509207964, -0.0024016420356929302, 0.02529878541827202, -0.015570123679935932, -0.026819106191396713, 0.017925668507814407, 0.00255782762542367, 0.04145508259534836, 0.034059613943099976, 0.016778910532593727, 0.015555880032479763, 0.05865103751420975, 0.024842888116836548, 0.0047403969801962376, 0.007466974202543497, 0.0529993511736393, 0.01728791557252407, 0.012858233414590359, 0.02471449412405491, -0.0005527358734980226, 0.02394876629114151, -0.17753641307353973, 0.00968500878661871, -6.880810549151985e-33, 0.028205497190356255, -0.02961968630552292, 0.07064351439476013, 0.005560445133596659, 0.042225707322359085, 0.01480917353183031, -0.0001366542564937845, -0.0322846844792366, 0.019411807879805565, -0.04440329596400261, -0.04198635742068291, 0.042596109211444855, 0.033201027661561966, -0.006972135044634342, 0.022992966696619987, -0.011420197784900665, 0.015262249857187271, 0.02749042399227619, 0.033776357769966125, -0.016169987618923187, 0.028985971584916115, 0.010339534841477871, -0.01286492682993412, 0.05804552882909775, 0.0030878433026373386, 0.04067132994532585, 0.000987567356787622, 0.004934283904731274, 0.002263278467580676, -0.04606564715504646, -0.05600379779934883, 0.0030581667087972164, -0.007523971144109964, -0.0477958507835865, 0.04810648411512375, -0.07111281156539917, -0.043969325721263885, 0.0011209212243556976, -0.03609833866357803, -0.070592500269413, -0.033163536339998245, -0.014575304463505745, -0.017581278458237648, -0.03445121645927429, -0.053841304033994675, -0.027876731008291245, -0.017523886635899544, 0.04094235226511955, -0.013856865465641022, 0.02599922940135002, -0.013942740857601166, 0.028666919097304344, 0.010025610215961933, 0.006389242131263018, -0.04364164173603058, -0.00231617852114141, 0.023287305608391762, 0.030344519764184952, -0.011877105571329594, 0.011197391897439957, 0.02199622429907322, -0.020877718925476074, -0.006559643894433975, 0.026667291298508644, 0.034662775695323944, 0.011230172589421272, 0.012680809013545513, 0.0489269495010376, 0.016619283705949783, -0.006469224113970995, -0.043708689510822296, 0.028277499601244926, -0.03676031529903412, -0.021942300722002983, 0.020013192668557167, -0.038528963923454285, 0.022824453189969063, 0.00496852770447731, 0.01365074422210455, 0.039995308965444565, -0.003033978631719947, -0.021082540974020958, -0.013997038826346397, -0.014675626531243324, -0.019142961129546165, -0.005867665633559227, 0.04751158133149147, 0.013148381374776363, 0.014248902909457684, 0.026865262538194656, 0.010707131586968899, 0.018718170002102852, 0.0016220344696193933, -0.013441524468362331, -0.02262299507856369, 5.931338782737869e-33, -0.00931690912693739, -0.019143974408507347, 0.014401187188923359, 0.027811570093035698, 0.06711655110120773, 0.019217897206544876, 0.022469976916909218, 0.02757115662097931, -0.05295738950371742, 0.041540905833244324, -0.006024695001542568, -0.012969701550900936, -0.03111668862402439, 0.039018139243125916, 0.07488835602998734, 0.03025854006409645, 0.01744723692536354, -0.01914965733885765, -0.01898585446178913, 0.01396102923899889, -0.0243455171585083, 0.04291734844446182, -0.023174308240413666, 0.006905172020196915, 0.04515787959098816, 0.013520311564207077, 0.022969547659158707, -0.001187578309327364, -0.04104779660701752, 0.019918425008654594, 0.0192569550126791, -0.05330280587077141, -0.01150588970631361, -0.009829167276620865, -0.024170653894543648, 0.011090354062616825, 0.0020070660393685102, 0.01828528568148613, 0.028949318453669548, -0.01894206367433071, 0.055696405470371246, 0.00627175671979785, -0.0042973048985004425, 0.04559018090367317, 0.008898685686290264, 0.03144197165966034, -0.02635972946882248, 0.035172488540410995, -0.03360913693904877, 0.020497208461165428, 0.013445320539176464, 0.01890413649380207, -0.0293823704123497, 0.009061154909431934, 0.029550321400165558, -0.05245804414153099, 0.0006873150705359876, -0.003921226132661104, -0.06190124899148941, -0.0024810652248561382, -0.03704294562339783, -0.024174751713871956, -0.019357966259121895, 0.04456217214465141, -0.024518536403775215, -0.05642685666680336, -0.03455038368701935, -0.007649068254977465, -0.01981206052005291, 0.008155854418873787, -0.013640929013490677, -0.01323984656482935, -0.029079122468829155, 0.027683710679411888, 0.010444308631122112, -0.004214871674776077, -0.03090505860745907, 0.00946387741714716, -0.051234059035778046, 0.029881000518798828, 0.008023078553378582, 0.0033073013182729483, 0.05215175077319145, -0.026833506301045418, 0.020093893632292747, 0.012073345482349396, -0.033159688115119934, 0.005478110164403915, 0.00568526703864336, 0.03465262055397034, -0.0008848456782288849, -0.0008991615613922477, -0.04507460072636604, 0.010489518754184246, -0.014480343088507652, -1.205349953181667e-8, -0.026977185159921646, 0.023506350815296173, 0.008978376165032387, 0.022012585774064064, 0.016034390777349472, 0.0176202654838562, -0.02102872170507908, -0.01565457507967949, -0.0030286498367786407, 0.032599978148937225, 0.0394812673330307, -0.07487410306930542, 0.01603468507528305, -0.017566202208399773, -0.005183008033782244, -0.017381247133016586, -0.0013135980116203427, -0.007820997387170792, 0.03707069903612137, -0.02409607172012329, -0.010913331061601639, 0.006867220159620047, -0.004016279708594084, 0.007153559476137161, 0.035075485706329346, -0.013169416226446629, 0.030299581587314606, -0.07292459905147552, -0.01472272165119648, -0.027721727266907692, 0.010114428587257862, -0.022488059476017952, -0.019362151622772217, -0.028065552935004234, -0.056128352880477905, -0.03324301913380623, 0.06455071270465851, 0.0005351403378881514, -0.002514532068744302, 0.03752623498439789, -0.025984978303313255, 0.019935382530093193, -0.029262863099575043, -0.04145235940814018, -0.03438153862953186, 0.03908475115895271, -0.05635632574558258, 0.002780791139230132, 0.04046881943941116, -0.05092218890786171, -0.011531215161085129, 0.0035722197499126196, 0.004605501890182495, 0.03857456520199776, 0.040734246373176575, 0.017832739278674126, 0.001006397302262485, -0.017822684720158577, -0.028280984610319138, -0.021861083805561066, 0.019660454243421555, -0.006192510947585106, -0.052835624665021896, -0.027567587792873383 ]
neo4j-apoc-loading-data-strava-paginated-json-api
https://markhneedham.com/blog/2018/06/05/neo4j-apoc-loading-data-strava-paginated-json-api
false
2018-06-02 03:24:21
Neo4j 3.4: Comparing durations
[ "neo4j", "datetime", "cypher" ]
[ "Neo4j" ]
Neo4j 3.4 saw the https://neo4j.com/blog/neo4j-graph-database-3-4-ga-release/[introduction of the temporal date type^], which my colleague https://twitter.com/adamcowley[Adam Cowley^] covered in his https://www.adamcowley.co.uk/neo4j/temporal-native-dates/[excellent blog post^], and in this post I want to share my experience using durations from my https://www.strava.com/[Strava^] runs. I'll show how to load the whole Strava dataset in another blog post but for now we'll just manually create some durations based on the elapsed time in seconds that Strava provides. We can run the following query to convert duration in seconds into the duration type: [source, cypher] ---- WITH [2882, 2666, 2802, 3001, 3253, 2615, 2780, 2820, 2583, 2253] AS elapsedTimes UNWIND range(0, size(elapsedTimes) - 1) AS index RETURN elapsedTimes[index] AS timeInSeconds, duration("PT" + elapsedTimes[index] + "S") AS d1, duration({seconds: elapsedTimes[index]}) AS d2 ---- [source, text] ---- ╒═══════════════╤═════════════╤═════════════╕ │"timeInSeconds"│"d1" │"d2" │ ╞═══════════════╪═════════════╪═════════════╡ │2882 │"P0M0DT2882S"│"P0M0DT2882S"│ ├───────────────┼─────────────┼─────────────┤ │2666 │"P0M0DT2666S"│"P0M0DT2666S"│ ├───────────────┼─────────────┼─────────────┤ │2802 │"P0M0DT2802S"│"P0M0DT2802S"│ ├───────────────┼─────────────┼─────────────┤ │3001 │"P0M0DT3001S"│"P0M0DT3001S"│ ├───────────────┼─────────────┼─────────────┤ │3253 │"P0M0DT3253S"│"P0M0DT3253S"│ ├───────────────┼─────────────┼─────────────┤ │2615 │"P0M0DT2615S"│"P0M0DT2615S"│ ├───────────────┼─────────────┼─────────────┤ │2780 │"P0M0DT2780S"│"P0M0DT2780S"│ ├───────────────┼─────────────┼─────────────┤ │2820 │"P0M0DT2820S"│"P0M0DT2820S"│ ├───────────────┼─────────────┼─────────────┤ │2583 │"P0M0DT2583S"│"P0M0DT2583S"│ ├───────────────┼─────────────┼─────────────┤ │2253 │"P0M0DT2253S"│"P0M0DT2253S"│ └───────────────┴─────────────┴─────────────┘ ---- So far so good. == Creating nodes with `Duration` property Let's create a node with a `Run` label to represent each of these: [source, cypher] ---- WITH [2882, 2666, 2802, 3001, 3253, 2615, 2780, 2820, 2583, 2253] AS elapsedTimes UNWIND range(0, size(elapsedTimes) - 1) AS index CREATE (:Run {id: index, elapsedTime: duration({seconds: elapsedTimes[index]}) }) ---- [source, cypher] ---- Added 10 labels, created 10 nodes, set 20 properties, completed after 17 ms. ---- Great. Now we're ready to write some queries. == How do I display those durations in a more friendly format? In case we're not used to expressing durations only using seconds we can https://neo4j.com/docs/developer-manual/current/cypher/syntax/temporal/#cypher-temporal-accessing-components-durations[extract individual time units^] from the duration with the following query: [source, cypher] ---- MATCH (r:Run) RETURN r.id, r.elapsedTime.minutes AS mins, r.elapsedTime.secondsOfMinute AS secs ORDER BY r.elapsedTime DESC LIMIT 5 ---- [source, cypher] ---- ╒══════╤══════╤══════╕ │"r.id"│"mins"│"secs"│ ╞══════╪══════╪══════╡ │4 │54 │13 │ ├──────┼──────┼──────┤ │3 │50 │1 │ ├──────┼──────┼──────┤ │0 │48 │2 │ ├──────┼──────┼──────┤ │7 │47 │0 │ ├──────┼──────┼──────┤ │2 │46 │42 │ └──────┴──────┴──────┘ ---- Note that I used `secondsOfMinutes` and not `seconds`. If you use `seconds` it will give you the total number of seconds rather than the seconds of the minute: [source, cypher] ---- MATCH (r:Run) RETURN r.elapsedTime.seconds AS secs ORDER BY r.elapsedTime DESC LIMIT 5 ---- [source, text] ---- ╒══════╕ │"secs"│ ╞══════╡ │3253 │ ├──────┤ │3001 │ ├──────┤ │2882 │ ├──────┤ │2820 │ ├──────┤ │2802 │ └──────┘ ---- == How do I pad the minutes and seconds? Although the output is nicer than displaying the full duration, I'd quite like to have each duration displayed as `MM:SS` and https://neo4j-contrib.github.io/neo4j-apoc-procedures/#_text_functions[APOC^] comes to the rescue, and in particular the `apoc.text.lpad` function. The following query does exactly what I want: [source, cypher] ---- MATCH (r:Run) RETURN r.id, apoc.text.lpad(toString(r.elapsedTime.minutes), 2, "0") + ":" + apoc.text.lpad(toString(r.elapsedTime.secondsOfMinute), 2, "0") AS time ORDER BY r.elapsedTime DESC LIMIT 5 ---- [source, text] ---- ╒══════╤═══════╕ │"r.id"│"time" │ ╞══════╪═══════╡ │4 │"54:13"│ ├──────┼───────┤ │3 │"50:01"│ ├──────┼───────┤ │0 │"48:02"│ ├──────┼───────┤ │7 │"47:00"│ ├──────┼───────┤ │2 │"46:42"│ └──────┴───────┘ ---- == How many times did I run less than 45 minutes? What if I want to filter my runs to only find the shorter ones? [source, cypher] ---- MATCH (r:Run) WHERE r.elapsedTime < duration("PT45M") RETURN r.id, r.elapsedTime.minutes AS mins, r.elapsedTime.secondsOfMinute AS secs ORDER BY r.elapsedTime DESC ---- But that results in this error: [source, text] ---- Neo.ClientError.Statement.SyntaxError: Type mismatch: expected Float, Integer, Point, String, Date, Time, LocalTime, LocalDateTime or DateTime but was Duration (line 2, column 23 (offset: 44)) "WHERE r.elapsedTime < duration("PT45M")" ^ ---- If we want to compare durations we need to do that comparison by adding those durations to dates. We don't really care about dates for our query so we'll just use the current time to work around this issue. We can get that by calling the `localtime()` function. The following query will find all the runs of less than 45 minutes: [source, cypher] ---- MATCH (r:Run) WHERE localtime() + r.elapsedTime < localtime() + duration("PT45M") RETURN r.id, r.elapsedTime.minutes AS mins, r.elapsedTime.secondsOfMinute AS secs ORDER BY r.elapsedTime DESC ---- [source, text] ---- ╒══════╤══════╤══════╕ │"r.id"│"mins"│"secs"│ ╞══════╪══════╪══════╡ │1 │44 │26 │ ├──────┼──────┼──────┤ │5 │43 │35 │ ├──────┼──────┼──────┤ │8 │43 │3 │ ├──────┼──────┼──────┤ │9 │37 │33 │ └──────┴──────┴──────┘ ---- == How much shorter was this run than my longest run? We'll finish up with one final query, which was actually the real one I wanted to know the answer to! [source, cypher] ---- MATCH (r:Run) WITH MAX(r.elapsedTime) AS longestRun MATCH (r:Run) WITH r, longestRun - r.elapsedTime AS difference WHERE localtime() + difference > localtime() + duration("PT0S") RETURN r.id, r.elapsedTime.minutes AS mins, r.elapsedTime.secondsOfMinute AS secs, difference.minutes AS minutesShorter, difference.secondsOfMinute AS secondsShorter ORDER BY difference LIMIT 5 ---- On line 5 we filter out the longest run from the result set by making sure the difference is greater than 0 seconds. [source, text] ---- ╒══════╤══════╤══════╤════════════════╤════════════════╕ │"r.id"│"mins"│"secs"│"minutesShorter"│"secondsShorter"│ ╞══════╪══════╪══════╪════════════════╪════════════════╡ │3 │50 │1 │4 │12 │ ├──────┼──────┼──────┼────────────────┼────────────────┤ │0 │48 │2 │6 │11 │ ├──────┼──────┼──────┼────────────────┼────────────────┤ │7 │47 │0 │7 │13 │ ├──────┼──────┼──────┼────────────────┼────────────────┤ │2 │46 │42 │7 │31 │ ├──────┼──────┼──────┼────────────────┼────────────────┤ │6 │46 │20 │7 │53 │ └──────┴──────┴──────┴────────────────┴────────────────┘ ---- I hope that helps anyone playing around with the new `Duration` type. All that thinking about running has made me want to go for a run!
Learn how to work with the new Duration type that was introduced in Neo4j 3.4
null
[ 0.024067023769021034, -0.035137537866830826, -0.007603645324707031, 0.025893382728099823, 0.07213795185089111, 0.01815984770655632, 0.04657426103949547, 0.03243285417556763, 0.024251753464341164, -0.0007463839720003307, 0.020539749413728714, -0.006754410453140736, -0.039075400680303574, 0.0379343144595623, 0.012145120650529861, 0.05368876829743385, 0.06966182589530945, -0.03439163416624069, 0.01560983620584011, -0.0043085552752017975, 0.024194976314902306, 0.012083151377737522, -0.00031446455977857113, 0.02393629401922226, 0.03145934268832207, 0.010485216975212097, -0.023058509454131126, 0.004906050395220518, -0.05057201161980629, -0.014259560033679008, 0.03927154839038849, 0.006643247324973345, -0.004376142751425505, -0.004464436322450638, 0.0463499054312706, 0.01895608939230442, -0.06274732202291489, -0.018753888085484505, -0.007298909593373537, -0.013693916611373425, -0.05814279615879059, 0.007821677252650261, 0.002852301113307476, 0.017637575045228004, -0.0315396748483181, 0.022885004058480263, -0.03510083258152008, 0.0242169089615345, -0.0031955461017787457, 0.0250029768794775, -0.07574471831321716, 0.011178037151694298, 0.0037227116990834475, 0.008825431577861309, 0.005663128569722176, 0.04104921594262123, 0.026259807869791985, -0.08451968431472778, 0.03897625207901001, -0.02442340739071369, 0.02803475596010685, -0.036389730870723724, -0.0019015425350517035, -0.0010633599013090134, 0.002785123186185956, -0.030950479209423065, 0.0296848863363266, 0.043954845517873764, -0.03645080700516701, 0.0072249071672558784, 0.011620682664215565, 0.027763186022639275, -0.018422601744532585, 0.03926685452461243, -0.019903087988495827, -0.02238425798714161, -0.011532483622431755, 0.04304659739136696, 0.05201149731874466, 0.046857625246047974, -0.006061164196580648, -0.0007901874487288296, 0.04229514300823212, 0.03713151812553406, -0.0005990326753817499, -0.007423645816743374, -0.046455394476652145, -0.028107892721891403, -0.043196581304073334, 0.03749547526240349, 0.019775375723838806, -0.045780450105667114, 0.03222637623548508, -0.005867657717317343, -0.007967228069901466, 0.008102311752736568, -0.00790451467037201, -0.02516980469226837, 0.00989133957773447, -0.014788602478802204, -0.04002923145890236, -0.0544268898665905, -0.0009408170590177178, 0.032105494290590286, -0.06640557944774628, -0.03849772363901138, -0.0703500509262085, -0.020021094009280205, 0.00225656945258379, 0.010071564465761185, -0.056980766355991364, 0.018175607547163963, 0.004809100646525621, 0.0219466183334589, -0.07376096397638321, 0.04398038983345032, 0.028327228501439095, -0.01441990863531828, -0.02104802615940571, -0.0015457713743671775, 0.04777318611741066, 0.01970246247947216, -0.021537674590945244, 0.057645611464977264, -0.00836477056145668, 0.0675499439239502, 0.018148107454180717, 0.018693597987294197, -0.014035945758223534, -0.05701792240142822, -0.03543347120285034, 0.03766297921538353, -0.01039261743426323, 0.01719582825899124, -0.017041178420186043, -0.04111383482813835, -0.038194745779037476, 0.013055479153990746, 0.07896354049444199, 0.018726302310824394, 0.01036011427640915, -0.044651344418525696, 0.027081502601504326, -0.02182791754603386, 0.03978440910577774, 0.034372322261333466, -0.015637384727597237, -0.04759186878800392, -0.015340697020292282, -0.017543362453579903, 0.009901166893541813, 0.030077077448368073, 0.0603586807847023, -0.023721501231193542, 0.0027560654561966658, 0.10586737096309662, 0.03954412043094635, -0.007339585572481155, -0.019804805517196655, 0.016688629984855652, 0.06393691152334213, 0.025955963879823685, 0.0019672804046422243, 0.07602691650390625, 0.02150741219520569, -0.02638494037091732, 0.0037007222417742014, 0.06698712706565857, -0.021220482885837555, -0.007915305905044079, -0.0366092287003994, -0.04271351173520088, 0.06820204854011536, -0.047216497361660004, -0.02504882402718067, 0.07594843208789825, 0.07504258304834366, 0.008603768423199654, 0.025962388142943382, -0.02545161545276642, -0.0785415768623352, 0.06336848437786102, 0.015466248616576195, 0.03163904324173927, 0.023167185485363007, -0.005233610514551401, 0.07480161637067795, -0.008515290915966034, -0.004773250315338373, 0.013499299995601177, -0.0667181983590126, -0.04487000033259392, -0.004579030442982912, -0.02334163710474968, 0.054613061249256134, -0.04288332536816597, 0.025536173954606056, 0.06402982026338577, 0.009271706454455853, 0.04625749960541725, 0.015712976455688477, -0.02077607251703739, 0.010076763108372688, -0.05970333144068718, -0.04162827134132385, 0.05429947376251221, 0.015092223882675171, -0.04913065955042839, -0.027231110259890556, 0.011566752567887306, -0.021613694727420807, 0.030374007299542427, 0.024978069588541985, -0.017849259078502655, 0.038980159908533096, 0.052455104887485504, 0.048736896365880966, -0.01785605400800705, 0.01719631999731064, -0.051103122532367706, 0.06366226822137833, 0.0049676052294671535, -0.03214828670024872, -0.026191841810941696, -0.024813178926706314, 0.10214564949274063, 0.05337350070476532, -0.03077579103410244, -0.05469867214560509, 0.005422153510153294, 0.027880728244781494, -0.016468385234475136, 0.0008354582241736352, -0.028301674872636795, 0.02306385152041912, -0.01175050251185894, -0.020605621859431267, -0.030421139672398567, -0.02009529061615467, -0.02552487514913082, 0.02859881892800331, 0.06549697369337082, -0.011942591518163681, 0.056157972663640976, -0.021542439237236977, -0.0004215307126287371, -0.013534140773117542, -0.030628299340605736, -0.07627205550670624, 0.03114365227520466, 0.007705113850533962, -0.0035736970603466034, 0.05775213986635208, -0.011191943660378456, -0.015224593691527843, -0.025010718032717705, -0.04571593925356865, 0.04195405915379524, 0.04314327985048294, 0.04195427894592285, 0.021985162049531937, 0.053390562534332275, -0.021225914359092712, 0.014002799056470394, -0.03590773418545723, -0.0726144015789032, -0.06054284796118736, -0.040130726993083954, 0.022850699722766876, -0.0027427859604358673, 0.02702336199581623, -0.020867273211479187, 0.03223955258727074, 0.003006778657436371, -0.01414062175899744, -0.015307406894862652, 0.04918521270155907, 0.0007131226593628526, -0.016370631754398346, -0.0333554744720459, -0.03315189108252525, 0.052216578274965286, -0.055923327803611755, -0.03938842564821243, -0.045779041945934296, -0.05313367396593094, 0.04849081486463547, -0.06577277183532715, -0.027051515877246857, 0.017589140683412552, 0.03213110566139221, 0.06369518488645554, 0.028819728642702103, 0.024530624970793724, 0.08208302408456802, 0.03005293197929859, 0.01159808598458767, 0.01367802731692791, -0.0013974528992548585, 0.04730196297168732, -0.015279443934559822, 0.03215610235929489, 0.04483833163976669, -0.021900001913309097, -0.016400646418333054, -0.043029505759477615, -0.02570297196507454, -0.03491642326116562, -0.259148508310318, 0.04967711493372917, -0.06346062570810318, -0.057472579181194305, -0.014863388612866402, -0.029267286881804466, 0.031286295503377914, -0.024426624178886414, -0.04548114910721779, -0.00582532724365592, 0.0013183117844164371, -0.04606108367443085, -0.00628056051209569, 0.05110481381416321, 0.009246647357940674, 0.0015486676711589098, -0.021672500297427177, -0.06067545339465141, 0.0001987625437323004, 0.04299402981996536, 0.014397772960364819, -0.04594938084483147, -0.023375557735562325, 0.03302127122879028, 0.030914705246686935, 0.04375477507710457, -0.07781819999217987, 0.006342180073261261, -0.05050833895802498, -0.02001572959125042, 0.009833148680627346, -0.0395248606801033, 0.042141254991292953, -0.0009288853616453707, -0.013028773479163647, -0.033048488199710846, 0.02788812480866909, 0.02558276057243347, 0.03710799664258957, -0.0068500349298119545, -0.03168364241719246, -0.041085135191679, 0.002001615008339286, -0.017763212323188782, 0.07670425623655319, 0.004003720823675394, -0.05859433487057686, 0.0005853144102729857, 0.0023382040672004223, 0.06186294928193092, -0.031337615102529526, -0.025812877342104912, -0.018101487308740616, 0.017490409314632416, -0.03313515707850456, -0.052758779376745224, -0.010223445482552052, -0.020178407430648804, -0.018540911376476288, -0.008662085980176926, -0.012279157526791096, -0.035364869982004166, 0.03262341767549515, -0.06401558220386505, -0.031239943578839302, -0.04885293170809746, -0.09271523356437683, -0.03218889608979225, 0.04342334717512131, 0.03426546975970268, -0.040167003870010376, 0.020049352198839188, -0.03344425559043884, -0.10682372003793716, -0.030218347907066345, -0.038042087107896805, -0.0035644532181322575, 0.008927125483751297, -0.013383793644607067, 0.0881316140294075, -0.05726407840847969, -0.06450779736042023, -0.0019323965534567833, 0.018724430352449417, 0.03398850932717323, -0.007105867378413677, -0.0009236595942638814, -0.041210222989320755, -0.0038017232436686754, -0.002169425133615732, 0.06717957556247711, -0.026173949241638184, -0.024939896538853645, 0.018781403079628944, -0.007929869927465916, 0.025181874632835388, -0.0026215557008981705, -0.0018350410973653197, 0.014949075877666473, 0.028527669608592987, 0.044001463800668716, -0.026508107781410217, 0.0077090137638151646, -0.04211649298667908, -0.0051515968516469, -0.03500605374574661, -0.029117697849869728, 0.012253856286406517, 0.01166271697729826, 0.009778670966625214, 0.011665012687444687, -0.015458154492080212, 0.014624576084315777, -0.037262801080942154, -0.051372166723012924, -0.021548699587583542, 0.006970434449613094, 0.016903864219784737, 0.053372036665678024, -0.010185628198087215, -0.06357040256261826, 0.023447157815098763, 0.001834447612054646, -0.011351103894412518, -0.024501310661435127, -0.013293747790157795, -0.028477875515818596, -0.031413886696100235, -0.0025814780965447426, 0.02093624509871006, -0.05312298983335495, 0.03177972137928009, 0.03943294286727905, -0.007453517522662878, 0.04239168018102646, -0.015047703869640827, -0.012038853019475937, -0.051663875579833984, 0.02304830215871334, -0.00815123226493597, -0.0045626661740243435, 0.0032192447688430548, 0.005262198392301798, 0.03820916265249252, 0.02905280701816082, 0.019281845539808273, 0.05283837392926216, -0.016377495601773262, 0.004758767317980528, -0.015505718998610973, 0.009869961999356747, -0.022664882242679596, -0.005221080966293812, -0.04872652143239975, -0.01622994989156723, -0.011003668420016766, 0.04064932093024254, -0.0067932214587926865, -0.012531893327832222, -0.0374712273478508, 0.02929050847887993, -0.06038293242454529, 0.0043547190725803375, -0.031647879630327225, 0.005894464906305075, 0.05465652421116829, -0.008839880116283894, 0.018847864121198654, -0.01466798223555088, -0.023673543706536293, -0.00768722640350461, 0.004743732511997223, -0.04104401543736458, 0.01084333285689354, -0.0045710112899541855, -0.018984759226441383, 0.018709272146224976, 0.0431494265794754, 0.014946083538234234, 0.018363693729043007, -0.008420702069997787, 0.005715702660381794, 0.019218873232603073, 0.004922935273498297, 0.02783232182264328, 0.053083647042512894, -0.027958523482084274, -0.005987275391817093, -0.040623389184474945, 0.0025103397201746702, 0.011331995017826557, -0.007080667186528444, -0.01815943233668804, -0.026136552914977074, -0.0036843346897512674, -0.05199151486158371, 0.042510755360126495, 0.011823168955743313, 0.00957554392516613, 0.022207243368029594, 0.012079552747309208, -0.01341006439179182, -0.01075429655611515, 0.03920189291238785, 0.04675785079598427, -0.0423714704811573, 0.0159055907279253, 0.014360751025378704, -0.012638762593269348, -0.006183610763400793, 0.05607331544160843, -0.058593761175870895, -0.031978774815797806, -0.0007745599723421037, 0.011278792284429073, -0.039531074464321136, -0.05153057724237442, -0.01470408495515585, 0.0019089815905317664, -0.000583522894885391, 0.038205597549676895, 0.010337728075683117, -0.008960748091340065, -0.006817208137363195, -0.005530346184968948, 0.051582109183073044, -0.004390913061797619, 0.011791489087045193, 0.030209463089704514, -0.009520922787487507, -0.0004701819270849228, -0.03370384871959686, 0.013752415776252747, 0.02987845055758953, -0.03636976331472397, -0.020495031028985977, -0.062435444444417953, 0.017438964918255806, -0.009680720046162605, 0.043189503252506256, -0.002944367239251733, 0.005346242804080248, -0.030407704412937164, 0.017103204503655434, -0.021030796691775322, 0.005557633005082607, 0.01750275120139122, -0.008332346566021442, 0.005530355032533407, 0.028103332966566086, 0.024400558322668076, 0.031000450253486633, -0.028901075944304466, -0.03953709453344345, 0.05492513254284859, -0.05817542225122452, -0.04776163771748543, -0.012368788942694664, -0.0439230278134346, 0.0063392771407961845, 0.008888154290616512, 0.007382442243397236, -0.007844168692827225, 0.05998693034052849, 0.05341288447380066, 0.047038909047842026, 0.06200694665312767, -0.02395455911755562, 0.015721553936600685, -0.020559117197990417, -0.033100537955760956, -0.0873173177242279, -0.007104969583451748, 0.03437259420752525, 0.0333104208111763, -0.018116213381290436, 0.008548936806619167, -0.024874497205018997, 0.013784198090434074, -0.07935522496700287, -0.038179028779268265, 0.02922935225069523, -0.0194800216704607, 0.03602757677435875, 0.0049398429691791534, -0.05495626479387283, 0.010536856018006802, 0.029940418899059296, -0.026530256494879723, -0.032717105001211166, -0.015065005049109459, 0.05043935403227806, -0.03275376558303833, 0.044943634420633316, -0.04078763723373413, -0.02290215715765953, 0.07531401515007019, 0.007523044943809509, 0.019987139850854874, 0.04102446883916855, -0.01571429893374443, 0.028569770976901054, 0.027911262586712837, -0.005934020038694143, -0.020911805331707, -0.0006039432482793927, -0.004744908306747675, -0.05401473492383957, 0.03364953771233559, 0.017757777124643326, -0.007194028235971928, -0.03980772942304611, 0.07491886615753174, 0.023980915546417236, -0.028565315529704094, -0.052919257432222366, 0.02041942998766899, -0.006513750646263361, -0.04850073903799057, -0.025133691728115082, 0.00849008746445179, -0.044193852692842484, 0.06252109259366989, -0.02947169914841652, 0.016214102506637573, 0.0741453766822815, 0.004677304532378912, 0.010763172060251236, 0.010197281837463379, 0.08759337663650513, 0.08338728547096252, 0.03279644250869751, -0.006842562463134527, 0.07919235527515411, -0.014395082369446754, -0.034204427152872086, -0.010343845933675766, -0.027331242337822914, -0.02613644488155842, 0.0020029721781611443, 0.028907589614391327, 0.07553981989622116, -0.03574002906680107, 0.07950086146593094, -0.054469797760248184, -0.00467113358899951, -0.020255621522665024, -0.005214374512434006, 0.026987316086888313, 0.03312934562563896, 0.0201218631118536, 0.03723588213324547, -0.021226750686764717, -0.04163745045661926, 0.0173654742538929, 0.003494788194075227, -0.005161776207387447, 0.0488506481051445, -0.0064295693300664425, -0.005620366893708706, -0.002768408739939332, 0.026834694668650627, 0.07198909670114517, -0.03618289902806282, 0.00892676878720522, 0.007794215343892574, 0.007187081500887871, -0.02353713847696781, 0.03491506725549698, -0.0043127769604325294, -0.002135050715878606, -0.02705235406756401, -0.028562499210238457, -0.028825636953115463, 0.006534334272146225, -0.040092531591653824, 0.024164017289876938, -0.027305806055665016, 0.013084301725029945, 0.01312190294265747, -0.0655137449502945, -0.03642749413847923, -0.05182892084121704, -0.037539925426244736, -0.03701244667172432, -0.09056399762630463, 0.010718663223087788, 0.022036248818039894, -0.010074110701680183, -0.015680497512221336, 0.004699496552348137, 0.007316944655030966, 0.0025765837635844946, 0.034950755536556244, -0.04207681119441986, -0.02092551626265049, 0.023409366607666016, -0.0009164895745925605, 0.0020855776965618134, 0.039015546441078186, 0.06533290445804596, 0.009453443810343742, 0.01323798205703497, -0.038518115878105164, 0.019612258300185204, 0.06247333064675331, 0.030322911217808723, 0.0027350031305104494, -0.041068125516176224, -0.020332150161266327, 0.03130609542131424, -0.025848645716905594, -0.08547215908765793, 0.0031130947172641754, 0.04746625944972038, 0.013790611177682877, 0.047120530158281326, -0.01332091074436903, -0.0008027622825466096, -0.02735583670437336, -0.008716309443116188, 0.019734086468815804, 0.002184779616072774, 0.02335352823138237, -0.0007399158785119653, 0.06877574324607849, 0.05161583796143532, -0.05587286129593849, -0.00438906904309988, -0.025920430198311806, 0.00011401163646951318, 0.0008087199530564249, -0.044801387935876846, -0.03550438955426216, -0.07281004637479782, -0.08524016290903091, -0.02876187302172184, 0.007971706800162792, -0.016717728227376938, -0.017912520095705986, 0.02818465046584606, 0.025399349629878998, -0.019575348123908043, 0.02540496736764908, -0.03736041486263275, 0.021968405693769455, -0.017066599801182747, -0.025372395291924477, -0.030649131163954735, -0.002582295797765255, -0.011132278479635715, -0.0014456496573984623, 0.020012754946947098, -0.06120872125029564, -0.016866307705640793, -0.03486688435077667, 0.016871610656380653, 0.04686128348112106, 0.032727230340242386, 0.025637445971369743 ]
[ -0.07561937719583511, -0.01370473112910986, -0.02380121871829033, 0.01221209391951561, 0.03900759667158127, -0.029684998095035553, -0.037459272891283035, -0.01980758272111416, 0.024396227672696114, -0.008576706983149052, 0.00152218050789088, -0.018369607627391815, -0.019898399710655212, 0.023158075287938118, 0.04708074405789375, -0.0290911253541708, -0.04677857458591461, -0.06690847128629684, -0.014217584393918514, 0.052831970155239105, 0.010627216659486294, -0.029483728110790253, -0.019076082855463028, -0.010277106426656246, 0.026671431958675385, 0.04107651859521866, 0.029439803212881088, -0.03139863908290863, -0.02249012142419815, -0.20712190866470337, 0.006925901398062706, 0.02557249926030636, -0.005391725338995457, -0.01253834180533886, -0.00835785549134016, 0.005115813575685024, 0.008710789494216442, -0.00013561887317337096, 0.009537565521895885, 0.06437472999095917, 0.022896017879247665, 0.027041306719183922, -0.055088650435209274, -0.015714844688773155, 0.012698158621788025, 0.006627903785556555, -0.04150409996509552, -0.01961592771112919, -0.027886895462870598, 0.022650785744190216, -0.020174646750092506, 0.03507610037922859, 0.030860621482133865, 0.01352351438254118, 0.016701335087418556, 0.020589808002114296, 0.04315672442317009, 0.05727895349264145, 0.0515144057571888, -0.02165544219315052, 0.0030713777523487806, -0.002097675111144781, -0.13655011355876923, 0.08203957229852676, -0.03170109540224075, 0.006021597888320684, -0.03747120499610901, 0.006029616110026836, -0.021336328238248825, 0.050580937415361404, -0.004995687864720821, 0.011601921170949936, -0.05480828508734703, 0.045017458498477936, 0.007462949957698584, 0.038267042487859726, 0.006014180835336447, 0.005898916628211737, 0.04113210365176201, -0.02208373323082924, -0.0002566629264038056, 0.00933228712528944, -0.0392332524061203, -0.03780439868569374, -0.009684373624622822, 0.03033747337758541, -0.005055623594671488, 0.0396559052169323, 0.003458082675933838, 0.06799761205911636, 0.0017411826411262155, 0.0340547077357769, 0.05867981165647507, 0.015719348564743996, -0.08232450485229492, -0.007954499684274197, 0.035573139786720276, 0.03776725009083748, 0.029790159314870834, 0.3872910737991333, -0.002677826676517725, 0.023379579186439514, 0.00815788097679615, 0.05965806171298027, -0.004342097323387861, -0.012261240743100643, -0.024752356112003326, -0.08570291101932526, 0.005125846713781357, -0.009696491993963718, -0.004755944013595581, -0.014521502889692783, 0.06657545268535614, -0.11839481443166733, -0.003616898087784648, 0.019458690658211708, 0.041114646941423416, 0.020550772547721863, 0.005517080891877413, 0.021573739126324654, -0.026277923956513405, 0.006599187385290861, 0.036928996443748474, -0.025586331263184547, 0.03136846423149109, 0.02882489003241062, 0.03252100199460983, 0.018562333658337593, 0.01582207717001438, 0.022561892867088318, 0.06971155107021332, 0.022349296137690544, -0.09960083663463593, 0.021747305989265442, -0.01116194948554039, 0.019860222935676575, -0.003613563720136881, -0.053668927401304245, -0.006751293316483498, -0.02062116004526615, -0.04344935715198517, -0.043840885162353516, 0.05644124001264572, 0.006892601493746042, -0.03264959901571274, 0.13731849193572998, 0.011423174291849136, -0.03135589882731438, -0.01486931461840868, -0.024298254400491714, -0.0386088602244854, 0.04349111020565033, 0.007443027570843697, -0.08385182917118073, 0.0037027671933174133, 0.026840461418032646, 0.10049756616353989, -0.01781918853521347, -0.10893533378839493, -0.005756012164056301, -0.03590206056833267, -0.004166334867477417, -0.021269043907523155, 0.06781138479709625, 0.047856952995061874, -0.12212663143873215, 0.00896045658737421, 0.05251174792647362, 0.02865714579820633, -0.0956515297293663, 0.014421678148210049, 0.00009150952973868698, -0.03949780762195587, -0.04720742627978325, 0.12467958778142929, 0.023741910234093666, -0.0023363030049949884, -0.01572791300714016, 0.044140174984931946, 0.028674717992544174, -0.012279743328690529, -0.02548871748149395, -0.024824459105730057, 0.013137695379555225, -0.06617779284715652, -0.04425814747810364, -0.06265534460544586, 0.03524932637810707, -0.01658470369875431, -0.0326545424759388, 0.00256284698843956, -0.055570539087057114, -0.07235470414161682, 0.09722429513931274, -0.04628121852874756, -0.05376439169049263, -0.00622952077537775, 0.019381601363420486, -0.02334143966436386, -0.04823591932654381, 0.028902169317007065, -0.027391228824853897, 0.002875865902751684, 0.01817525550723076, -0.010215997695922852, 0.02333247661590576, 0.04568639025092125, -0.03970135375857353, 0.048380788415670395, 0.03404546529054642, -0.04496454820036888, 0.00416959822177887, -0.02958742156624794, 0.0010786985512822866, -0.0063640642911195755, 0.0029738747980445623, -0.0263108741492033, -0.01919950358569622, 0.005385167431086302, 0.05037001147866249, -0.0392003059387207, 0.00023031111049931496, -0.016763953492045403, -0.32656633853912354, -0.028721507638692856, -0.021968966349959373, -0.015077278017997742, 0.046628475189208984, -0.0237258467823267, -0.022055482491850853, -0.046043314039707184, 0.058024171739816666, -0.017315486446022987, 0.07340704649686813, 0.015297910198569298, -0.023246515542268753, -0.12289228290319443, 0.021697930991649628, 0.04176468774676323, 0.01881646364927292, -0.013800101354718208, -0.020352333784103394, -0.009534493088722229, 0.0027069197967648506, -0.050691720098257065, -0.029530448839068413, -0.06033070385456085, -0.0030540223233401775, -0.009453828446567059, 0.10341894626617432, -0.018518760800361633, 0.03282734379172325, -0.06894826143980026, 0.028098100796341896, -0.025301605463027954, -0.02501756139099598, -0.06460977345705032, -0.01409363467246294, -0.02079007215797901, 0.06360816955566406, 0.03614363819360733, 0.00451830867677927, -0.021914223209023476, -0.048829905688762665, 0.016467753797769547, -0.02811822108924389, -0.022587470710277557, -0.04137779027223587, 0.017455531284213066, 0.008409567177295685, -0.00047348139923997223, 0.007923757657408714, 0.043030720204114914, 0.0038893187884241343, 0.023807287216186523, -0.006019591819494963, 0.028010519221425056, 0.01676185429096222, -0.021669097244739532, -0.08038069307804108, -0.0009350695763714612, 0.005805660504847765, 0.028364060446619987, -0.020002590492367744, 0.0320429690182209, 0.026240864768624306, -0.07109221816062927, -0.008840743452310562, 0.017198506742715836, -0.02212628908455372, -0.03679276630282402, 0.002314554061740637, -0.018160713836550713, -0.012732253409922123, 0.10674259811639786, -0.044752515852451324, -0.00336670596152544, 0.06875348836183548, 0.022617990151047707, -0.016202226281166077, 0.009025524370372295, 0.04322142153978348, 0.042839303612709045, 0.008983732201159, -0.03532719612121582, 0.06839800626039505, -0.0013445868389680982, -0.0020668881479650736, 0.032107722014188766, -0.00565600860863924, -0.015881044790148735, 0.03777473047375679, 0.022478831931948662, -0.01847856305539608, -0.000590810552239418, -0.018126798793673515, -0.052002694457769394, 0.07853545993566513, -0.014817779883742332, -0.24935144186019897, 0.07906720042228699, 0.057267382740974426, 0.035963233560323715, 0.005196409299969673, -0.011099735274910927, -0.02941870130598545, -0.06965766847133636, -0.037747085094451904, -0.0036793036852031946, 0.004365253262221813, 0.07371208816766739, 0.004152968991547823, 0.02471979893743992, -0.004133744165301323, 0.020696282386779785, 0.04907269403338432, 0.012167655862867832, 0.02263347990810871, -0.007397057022899389, 0.05770280212163925, -0.016897767782211304, 0.17237992584705353, 0.041550736874341965, -0.001733561628498137, 0.025127606466412544, -0.016522271558642387, 0.018054870888590813, 0.06940574198961258, -0.011677858419716358, -0.028899038210511208, 0.044055256992578506, 0.03376762568950653, 0.054682374000549316, 0.0019081823993474245, -0.0323336124420166, -0.027810804545879364, 0.07782955467700958, 0.016851376742124557, -0.01720346510410309, 0.02694656513631344, 0.010014117695391178, -0.009340876713395119, 0.024958821013569832, 0.10274529457092285, -0.02924323081970215, -0.009407137520611286, -0.05674419179558754, -0.09512495249509811, -0.02183268591761589, -0.03989681228995323, -0.0339561365544796, -0.01922599971294403, 0.020671634003520012, -0.021182237192988396, 0.08154873549938202, 0.03709585964679718, -0.023984288796782494, 0.04812045767903328, 0.017533646896481514, -0.013749731704592705, -0.03103332594037056, 0.07949810475111008, -0.026141144335269928, 0.02287887968122959 ]
[ 0.04005119204521179, 0.060078877955675125, -0.03459058701992035, 0.04366005212068558, -0.026027236133813858, 0.013521866872906685, -0.031189242377877235, -0.00625488581135869, -0.006883212830871344, -0.03174929693341255, -0.04105012118816376, 0.01250260230153799, 0.017964612692594528, -0.019618408754467964, 0.00858873687684536, -0.010831846855580807, -0.006394833326339722, 0.005731023382395506, 0.06794866919517517, 0.012967269867658615, 0.01168196089565754, 0.011012343689799309, 0.02319929003715515, 0.0017207508208230138, -0.0058030555956065655, 0.04001372680068016, -0.06882854551076889, -0.012550223618745804, 0.023142224177718163, -0.10557211935520172, 0.0004982920945622027, -0.016657378524541855, 0.0075303916819393635, -0.01547261793166399, -0.036092609167099, 0.013802485540509224, -0.01879800297319889, 0.01304585486650467, -0.017114367336034775, 0.01262673269957304, 0.03134886920452118, -0.00903293490409851, -0.0322461798787117, 0.034610092639923096, -0.01629595085978508, -0.027260510250926018, 0.004212644882500172, -0.022630492225289345, -0.033610448241233826, 0.0013881076592952013, -0.021389564499258995, -0.02174319140613079, -0.02581767737865448, -0.0033459635451436043, 0.018587378785014153, 0.007718231994658709, -0.0662538930773735, 0.03675767779350281, 0.005304075311869383, -0.04949110001325607, 0.048495229333639145, 0.006556069944053888, -0.05687463656067848, -0.035852864384651184, 0.010684995912015438, -0.0059670861810445786, 0.03551862761378288, 0.0022134839091449976, 0.004297277424484491, 0.003087551100179553, -0.014813324436545372, 0.06262555718421936, -0.05813003331422806, -0.005817970726639032, -0.050559721887111664, 0.04209498316049576, 0.0739276111125946, -0.015836654230952263, -0.007095105946063995, 0.0073541197925806046, 0.01488691195845604, 0.02065468393266201, -0.017306281253695488, 0.048434898257255554, -0.03321540355682373, -0.004861816298216581, -0.0004061533254571259, 0.018733492121100426, 0.0015659414930269122, -0.015864171087741852, -0.0257707629352808, -0.017705706879496574, -0.02180434577167034, 0.005627062637358904, -0.09137089550495148, -0.018911421298980713, -0.011054218746721745, 0.02642705850303173, 0.03866133838891983, 0.7850502133369446, 0.012619501911103725, -0.021950488910079002, -0.0332297682762146, 0.051405277103185654, -0.017812345176935196, -0.0038795149885118008, 0.002227621618658304, -0.018872829154133797, -0.026187729090452194, 0.013067487627267838, 0.008802506141364574, 0.03893337398767471, 0.018632253631949425, -0.0038127044681459665, 0.03916311264038086, 0.07001491636037827, -0.002040074672549963, -0.014977467246353626, 0.025995036587119102, 0.031141240149736404, 0.01813983917236328, 0.02234242856502533, 0.013602572493255138, 0.003124342765659094, 0.011739587411284447, -0.1588946133852005, 0.0283190980553627, -6.472111734522215e-33, 0.023409657180309296, -0.019879166036844254, 0.06939882785081863, -0.010996722616255283, 0.01952523924410343, 0.03830784186720848, -0.016949215903878212, -0.0468611977994442, 0.013732748106122017, -0.021371634677052498, -0.03282641991972923, 0.001705832895822823, 0.008321522735059261, -0.04021625220775604, 0.02842489629983902, -0.0121723972260952, 0.019706519320607185, 0.01925075426697731, 0.041974443942308426, -0.027792086824774742, 0.02490227483212948, 0.00817626342177391, -0.02062283270061016, 0.06807374954223633, 0.011512569151818752, 0.003750243689864874, 0.010197251103818417, -0.008214262314140797, -0.013439522124826908, -0.050611793994903564, -0.05535914748907089, 0.02032368816435337, -0.030920499935746193, 0.00003813847069977783, 0.06494680792093277, -0.07127518206834793, -0.03950522840023041, 0.02074308879673481, -0.013973476365208626, -0.05890234187245369, -0.03189775347709656, -0.0027985170017927885, -0.018136054277420044, -0.009475313127040863, -0.033185843378305435, -0.02335941419005394, -0.018739260733127594, 0.011293251998722553, 0.008483033627271652, 0.006646794266998768, 0.004027384798973799, 0.030669789761304855, -0.01335094403475523, -0.0311603844165802, -0.050193145871162415, 0.019808489829301834, 0.04236554726958275, 0.006769869010895491, -0.004886823706328869, 0.047367073595523834, 0.03942045569419861, -0.009474345482885838, 0.0075948890298604965, 0.005961282644420862, 0.028491437435150146, 0.016932565718889236, 0.005405945237725973, 0.04162369295954704, 0.03525327891111374, 0.023877061903476715, -0.052379727363586426, 0.02911245822906494, -0.003897020360454917, -0.025993438437581062, 0.04252291098237038, -0.0525842010974884, 0.021471399813890457, -0.0038729675579816103, 0.015652241185307503, 0.04284041374921799, -0.012833577580749989, -0.053169943392276764, -0.004805357661098242, -0.032514262944459915, -0.00329666119068861, -0.0534818172454834, 0.015539262443780899, 0.012712480500340462, 0.004854433238506317, 0.03776008263230324, 0.021313367411494255, 0.023684844374656677, 0.018273940309882164, -0.028666188940405846, -0.01830330491065979, 6.695133134915943e-33, 0.007134793326258659, -0.027631323784589767, -0.00675760256126523, 0.0018679600907489657, 0.04978042095899582, 0.01564270257949829, -0.0012273845495656133, 0.06839173287153244, -0.03968777880072594, 0.055615898221731186, 0.004565938841551542, -0.023964695632457733, -0.03429777920246124, 0.05067124962806702, 0.07217606902122498, 0.01835852488875389, 0.02005913108587265, -0.059564121067523956, -0.018271997570991516, 0.026841431856155396, 0.010701591148972511, 0.02111661247909069, -0.034370340406894684, 0.022721825167536736, 0.059554874897003174, -0.0007448710384778678, 0.03787576034665108, 0.001974535407498479, -0.019925272092223167, 0.017240149900317192, -0.007771473843604326, -0.06740104407072067, -0.023250700905919075, -0.012860184535384178, -0.05481951683759689, 0.013246230781078339, 0.006487008184194565, -0.006786713842302561, 0.03904552757740021, 0.0013231838820502162, 0.04765494167804718, 0.02459341660141945, -0.006477333605289459, 0.05231376737356186, 0.004639300052076578, 0.055479977279901505, -0.007186726666986942, 0.035686273127794266, -0.011761224828660488, 0.037430960685014725, 0.009825481101870537, 0.02685183472931385, -0.0381777323782444, 0.010073011741042137, 0.04084625095129013, -0.08090611547231674, -0.0036328064743429422, -0.02320367470383644, -0.023418908938765526, 0.0013629186432808638, -0.04362669587135315, -0.017518911510705948, -0.02219589799642563, 0.009251358918845654, -0.0004914958262816072, -0.0727795660495758, 0.009240941144526005, -0.027168508619070053, -0.00835423357784748, 0.0013260714476928115, 0.021906746551394463, -0.001232283073477447, -0.04169638827443123, 0.03252868354320526, 0.022013578563928604, -0.015721851959824562, -0.05719128996133804, 0.03599012643098831, -0.021007584407925606, 0.011371737346053123, 0.022241339087486267, 0.00800237711519003, 0.053076934069395065, -0.00795914325863123, -0.00012304398114793003, 0.026266733184456825, -0.023312091827392578, 0.0030183070339262486, 0.013170217163860798, 0.0025010090321302414, 0.03033350221812725, -0.021401330828666687, -0.026516243815422058, 0.053697045892477036, 0.0024023489095270634, -1.18906857693446e-8, -0.021387731656432152, 0.010427632369101048, -0.0376763753592968, -0.0006005557952448726, 0.02689238265156746, -0.0006481691962108016, -0.02036270871758461, -0.007062994409352541, 0.021849263459444046, 0.02870323322713375, 0.06224382296204567, -0.04015568271279335, 0.04175976291298866, -0.009526844136416912, 0.0001300337171414867, -0.03068632259964943, -0.002489863196387887, -0.042379193007946014, 0.029846999794244766, -0.013349025510251522, -0.006393773015588522, 0.03448891639709473, -0.03765532001852989, -0.0244312584400177, 0.0065481336787343025, -0.00606785761192441, 0.025521010160446167, -0.06976490467786789, 0.0034741514828056097, -0.044656723737716675, 0.026152590289711952, -0.020565927028656006, -0.030269339680671692, -0.019982947036623955, -0.0628942996263504, -0.06294628232717514, 0.0399480015039444, 0.016555827111005783, 0.010129109025001526, 0.0473976768553257, 0.009716379456222057, -0.00435387808829546, -0.010789269581437111, -0.02565349079668522, -0.040143903344869614, 0.028801606968045235, -0.033219676464796066, -0.010762561112642288, 0.015112203545868397, -0.018439121544361115, 0.019268479198217392, 0.01204756461083889, 0.004576485604047775, 0.03485855087637901, 0.06212129816412926, -0.002633195137605071, 0.013720482587814331, -0.02174760214984417, -0.013972433283925056, -0.019246039912104607, 0.004985866602510214, 0.0022278770338743925, -0.016577616333961487, -0.03412698209285736 ]
neo4j-3.4-comparing-durations
https://markhneedham.com/blog/2018/06/02/neo4j-3.4-comparing-durations
false
2018-06-15 13:45:21
Neo4j: Querying the Strava Graph using Py2neo
[ "neo4j", "cypher", "strava", "py2neo", "python" ]
[ "Neo4j" ]
Last week Nigel https://medium.com/neo4j/py2neo-v4-2bedc8afef2[released v4 of Py2neo^] and given I was just getting ready to write some queries against https://markhneedham.com/blog/2018/06/12/neo4j-building-strava-graph/[my Strava activity graph^] I thought I'd give it a try. If you want to learn how to create your own Strava graph you should read my previous post, but just to recap, this is the graph model that we created: image::{{<siteurl>}}/uploads/2018/06/strava-graph.svg[] Let's get to it! == tl;dr the code in this post is available as a https://github.com/mneedham/strava/blob/master/Strava.ipynb[Jupyter notebook^] so if you want the code and nothing but the code head over there! == Importing libraries Importing and creating a `Graph` object in Py2neo is as simple as executing the following lines of code: [source, python] ---- from py2neo import Graph graph = Graph("bolt://localhost:7687", auth=("neo4j", "neo")) ---- == Find the most recent activities We'll start with a simple query where we find the most recent activities that I've done. [source, python] ---- recent_runs_df = graph.run("""\ MATCH (r:Run) WITH r { .id, .startDate, .name, .movingTime, .distance, pace: duration({seconds: r.movingTime.seconds / r.distance * 1000}) } RETURN r.name, apoc.date.format(r.startDate.epochSeconds, 's', 'MMM d yyyy') AS dateOfRun, r.distance, apoc.date.format(r.movingTime.milliseconds, 'ms', 'HH:mm:ss') AS time, apoc.date.format(r.pace.milliseconds, "ms", "mm:ss") AS pacePerKm, r.startDate AS startDate """).to_data_frame() recent_runs_df \ .sort_values(by = ["startDate"], ascending=False) \ .drop(["startDate"], axis=1) \ .head(10) ---- This query converts the Cypher output into a DataFrame with the `to_data_frame` function. There are other formats that we can use instead but I want to post process the results using Pandas so this format works best for me. If we run that query we'll get the following output: ++++ <table class="dataframe"> <thead> <tr style="text-align: right;"> <th></th> <th>dateOfRun</th> <th>pacePerKm</th> <th>r.distance</th> <th>r.name</th> <th>time</th> </tr> </thead> <tbody> <tr> <th>605</th> <td>Jun 13 2018</td> <td>04:33</td> <td>10780.2</td> <td>Morning Run</td> <td>00:49:11</td> </tr> <tr> <th>604</th> <td>Jun 11 2018</td> <td>04:34</td> <td>10035.8</td> <td>Morning Run</td> <td>00:45:53</td> </tr> <tr> <th>603</th> <td>Jun 9 2018</td> <td>04:23</td> <td>11043.2</td> <td>Morning Run</td> <td>00:48:29</td> </tr> <tr> <th>602</th> <td>Jun 8 2018</td> <td>04:36</td> <td>11281.2</td> <td>Morning Run</td> <td>00:51:57</td> </tr> <tr> <th>586</th> <td>Jun 6 2018</td> <td>04:28</td> <td>10884.9</td> <td>Morning Run</td> <td>00:48:38</td> </tr> <tr> <th>585</th> <td>Jun 4 2018</td> <td>04:24</td> <td>10030.5</td> <td>Morning Run</td> <td>00:44:14</td> </tr> <tr> <th>584</th> <td>Jun 2 2018</td> <td>04:25</td> <td>13039.8</td> <td>Morning Run</td> <td>00:57:41</td> </tr> <tr> <th>601</th> <td>Jun 1 2018</td> <td>04:29</td> <td>10701.7</td> <td>Morning Run</td> <td>00:48:02</td> </tr> <tr> <th>600</th> <td>May 30 2018</td> <td>04:41</td> <td>9828.4</td> <td>Morning Run</td> <td>00:46:06</td> </tr> <tr> <th>599</th> <td>May 28 2018</td> <td>04:34</td> <td>10193.0</td> <td>Morning Run</td> <td>00:46:42</td> </tr> </tbody> </table> <style> table { border-collapse: collapse; } table, th, td { border: 1px solid black; padding: 5px; } </style> ++++ We could also do the sorting of the data directly in Cypher, but I wanted to have all the activities available in the DataFrame so that we could play around with it directly in Pandas without having to re-run the query each time. == Find the longest activities For example, we could find the activities ordered by distance: [source, python] ---- recent_runs_df \ .sort_values(by = ["r.distance"], ascending=False) \ .drop(["startDate"], axis=1) \ .head(10) ---- If we run that query we'll get the following output: ++++ <table class="dataframe"> <thead> <tr style="text-align: right;"> <th></th> <th>dateOfRun</th> <th>pacePerKm</th> <th>r.distance</th> <th>r.name</th> <th>time</th> </tr> </thead> <tbody> <tr> <th>594</th> <td>May 19 2018</td> <td>04:30</td> <td>13635.2</td> <td>Morning Run</td> <td>01:01:27</td> </tr> <tr> <th>584</th> <td>Jun 2 2018</td> <td>04:25</td> <td>13039.8</td> <td>Morning Run</td> <td>00:57:41</td> </tr> <tr> <th>590</th> <td>May 12 2018</td> <td>04:40</td> <td>12963.9</td> <td>Morning Run</td> <td>01:00:33</td> </tr> <tr> <th>597</th> <td>May 25 2018</td> <td>04:37</td> <td>11690.0</td> <td>Morning Run</td> <td>00:54:02</td> </tr> <tr> <th>572</th> <td>May 5 2018</td> <td>04:31</td> <td>11674.4</td> <td>Morning Run</td> <td>00:52:48</td> </tr> <tr> <th>531</th> <td>Mar 17 2018</td> <td>04:37</td> <td>11299.0</td> <td>Afternoon Run</td> <td>00:52:19</td> </tr> <tr> <th>602</th> <td>Jun 8 2018</td> <td>04:36</td> <td>11281.2</td> <td>Morning Run</td> <td>00:51:57</td> </tr> <tr> <th>548</th> <td>Jan 27 2018</td> <td>04:37</td> <td>11064.7</td> <td>Afternoon Run</td> <td>00:51:05</td> </tr> <tr> <th>603</th> <td>Jun 9 2018</td> <td>04:23</td> <td>11043.2</td> <td>Morning Run</td> <td>00:48:29</td> </tr> <tr> <th>586</th> <td>Jun 6 2018</td> <td>04:28</td> <td>10884.9</td> <td>Morning Run</td> <td>00:48:38</td> </tr> </tbody> </table> ++++ We can also visualise the distances over time using matplotlib: [source, python] ---- %matplotlib inline recent_runs_df.plot(x="startDate", y="r.distance") ---- ++++ <br /> <img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAX8AAAD8CAYAAACfF6SlAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz AAALEgAACxIB0t1+/AAAADl0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uIDIuMi4yLCBo dHRwOi8vbWF0cGxvdGxpYi5vcmcvhp/UCwAAIABJREFUeJztnXmAHFW1/z+9zL4kk2Sy71tlYU1C AgqEfVdEFNEniiCiIgriQ98DBRV9uDyeIigCIi4gPwRRQUAQBEJYAmEJWaiQHbIxW2bfevn90V3d VdVV1VU13TM90+fzz3RX3aq6t7vnW6fOPfecQDweRxAEQSgugkPdAUEQBGHwEfEXBEEoQkT8BUEQ ihARf0EQhCJExF8QBKEICQ91B9zS0NDuOyyprq6SlpauXHZnSBgp44CRMxYZR2ExUsYBuRtLfX1N wGp7UVj+4XBoqLuQE0bKOGDkjEXGUViMlHFA/sfiyvJXFGUF8CNVVY/TbfsUcLmqqkcl318CXApE gBtUVX1EUZRxwL1ABbAH+Jyqql1WbXM4JkEQBCELWS1/RVGuBu4EynXbDgcuBgLJ9xOBrwIfBE4F /kdRlDLgO8C9qqoeA7wOXOrQVhAEQRgk3Fj+W4GPAn8AUBRlLPBD4ArgjmSb5cBqVVV7gV5FUbYA hwBHJ9sCPJZ8vdWm7StOnairqxzQY1B9fY3vYwuJkTIOGDljkXEUFiNlHJDfsWQVf1VVH1QUZSaA oigh4DfA14FuXbNaoFX3vh0YZdputU2/3ZGBTHzU19fQ0NDu+/hCYaSMA0bOWGQchcVIGQfkbix2 NxCv0T5LgXnAr0i4gRYpivIz4GlAf4Ua4ADQlnzdbbHN3FYQBEEYJDyJv6qqa4DFAMmngftUVb0i 6cf/gaIo5UAZsBBYD6wGzgDuBk4HVgFrbNoKgiAIg0ROQj1VVd0H3ExC3J8GrlFVtQe4AThfUZTV wFHALQ5tBUEQhEEiMFxSOg9kkddI8QOOlHHAyBmLjKOwGK7jaO/q4/E1uzh1+XRqK0uBnPr8i3eR 11Dz4Q+fCsAf/nA3Gzfae7gefPD/DVaXBEEoIP701Ds89tIu7n1y86BdU8R/ELngggtZtOgg2/2/ +91dg9gbQRAKhQPtvYm/HX2Dds1hk9snG/c/vYVX3n7fcl8oFCAa9e41OmLBeM47Ya5jm0cffZh/ /OPvxGIxLr74UpYtW040GuXHP/4B27dvY8qUqfT1Jb7QH/zgek488RQmT57C//zPdwmFwsRiMa67 7gYef/wftLW18tOf3siXvvQVbrzxBjo62mlsbOCjHz2Pc875GBdccAEzZsxh27atdHV18P3v/4iJ Eydx9913smrVs0SjUT7ykXP5yEfO5YEH7uPJJ/9JIBDgxBNP4eMfP9/z+AVBGLmMGPEfSmpqarjx xptS75977t/09fVx++13s2/fPp555ilD+1deeZmFCxfz5S9/jTfffJ3Ozg4++9mLefDB+/nGN76F qr7NSSedwsqVJ9DY2MBXvvIFzjnnYwAsXLiYr33tKn7961t58sl/smLFkbz88gvcfvvdxGIxbrvt FrZt28pTTz3JL395JwBXXnkZK1YcyfTpMwftMxEEobAZMeJ/3glzba30fE8CTZ8+w/D+3Xd3sXDh YgAmTpzI+PETDPvPOuts7rnnd1x11eVUVVVz6aWXGfaPGTOG+++/l2ef/TeVlVVEIpHUvvnzFQAm TJhAU1MTu3btZOHCxYRCIUKhEJdffiVPPfUk+/fv42tf+xIA7e3tvPvuuyL+giCkEJ9/DggEjB/j zJmz2bBhHQCNjQ00NDQY9j///LMceujh/Pznv+L440/knnt+B4AWeXXffX/koIMO4Tvf+T4nnHAS +oisQMA4cT9jxkw2b1aJxWJEIhGuuOLLTJ8+g5kzZ/OLX/yaW265nTPOOIs5c+blfNyCIOSYQYy+ HDGWfyHwy1/+nOOOO5FjjlnJK6+8zCWXfJaJEycxevRoQ7sFCxZxww3X8bvf/YZYLMbll38dgJkz Z/G9732bs846m//7vx/z1FNPUF1dTSgUSs0bmJk3T2HFiqP40pcuJhaLcc45H2PevPksW3YEX/7y xfT19bNw4WLq6+vzPn5BEIYPEuc/jBgp44CRMxYZR2ExXMfx43tf4+1dB5g/bTTf+o8lgMT5C4Ig CHlAxF8QBGEQ2d3QwQ//sJb9zRaZigfREyPiLwiCMIjc9ejbbNndyp+eeof2rj4efHYrHd39g94P mfAVBEEYAmLxOPc8uZk1m3SLUwOW7vm8IJa/IAjCIJLS9zi0JNM6DAUi/oIgCIOITvszEZ+/IAjC yERbqDnUYfYi/oIgCINJ0vSPx9NPAel94vMXBEEYkQyevDsj4i8IgjCIpHz+Vm4f8fkLgiCMUAbR teOEiL8gCMIgEkxqf2yI06qJ+AuCIAwFVi4emfAVBEEYmaRCPa12is9fEARhZBOHIfX/i/gLgiAM IgHHJb6Dh6vEboqirAB+pKrqcYqiHAb8AogCvcBnVFXdryjKJcClQAS4QVXVRxRFGQfcC1QAe4DP qaraZdU25yMTBEEoQIwrfAPmnYPWj6yWv6IoVwN3AuXJTT8HLldV9TjgL8A3FUWZCHwV+CBwKvA/ iqKUAd8B7lVV9RjgdeBSh7aCIAgjnuGU22cr8FHd+/NVVX0j+ToM9ADLgdWqqvaqqtoKbAEOAY4G Hk+2fQw4yaGtIAjCyEeX3mEoyer2UVX1QUVRZure7wVQFOUDwFeAY0lY8K26w9qBUUCtbrvVNv12 R+rqKgmHQ9ma2VJfX+P72EJipIwDRs5YZByFRaGPo7ysBIBQOEhJiVHTSkrDhv7ncyy+irkoivIJ 4BrgTFVVGxRFaQP0vawBDgDa9m6Lbea2jrS0WJQ8c8lwLepsZqSMA0bOWGQchcVwGEdfXwSA/v5o huulvz+a6n8OC7hbbvcs/oqifJrEZO1xqqo2JzevAX6gKEo5UAYsBNYDq4EzgLuB04FVDm0FQRBG PKkpXausngXm80+hKEoIuJmEtf4XRVGeURTlu6qq7ktuXwU8DVyjqmoPcANwvqIoq4GjgFsc2gqC IIx40ou8htbp78ryV1V1B3Bk8u0YmzZ3AHeYtu0HTnPTVhAEYSTR3RthrdrAikUTKAlb2NkW2r/5 vVaefOVdTj5iWt77J4u8BEEQ8sAfnlC569FNPPrSTsP2QJbEbn966p089yyBiL8gCEIe2L43MVm7 t6nTsD1QIEt8RfwFQRDygFasJWBatVsY0i/iLwiCkB+S6p6RsUGn/nbZHAajuLuIvyAIQh6IaZY/ 3i3/6CBUehHxFwRBAHY3dtLW1Zez88VtLH9jYjdr+iOxnPXDDhF/QRCKnlgszrfvfJkrbn4+h2fV fP7GrQFdbh87/d+6u5UPXfU3Nu1otm6QA0T8BUEoevLhZomlLH9rx77TFf/6/HYAfv9PNce9SiPi LwiCkIfYm7TP34gbt09ZMuFbR3d/zvulIeIvCELR48bw7+ju5/l1e4nGXPrjbSz/gGm/FaXJFcGd PRF31/KBr6yegiAII4mYC/X/9d/Ws2FHC/2RKMcvmZq1vWbZB4Mm8dd8/sRtQz27e/Mn+hpi+QuC UPS4CavfsqcNgP0t3a7OmfL5Z+zR3D72x7bn0d2jIeIvCELR4yrDps9pAbton8bWHnr6opbHtHeJ +AuCIOQdN24fDbc11m3TO+je7thnXawlnxO9GiL+gpBHXt64n627W7M3FIYUL5GebjMv2Ll9zCt+ s/Hgs1s9tXeLiL8g5JFf/30DP/jD2qHuhmDBzn3ttHb0EovHufIX7hd3Hejo5e/Pb6ev39plk8ba 8veo/fzjxZ20dvR6O8gFEu0jCHliMJJzCf7o64/y3btfIRCAX319padj12x6H4BQKMCZR820bRez S+/g6WoJ3nmvlWULxvs40h6x/AUhT4j0Fy7aRGs87v97OtDhnAco7fM3bfdxrUUz63wc5YyIvyDk CbH880c8HueBZ7ay+d0Dvo7Xp3NwO9mbERGU7TC79A4efxajq0upLC/xdpALRPyFAbH53QO88U4j kWjMhQ+0uBDtzx/vNXTy6Es7ufGe13wdH4mmV+nm6yZt5/bxWrjdLjfQQBGfvzAgtH++UdWltHb0 cde3ThjiHhUOYvnnj77IwAwNvfjnK3d+3Cafv9efRTBP4i+Wv5ATWpP+z/++/SXUXS1D3JvCYBDq cRQvA/xs9fny/X5PXi341HEeD8uT9ov4C7llX3MXt/1tw1B3ozAQ8c8bfh6qGg9009OXyJnTr7P8 vSzw8oJ23sybhLfrmXMD5QoRfyH35MlSGW7ExO2TN7xa3b39Ua6+7UWuueNlACIRHz5/f/O9xE1J QMXtIwgjHNH+/OH1s+1NBiO0tCcWSxncPv79Pq4wGwFer5Yvy9/VhK+iKCuAH6mqepyiKHOBu0mM YT1wmaqqMUVRrgPOBCLAFaqqrvHSNsfjEoYQMfwT+PUJC7nH/Js0uH3c3kl8RmyaT+81EGDIfP6K olwN3AmUJzfdBFyrquoxJD6OsxVFWQKsBFYA5wO3+mgrDDPsilrkKzRtuCGWf/7wKqBm415v+buO 9vH5fWZY/sPI7bMV+Kju/VLg2eTrx4CTgKOBJ1RVjauqugsIK4pS77GtMMyIRETdnJBQz8LB7NrJ RbSPWxU3/w7cXq6iLFHK8aSl2QvH+CGr20dV1QcVRZmp2xRQVVXrfzswCqgFmnRttO1e2jY49aOu rpJwOJStu7bU19f4PraQKKRx2CWbCgUDrvpZSGMZCHbjKGnvzdqmkBgOfdTY29qTem3ut9U44jrt qK+vobwiLUGjR1dmPR7I8L+UV5Qa2sZicfY0djClvtrw9FtWXmJoV1rqTscOnVfPlZ9ckpfVveBv kZf+Wb8GOAC0JV+bt3tp60hLS5ePriaor6+hocE6b/ZwotDG0dzWY7k9Fo9n7WehjcUvTuPQ3xwL fazD7fto1umBvt9242g40G1o33IgfXxTU4exrd3nYLLgu7v7DG3/8tw2HnlhB1/48CKOXDQxtb2r y9iu12Vd3u7eCJ3tPXS2W/+fucXuZuYn2ud1RVGOS74+HVgFrAZOVRQlqCjKdCCoqmqjx7bCMEM/ aaZHPP4JxOmTP7xG6GS4ffxM+Gbh5Y37AFi3pcmw3ez2cXu9SeOqc9IvO/xY/lcBdyiKUgpsAh5Q VTWqKMoq4EUSN5TLfLQVhhl6v6mQibj884fXlAx68W9p76WzO6Lb5+4c2a4YDiVs6YjJKPI6p7Bi 0QTmTK7lnBPn097qrl6wH1yJv6qqO4Ajk683k4jWMbe5HrjetM11W2H4YS/+A7P9O7r7aevsY/K4 qgGdZ6iRCd/8MRDL/6pbVzueKx6Pu4pYM3+9afE3nS/j/NbnKw0H6YvEiMXinLRsGuWlYfLpiJNF XoJv8mX5f+PW1Vx758vD/slCVvjmD8/i7/BdmPe5/96M7cKhxA0jEnO2/O2MgqqKxMTuYP3uRfwF 39j9SAcaltyXPK/58XnYIdqfN7y6fZzam28krt1AplOGkpZ/1Gz5Y35vTVV5whHTP8CMpW4R8Rd8 M9wt83wjn07+GOiEr2FfxiIsf3ftcDINQyQaMyyAzHQrWR9/0KyxAEybMDght5LPX/CNnWUuC3wT DHeff1dPP739Mepqyoa6Kxl4nvDNg9vH3Erv89f7/TPSO9jY/uccO4tZk2s5dM5YV9cfKCL+gm/E p+3McP94vvKzVQAFWaDHLrWIHY6Wv0u3T7bvUxP/7XvbeHnjft1x7tKBloRDHJHjIu1OiNtH8I3d P4O5cpH/8w9v9Rzu/S9kcur2MadcdjtZk+HzT//u737s7fT5B5jYLV+I+Au+ybflP9wrYRXI//iI xPOErxe3j88fXknIWk7d5PYpCQ++FIv4C76x/SfJkc+/UCyk9dua+MmfXk9VgXJLofR/JJJLy998 I/FrdIRs8u5npnQ2vq+tLOHWK4/1d9EBIOIv+Cbfln+hSOdN97/Jpp0tvLLpfU/HifbnDydL3gqn KQJz4ILbm7bZPRSysfyzRROVhEOp+YLBRMRf8I29zz+/5x8qvHZnpEyID+UTzOZ3D9DR3Z+x3avl 7+QmiphClt2e+/XNjVz8o6fZ35xIEhcOWf/ys/0Ohio6TsRf8I3tjzpHv2ZxmxQGQ/U17G3q5MZ7 XuP7v3slY59Xn7/TbymS4faxa2vc3tUbIR6HZ9/YY7FXd1QWt9LsybW2fcsnIv6Cb8w/ao2Ravl7 Zbj3X8PrE0x/JMbv/6mya//AMtM0JVOGNxzITGmcU8s/w+3j6dRUJlfm2v0/ZGw2XeCwueO8XTBH iPgLvrGd7x1hE75+GTluH2/tX9ywj2de380Nv187wAvb7xpIVk8zj76009jW44C1nDx2x2WL9ilz Wdwl14j4C77J+4TvMNfO4d7/NN4G0tOXyE0z0NxMTle1E3M7g8Hpt9ra0efq3HZoIZ52h2XG+RsN pNISEX9hmGH3mJuz8w9z9XS9WGiI2dvUyeZdLYZterEcqvUWTl+/leXfH4lx/rWPcv+/t7hq7+e6 1n1J3OTs/h8yLf+4oSh7mYi/MNzItygMD+m0Z7jcu66542Wu+vlzhm1RQ24ajwPRtf/NIxvZvrfN Z8/cp2SARFnRrp4Ij7+8y1V723ObxtvbF+W1zQ2236d2Y7F3+2S+N1j+Q7DACyS3jzAA7H7sbgph uGHYW/7DuP/63DkDGcbq9ftYvX4f/3HyfA6bO46xo8pdHbdm0346LUI8U/2z6JRTrLwXF6W56a0P vcX67c227bUkbnaXyIzzh0RYRGL7UFn+Iv6Cb+zETaJ9Egzn/kcGYvlbcM+Tm3n0pZ3872UfzNp2 x742bvvbBsc2Vpa8k5vNi9vHfG4n4YdEoXVwP+ELcYIF4PMX8Rd8k/f0Drk5zZAx3Cx/ffnCqKHA eW7O39Le66qdeQLWir5+YwH2YCBg+Xvs6uln5752T/NTXgMZ/vb8dhZMH237/2DeHItj+B8pLRG3 jzDMyLvPf5iJp5nh1v1oLJ4uRTgAy38whq1Z25DsXyBgad3f/MA6Nr/X6ilHvp/v7cUN+zOOWzSz jq272zJvPHFj5tvSsEz4CsMMO0snV26f4Z/VM7euk3yjn+TNlc/fDXubOg2lC91crqsnPR+gdVUv /m2dfaxVG9j8XisAu97vcN2fmI/vramth7WbGwzbZk2qJRQMZIZ6EjdM+Nqlhcg3YvkLvsl3KGOh CabX/uij3E1P+gVJQvATVuiALH8PzXc3dvLtO19m4Yw6/vOThydPkP24Lp3lr4m13hi54fev0tia XhnsJSOr/jxu5wo2WMwLRKMJkc+o4WuK9slVgIRXxPIXfGOfKVGc/pB7y39fcxc3P7CO5jZjuoNI NMamHc22i6qaWnu46f432NPY6Xj+SDROLB4nEo0ZzpXPr2F3Q8Ii37Qzvc7AjVFhEP+kQOuFWi/8 AD297ouid/Wkz62fW3CLFsMficYI6OYiItEY6q4WYrF4zgoeDQQRf8E39qGe+T3/UOHZDaVrn4uh /OYfG3ljSyP3PW1cxPTICzv4yX1v8MgLOyyPe/C5razf1swdD290PH80Fue636zhCz95xiCk+fwa rKxeN9fTC3TcwvLPOKeHPjXpbq56d5RbtAncSCxOMBhIjeehVdv40b2vs7ux03NK6nwgbh/BN/nw +Rv9rQM4UR7wXEAkx+Lfn7RCzSmI3951AEikP7ZCu7Z+ktSKaDTG7uTTwYAWeQ2QbJeLxmKpFBKQ /py95vvROH3FdB7TLQxrNoi/d8u/JBykpy+atPzTn99rmxtTbXr7ovznJw+3LQAzGPgSf0VRSoDf ATOBKHAJEAHuJnGTXQ9cpqpqTFGU64Azk/uvUFV1jaIoc63aDmgkwqCTD03wW0JPY9ueNiaNraSi LPd2jde+FcqErzah2J8l145ePCNRYyilF7zMBZk/lzWb9tPW6RzquVY1Tqxa+fzdctjccZz1gZkG 8ddb/n0O4n/+ifO476l3MrbPnzqatZsbmFBXwYZAINW/vn7jU8TCGXWe+5tL/Lp9zgDCqqp+APge 8APgJuBaVVWPIWH8na0oyhJgJbACOB+4NXl8Rlv/QxCGCvt8/v7PqRcDr6LzXkMHN/z+VX50z2v+ O+CA9xzyutc57osXtJWv5jmBvv6owa0RsZnoHKz71tY9rdz2tw3c+69MQdXz1tYmw/vO7n5i8bgv V8pXP3ZIhqGgv/k4Wf7LF4633P65MxZw4ekLOOWIaQQD6c/PLP5DjV/zaDMQVhQlCNQC/cCRwLPJ /Y8BpwAq8ISqqnFgl6IoYUVR6oGlFm0f8tkXYYjIh09eP4ns9fQNLd2At7A+LwzEAh5ay18Tf2Mf vvHLFwxuB/3CLr3oxeJx3mvoYOKYyryWG2xpc7cITHuCWTijjk07W7jmjpc5ePZYTlo2NSf90N8E ncTf7rOoLC/h2EMnA4k5De277x0h4t9BwuXzNjAOOAs4NinyAO3AKBI3Bv1tWtsesGjrSF1dJeEB LIaor6/xfWwhUUjjKC8rsdxeUhJy1U+rNvr47dGjKzyNt3Z/WvTz8TlVVJRantfuWjX70v0ZO7aa ynLrz8st2u+/rCxsuGZJMj1ASUnYsi+1NYl8OtFYPLW/oaU7ozxiTW1F6nWprq/v7Gnnroc3cOqR M/jKxw/L2s/qqjLbfeb+1e5OJ32rrrbP+6M/LhBMiG6N7jpvbWviI8fPzdq3bP0BCAYDqe17WjIL yWhMGG/9vevPGQ4H6Y/EqK+vybj5+v0fyRV+xf9K4J+qqv6XoijTgKeBUt3+GuAA0JZ8bd4es9jm SEtLl8+uJj7AhoaBVRUqBAptHJ1d1r7ZSH8saz/txtKpE//mli4aKt0LZltrd+p1Pj6n9vaejPM6 fSetrenfbENDR6rik180F01vb8Rwzf5kDHt/f8SyL/19/anjtf1mvzlAU1M6FLSxOf361Y37APj3 2nf5xHFzsvazo9Pegjf3r60t/Z0daLX/H9cf16H97uJGq9yPRmjnPfOoGfzjxURRlx7d5/t+k/1T 5IEW69BZfV/jsUTorNX34vd/xCt2NxC/z3AtQGvydTNQAryuKMpxyW2nA6uA1cCpiqIEFUWZDgRV VW20aSsMM/Lh84/FrF0lLe29bHmv1eqQnFzXDZ7dPgaff17jJR13a+4JfX+s1gToV/X26qJpPHus fA7V7eeruWLMCdG8TvgeNHtM6vW5K+dw65XHUlkWNk58O7h9QsHs8plw+3jq1qDh1xT5P+AuRVFW kbD4/xt4FbhDUZRSYBPwgKqq0WSbF0ncaC5LHn+Vue0AxiAMEfmo4WsXHnnVrasBuOWKY+0t6Bz9 k/VHYjS19TBxTKVhu+cJX/3rfApAlpOXWPimoxYr9PS+br1/WrsJ52NhUtRmktmJ/kiMcCiY4XP3 8v3cdtXKjOMrysKEQgFDmGufQ5x/0EWYZiAw8Ai2fOFL/FVV7QDOs9i10qLt9cD1pm2brdoKw4t8 1PC1s/w1evujBvH/66ptPPvmHn78xQ/4v6iJX/xlHeu3NfO9i5YzdXx1um+eLf/cTvj6/lgtDoxG M/ujt3KtxN9tB7yMVN+PbCLZH4ny3btfZU9jJ5VlYapMRoDd8RVl4Yw1DnZplEPBgOHG6BTq6YbE Iq/CFH9Z4Sv4xulHvbep05fFYxTM7O3/vnoHrR19NOr8/QNl/bZEnpad+9sN5/W+yCvdvqcvamlt NxzozhrXnhWbu20kGmOt+r7BhaNhZSXrBV//Op+Gq5dykdv2tKVSVJSEg1SZJtDvfyazfCNAbVWp 5XYrQsGg4bPpz5Le4bTl0x33B0i4fQrxBiArfAXf2FnC2/e2c80dL3PKEdM4/8R5ns4ZzWL52xEM BHLu8//NPzYZ3tvnMrJG3/1v3vYi40dXcOMXjzK0+eZtLwJw17dOMGx/cf0+KsrDHDZ3nLeL6njk hR38ffUOy33ZxL/P0u3jDi/fm6FuQBb11/e5JBzMcP/Z1QGoqShhv8v+hEIBevt0Ia82C+MuPnMh AOedMJfH12SWjdQIBkjmSyo88RfLX/DMnsZOrv7VC6g26QQ0Vr+11/O5DekdPBwXGIRl8p6fZEzN 3z9gfDrRPwlcdOPTvKtbn3DHIxu5+YF1TqfT7bDeY5fuAYyiq6FPYmZIn5Act1t3npfPST/PkO24 mEn8zZa/HRPGVLBg+mjOOWYW4PwkkHD7pK9zwKYAzQcPnpR67VSMJZDM7eM0dzBUiOUveOahVdsy siZa4WcRmNHn7/64wUiR4nU82dp3mzJN/vu19/jMaQuynlcvwm2dfamc9Wac/NVWlr8+7bGhUlb6 yln7Bt7cRAaff5bPS7+/JBSkusKdfFWVl3DxmYsAWLF4IjUV9jeNUDBIR3c/b21r4uDZY9m2t81w Q6gfXc4lZy02HDO6uoz3W6zdjsFkbh8/2UHzjVj+gmecwt/0eHWTgDnaJ1MMbF0Kg/BUPZD0Dlb0 mBOtaSUUs3xw+vP+8QnVtp1TOoGIpdvHZsJ3ADmNnIjF4zz47FbDeycMbp8S95Z/eWl6cnf86ArH vE/ajfX/7n+T/kiMXfvbmTq+OpUfaakynrlTjWtSv37eocyfar1ONZDM7VNoqR1AxF/wgV3eeDN+ Jrn0QmOlOXYCkatUE+812C/qGUi0jxVdJvHXhMeLlehUF9fpPFZuH/3EsHHC15vP3+3ntG5Lk0HQ HVMyx+OGp4SSUJAqBwtej5ckf/o+rFXfJxKNM3tyLU6jH19XyZfOOdhyXzCguX2Mn/cvrjjGdZ/y hYi/4Jl+l5NXXsVyd0MHr72jX3lqZflbH5sL7W/r6uM7v1lju99zVs8s+83hh5q82OWTsZIfpy71 OviZPUX7JLvj3ufvrp15/K9arDrWiMeNRkdJOMToandRPHrLPxv63+ztyfoHsyfVMrY2kUqi0uZG YpeaOZCc8DVb/m6fWvKJ+PwFz7jNce7V7fNtk/B6tfwHugipo6vfcX+uLf9uUwimVtjEbnLQ6mxO 17Cy/OPxOAGbYud6gcookO5TGJXTAAAgAElEQVSBbJ9TPB5n9Vv7ONBhfGrZuc8+lUEsHjck7CsJ B12XP/Ri+es/l/lTR1FdWcrh88Yxf9ponnjlXU5dPs3yOLs6vNoK30JL6gYi/oIP8un2yXa83Slj 8YGnUMimJd7z+Tvvz7D8fbh9nK5h5WeOxuKETatYNfQRPs26DJteg5yyzQm9vbOFux7d5NjGzPst 3Tyuy7lfEk44LT510rysKaA9Wf7JwR61eAKXfCg9sVtZXsJ/nDzf9ji7VA/aA0Ehir+4fQTPuBb/ gV7IyvK3USKvk5JWZLMkrQTTCaubV+OBdDZNs/hrtV+37k5H71idQ99NpxuslXWvjcFqUllfR1dP Ks7fhaW9r7mLf619z3b/tj1ttHc7P2FZsWNfm+G9Jv4nLbO2xPX0R9x/b9pYgx6XqYccLH/AcqHd UCPiL3jGT2k7P1jpuZ3YuXE1/H319gwR0ZMtmmft5gZPq3GtTnf1bS/y1Z8n8hiawwMDgcQN4beP ve26T56t8qToWy06srNO3bi74vE4W95r5dW333dsd8PvX3WVEM3MnY8YnxQ08XdC88NPHleZpWUa 7fN2k7dHj93NQjtNTwGKv7h9BM9kKweYK6yE3k7s4nEcHzW2723nr6u289dV2zNW06bO7UJJ32/p 9pQuwIm3thkrUj21djf/XPOuYZuWxEzPQLKFOln+dri5wWza2cJP73vD1fns/ONesEpWZ+bSDy9m 5qQaxo2qyNpWQxurV/G3Q1t8+Pt/2ofkDhVi+QuecRvnP1C8THDG4nFHkcpWvBzcCaKddfzU2vd4 2+Q2cbKY4/E4+5uNlr91muVsTzSOu23P52XNghYW6uQJ0XLuuCEX1cDcWP7lpSFPwg9pAyBX4q9/ IigrDVFVHmbCGPdPIvlELH/Bls6efsuQtKG1/O3F36v/O6ONg0//kDljWbe1yfLxvbc/yj1PbgaM OXqchLk/EnPlTsnmYvM6qa7dYNzMX5x99Cz+9vz21PdtlsO+/ij90RhV5SW2WTKtGEjWVw0vbh8v pMTfRye///kVlJlSPejP8qNLj6K6oiTvdSfcIpa/YMlLG/Zx+c9W8dybezL2RTxMoA0EK11zivN3 ElM3Vr3TDeKQOWMB6O3PfIKwexpwEma3PmCrxVh6XfLq8/di+WsCa37Sa2nvZXdjJ/99x0t8/ZbV xONxSl2IsYafBXnXXXgEJy1N1+i1Ev8LT1/AD7/8wdR7P9a7VgTez41jyriqjCcNrQ9ja8uorSol GAz4urHkA7H8BUu0pGyr3tyTKkat4cXabGrtYewo+9qsTmSz/PX7Y7G4o6Xtxp9vJbQa2hNQr0UY pt3Sfaf+9LgM/bNKw2C8hleff8zw1wlNo1KTw8kNWmGdVB+jmfMSTvT0Wo99/OiKjOR3nz9rIYfO HUdVeQkzJtakIolKdfW8j1o8kRc37GPRjDoWzklnQfXzhBofgOVvhRbt43ZNwmAilr9giePEl4ff 8X/+6gXffbD0+ev+n83pnwfi9olEY45typJuDX3InuZCsbohgPNkbEZeH7t+5dzt497y1xbNRWzc Php9EefPTuPweQlh3qFbzHX+CXO59jPL+OLZizPSXUNC5K1cj3rL//NnLeSWK45h3Gij1e0nmZrf aB87NM0vQO0X8ResiTpZQIPj9clq+RszQjpb2k6W/73/2swXfvIMzQ55csqSC4U0F8/Dq7fzhZ88 w56GDn+Wfxa3z6xJtUA6NNMOezeY9Q4vbh/tq8/Wtq8/5mrtx0GzEjVz1+uinKorS5g9uZblCydY HmPnftFHDAUCASp1N4hELh4YW+v9iVP7ffmIRrUkWMCWv7h9BEvS/wQD/9FqKQW8H2d9Lg29MMbj 8Sw+f/t9/3o14UrYsts6NfKY2rIMy/+hVdsBWPv2+4yySS3sZJVnW/GprUrVx+NrpzOEenpc96DN fbhz+5i+M5uvsD8ac7WCddGsMZSWBA1pGrLluLGr0+C0VuCqTxzG7sZOZkysydonM9rHlmu/fCGK v1j+giWOIW8ef8deUyGn+pAlzt+cC96v+GvYCen3LlqeYflrBALWQr5rfzsPPrvN9lrZQk9T4m/h 9jFkwrQZll00jye3j4X2W1n4O/e188cnNjueKxwKMH50BYtnjjFszyb+diLsNCFbURZm7hTrFMvZ OOWIxIrhg2aN9XW8Ge1TLjzpF8tfsEETf8t/Mo9aHovFwX0koON1DG4fU+GXgU742h1fWV6SSr9s dtcEME74rlUbqB9dzk/+9LrjtTqypDjQkpFFYjE27mhOJjJL7LOb9AZo7ezjb89v5+RlU7FCs/yz TSRDpvDG45lpqAHWbMxeJPG0FTMIBAIZUTpOVbASfbDeni9L+hMnzOX0I2cwKkcL+bQfVQEa/iL+ gjVW8c7RWMxX6mQrKzMej7NuaxPzpo6yzbqYbZFXxFT/daBx/k7Hl5cm+mjl39ffEG596K2s14F0 BtHScNCy4lba8o9z84NvAjBtfDWQcNls3dPKrIm1Gd/HfU+9w8sb99suukqt8HUR528WrFg8TleP +1BXPSVJH73ZmLBLkZzqg43658onn3G9QCB3wk/+3Ei5QMRfsMTK5/+NX75AW0dfwtz1cBOwEt4X 1u3lZ39OiNp3LlzGzIm1tn0wbNPp5FO6BGLZLH934m+/T/P5Z4RoBgK+MjZ2JkW0oixMXyQzX5B2 Q7QKV3x71wF+8Pu1nH/ivIwbVntX4lx2tWc1t0+2CdpgIJBhXUej/sU/nLT49b76mRNrMiJ0rPph RSH60K2IFbDlLz5/wZJ0tE96W2tHX0Lz/bh9TOzYm06wduM9r1kfmGXC94lX0nlwsvn83bh9nI4P hxKLc6yEzuppINv/+r9fT9y47NINVyerVOnnBsyrfTfuaLb3+dtECWnb7WoGaJZ5MJgpWNF43LJy mCvxT4q+3pg4xSY3vlV/zBSiJe1EId6sRPwFS3KZ4MrS7aNTdrt47Gyhngumjza0dbb809d4451G bn5gXYb165RKIRAIUFYaykjNazfhmw3NAi/LIv76gietnUbhXbe1yXbuwCprJ6S/C/1nrl+gpT3h BAOZK1FjsTh7mzLdSW7i6VOWvy5E0012T3MfJo1N5MWpH+1v4eBgo/0mC1D7/bt9FEX5L+DDQCnw S+BZ4G4S9tp64DJVVWOKolwHnAlEgCtUVV2jKMpcq7YDGIeQY2JJsfSzzN2MpRXq4unByqp94Jmt HD6vPmN/LG68Mdz8wDqWLxrPkYsmJvqgE8ObH1wHJIqKHDQ7HdWhuVjCoSArFo5n9fp9hmuXlQQz xZ+Bpbgut8mJU1OZEP/WjrRLqNtmZawVdm4dbbve8i8rCaa2l5WG6OqNEAhm1kWLRGPssRB/V5a/ 5vPXqaAb631MsnyixjUXLGVvUxeTxlZlPbYQSNc/Ljz192X5K4pyHPAB4IPASmAacBNwraqqx5D4 nzhbUZQlyf0rgPOBW5OnyGg7gDEIeUDTa6t/UK9zvtaWf3Y0y1//BLC3qStlDesFzmz5v7Glkdv/ vpH9zV2Ate/cbB33Jy3Yy889mJWHTcloX1YathS6gYi/XUI0LQSy1WP9AO3b6rTwzUPiu4jH46mx mvuguaGsfP7xuHWpRasIIDNaCmaj5W8viBefuZDrP3cEY0wLtSrLS5jjM4xzKBiJlv+pwFvAQ0At 8J/AJSSsf4DHgFMAFXhCVdU4sEtRlLCiKPXAUou2DzldsK6uknDYT7xggvp67ws+CpFBG0fyx1pZ WTrga44aVZn1HFb7q6rLqK+vyfDXjxlTxdhRFYYbSFV1Of0Wd5SKqsQ5SpLROqFgun5tdU2Z8brJ /9CxdVXU6oqDa22qKkpo6+zNOCZcYvFv5HJS3O43PTk5Ad7pMg0EQCgUpDRLycKKilJG11URB8aP qSQej3PF+YdzTTINR3VlKTR1EQ4FqLVYIbu3qYvxYyo5dcUMqsrD3PbQW4anoa9/agmBQID/vWet 4bgxY6qor6+hpjp9zro6+9/F5Im1LE0+tXmlkP7XS5I31tLSkK9+5XMsfsV/HDADOAuYBfwdCCZF HqAdGEXixqCvWKFtD1i0daSlpctnVxMfYEODfXHo4cJgjkNbXNTXF3F9zcnjqmjt6M2wOhubOig3 PWOa/flW12hv76WhoT3DhdHc3EmsL0K37jptrd20W1jJba3dNJSFaE8+LQR14t/U3GW4bmfSf97e 3k11aaLDZSWhVJtwIOF6+cFvXjL2s6Mn47puH4+6uq0t++6kf7/RVO3Lib6+iG1cvEbLgW727Eus ZJ4ytpLLzz3EsH/mhBreefcAyvQ6OqzGBYypLuX4QydlFKMBmFBbRr1FBE9XR+K77OlJz1G0t3fb /rY62nt8/dYL7X+9tzcx3kgk5rlfuRqL3Q3Er/g3AW+rqtoHqIqi9JBw/WjUAAeAtuRr8/aYxTah gPCT4Grp/HpeWL8vQ/ytYsrdrBewcvvoj9W7W+yifbRxaDeQUDCAJj/dfcZ+9if94KFgkNqqUr71 H0sMQqZZ1S/pFjXFojH6rcaXdXTJa9pMzGqhnt7cPtmvGonGUhO0Vi6nU5dPY/600SyeVcfr7zSm todDgZSbTOuTVYy+XXbPcDjxOwrrfk8hB19IrhKrDTWpFb4FOBy/0T7PA6cpihJQFGUyUAU8lZwL ADgdWAWsBk5VFCWoKMp0Ek8HjcDrFm2FAsJPIetAwPgjnzMl4bqwEiU32Sj/39NbEjl7TC517VjD Ii+brJ6ar19rqx+POcWCtthK80vPnzaaupr0hKPV5Gw0Fh9QZTO7idmyVG6f3JZbjERjqcleq5z4 VRUlLFXqKS8NG77L6RPSNpwyLRFlNWtyLRPqjFa+9tkdfcgkw2et+fz1ou4k8MMtlNOOQl7k5Uv8 VVV9BHgdWAM8DFwGXAV8V1GUF0lEAD2gqupaEsL+IvBgsh1WbQcyCCH3OGb1tCEQCBgEQ/uHd7Oa 1O5m0NMXzbh5aHMAess/Ucwl83hNmK1yFZmjZ7QYdruJSKuwzGgs7jlvvD5E1W6yOJgMLfVC3IX6 9+ss/zKL+QZ9URb9d6+feD3vhLmp/R9dOcdwvBbPf9EZC7nj6uPS2y0mfJ3Ev/Ck0h/xVLRP4eE7 1FNV1astNq+0aHc9cL1p22artkLhEDO5XOzEWT+BGsAY0hZK/sP3RqJ090YMaRzMp3N6EDBfOxqP 8/fV2w1RJnaWf6psoYUwdvdGLI/RYuzNlFlY/pFozHO0T4lOdEdXl7Kv2Xo+6+BZY3hVbXB9Xldu n0g8bfnr8up8+vQF7NrTaojw0b+elKw7O6qqNJXqAuCwueM4bcV0Hn95F2AUd/3xKfHXxfY7in8h qqUP0tE+hTcgSe8gWKJZylZphPWEw0GiyWgPs9tHs/z/9743APj1N1amhM98OjvhSqRqNm57c0sT f02mVE61s6nkpfmpY6l/wvS+7t5Ixk3h+MOnZIQXalhZ4rFY3JNrBsyFSBbx9Gu7efSlnaltWtGT ZQvGZxV/ffWr9xo6ea/BuZC63vLXW/mfOEnJmFzUy9UZR82gtbOX01bMyBjLecfPZW9jJ29ubUp9 52ZCFrl9nEI9C1Es/ZCy/AtwOLLCV7BE87NromyXG8fwz25Sf33BDUiItkbmJK71+WNxUHcZ4wF6 +zLDH2Nx6xQOmjBr+/Rt+iKZRUiOWmwfXmht+cezWv5TxhkXJGk+c0i4Uz52nNF1okXguEkw9p0L j8jaRk8kEktNbGcruq4X4LKSEBeevpCJyScAM1/92CHccfVxtta8JvR6wXdyKRaij9wP2i+jEG9m Iv6CJWa3j11uHL3ABwPGXEDmyA99pkmz1tsVrIrF45mZMi3+kVa9uYeHX9iRsb3fJP56oY5EYhkL vbSVtVZYTfje96Rqm0FT48rzDk29njOllqMOche/XutC/CvKsgi46f2W3a20dSbinSqyzCl40atA IOCYrsFS/IvC7SOWvzBMyWb5OxXuNu9zmhi1dftYXFdf/1YTE311KD13PLyRx1/elTq/Pn1yJBaj uc0Yy+40HrsFVNkyho6pLU/lrZ83ZTRlFjnslyr1GdvcWP7ZLMp0AfHE+33NXdz16CYgEa3jxEBW LpsJphLGuXP7FOQMqQ9SPv+h7YYlIv4+aW7r4dW33x/qbuQdTdfsxFkvluZkYGa3T1Nr4jPr7Yvy zGvvGvbZnd9KV/UTvdlcFwD3/3tLKtWxnvXbmrn+t68YtoUtwh817PLwmLFyD2m5aEZXl1reYC46 Y2HGNrs6BxpfPHux4/4p9VUcPDtROUs/SQuJGP3p451Xj3b2OBec8YL2VOA22mekuH3Sln/hjUcm fH1y3V1r6OyJcP3njjDEQI80NMvbzro1/KYDGEwcs8i9tHE/L23cz7hR5YaEZWDvVrKaC9DnlHez XgBgT5O7FeIlIft/UitRt+KQOWN5JWkYaGGdXz33EFa/tZfjl0xNukgCqULjkHmjhIRgnLxsGlXl Yf76vHGC+/glU1JFz7/woUWs3dzA2uTk8OjqUv73sg8CcPvDG4GEe0i/rmHFoglZF1J1Zqk25oaP HjubtWpD6ilG7xpyWuRVWT4ypCkV51+Ai9ZGxic8BGirWNs8rMAcjqQsfxtx3qsT1YA5d6HN772x NTNtgJ3nxCqLZJfOIh1bW87uLD53ICMbpx1Obh+3cffzp42mvDTEzIk1HHd4IkFcXU0ZZ31gZqrN bd9YabBuQzbX/eRJ8wDYtLMF9d0DnLtyNpCuNQtw5OKJHLl4Irc/vIGXNuwnFEwnZUtl69TduBbO qOMjx8zKOg5tzkG/LsErZ31gpmHc2Xz+N156JDv2tTOhznpiebjhp/LdYCHiX0T09UdduUn0xFM+ f2v/b11NWWpxVDBozATppXC73c3lpv/3ZsY2ze1z5lEzmDyuijuS1m0ucHL7uLX8Q8EAn7Nw4xjb GK+Tzc3x1Y8dwvNv7eW4wyYb1gkYiGeee/bkWtaqDRw8e2zqRn3e8XOpqcw+n/DBgycRCARYMj9z PsIv2cR/fF0l40eI8EO6bkUhurFE/EcI+5u7KCsNMbq6zHL/8+v2ctejm/jaxw7h0LnjXJ/3tc0N RGOxDHE+dfk0ptYnasr+5h+JCcSKspDB2HdTPUvDrfsGoCu5MvcDB02k2aZcYTbsauc6/ZO6tfxz UQPBTEVZmJOXOVe+0oqy6/3qJy+bxpRx1SycUZeqfFbh0qUSDgU59tDJPntsjdton5FCIad0lgnf EcJ/3f4SX79lte3+x9ckVmA+/9ZeT+fti8T45m0v0muq1hQOBfngwZMMZQirykuMlr+LtA4ablan anQn3T7lpWHfFpXXJyBwb/n7FbULTlW47JyDfB0LicLu5uuHQ0EOmTPWsLAsW4hnPtGLv92CsJGE F6NmsBHLv0gYSI6R5rZe/m6acNREV+8jryoPG4THzlVkhYeHhJTlX1YSyprC2I7SkiC4z5YMOM8H VJSFUxOqXp549Bx/eGYBGS9obrZsTx7Zoojyif73MZT9GCy0X0Ihun1G/q03C9v2tPFE0ioerrhJ LzDQHCO73jcu/dcERu9mqiovMbgcvPj8zfH8JyyxF0JtvKUlQd/j8dI3DS3nz6KZdfzsq0cbz6f7 DqJDZO25FX+nm1i+sZvYHqmcuHQqkHBRFhoj/9Zrw4sb9vH6O42pWP0l8+sZZ1GEIhvN7b30R2KW 6XEHCzeLcbzkFbd6VB1bW07DgXSUTiApMHW6GquV5WFDvna7VABWmN0+2SylAAmR8+NiCYChjKFb SsJBfnXVSkrCQXpMGUH1K4X9Wv4DZXxdBRu2w5Rx1Zb7x9aWpybnh4oei9QcI5njDpvCioUTCvIp p/B6lGd6+6Lc8pd1bNjRYthuNfnnhrsfe5tn39jDtz+7LBfd84WbvmshqW4sZSv/uznCRMsPU6PL gJmw/NM3wWMOmcyzb+7JiOm3wpwiQS/qAUCZPpq3dTl+SsLBjBTSbgkGA66Kjluh+f311732M8u4 4fevpt77earIBeceO4dxo8pZaTNJe+MXj7RNozFY1CajjOZkWV08kihE4YcidPu8uHFfhvCDu8pL sXicDouFL9v3tuWgZ95Zqzbw+R/9m537jNdv7+rj8Zd3pQTuiVfeTfmj3WilleVqFkvNgtTfTEpL ggaXQzgUYPmCCa7Goq8alThv+vXtVx/H0YdMMuzXnrT8+FL1aaj9Ul4a4thDJ/P1Ty0xLNaCobP8 K8vDnL5iBpXl1vmJQsHgkD6hQqIozLWfWcZV5x82pP0QilD8u3tsHjuz+Gnj8Tjf/e0rXHXralfL 3l9Yv5erf/WCYUFSNh56bhtrVfcpI+5+bBOxeDwVwqfxm39s4v5/b+GxZJrgVW/uSe3TtLKlvZfW DmsXgJUwmhdJ6d0HnzhhLqetmJ5auZq+lnthNt9UDQuggsEMizU8EPF3WMXrlkAgwIWnL+D4pYnw y6s+kRYzL5FLxcjsybUZ6SaEwaf4xN/G55jt/7WhtYd33++gPxJz5ca485FNNLb28ObWzCLXVnR0 9/PwCzu49aH1rtrrMbt93k0mOWtuSwq0xbLbq25dzZU2oaFuLP/JujTFpy6fznnHJ6o76ScTzfn9 nTDPW5h9+eZ5CC1M0JfbJw+RF4tnjWH6hISvvc5mrYUgFBLFJ/491r5evbUbi8W591+b2fJeq+64 9E3DaoL17Z0tHLCxpLPx1Nr3+OrP/ZcxNk9emksW6pMuuJkftbT8TeL/cVMOeg27Sk5mRlUbV5hG TRFL5mOrTamWB+r2yQdXnncYnz1NSeXcEYRCpvjE38byX61b/LRpZwv/evU9fvjHtenjdEmxtDJ4 en78p9e55o6XffXpnic3G957XRhi7o855C8j+VoWLC1/k9vHLsWAsViH0zWM7/uj5mgf4/5D545j 2vh0FIsm/uPrKlg8s47DPKxazle44aiqUlYeNqUoVq4Kw5/iE/9ea/H/19r3UrndrSz7Hp342UXX 2J3bK10ez2Pub4blr9OigIP6r9vayJtbGrNa/k6Wsz6vjJPlb/aLmy1/s0UfDAQMycw08S8tCXHV +Ydz2orpqX2a+8WOYCCReVMQipmiE/8eh+yOmsBZLZrSPzH0eQgTdGMDmsV01ZveUjDoxT8Wi6cW GbV29PLHJ1RDCmQnL8nP/ryOnz+wztLy198QnAu46N0+9tcyP92Yi7EELG4wQYfUAHp307c/u4yf XW5chGU4dyDAVz56cEZmS7vC7YIwEim6KXezhWmFVTinvnpULiscQcKKjepuSqvX701Zsr19UUNC sV3726kqL2HsqHSRcX1/vnzTs6knE6vi34FAdrdSthWqVrnnNVxb/lnCIa0eLvRPA2a3k/6JJhQM OpZADAYDhENB6kelF/Vd85ml1PtY5CcIw5Wis/ydNEezbq3Ev1vv9vGxOtQJvSUdCgZobuslHo/z 8OrtfOmmZ9mhi+O//rev8J+/esFwvN4NlW3BVyBgjHH/mylnD2QXZiefeSjk1udvf42JYyotJ3IN lr8pXl1778Z6125K+vPNmTwqtQBJEIqBIhR/e9HR3D168de2ZZvwHQh6ITt49li6eyN09kR4aFVC mN/ckggXNT9xaENxk9tHI4Ax26aV+GdbAOVU7cptnH8sDhecMp+FM+oM20dVlfKN8w+zPNZo+Rt/ utPGV3P5Rw/m+xcvd+x74jyZfRWEYqPoxN9J2CKRxD59+TrttT6XixfL303cjt5/Pb4u4XrYq6tg pYlUbw7yogQCASJZ1vgPxPI3x/nbsWjWGI5fMpXPn7XIsP3kI6Yxprbc2u2ju6xVOuDD59czykWM fbqouYi/ULwMyOevKMp4YC1wMhAB7iahd+uBy1RVjSmKch1wZnL/FaqqrlEUZa5V24H0xS1OVnJ/ JEp/JGqo96pNAusnfPs9WP5uctprk5v6gtyb303nsdFcKebJal/aFcjep2wrVE89wr6oSDbLv6Is xCdPnM8JK2bQ192XERapWfeWE74Olr8V3/zU4bz+TiMbdjSzuyF9Mw2I5S8I/i1/RVFKgF+Tzop+ E3CtqqrHkPAunK0oyhJgJbACOB+41a6t3354JeLgE++Pxvn5A+sMuXo0H7qbUE8rNu5sztqmrz/K uFHlLF84gQVJN8jmd9MLzLRJ1FxkRIxGY2zckdmnJl1dXaebw/cvXs7xS6ba7jcs8rLY/7nTF3L0 IZNSFrpZf7X32Xz+pSXZf7rK9DrOP3FeRnir9l7i8YViZiCW/0+B24D/Sr5fCjybfP0YcAqgAk+o qhoHdimKElYUpd6m7UNOF6urqyRsV7vUBfX1NQA4Gb2VVWVsNCV9q6oup76+xhABE3Ko6FRfX2OI DHppw37OPXE+C2aMsT2mPxKjdlTiOvUkXCdvbUunhRhVm9i35b3008DzG/anish74bk39/KcKZR0 zJgqLrrx6dT76ppy82Ep5s4a5zipOqo2HTEzfnwtFRWJSdSKshD3//AsQ9v6+hoqTJPrNcmx1taW G9oB1DWnq69MGFed2p6NEtONorQkRH19DWN053N7LisGcmwhIeMoPPI5Fl/iryjKhUCDqqr/VBRF E/9AUuQB2oFRQC2gT26jbbdq60hLS1e2JrbU19fQ0JAoRtLnYD03NXdmbHu/oZ26ijBtutQNbW09 Ge003t7SkBGNo25rZGxlCZ09/Wzd3cohc4yrUXv6IoSCgVQfS8JBg3uqrb2HhoZ2wyrbux7eYNsH r+ze22p439BojLnXpyzubOumu8N+/D3d6bxHDQ3tdCffx+Kkxgfp78S8MK6rs4+GhnY6O3sN5wFo b0uLdTAeN5zPiajpSS0ajdHQ0G44n9tzmdH/toYzMo7CI1djsbuB+HX7XAScrCjKM8BhwO+B8br9 NcABoC352rw9ZrFtULWnfeUAAA5NSURBVDCnEdBjNR/QF4nRcKCb7XvTX4K5nq0es/BD2s3wsz+/ yc/+vI4NO5r5xYPreGrte0RjMSLROKU6H7Y5Dj+Scj3lpxCGOYrI7NbSpyzO5iox+9GXLUj8LM7+ 4Cyr5hnttfNnc/vUVLpfkGWee9DeittHKGZ8Wf6qqh6rvU7eAL4I/ERRlONUVX0GOB34N7AF+LGi KD8FpgJBVVUbFUV53aLtoOC0QKvfSvz7o1x31xrDNs9pHJIas3V3Yi7hra1NvP5OI6+/08iTrybS MeujZMzzrf0W8w655OnX3jO8twplHVVVSntX9vTU+kVeAHOnjOK2q1baFkw3C7DTJLa+rZeYfPM5 tZuBua+CUEzkcoXvVcAdiqKUApuAB1RVjSqKsgp4kcRTxmV2bXPYjwxa2nq47P+e45MnznOM9rGa DO6LxDJE100+fz1mPdutq1r1fkvC9aAXNrPl/9fnt1NVUUL92Crywd9X7zC8typx+JMvf8DVuaxy 5dsJP2SKv1OWTv0+b5a/+TzW1xaEYmLA4q+q6nG6tyst9l8PXG/attmqbb5Y9cZuunsj3PXoJsd2 /dEY4VDC337OsbN56LltGXl8SkuCliuAnTBb8jssKn/phc0qzP6vq7ZxwRmLMnfkAasnoHwV/bZK 4AbWKSgMlr9D+oZMzE8XFtlOBaHIKIrnXrs0zmZ6eqNEojEWzaxjUrL4uNn/XVEa9hxlY3ajWB0f crD8IVEgPBeLvNwwkNxFjQe6szdyQPPEZFsd4aUSlFnknXITCUKxMOLFv7Onnz8+9rartg+/sANI WOpaHLlZCCvKwoYVwG5wsy5Av6hJW2Slz1/f2x/lt49s9HRdSPjcvaL196PHzubmrx3j6diDZidS JWuVvbzi5PaZObGGc1fO5n8uPdLTOTt0cxXzpo7i9CNnAGL5C8XNiBf/NZvsa+LaCc2+5i5Kk2sK +vqjVJUnrMzrP3cEFWUhz8W/7Szp6z93ROq10fJP/J0x0X+Mb3VFCdPHV3vyjWus2bg/cY7KEs9p jmdNquXWK4815Nf3gpMfPhAIcOZRM5lQV+npnHOSN8AvfGgR//XppRw8W3L5C8KIT+nsZN2FQwH6 IplC/umT56cWBvX1x+jujTJ3yiimT6jxVXjaLv//9AlpcbfSvDIfi9pCwQBf/8RhKNNGEwjA3S6f evRoE9LTx/u7+VSU+f9ZpW7IOayB/okT5nLsoZNQphuTyEmddaGYGfGWf7eDf94qQdkXz17M4fPr U8Lb0d1PLB5PCZofYeuPxPjLc9sc2+gtXs3a9mO1H7FgPAtn1BEMBggEAtT4TFO8dH69Ib5/sMiD 9lNbVZoh/IJQ7Ix48W/t7LPdV1GWaVmPTuacKU8WUGlKrubV2taaBFlbxJStD48k5xPs0LugvnH+ YRy1eAInOyRQM6P1z/ykY+6vHeZcOdlKIeYLPwXZ/SI+f6GYGfFunwO6tAxmZk8eRXPb+wQDgdQk q2Ztj64pIxgI8E4yn462qOjU5dN5a1szsybXcumHFxEMBPhLXQX/eHGn7XXe3NKYej15XBXHHz6F eVONE7F6n//0CTVc8qFEhs+jD57E829lL+tYWVZCd280Qzz1riXn48P09advlLMmDb7VD7qJ70Hw yUwaW0VZaYiTl7m/yQrCSGHEi/+ksVVMHlfFnsbMvD2nLJvGlHFVLFPq2dfcxZtbm5iQDPEMh4KM qS2jMZntcvK4xAKrCWMqMxY8nbtyjkH8F86o4z9Ons+1d74MpEM7lyr1XHLWIstFT1YpjAEuOnMh W/e0srfJPrfRJR9axAPPbE2cxyT+c6dmRvtMG1/Nu+93cP6J87jvqXcAqCwv4UBHn+Nxg0Eqzn8Q rlVWEuJXXx+05SaCUFCMeLfP2UfP4rZvnWjYtnR+PcsXjmf25FrOPnoWU+qrWaqM56IzFhos53G6 Orma+LvhlCOmMXlcFTeaQhLHj66wXe0acvBBOBnBc6eM4qjFE1NPElPHG9014VCQ71y4jO/pKlx9 9dxD+NlXj+YDB01MbSsvNfbLz8R2LpCMC4IwOIx4yx8yreFTlk9j3tTRWY8bN6oCLefchDrn4t4n LpnKU8kcOZoLaXxdJZ8+ZT5/fGIzgKEQuxmnEEenguvaBPRnT1vAkvn1LJlfn9Fm5kSjC6e6soSy kpChYtdg+tqdSK/wHeKOCMIIpyjtLLex66Nr0pEyNVnSCXzq5Hmp13pRPUFX+KTcQ44bPdrNZEp9 NaOrjf3QJnorysIsXzjBVRqGsmQ/9NfUX34obwSFchMShJFOUYq/2/DHUVXperDZRCkQCLA0aXWb XS8a5Q5hok7n16xgZUYdY0cZC62McSi84oYLT1/ARWcs5ILTFqS2VZYP3QOhaL8gDA5F4fbRc+7K 2e4t/2pvMfJf+shBtHb2UVdjXUS81KHurBvLPxgIpG4E4+sqWDC9jrOPts6Tb8UpR0zL8O0fe+jk 1OsViybw8sb9VA5gkdZA0T4HJ1eXIAgDp+jEf85k91EsJR5X2AaDAVvhz3qsg8Wr6WAgkBbFCXWV XHj6AvuDLDj/xHmO+7VKYVUVQyj+SdP/qIMmsvqtfXzkGPc3N0EQ3FN04u8lNfGsSYkY+dOW+8tT Y8YpJ5C5opUebQ4hGAwQS6YJyod75GPHzaG1s4+LzvB2U8klmuVfVV7CdbrcR4Ig5JbiE/+we9Ws qSzlrm+dMOBrjhtVTmNrD6Mc3Ehuon30i9HyMTE6eVwV3/7sspyf1wsy4SsIg0Pxif8QBJL/9wVL 2bSzhYNm2WeTdPb5p9ukbgQjtAqVaL8gDA5FF+0Tdph0zRejq8s4avFExzbO0T4JwU/4/Em9Hino 50lG6k1NEAqN4hP/AhUX80I0PXrLP5a6ERTmOPygXwk9ksYlCIVM0Ym/VRrnQidm8PmTfD2EHcox +qiqkTQuQShkhp8SFiH6Cd94LH8TvoWAuH0EYXAoGvHXSjFa5fAvdLTwzpHq9tEzUm9qglBoFI34 3/jFo/j+xcuHLFtlVhxWtH76lPkAHLdkqu4pYFB6NeiI+AvC4FCgSph7qspLqCr3XhaxEDj20Mkc fcgkJoyvTfn8R6zlP1LvaoJQYPgSf0VRSoC7gJlAGXADsBG4m0QdjvXAZaqqxhRFuQ44E4gAV6iq ukZRlLlWbQc0khGOZhGnJn9H6DObaL8gDA5+JeTTQJOqqscApwG3ADcB1ya3BYCzFUVZAqwEVgDn A7cmj89o638IxcVIn/AdqU80glBo+BX/PwPfTr4OkLDqlwLPJrc9BpwEHA08oapqXFXVXUBYUZR6 m7aCC8TtIwhCLvDl9lFVtQNAUZQa4AHgWuCnqqpqs5btwCigFmjSHaptD1i0daSurpKwxyybeurr 3RUyHyqqqss99bGqsrTgx5QNq/7X19e4TrldKAz370FDxlF45HMsvid8FUWZBjwE/FJV1XsVRfmx bncNifqHbcnX5u0xi22OtLTYFzDPRn19DQ0N7b6PHww6O3qy9rG+viaVGbSnp7/gx+SE3XfS3NRB 9xDWE/DKcPhtuUHGUXjkaix2NxBfbh9FUSYATwDfVFX1ruTm1xVFOS75+nRgFbAaOFVRlKCiKNOB oKqqjTZtBRdohVac6gEPZ8TtIwiDg18T67+BOuDbiqJovv+vATcrilIKbAIeUFU1qijKKuBFEjea y5JtrwLu0Lf1O4Bi42sfP4RHX9zJ6StyU2Og0BDpF4TBwa/P/2skxN7MSou21wPXm7ZttmorZGdq fTVf+PDioe5GzqkfXU7DgR5CIZF/QRgMho9zVRjR/OCSI+npixIaqQsYBKHAEPEvEIZjttFcEg4F qa4o7s9AEAYT+W8bYv77gqUsmV/P0QdPGuquCIJQRIjlP8TMnTKKr3z04KHuhiAIRYZY/oIgCEWI iL8gCEIRIuIvCIJQhIj4C4IgFCEi/oIgCEWIiL8gCEIRIuIvCIJQhIj4C4IgFCGBeDyevZUgCIIw ohDLXxAEoQgR8RcEQShCRPwFQRCKEBF/QRCEIkTEXxAEoQgR8RcEQShCRPwFQRCKEBF/QRCEIkTE XxAEoQgR8RcEQShCRPwFQRCKECngLhQ1iqJ8F/iXqqqr/ByjKMrdwAlAMwljKgD8VFXV32U5x4eA eaqq3uS784IwAMTyF4qdlUBogMd8R1XVw1RVPQQ4G/ihoignZTnHUqDW43UFIWeI5S8UDYqiTAXu AaqAGPAIsAy4U1GUc4AxwA+ASqAOuFpV1T8nrfuxwFzgRtMxBlRV3aYoys+BLwP/UhRlpfmcwAbg i8k+7QT+DNwKHETipvIjVVX/lI/PQBA0xPIXiomLgUdUVV1GQoS7gFeBz6uq+hZwefL1kmTb7+iO bVJVdWHSnaM/xor1wILk64xzqqq6EbgNuE1V1d8C1wJrVVVdChwLXKMoyuzcDVsQMhHLXygm/gX8 RVGUw4F/ALcAZ+n2fxo4S1GUjwNHAtW6fS97uE4c6HZxTo2TgEpFUS5Kvq8CFgPbPFxTEDwhlr9Q NKiquhpYBPwT+ATwsKnJKmA5sJaEqyag29eNew4BNro4p0YI+HRy3uAwEjeJxz1cTxA8I+IvFA2K ovwYuCDpuvkKsASIAGFFUcYA80m4ZR4FTsF+IjiCzVOzoijzgMuAX2U5p/4cTwNfSh4/CVgHTB/A UAUhK1LGUSgaFEWZBtwL1ABR4EckRPaLwGeAc4GPAG3AiySeDqaTmIx9RlXVu5Pn+YbumC+QDvWM kxD1H6uq+udk2/+1OedS4HfATcm/vwQOI3FzuDFbqKggDBQRf0EQhCJE3D6CIAhFiIi/IAhCESLi LwiCUISI+AuCIBQhIv6CIAhFiIi/IAhCESLiLwiCUIT8f885B+9SWNjXAAAAAElFTkSuQmCC " > ++++ == Estimated runs In our graph we also have estimated attempts at different distances. When you submit an activity Strava generates predicted best times for a range of distances less than the total distance for that activity. For example if you submit an activity of 6,000 metres, Strava will generated estimated times for 5k, 2 miles, 1 mile, 1k, and 400m. We can write the following query to find my best 10k attempts: [source, python] ---- estimated_effort_query = """\ MATCH (distance:Distance {name: {distance}})<-[:DISTANCE]-(effort), (effort)<-[:DISTANCE_EFFORT]-(run) WITH run { .id, .startDate, .distance, pace: duration({ seconds: run.elapsedTime.seconds / run.distance * 1000})}, effort { .elapsedTime, pace: duration({ seconds: effort.elapsedTime.seconds / distance.distance * 1000 })} RETURN apoc.date.format(run.startDate.epochSeconds, 's', 'MMM d yyyy') AS dateOfRun, apoc.date.format(effort.elapsedTime.milliseconds, 'ms', 'mm:ss') AS time, apoc.date.format(effort.pace.milliseconds, "ms", "mm:ss") AS pacePerKm, apoc.math.round(toFloat(effort.pace.seconds) / 60, 2) AS pacePerKmFloat, apoc.date.format(run.pace.milliseconds, "ms", "mm:ss") AS overallPacePerKm, run.distance AS totalDistance, run.startDate AS startDate ORDER BY effort.elapsedTime LIMIT {limit} """ df_10k = graph \ .run(estimated_effort_query, {"distance": "10k", "limit": 1000}) \ .to_data_frame() df_10k \ .drop(["startDate", "pacePerKmFloat"], axis=1) \ .head(10) ---- ++++ <br /> <table class="dataframe"> <thead> <tr style="text-align: right;"> <th></th> <th>dateOfRun</th> <th>overallPacePerKm</th> <th>pacePerKm</th> <th>time</th> <th>totalDistance</th> </tr> </thead> <tbody> <tr> <th>0</th> <td>Jun 9 2018</td> <td>04:24</td> <td>04:24</td> <td>44:05</td> <td>11043.2</td> </tr> <tr> <th>1</th> <td>Jun 2 2018</td> <td>04:25</td> <td>04:25</td> <td>44:12</td> <td>13039.8</td> </tr> <tr> <th>2</th> <td>Jun 4 2018</td> <td>04:27</td> <td>04:27</td> <td>44:35</td> <td>10030.5</td> </tr> <tr> <th>3</th> <td>Jun 6 2018</td> <td>04:28</td> <td>04:28</td> <td>44:49</td> <td>10884.9</td> </tr> <tr> <th>4</th> <td>Jun 1 2018</td> <td>04:29</td> <td>04:29</td> <td>44:59</td> <td>10701.7</td> </tr> <tr> <th>5</th> <td>May 19 2018</td> <td>04:31</td> <td>04:30</td> <td>45:02</td> <td>13635.2</td> </tr> <tr> <th>6</th> <td>May 5 2018</td> <td>04:33</td> <td>04:32</td> <td>45:26</td> <td>11674.4</td> </tr> <tr> <th>7</th> <td>May 21 2018</td> <td>04:33</td> <td>04:34</td> <td>45:41</td> <td>10147.0</td> </tr> <tr> <th>8</th> <td>Jun 13 2018</td> <td>04:34</td> <td>04:34</td> <td>45:48</td> <td>10780.2</td> </tr> <tr> <th>9</th> <td>May 16 2018</td> <td>04:34</td> <td>04:34</td> <td>45:49</td> <td>10148.8</td> </tr> </tbody> </table> ++++ We can also create a matplotlib plot to see my 10k runs over time: [source, python] ---- %matplotlib inline df_10k.sort_values(by=["startDate"]).plot(x="startDate", y="pacePerKmFloat") ---- ++++ <br /> <img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAXIAAAD8CAYAAABq6S8VAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz AAALEgAACxIB0t1+/AAAADl0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uIDIuMi4yLCBo dHRwOi8vbWF0cGxvdGxpYi5vcmcvhp/UCwAAIABJREFUeJzt3Xd81dX9x/HXHVk3udk3ISEJIyQn QNhhOBgiUkXrqButFa3b6q/t76e1tlpbta2rrbUO3LMqiq0DnIAKMhNGIOSEsEN2yN7j/v5IggEh ubm5yb03fJ6PRx8N+a7PCfK+35zv+Z5jsNvtCCGE8F5GdxcghBCibyTIhRDCy0mQCyGEl5MgF0II LydBLoQQXs480BcsKal2ephMWJiF8vI6V5bjMQZr26Rd3mewts3b22WzWQ0n2uZVd+Rms8ndJfSb wdo2aZf3GaxtG6ztAi8LciGEED8kQS6EEF5OglwIIbycBLkQQng5CXIhhPByEuRCCOHlJMiFEMLL eU2Ql1U28MrHO2hsanV3KUII4VEG/M1OZ2XtO8z7K3MJDjAzc3ysu8sRQrjJQw/9gZycbKzWYAwG A21tbfz6179h5MjEHo8tKMjn/vt/y+LFrwCwdesW/vznB/jTn/5KUlJyj8fPmTOD1NTxR/48fPhI rrrqmqPO6ajCwkJyc3M4/fRZvTrueLwmyIcNsQKw62ClBLkQJ7lbbrmDGTNOBWDt2jW88MKzPPzw o706R0bGJp544q888sjfSUgY5tAxwcEhPPXU4qO+V1CQ36vrfn/9jezfv+/kCvI4WxAWfzM5eRXu LkUIr/Puilw2Zhc7tK/JZKC1tecpkaamRHHZ3FHd7rNs2Ud8++0q6urqqKioYNGin2O321m6dAkt LS0YDAYefvgxQkJC+NvfHmHnzh00N7dw/fU3MnPmHJ599im2bt1MW1sbl19+FXPnzvvBNaqrqwgI CADgvffe5osvPsNgMHDmmfO59NIreOihP1BZWUl9fQ2/+MWvAdi4cT3/+MdjPPbYPxkyZAjQfqdv NpspLCygubmZM8+cz5o131BUVMhf/vIEQ4fG9fgz2bhxHYsXP4Ofnx/BwSHcc899WCwWHn30YYqL iygrK+W002Zx/fU38cYbr9DQ0MC4ceM5/fTZPZ67O14T5EajgdHDw0nPLqayppGQID93lySEcEB9 fT1/+9u/qKgo54YbfsZ5513Ao4/+A39/fx555CE2bFiLn58/lZUVPP/8a1RVVfHOO29iNvtQUHCI Z555kcbGRm66aRFTp04H4JlnnuSNN17BZDIRGRnJLbfcyd69e/jqqy94+ukXAPjlL29j+vQZAEyZ ksbtt9/Mtm2a/Pw8Fi9+msbGJpqaGo6qdciQGO6++3c8+ujDFBQc4rHHnuTFF59jzZpvuOyyhVRV VXL77Tce2f/2239JSEgIAHa7nUceeZinn34Bmy2Kd9/9N6+++iIXX3wZY8eO4ze/+T2NjY385CcL uPHGW7n66ms77sj7FuLgRUEOMHZkBOnZxeTkVTI1Jcrd5QjhNS6bO6rHu+dONpuVkpJql1174sTJ GI1GwsMjjvRrP/jg/VgsFvbv30dq6niKivYzdmx733NwcDA33HALb775KlpnHwnOlpYWCgvbuzG6 dq102rp1M0VFhdx55y0AVFdXc/DgQYCjuk58ff14/PEnyczcxu9/fw+LF7+Mn58/AMnJKQAEBVkZ Nmw4AFarlcbGpo7aTty1UlFRgcUSiM0W1dHuSTz33NMEBwezc+cOMjI2ERgYSFNTswt+qkfzmlEr AGNGRACQc1C6V4TwFlpnA3D4cBm1tTV88MESHnjgYe6++3f4+flht9sZPnw42dlZANTU1PCrX93O sGHDmTQpjaeeWsyTTz7L3Lnzuu3eSEgYxvDhI/nnP5/jqacWs2DBeSQmJgFgMHwfdZGRNoKDQzjt tJlMmDCRJ5545Mg2g+GEM8X2KDQ0lLq6WkpLSwHYsiWD+PgEli37mKAgK/ff/yBXXHE1jY0N2O12 DAYDdnub09fryqvuyJMTQjGbjOySIBfCaxw+XMadd97SEdB3s2zZR9x88yJMJjNWq5XS0hIWLPgx mzZt4JZbrqe1tZVFi25gxoxT2bw5nVtv/Tn19XXMmnUGFkvgCa+TlJRMWtpUbr31epqamhk9eiw2 m63b2m677X+44YZrWL784z6302AwcNdd93Lvvf+H0WjAag3mt7/9A4cPl/HAA79jx45MfHx8iIuL p7S0hMTEUbz22kskJ6cwb96P+nZtu93pdR6c0peFJWw2K7/+2yp25VXyz/+ZhcXfqz6HuuXqX2c9 hbTL+7iybcuWfcT+/fu45ZZfuOR8feHtf2eDZmEJgKT4UOxA7qFKd5cihBAewetuaZPjQ/lk7X52 5VUwPjHC3eUIIbqxYMGP3V3CScHr7shHDQ3BYJAHnkII0cnrgjzAz0x8VBB7C6pobpF5V4QQwuuC HCA5LpSWVjt7C7z3wYUQQriKQ33kSqkMoKrjj3u11ou6bDsHuB8wAOnAbVrrfh0KkxwfypfpeeQc rCA5PrQ/LyWEEB6vxyBXSvkDBq31nONsswKPAnO01qVKqbuASKDE1YV2ldQR3jLvihBCOHZHPgGw KKU+79j/t1rrdR3bTgUygceVUiOBF7TW3YZ4WJgFs9nkdME2mxWbDWIjA9mTX0V4RBAmo/NvY3kS m83q7hL6hbTL+wzWtg3WdjkS5HXAY8ALQBKwXCmltNYttN99nwFMBGqAb5VSa7XWOSc6WXl5ndPF dh3QPzI2mNXbCti8o+DIFLfezNtfVjgRaZf3Gaxt8/Z2dfch5MjDzhzgDa21vSOgy4CYjm1lwEat daHWugb4hvZQ73fJcdK9IoQQ4FiQXwc8DqCUigWCgYKObRlAqlIqUillBmYAWf1R6LGS49unjpR5 V4QQJztHgvxFIFQptRp4h/Zgv0Mpdb7Wuhi4B/gMWA8s1Vpv77dqu7CFBhAS5EtOXiUDPV+MEEJ4 kh77yLXWTcDCY779XZftbwNvu7iuHhkMBpLjQtmYXUxxeT3R4ZaBLkEIITyCV74Q1KlzDLm8ri+E OJkNjiCXB55CiJOYVwf5UFsgFj8zuw7KlLZCiJOXVwe50WBgVFwIxRX1VNQ0urscIYRwC68OcpB+ ciGE8P4g73gxSLpXhBAnK68P8uExVnzMRnngKYQ4aXl9kJtNRkbGBJNXXENdQ7O7yxFCiAHn9UEO siCzEOLkNiiCvHPelRzpJxdCnIQGRZAnxnYsyCz95EKIk9CgCPIAPzMJ0Vb2yYLMQoiT0KAIcvh+ QeY9+VU97yyEEIPI4Anyzn7yvN71k2/eVcLnGw/KVLhCCK/lyFJvXiHpyItBjveTf73lEK9+qgFQ 8aGDYsk4IcTJZ9DckQcH+jIk3ELuoUra2nq+u16Rkcern2rMpvYfweptBT0cIYQQnmnQBDm0d680 NLVysLim2/2+2HiQNz7PIdjiw++umUJwoC/rsgppbmkboEqFEMJ1BlWQd3avdDeB1qfrD/Dvr3YR EuTL3VdNJiHayqljh1Db0MLW3NKBKlUIIVxmUAV5TwtNfLJ2H++uzCXM6sdvFk4mJiIQgNPGDQFg daZ0rwghvM+gCvLIEH/CrH7sOljxg1EoH67ey/tf7yEi2I+7F046ao3PobYgRsRY2b7nsMxrLoTw OoMqyA0GA0lxIVTVNVNUXg+A3W5n6Td7+M/qvUSG+HP3wslEhf1woebTxsXQZrezbkfRQJcthBB9 MqiCHI5eaMJut/Peqt18/N0+okID+M1Vk4kMDTjucdNGR2M2GVidWSBjyoUQXsWhceRKqQyg85XJ vVrrRcdsNwKfAP/VWj/r2hJ7J7nLA8/80lo+33iQ6HALd105iTCr3wmPCwrwYVKSjY3ZxewrrGZE TPBAlSyEEH3SY5ArpfwBg9Z6Tje7PQiEuaqovoi1BRLob2btjkLsdoiJaA/xkKATh3in08bFsDG7 mNWZBRLkQgiv4UjXygTAopT6XCm1Qik1o+tGpdQlQBvwaX8U2FtGg4FRQ0Ow2yHOFsjdCyc7FOIA Y0eEERLky/odRTL5lhDCazjStVIHPAa8ACQBy5VSSmvdopRKBRYClwD3OXLBsDALZrPJ2Xqx2Xp+ jf7yH6UQufEAi84b63CId5o3NYH3V+ayu6iWmROHOlumUxxpmzeSdnmfwdq2wdouR4I8B8jVWtuB HKVUGRADHASuAYYCK4DhQJNSap/W+oR35+XldU4Xa7NZKSmp7nG/IcF+XHVmEk31TZTUN/XqGpMS I3h/ZS7L1+wlZejAda842jZvI+3yPoO1bd7eru4+hBwJ8uuAccCtSqlYIBgoANBa39W5k1LqD0Bh dyHuDWIjAxkZG8z2vWWUVzd2+4BUCCE8gSN95C8CoUqp1cA7tAf7HUqp8/u1Mjc6bVwMdjus3VHo 7lKEEKJHPd6Ra62baO8H7+q74+z3BxfV5HbTR0fx7y93sSazgHOmJ2AwGNxdkhBCnNCgeyHIFSz+ PkxOjqSgrE5WHBJCeDwJ8hM4fVwMAGtkIi0hhIeTID+BMcPDCbP6sX5nMU3NMqZcCOG5JMhPwGg0 cGrqEOobW8jYVeLucoQQ4oQkyLtx2pHuFRm9IoTwXBLk3RgSbmHU0BCy9h7mcFWDu8sRQojjkiDv wWnjhmAHvtsud+VCCM8kQd6DqSnR+JqNrJF5yoUQHkqCvAcWfzOTlY2i8np2H5Ix5UIIzyNB7oDO h56rM/PdXIkQQvyQBLkDRieEER7sx4adxTTKmHIhhIeRIHdA+5jyGBqaWsnIkTHlQgjPIkHuoNPG DQFg9TZ5ZV8I4VkkyB0UHWYhzhbE7kOVtMnoFSGEB5Eg74WYCAtNLW1U1vRu1SEhhOhPEuS9EBUW AEBxH5arE0IIV5Mg74Wo0PYgLyqvd3MlQgjxPQnyXvj+jlyCXAjhOSTIeyEqzAJAcYUEuRDCc0iQ 90JokC++ZqP0kQshPIoEeS8YDAaiwgIoLq+XCbSEEB5DgryXosIsNDS1Ul3X7O5ShBACkCDvNXng KYTwNGZHdlJKZQCdc7ju1Vov6rLtl8AVHX9cprV+wLUlepbOIC8qr2NUXIibqxFCCAeCXCnlDxi0 1nOOs20kcBUwHWgDViulPtBab3N1oZ6icyy53JELITyFI3fkEwCLUurzjv1/q7Ve17HtIHC21roV QCnlA3S7uGVYmAWz2eR0wTab1eljXWG0qb32yvpml9fi7rb1F2mX9xmsbRus7XIkyOuAx4AXgCRg uVJKaa1btNbNQKlSygA8CmzWWud0d7LyPgzds9mslJRUO328K9jb7JhNBg4WVrm0Fk9oW3+Qdnmf wdo2b29Xdx9CjgR5DpCrtbYDOUqpMiCG9rvxzq6Xl4Bq4NY+V+vhjEYDttAA6VoRQngMR0atXAc8 DqCUigWCgYKOPxuA/wJbtdY3dXaxDHZRoQHUNrRQUy9DEIUQ7ufIHfmLwCtKqdWAnfZgv0MplQuY gNmAn1LqnI7979Far+2Xaj1E+6v6ZZRU1BMU4OPucoQQJ7keg1xr3QQsPObb33X52t+lFXmBrkMQ R8QEu7kaIcTJTl4IckK0vBQkhPAgEuROsEmQCyE8iAS5EyKC/TEaDBLkQgiPIEHuBLPJSGSIv0xn K4TwCBLkTooKC6Cqrpn6xhZ3lyKEOMlJkDupc+RKiawWJIRwMwlyJx1Z9k36yYUQbiZB7qSuY8mF EMKdJMidJGPJhRCeQoLcSZEhARiQIBdCuJ8EuZN8zEbCg/0oloedQgg3kyDvg6gwC+XVjTQ2nxST PgohPJQEeR/IEEQhhCeQIO+DI0Eu/eRCCDeSIO+DqND2seRFEuRCCDeSIO+DI0MQpWtFCOFGEuR9 YAvtHEsuLwUJIdxHgrwP/HxNhAb5ylhyIYRbSZD3UVRoAGVVDTS3tLm7FCHESUqCvI+iwizY7VBa KXflQgj3kCDvoyiZc0UI4WYS5H0kQS6EcDezIzsppTKAqo4/7tVaL+qy7QbgJqAFeFBr/bHLq/Rg 0Z3zkssQRCGEm/QY5Eopf8CgtZ5znG1DgDuANMAfWK2U+kJr3ejqQj3V90MQJciFEO7hyB35BMCi lPq8Y//faq3XdWybBqzpCO5GpVQuMB7Y2C/VeiCLvxmrxUfGkgsh3MaRIK8DHgNeAJKA5UoppbVu AYKByi77VgMh3Z0sLMyC2Wxyslyw2axOH9tfhtqC2HWwgvDwQEwm5x87eGLbXEHa5X0Ga9sGa7sc CfIcIFdrbQdylFJlQAxwkPZ+864/GStQ0d3Jyvtw52qzWSkpqXb6+P4SFuRLa5ud7D2lRHV0tfSW p7atr6Rd3mewts3b29Xdh5Ajt4/XAY8DKKViab8LL+jYtgGYqZTyV0qFAKOB7X2q1gt9vxCzdK8I IQaeI0H+IhCqlFoNvEN7sN+hlDpfa10IPAl8C6wA7tVaN/RbtR5KhiAKIdypx64VrXUTsPCYb3/X ZfvzwPMursurSJALIdxJXghygSNjySXIhRBuIEHuAoH+Zix+ZnkpSAjhFhLkLmAwGIgKC6C4vJ42 u93d5QghTjIS5C4SFRZAS2sbFdUnzUutQggPIUHuIp0PPGX9TiHEQJMgd5HOhZhlLLkQYqBJkLuI DEEUQriLBLmLREuQCyHcRILcRYIDffHzMUkfuRBiwEmQu0jnEMSSinrsMgRRCDGAJMhdKCosgMbm Vqpqm9xdihDiJCJB7kIyBFEI4Q4S5C4kc64IIdxBgtyFjqzfWSFjyYUQA0eC3IVkCKIQwh0kyF0o 1OqH2WSUPnIhxICSIHchY5dZEGUIohBioEiQu1hUaAD1jS3UNrS4uxQhxElCgtzFvh+CKA88hRAD Q4LcxeSBpxBioEmQu1iUjCUXQgwwCXIXsx25I5euFSHEwDA7spNSKgpIB87SWmd3+f5VwK+BVuAl rfUz/VKlF4kI9sNkNMgduRBiwPR4R66U8gGeA46XTI8B84DTgF8rpcJcW573MRmNRIb4y1hyIcSA caRr5THgWSD/ONu2ASGAP2AAZPA07f3kNfXN1DU0u7sUIcRJoNuuFaXUtUCJ1vozpdQ9x9llO+1d LrXAUq11RU8XDAuzYDabnKkVAJvN6vSxA2VYbDCZe8poxtirer2hbc6Qdnmfwdq2wdqunvrIrwPs Sql5wETgNaXU+VrrQqXUeOBcYARQA7yhlLpUa72kuxOW9+EhoM1mpaSk2unjB4rVv/3HqveWEuLv 2IeWt7Stt6Rd3mewts3b29Xdh1C3Qa61ntX5tVJqFXCz1rqw41uVtPeb12utW5VSxcBJ30cOMpZc CDGwHBq10pVSaiEQpLVerJR6DlitlGoCdgOvuLg+ryRjyYUQA8nhINdaz+n4MrvL956l/UGo6CIy xB+jwcC+wirsdjsGg8HdJQkhBjF5IagfmE1GJidHkldSS9b+cneXI4QY5CTI+8m5pwwH4JPv9rm1 DiHE4CdB3k+GDbGSOjKc7AMV5B6qdHc5QohBTIK8H53XcVe+bO1+9xYihBjUJMj7UXJ8KElxIWzJ LeVgcc2AX7+mvtnlKxW1trVR3yiLZgjhSSTI+1lnX/mydQN3V97a1sZbX+Zwxz++5Y+vbuLbbfk0 Nbf26ZyVtU189N0+7npmLb96ag2HSgb+g0kIcXy9HkcuemfcyHASooLYsLOIC2eOILpjjHl/qWto 4bkPd5C5p4yQQF8OFFXz8rJs3l2Ry8wJsZwxaSi20ACHzmW329mdX8WKjDw27iymtc2Or4+RpuY2 Xl6ezW+vnoLRKEMrhXA3CfJ+ZjAYOPfU4Tzzn+0sX3eAa89J6bdrlVTU84/3tpFfWkvqyHBuPj+V +sYWVm05xDdb8/l0/QE+W3+A8YkRnDkljjEjwjEeZ4x7U3Mr67OKWJFxiP1F7a80x0RYmDs5jlNT h/Dqp9ls2FnMl+l5zJ8a32/tEUI4RoJ8AExJthEdbmFNZgEXnD6CMKufy6+Rc7CCp5ZmUlPfzLy0 OC6fOwqT0YjF38zFsxM5/7QRbMou5quMPLbuLmPr7jKiwgKYOzmO08cNweLvQ3FFPasyDvHttnxq G1owGGByso0zJw8lZVjYkRebFp6VTNa+cpZ+s5uJSZFEOXiHL4ToHwZXPwzrSUlJtdMX9OZJb77d ls/Ly7KZPzWeK85M+sH2vrRtTWYBr36aTVsbXD0/mTmThna7/96C9u6S9VnFtLS24etjZFi0ldy8 SuyA1eLD7ImxzJk4lPBg/+OeY92OQhZ/lMXoYWH87xUTT/j2qjf/nXVnsLYLBm/bvL1dNpv1hP2Y ckc+QE4ZO4T/rt7Lqi2HOPeUYVgtvn0+Z5vdztKv97Bs3X4sfmZuvSiVMcPDezxuREww1587hsvO GMXqbQWs3HyIXXmVJMYGM3dKHGkqCh9z98/Bp4+JZl1WEdt2l/HttgJmTYjtc3uEEM6RIB8gZpOR s6cl8NaXu/hyUx4XzRrZp/M1NrXy/MdZZOSUEB0WwB2XjCcmIrBX57BafDlnxjB+NC2B6vpmQgId /3AxGAxc8yPF715Yzzsrchk3MqJfuoyEED2T4YcDaOaEWKwWH75Kz+vTWOzDVQ38+c10MnJKSEkI 5d5r0nod4l0ZjYZehXin8GB/LjtjFPWNLbz+mXb5mHUhhGMkyAeQn4+J+VPjqWtsYdXmQ06dY29B FX96bRMHimqYNSGWX10+kaAAHxdX6rhZE2NR8aFsyS1lY3ax2+oQ4mQmQT7AzpgUR4Cfic82HuzV Szp2u50VGXn85c0MqmqbuOLMJH52tsJscu9fodFg4NoFKfiYjbz5RQ7VdU1uredkkLXvMA+8spE/ vLxB1oUVgAT5gLP4m5k7OY6q2iZWZxY4dExlTSN/X7KNNz7Pwdds5M5LxjN/arzHzHMeHWbhopkj qa5r5u2vdrm7nEErv7SWvy/ZymNvb2F/YTUHimp4/qMs2qRL66QnQe4GZ6XF42s2snzdAVpa27rd N12X8PsXN5C5p4zUEeH88frpjE+MHKBKHXfW1DhGxFhZu6OIbbtL3V3OoFJV28Trn2nue3ED23aX kZIQyu9/lsbY4WFs3V3Gh6v3urtE4WYS5G4QHOjLrAmxlFU1sD6r6Lj71De28NInO/nXB5k0Nrdy 1VnJ/PKyCR47MsRkNLLonNGYjAZe/VTLxFou0NzSyrJ1+7ln8VpWbj6ELSyAX/xkHP935SRGxARz 0wWpRIb48+GafWzZJR+eJzMJcjc5e3oCJqOBZev2/+BX4115Fdz/0gZWZxYwLNrK/ddO5cwpcR7T lXIicVFBnHvKMMqrG3lv1W53l+O17HY767IK+e3i9by3ajdGg4GF85L40/XTmJRsO/LfQVCAD7f/ ZBy+ZiPPf7yDwsN1bq5cuIsEuZuEB/tzSuoQCsrq2JxTAkBLaxtLv9nNX97MoKyqgXNPGca910wh NtL5oYUD7dxThjM0MpCVmw+hD8gyd72Vm1fJQ6+ns/jDLCprG/nRtHj+cvMpzEuLP+6D7YRoKz87 J4X6xlb++f42+U3oJCVB7kYLZgzDAHy8dj8Hi6p56PV0Pv5uPxHB/vzmqslcPDvR7aNSesvHbOTa BSkYgJeXZ9PYx+lzTxYtrW289mk2D7+Rzp78KtJSonjwhhlcPjeJQP/uh5eeMnYI89LiKCir46Vl O2U8/0nIu1JikBkSbiEtJYr9hdXc8fhK9hdWc/q4GB64bhpJcaHuLs9pibEhnDU1nuLyet76NNvl 5885WEFBWa1Lz9nc0kZGTgmNTQP/wVNT38wT72xh1ZZ84mxB3HP1ZG69MLVXk5FddsYoVHwo6bpk QOe+d6ea+mYy95S5uwyH2O12tu0uo7y6sV/OL0HuZueeMgyDAQL8fLjtolSuO3c0AX7eP3PCRTNH Ygv154Ovc9nuwn9sW3JL+cubGdz/0gaWr99PW1vf7z7zSmp48LVNPLU0k1c/c/0HT3cKymp58LVN ZB+oYEqyjXt/OsWpD3GzycgtF6YSZvVj6dd7XPoz91QvL9vJ397d6vFr4lbWNPKP97bx9yVb+XT9 gX65hkNBrpSKUkodVEqlHPP9qUqpb5VSq5VS7ymljj9VnjihhGgrf1g0jWfunssUFeXuclzGz9fE zRekYjIaee7DHRRX1Pf5nIWH63j+ox34mI1Y/H1YsnI3j/57M6WVzp27zW7n8w0H+OMrmzhYXENQ gA/rdhQNWN/+jn2HefC1dIrL6zn3lGHcclEqfr4mp88XHOjLbReNw2QyuOxn7qnySmrY3DFSZ5MH v1GckdM+fHjb7jLGjghnwSnD+uU6PQa5UsoHeA6oP+b7BuB5YJHW+nTgU6B/qhzk4qOCCAnyzGGF fTEiJphbLx5PbUMLT72f2adui/rGFp5amkl9YyvXnp3Cn66fxuRkG/pg+wiftdsLe9U3fLiqgcff 3sLbK3IJ8DPxi4vHceel4wF484scWtu6H9/fVysz8vjbO1tpbmnl5+eN5uLZicdd5KO3RsYGc/V8 5ZKfuSfr7D4yGCBdF3vcc4HO4cNPLW0fPrxwXhK/vGyCU3MaOcKRO/LHgGeB/GO+nwyUAb9USn0N hGuttYvrE17urOnDmDNpKHklNbzyabZT/+DsdjsvLdtJfmkt89LiOCV1CFaLL7ddlMqiBSm02eH5 j7N49r87qKnv+ZX19VlF3PfiBnbuL2dCYgR/vH46k5JsJMaGMHN8DHkltazMcG4unJ60trXx5hc5 vP55DoEBZv7vykmcmhrj0mvMmhDb55+5JyuuqGd9VhFxtkCmj4mmrKqRfYWeM8941+HDCdFB3Hft VOalxbvkg/pEuu2MVUpdC5RorT9TSt1zzOZI4FTgdiAX+FgptUlrvaK7c4aFWTCbnf/10WazOn2s pxusbbvjiskUHq5jfVYRqaNsXDg7sVfHL/kqh3RdQmpiBLddNumokTw/OTOYUyfG8cRbGWzMLmZP QRX/c8UkJib/sJuqpr6ZZ9/fxteb8/DzNXHbJRP40YxhR43Pv+niCWTsKuW/q/dy9ukjCbOeuLew t39ftfXNPPL6JjJ0MQlDrNzkX7okAAAQg0lEQVR3/Qyiw/tnDde+/sw9+b/Fd7/eg90OV8xPwc/X xLodRWQdqGDa+O4XVIH+bVdLaxv//lzz3lc52IFLz0ziyvkpPc7t7wrdrhCklPoGsHf8byKQA5yv tS7s6C9forUe17HvLwEfrfUj3V3wZF0hqCeDtW2d7SqvbuSPr2ykuq6ZX18xkdHDwhw6fvveMv72 7lZCg/y479qpJ/zVtLWtjWXrDvDh6r20ttmZlxbHJbMT8fVpv2nYub+cFz/J4nBVIyNjg7nhvDEn DNGv0vN484scTh8Xw3Xnju62XY4qrqjnH0u2UlBWx/jECG46f2y/P9R29mfuyf8tllc3cvez3xFu 9eehG6fT2mrnzidXExLky59vnNHtS3OOtqu0sp7Cw3VEhQYQEeKPydhzEBeU1bL4oyz2F1YTEezP DT8eQ3K8a0eeOb1CkNZ6VufXSqlVwM1a68KOb+0BgpRSo7TWucBM4MW+lysGozCrH7delMojb23m mf9s5/5rpxIR0v2z8eKKep777w5MRgO3XTSu2/5Fk9HIj08dTuqIcJ7/KIsvN+WRta+cRQtSSM8u 4bMNBzAYDFxw+gjOO3VYt/8450yK5Zut+azOLGDWxFhGDQ1xut1w9HqqZ6XFc/ncURiN/f+WbpjV j1suTOXRf2/muf9u54/XTye4n/poB8rnGw/Q0mrnnBkJmIxGTEYYnxjBxuxi8kpqiY8K6tP529rs PPLWZkorGwAwGQ1EhPgTFRZAdKgFW1hA+9dhAUSGBGA2GViRcYglK3NpamnjtNQhLDwrecBHnvX6 akqphUCQ1nqxUup64K2OB5/faa0/cXmFYtBIigtl4bwkXv88h399kMk9V0/G5wTdbI3NrfxraSa1 DS1ce04KI2ODHbrGiJhg7l80lSUrc1mRcYiHXksHICosgBt+PIbE2J5D2WQ0cvX8ZP78RgZvfp7D 73+W5nTwrs8q4oWPswC45mzFnIk9//rvSsnxoVw8O5F3V+by0rKd3HnJeI+f6uFEauqbWbU5n9Ag 36OeK0xRNjZmF7Mpu7jPQb5972FKKxsYNTQEW2gAxRV1lJTXs33PYbZz+Kh9DUCQxYfqumYC/c38 /LwxpKW4Z+SZw0GutZ7T8WV2l++tAKa5uCYxiM2ZNJS9BdWszizgtc801y0Y/YNgsdvtvLo8m4PF NcyZGNvr9UD9fExcPV8xYVQkb3+1i5SEMC49IxF/X8fvW5LiQjll7BDW7ijk6635nNHDgtbHsyaz gJeW7cTf18ztF6Uy2oH1VPvD/Gnx7NhbxrbdZazIOMSZU+LcUkdffbnpII3NrVw0c8RR/c7jEyPw MRtJzynp8xKK32xtH9Nx5bwkRsR8f/NQ39hCcXk9xRX1FJfXUVReT0nHnyclRXL1fOXWCe28/80T 4VUMBgM//VEyeSU1rMksZERMMHMnHx0sX2zKY11WEYlDg7lyXrLT1xo3MoJxIyOcPv6yMxLZvKuE pV/vZmpKVK9WYvpmaz6vLs/G4m/m11dMZPgQx36j6A9Gg4Hrzh3D/S9t4J0VuaiEUOJsfbtzHWj1 jS18lZ5HUIAPsyYe/cHu72smdUQ4m3eVUlBW6/SyhxU1jWzZVUpCVBDDhxz9UDTAz8ywIVaGDfHM h8DyZqcYcD5mE7f/ZBxWiw///nIXu/Iqjmzbub+cd1fkEhLoy60XjhuQJ/4nEhLkx4Wnj6C2oYX3 v3Z8NseVmw/xyvJsAgN8+L8rJ7k1xDuFWf1YtCCFltY2nvtwB80t3jW+/Ost+dQ2tDAvLe64v1ml dbxMt0mXOH2NNZkFtNntzJ4Y63XdTxLkwi3Cg/255YJU7HZ4+oPtlFc3UlbZwLP/3Y7BwJHXzd1t 7pQ4hkYG8s2WfPYWVPW4/5ebDvL6ZxqrxYe7rpxEQrTn3MFNSrIxZ9JQDpXUsmSl90wz3NzSymcb DuDnazpht9CEURGYjAbStXNvebbZ7Xy9JR9fHyPTxwzpS7luIUEu3CZlWBiXnZFIZW0TT/8nk399 kEl1XTNXzkty+dAtZ5lNRhaelYyd9jc+u1tW7bMNB3jry12EBPpy18LJxPXxwVt/uHzuKGIiLHyZ nse23d4xH8vqzEIqa5uYO2noCWeCtPj7MGZ4OAeKapyammDnvnJKKxuYlhKNxd/7epwlyIVbnTU1 nhljotl9qIp9hdWcNm6IUw8W+9PoYWFMGx3Fnvwq1mw7/jqry9bt550VuYQG+XLXwkkM9dA55P18 TNx0/ljMJgMvfZJFZa1nL5bd2tbG8nX7MZuMzJ8a3+2+U5QNwKm78q87HnLOnti7B+ueQoJcuJXB YOBn56SQHB/K6GFh/HS+8sj+ycvOGIWfj4n3vt5N7TEr13+0Zi/vrdpNeLAfd1812emHbQMlIdrK xbMTqapr5mUPn798Q1YxpZUNzJwQ0+N8RJOSIjEaDKT3sp+8sraJzTklDLUFOjzM1dNIkAu38/Mx cffCSfzvFROPvInpacKD/fnxacOprmvmP9+0L3Zst9v5z7d7+ODbvUSG+HP3wslEh/XPK/eudtbU eMaOCGfb7jK+Ss9zdznH1Wa388m6/RgNBs6ZltDj/laLLyohlD35VRyuanD4Ot9lFtDaZmf2BO97 yNlJglx4BIPB4PH/iOZPjSc63MKKzXnsza9k6Td7+HDNPmyh7SFu68VCEO5mNBi4/tzRBAX48O7K 3eQV17i7pB/YsquU/NJaZoyNJtLBn21aZ/dKjmN35Xa7na+35uNjNnJKqvc95OwkQS6Eg8wmI1ed lYTdDvc+s4ZP1u4nOiyA31w1pcfpBjxRaFCXIYkf7aDJg5bls9vtfLJ2Hwbal0R01ORkGwYg3cE5 yrMPVFBcXk+aiupxST1PJkEuRC+kjohgSrKN6rpmYiIs3H3VZI8YJumsSUk2zugckrjKc4YkZu0v Z29BNZOTbb1afDwkyI9RcSHsyquksqbnZdW+3tI+XbG3PuTsJEEuRC/99GzFNQtGc/fCyYQOggVB Lps7itjIQL5Kz2Nrbqm7ywHgk+/2ATi1os4UFYUdyNjVfVuq65rIyCkhJsJCUlzfJkZzNwlyIXop 2OLLpWcme/1Mgp2OGpK4bCflvXhQ2B9yD1WSfaCCsSPCj5rvxFFTkh0bhvjd9kJaWr37IWcnCXIh BPFRQVwyZxTVdc388aX1VDjQLdFflq1tX8btPCfXt4wI8WdETDDZ+ytOuGKUveNNTrPJwKnjXLtC kztIkAshAJiXFsfp42LIPVjBn17dxP4BXj6tvLqRlRl5bMktZdTQkD693ZumbLTZ7WzedfzRK7vy Kik8XEea6t1kaJ7K+95FFUL0C6PBwKIFKSQmhPHaJ1n8+c10bvzxWCZ3dFW4WnNLG7l5FWTuPcz2 PWXkldQeqeOCmSP61N0xRdlYsmo36bqEmeN/+CCz8yFnb6dI9lQS5EKIIwwGA5fMTcLqZ2LxRzv4 19JMLp6TyDnTE1zSj1xUXte+SMOeMnYeKKepuQ0AH7OR1BHhpI6MYEJiRJ/XMo0KsxAfFcSOvYep a2g5av6UmvpmNmaXEB0WgErwjDl9+kqCXAjxA5OTbdxz1RSefH8b763aTUFpLdec7dxCwvsLq1m9 rYDMPWVHTWgVE2EhdUQE40aGkxwf6vK3eqcoGweLa9i6u5RTxn7/ss/aHYW0tLYxe+JQr3/I2UmC XAhxXMOGWPn9z9L45/vbWLO9kOKK+o555HserdPc0sYmXcyKjDx2H2qf/jfAz8SUZBtjR4aTOiKc yJD+fRM2TUXxn2/3kq5LjgS53W7nmy35mIwGTh3nvW9yHkuCXAhxQqFBfty9cDIvfrKTjdnF/OnV Tdx56YQTzu54uKqBVVsO8c2WfKrqmjHQvhTb3MlDGTM8HLNp4MZXxEYGEhNhIXNPGQ1NLQDszq/i UGktU1OiCHbgA8lbSJALIbrl62Pi5gvGEhNh4cM1+3j49U3cfEHqkWX07HY72QcqWJGex+ZdpbTZ 7QT6m/nRtHjOmDSUKDdOJDZFRfHxd/vI3HOY+KFhg+ZNzmNJkAshemQwGLhw5khiIgJ58ZOd/H3J Vi4/YxRms5EVGYfIL20fcZIQFcSZU+KYNiYaPw+YyTJN2fj4u32k62JmpSWwcWcxUaEBpAwLc3dp LiVBLoRw2PQx0USG+vPP9zN5e0UuACajgRljopk7OY7EocEe9QAxPioIW6g/W3eX8eWG/TS1tDFz QgxGD6rRFRwKcqVUFJAOnKW1zj7O9sXAYa31b1xcnxDCwyTGhvD7a9JYsiqX2MhAZk8cSoiHTldg MBhIU1EsX3+A15dnYzIaOH0QvMl5rB6fPCilfIDngOMuhKeUugkY5+K6hBAeLCLEn5svSOX800Z4 bIh3mqKiAGhqbmViUmSPKw15I0ceIT8GPAvkH7tBKXUqMJ32oBdCCI8zIsZKeHB7eM8eJG9yHqvb rhWl1LVAidb6M6XUPcdsiwHuBy4CLnP0gmFhFsxm5x+C2GxWp4/1dIO1bdIu7zPY2rbovLFs31PG 7KnDMBoHV/84gKG7hVeVUt8A9o7/TQRygPO11oVKqTuAnwHVwBDAAtyntX6luwuWlFQ7vdKrzWal pGRgJ/IZKIO1bdIu7zNY2+bt7bLZrCf8BOr2jlxrPavza6XUKuBmrXVhx7YngSc7tl0LpPQU4kII IVyv169ZKaUWKqVu7I9ihBBC9J7D48i11nM6vvzB8EO5ExdCCPeRhSWEEMLLSZALIYSXkyAXQggv J0EuhBBeToJcCCG8XLcvBAkhhPB8ckcuhBBeToJcCCG8nAS5EEJ4OQlyIYTwchLkQgjh5STIhRDC y0mQCyGEl5MgF0IILydBLoQQXk6CXAghvJwEuRBCeDmHVwgSwpMppR4AvtRaf+vMMUqpV4C5wGHa b3AMwGNa61d7OMePgSSt9RNOFy9EH8kduRgsZgOmPh5zn9Z6otZ6PHAB8LBSal4P55gCBPfyukK4 lNyRC6+jlIoD3gQCgTbgYyANeEEpdREQDjwEWIAw4C6t9ZKOu+4IYBTwl2OOOYrWeo9S6h/ArcCX SqnZx54T2AHc3FHTfmAJ8C8glfYPiL9qrf/dHz8DIbqSO3Lhja4HPtZap9EeqHXAJuDnWutM4Bcd X0/u2Pe+LseWaa1Hd3SZdD3meLYDKR1f/+CcWuss4FngWa31y8DvgHSt9RRgFnCvUmqk65otxPHJ HbnwRl8CS5VSk4BPgKeA87psvxo4Tyl1KTADCOqybX0vrmMH6h04Z6d5gEUpdV3HnwOBscCeXlxT iF6TO3LhdbTWa4AxwGfA5cBHx+zyLTANSKe9O8TQZVs9jhsPZDlwzk4m4OqOfvaJtAf+p724nhBO kSAXXkcp9Qjw047ukduByUALYFZKhQPJtHd9LAPmc+KHoC2c4LdSpVQScBvwTA/n7HqOFcAtHcfH ANuAhD40VQiHyFJvwusopeKBtwAr0Ar8lfbAvBm4BrgYuBCoAtbSfteeQPuDyFVa61c6zvO/XY65 ke+HH9ppD+hHtNZLOvZ9/ATnnAK8CjzR8f9PAxNpD/q/9DR8UQhXkCAXQggvJ10rQgjh5STIhRDC y0mQCyGEl5MgF0IILydBLoQQXk6CXAghvJwEuRBCeLn/ByWevb3MNGQCAAAAAElFTkSuQmCC " > ++++ == Combining estimated runs What if we want to combine my efforts for multiple distances in a single row? The pandas `merge` function comes in handy here. For example we could write the following code to create a DataFrame that combines my 10k and 5k runs: [source, python] ---- import pandas as pd cols = ["run.id", "dateOfRun_x", "time_x", "pacePerKm_x", "time_y", "pacePerKm_y"] df_5k = graph \ .run(estimated_effort_query, {"distance": "5k", "limit": 1000}) \ .to_data_frame() df_10k = graph \ .run(estimated_effort_query, {"distance": "10k", "limit": 1000}) \ .to_data_frame() pd.merge(df_5k, df_10k, on="run.id")[cols].head(10) ---- ++++ <br /> <table border="1" class="dataframe"> <thead> <tr style="text-align: right;"> <th></th> <th>run.id</th> <th>dateOfRun_x</th> <th>time_x</th> <th>pacePerKm_x</th> <th>time_y</th> <th>pacePerKm_y</th> </tr> </thead> <tbody> <tr> <th>0</th> <td>1611168962</td> <td>Jun 2 2018</td> <td>21:24</td> <td>04:16</td> <td>44:12</td> <td>04:25</td> </tr> <tr> <th>1</th> <td>1626636004</td> <td>Jun 9 2018</td> <td>21:34</td> <td>04:18</td> <td>44:05</td> <td>04:24</td> </tr> <tr> <th>2</th> <td>1620188065</td> <td>Jun 6 2018</td> <td>22:00</td> <td>04:24</td> <td>44:49</td> <td>04:28</td> </tr> <tr> <th>3</th> <td>1616050069</td> <td>Jun 4 2018</td> <td>22:01</td> <td>04:24</td> <td>44:35</td> <td>04:27</td> </tr> <tr> <th>4</th> <td>1581401227</td> <td>May 19 2018</td> <td>22:15</td> <td>04:27</td> <td>45:02</td> <td>04:30</td> </tr> <tr> <th>5</th> <td>1609355524</td> <td>Jun 1 2018</td> <td>22:16</td> <td>04:27</td> <td>44:59</td> <td>04:29</td> </tr> <tr> <th>6</th> <td>1635264102</td> <td>Jun 13 2018</td> <td>22:20</td> <td>04:28</td> <td>45:48</td> <td>04:34</td> </tr> <tr> <th>7</th> <td>1585759604</td> <td>May 21 2018</td> <td>22:27</td> <td>04:29</td> <td>45:41</td> <td>04:34</td> </tr> <tr> <th>8</th> <td>1566256778</td> <td>May 12 2018</td> <td>22:30</td> <td>04:30</td> <td>46:11</td> <td>04:37</td> </tr> <tr> <th>9</th> <td>1624450599</td> <td>Jun 8 2018</td> <td>22:30</td> <td>04:30</td> <td>46:11</td> <td>04:37</td> </tr> </tbody> </table> ++++ That's all for now. Hopefully that's given you some ideas of how you can use the new version of Py2neo to query your graph data. I only covered some examples in this blog post. If you want to see the full set you can look at the https://github.com/mneedham/strava/blob/master/Strava.ipynb[accompanying Jupyter notebook^].
Learn how to query a Strava activity graph using Py2neo v4.
null
[ 0.033966634422540665, -0.02064625546336174, 0.003439640160650015, 0.012478933669626713, 0.08126223832368851, 0.01395814586430788, 0.030175229534506798, 0.023547092452645302, 0.02098173275589943, -0.00411811750382185, 0.013889813795685768, -0.010578664019703865, -0.07132403552532196, 0.02386205643415451, -0.0032245414331555367, 0.06555527448654175, 0.07387888431549072, -0.008675111457705498, 0.010108713060617447, -0.01706523261964321, 0.020795034244656563, 0.047329701483249664, 0.00027998234145343304, 0.026041973382234573, 0.005845821462571621, -0.003226500703021884, 0.008472202345728874, 0.001125295995734632, -0.04695560038089752, -0.014890969730913639, 0.04349566251039505, -0.009403503499925137, 0.023059142753481865, 0.0014063807902857661, 0.052660055458545685, 0.02104996331036091, -0.03950239345431328, -0.013293903321027756, -0.01692279241979122, -0.002665778622031212, -0.05585479363799095, 0.028438717126846313, -0.03720909729599953, 0.018930014222860336, -0.04437065124511719, 0.022233104333281517, -0.02088686265051365, 0.04016414284706116, 0.012480891309678555, -0.0026394918095320463, -0.06735864281654358, 0.05014973506331444, -0.005566878244280815, 0.015954719856381416, -0.014300629496574402, 0.054469235241413116, 0.024448763579130173, -0.08207685500383377, 0.0346621610224247, -0.024891160428524017, 0.02151668071746826, -0.011912371031939983, -0.018463699147105217, 0.01551508717238903, -0.006321505177766085, -0.05091312900185585, 0.01807229407131672, 0.06793671101331711, -0.026610026136040688, 0.007564161438494921, -0.010685889981687069, 0.01707221195101738, -0.014434097334742546, 0.030086569488048553, -0.004193300846964121, -0.04195476323366165, 0.009435690939426422, 0.07570111751556396, 0.014326168224215508, 0.03289157524704933, 0.015817364677786827, -0.0030172904953360558, 0.00943275261670351, 0.03636910021305084, -0.00830875150859356, -0.02272319421172142, -0.04844970628619194, -0.02227034792304039, -0.04585840553045273, 0.03099428489804268, 0.006216141395270824, -0.06731018424034119, 0.03225809335708618, 0.00048533239169046283, -0.00419844314455986, 0.004897756036370993, -0.013431437313556671, 0.006181893404573202, 0.019923100247979164, -0.021823041141033173, -0.05852494761347771, -0.040602907538414, -0.003875003196299076, 0.03517048433423042, -0.053587812930345535, -0.04466542601585388, -0.03269211947917938, -0.029614504426717758, 0.027056708931922913, -0.0027366706635802984, -0.04785078763961792, 0.005252304952591658, -0.016934847459197044, -0.00551861384883523, -0.08170842379331589, 0.06327105313539505, -0.006353700067847967, -0.009401069022715092, -0.06255228817462921, -0.021985681727528572, 0.04077073186635971, 0.027483047917485237, -0.005629316903650761, 0.0686810240149498, -0.012058938853442669, 0.07584624737501144, 0.018077481538057327, 0.039408501237630844, -0.0009642730001360178, -0.050835344940423965, -0.03573472052812576, 0.05888543277978897, -0.011858443729579449, 0.0141978794708848, 0.006206984166055918, -0.025268977507948875, -0.02076551504433155, 0.03094327077269554, 0.059722572565078735, 0.022986367344856262, 0.03644316643476486, -0.03000883385539055, 0.02321578562259674, -0.0012733271578326821, 0.019721152260899544, 0.023354342207312584, -0.02047646977007389, -0.042535506188869476, -0.03354952111840248, -0.023152457550168037, 0.009825794026255608, 0.018289031460881233, 0.05020441114902496, -0.018819663673639297, 0.004438627045601606, 0.08660289645195007, 0.03741718456149101, 0.012508705258369446, -0.020288269966840744, 0.019647326320409775, 0.06368204951286316, 0.04696504771709442, 0.00035542919067665935, 0.07209744304418564, -0.007102082949131727, -0.02479514107108116, 0.005637307185679674, 0.05477941408753395, -0.023513665422797203, 0.0013138981303200126, -0.0383581668138504, -0.07130710780620575, 0.06257140636444092, -0.045207761228084564, -0.03738313913345337, 0.07318536192178726, 0.07223490625619888, -0.006749301217496395, 0.019705122336745262, -0.004725080449134111, -0.07437882572412491, 0.05349736660718918, 0.012093720957636833, 0.018559304997324944, 0.024933721870183945, -0.007910331711173058, 0.10028968006372452, 0.0068160779774188995, -0.006433365400880575, 0.02697274088859558, -0.06344885379076004, -0.0730937123298645, -0.018081678077578545, -0.03478757292032242, 0.07702185213565826, -0.03641507029533386, 0.01671173796057701, 0.040310297161340714, 0.01900988444685936, 0.057344574481248856, 0.018854660913348198, -0.013779346831142902, 0.015726681798696518, -0.056158069521188736, -0.06101420149207115, 0.04241284355521202, 0.042002808302640915, -0.038182333111763, -0.025881772860884666, 0.02370685525238514, -0.029748931527137756, 0.01276466902345419, 0.02599136158823967, -0.02810199186205864, 0.04787855222821236, 0.03400005027651787, 0.0334380604326725, 0.001586672617122531, 0.011493166908621788, -0.03934188932180405, 0.02039429545402527, 0.01116081140935421, -0.030079910531640053, -0.03257174789905548, -0.011767139658331871, 0.09457028657197952, 0.04388587176799774, -0.025474967435002327, -0.057083822786808014, 0.006643601693212986, 0.006130718160420656, -0.013811590149998665, 0.006105235777795315, 0.0035284387413412333, -0.004237815737724304, -0.028904398903250694, -0.012683109380304813, -0.02954898402094841, -0.028502224013209343, -0.037424635142087936, 0.029254237189888954, 0.06379612535238266, -0.01792994514107704, 0.043918631970882416, -0.014674266800284386, -0.006092275958508253, -0.005223551765084267, -0.02117443084716797, -0.05709053575992584, 0.027919311076402664, 0.0027855485677719116, -0.00006700422090943903, 0.08033391833305359, -0.006581628229469061, -0.022566789761185646, -0.042114049196243286, -0.03176083043217659, 0.0377584770321846, 0.06697266548871994, 0.05158918723464012, 0.014559782110154629, 0.03779618442058563, -0.018849341198801994, 0.04272853583097458, -0.03330816328525543, -0.05636756494641304, -0.07668755948543549, -0.040742769837379456, 0.023188529536128044, 0.025936439633369446, 0.02606102079153061, -0.004987310152500868, 0.03454646095633507, -0.003208165057003498, 0.02443976141512394, -0.01630895398557186, 0.04227670282125473, 0.00692318519577384, -0.006709982641041279, -0.024144001305103302, -0.026617303490638733, 0.0593237541615963, -0.06347434222698212, -0.04227117449045181, -0.006946554873138666, -0.051198676228523254, 0.06378862261772156, -0.03203466162085533, -0.03171585872769356, 0.025946544483304024, 0.01463126391172409, 0.06213153526186943, 0.01091045793145895, 0.022178353741765022, 0.07567775249481201, 0.025978634133934975, 0.020464440807700157, 0.0014938391977921128, -0.01957777887582779, 0.04409810155630112, 0.025115272030234337, 0.03378263860940933, 0.052037738263607025, -0.030135300010442734, -0.0008949627517722547, -0.027769505977630615, -0.0010690598282963037, -0.045674096792936325, -0.27148205041885376, 0.034660160541534424, -0.042115382850170135, -0.04616143926978111, -0.00628485344350338, -0.00970134325325489, 0.007134204730391502, -0.00912434421479702, -0.04214906692504883, 0.0013340082950890064, -0.012129439041018486, -0.05614606663584709, -0.015460868366062641, 0.03985562548041344, 0.017810458317399025, -0.0012205311795696616, -0.03222347050905228, -0.05206058546900749, 0.004244730342179537, 0.04232488200068474, 0.022602954879403114, -0.041502851992845535, -0.0013402719050645828, 0.02730383537709713, 0.02240034006536007, 0.04813471809029579, -0.09460009634494781, 0.023945674300193787, -0.055979833006858826, -0.03603723645210266, 0.0063322666101157665, -0.031245524063706398, 0.03351360931992531, 0.002416221657767892, -0.007542060222476721, -0.042073171585798264, 0.03653944283723831, 0.0006919965380802751, 0.007111522369086742, -0.003801315324380994, -0.0352417416870594, -0.03378280624747276, -0.007734328508377075, -0.025438565760850906, 0.08385858684778214, 0.01583108864724636, -0.07279975712299347, -0.014373211190104485, -0.008771682158112526, 0.07277198135852814, -0.03929321467876434, -0.027525408193469048, -0.010116606950759888, 0.034384459257125854, -0.025334307923913002, -0.05546246096491814, -0.010202270932495594, -0.004498254507780075, -0.029851838946342468, -0.024647578597068787, -0.017570484429597855, -0.03115111030638218, 0.01116430014371872, -0.04850359261035919, -0.037705183029174805, -0.03543133661150932, -0.07006099075078964, -0.02106117270886898, 0.040402915328741074, 0.029019387438893318, -0.06145922467112541, 0.030502913519740105, -0.02066607028245926, -0.10575948655605316, -0.02774575725197792, -0.031948022544384, -0.012691495008766651, -0.005082013551145792, -0.006916336715221405, 0.055852651596069336, -0.058095891028642654, -0.07167218625545502, 0.004041128326207399, 0.02127019502222538, 0.02380160614848137, -0.004842790775001049, 0.025129828602075577, -0.031586773693561554, -0.008236370980739594, 0.012577462941408157, 0.07775893062353134, -0.012811831198632717, -0.019591031596064568, 0.00674305809661746, -0.019506879150867462, 0.02115774154663086, 0.011795846745371819, -0.014813228510320187, 0.029816580936312675, 0.040983766317367554, 0.03289854899048805, -0.03486734256148338, -0.006449914071708918, -0.05244796723127365, 0.0005905915750190616, -0.04475298896431923, -0.03541671484708786, 0.0007931160507723689, 0.01998482085764408, 0.023568876087665558, 0.004322347696870565, -0.021416369825601578, 0.004398250952363014, -0.04600542411208153, -0.02857748419046402, -0.014811958186328411, 0.021836454048752785, 0.008790956810116768, 0.03525557741522789, -0.003259960561990738, -0.0802336111664772, 0.033566851168870926, -0.005130262114107609, 0.0016682973364368081, -0.051982391625642776, -0.013882134109735489, -0.027463775128126144, -0.01975526474416256, 0.009550158865749836, 0.030625339597463608, -0.04095378518104553, 0.02739734947681427, 0.030188916251063347, -0.028210749849677086, 0.03857499733567238, -0.024233341217041016, -0.01651565544307232, -0.044832125306129456, 0.033733613789081573, -0.0034398369025439024, -0.010230869986116886, 0.01680847629904747, -0.00008336995233548805, 0.036652371287345886, 0.03275839239358902, 0.00802623387426138, 0.05175386741757393, -0.01222195103764534, 0.005147980060428381, -0.02022201381623745, -0.007335899863392115, -0.038723867386579514, -0.0017849288415163755, -0.02934674546122551, -0.019526971504092216, -0.0019166097044944763, 0.03804381936788559, -0.017669517546892166, -0.025390280410647392, -0.005765923298895359, 0.028931185603141785, -0.05668827146291733, -0.011359302327036858, 0.007811320945620537, -0.008032262325286865, 0.04600433632731438, 0.00018554447160568088, 0.015402222983539104, -0.01283134613186121, -0.02996530570089817, 0.008081906475126743, -0.004479283466935158, -0.027565592899918556, -0.0040408652275800705, -0.018185829743742943, 0.005521245766431093, 0.0034247785806655884, 0.0299833994358778, 0.02086399309337139, 0.009387936443090439, -0.006909325253218412, -0.005825961008667946, 0.006264287978410721, -0.013663950376212597, 0.013939885422587395, 0.03129176050424576, -0.016565894708037376, -0.011607534252107143, -0.0035599085967987776, -0.012540317140519619, -0.013711716048419476, 0.010216937400400639, -0.03871903941035271, -0.0034078604076057673, -0.00384329492226243, -0.06218485161662102, 0.02844490297138691, 0.005297940690070391, 0.011817442253232002, 0.026607565581798553, -0.011581877246499062, -0.0071778679266572, -0.011106904596090317, 0.05522617697715759, 0.053060706704854965, -0.03448856994509697, -0.01328648254275322, 0.021124163642525673, 0.0009520850726403296, -0.002694695256650448, 0.016188539564609528, -0.05317528173327446, -0.023258158937096596, -0.011364296078681946, 0.002967276843264699, -0.005731816403567791, -0.04466291889548302, -0.025601843371987343, -0.014006027020514011, 0.0008490125183016062, 0.008901631459593773, 0.031809449195861816, -0.014247320592403412, -0.020962201058864594, -0.01655237004160881, 0.038580235093832016, -0.010164318606257439, -0.020886896178126335, 0.02475574053823948, -0.008609781973063946, 0.006922371219843626, -0.024305040016770363, 0.03231935203075409, 0.008185905404388905, -0.026277272030711174, -0.013330541551113129, -0.07745363563299179, 0.01571253500878811, -0.013597814366221428, 0.04125095158815384, 0.000681062403600663, 0.02361501008272171, -0.04274626821279526, -0.000987695180810988, -0.023209325969219208, 0.010621159337460995, 0.0033360279630869627, -0.0020593716762959957, 0.022075878456234932, 0.0422339104115963, 0.025653637945652008, 0.02285066992044449, -0.010030369274318218, -0.05326345935463905, 0.049558866769075394, -0.051550399512052536, -0.055938899517059326, 0.00404238048940897, -0.034050218760967255, -0.008581537753343582, 0.02817252092063427, 0.010114881210029125, -0.04575421288609505, 0.048314064741134644, 0.04227490350604057, 0.04097932204604149, 0.08468945324420929, -0.020359307527542114, 0.01891135610640049, -0.022183630615472794, -0.004015257582068443, -0.08871142566204071, -0.0021208086982369423, 0.04784119874238968, 0.020842917263507843, -0.003293972462415695, 0.003383609466254711, -0.012971056625247002, 0.013940599747002125, -0.0696907639503479, -0.03656737133860588, 0.045110829174518585, 0.0008337447652593255, 0.011212460696697235, -0.000794088700786233, -0.04131222516298294, 0.029618892818689346, 0.06645835936069489, -0.044701144099235535, -0.01084577664732933, -0.018042271956801414, 0.05162287876009941, -0.04397967830300331, 0.050300199538469315, -0.026560792699456215, -0.01371322013437748, 0.0786612257361412, 0.01182581577450037, 0.0009433753439225256, 0.020393051207065582, -0.02358352579176426, 0.02559375949203968, 0.03406934440135956, -0.010031512007117271, -0.03555843234062195, 0.0349748358130455, 0.012556974776089191, -0.06321997940540314, 0.03195267543196678, 0.024697763845324516, -0.023149199783802032, -0.04457943141460419, 0.08651375025510788, 0.00977377314120531, -0.05093539506196976, -0.020044580101966858, 0.03572568669915199, -0.0445585697889328, -0.033497318625450134, -0.023769520223140717, -0.0016267223982140422, -0.03203243017196655, 0.060206089168787, -0.02232162095606327, -0.008692228235304356, 0.07312515377998352, -0.01853950135409832, 0.009860368445515633, 0.019433634355664253, 0.08804986625909805, 0.0795615091919899, 0.040285076946020126, -0.007487371563911438, 0.08244798332452774, -0.004645323846489191, -0.03216763585805893, 0.01314607448875904, -0.046941064298152924, -0.04631289839744568, -0.012767722830176353, 0.015360207296907902, 0.06306108087301254, -0.036914318799972534, 0.06212550401687622, -0.040698181837797165, -0.011667270213365555, -0.018891360610723495, -0.006720943376421928, 0.016803795471787453, 0.035058554261922836, 0.02958011068403721, 0.07639653235673904, -0.04091598466038704, -0.017789201810956, 0.018763741478323936, -0.005965404212474823, 0.005473212338984013, 0.0633527860045433, -0.015715228393673897, -0.019727177917957306, 0.009997649118304253, 0.02512090839445591, 0.08380042016506195, -0.0332641564309597, 0.0020542375277727842, -0.008207809180021286, 0.02079223282635212, -0.0036298842169344425, 0.013224980793893337, -0.018013697117567062, -0.008883444592356682, 0.007693075109273195, -0.052493609488010406, -0.02488529123365879, -0.006487911567091942, -0.03873572498559952, 0.02851029857993126, -0.023452814668416977, 0.002290161559358239, -0.01777702383697033, -0.05597170814871788, -0.03573080152273178, -0.032113343477249146, -0.03214265778660774, -0.04348256438970566, -0.0989229828119278, 0.003214449156075716, -0.001002429868094623, -0.007533161900937557, -0.023323435336351395, -0.013772918842732906, -0.009126299060881138, -0.00969021674245596, 0.027829164639115334, -0.0486278310418129, -0.011036419309675694, 0.01745135523378849, 0.010533162392675877, -0.00274104718118906, 0.026204388588666916, 0.06343831866979599, -0.002752188593149185, -0.005733202211558819, -0.036561839282512665, 0.01903826743364334, 0.05780037119984627, 0.02981010638177395, -0.008378160186111927, -0.07355401664972305, 0.008709670975804329, 0.020909346640110016, -0.011566895060241222, -0.07967039942741394, 0.013745090924203396, 0.053839389234781265, 0.042313478887081146, 0.03757016733288765, -0.010627583600580692, -0.009950332343578339, -0.028174756094813347, -0.006854435428977013, 0.008901024237275124, 0.00006407432374544442, 0.03101564757525921, -0.03374438360333443, 0.06635994464159012, 0.046285998076200485, -0.017853669822216034, -0.00583664933219552, -0.0265703983604908, 0.0011329225962981582, -0.0023101111873984337, -0.0452578030526638, -0.040797822177410126, -0.0619160458445549, -0.08433471620082855, -0.026149127632379532, 0.02230229042470455, -0.022557862102985382, -0.025190329179167747, 0.035265903919935226, 0.020768528804183006, 0.009345273487269878, 0.04368509352207184, -0.025485657155513763, 0.04157193377614021, -0.027799757197499275, -0.017365174368023872, -0.025223761796951294, 0.015473001636564732, -0.011500359512865543, 0.02137710526585579, 0.02034357190132141, -0.05619491636753082, -0.0026341050397604704, -0.011950277723371983, 0.025760475546121597, 0.035848576575517654, 0.012169676832854748, 0.030719364061951637 ]
[ -0.07036908715963364, -0.05228698253631592, -0.02505193091928959, -0.040124811232089996, 0.060079675167798996, -0.03960561007261276, -0.04141104966402054, 0.029178448021411896, 0.018922926858067513, 0.003902016906067729, 0.015572091564536095, -0.05670072138309479, -0.016697613522410393, 0.007890474051237106, 0.06208428740501404, -0.029106764122843742, -0.03598494455218315, -0.06885972619056702, -0.0064935702830553055, 0.0338456816971302, -0.032864682376384735, -0.014547929167747498, -0.024464931339025497, -0.04136063903570175, 0.03388778492808342, 0.05308391898870468, 0.0454527921974659, -0.030800726264715195, -0.030139287933707237, -0.2054675668478012, 0.00019582909590099007, 0.0018795948708429933, 0.017179839313030243, -0.009772191755473614, -0.0008114266092889011, 0.03316347301006317, 0.0403314046561718, -0.0027352028992027044, -0.005067402962595224, 0.06170167773962021, -0.0017742449417710304, 0.01201585866510868, -0.0730891153216362, 0.007246862165629864, 0.06303112953901291, 0.014280726201832294, -0.016104290261864662, -0.02752111107110977, -0.012160666286945343, 0.01858448050916195, -0.035856544971466064, 0.003975873813033104, -0.001863210927695036, -0.002907166490331292, 0.01719495840370655, 0.02938203327357769, 0.047196902334690094, 0.06380569189786911, 0.04111994430422783, 0.029805000871419907, -0.0030558991711586714, 0.001331392559222877, -0.12198880314826965, 0.06743258982896805, -0.01202749740332365, 0.011771151795983315, -0.033256545662879944, -0.008232773281633854, 0.005124658811837435, 0.06982261687517166, 0.004208697006106377, -0.004027616232633591, -0.020428882911801338, 0.05026267096400261, 0.014919587410986423, 0.000838344800285995, -0.004947466775774956, 0.011738905683159828, 0.03559602424502373, -0.0496072918176651, -0.03598075360059738, 0.033487942069768906, -0.04273024946451187, -0.003205390414223075, -0.006357724312692881, 0.03071022778749466, -0.03164435550570488, 0.061941735446453094, 0.018743539229035378, 0.05153098702430725, 0.03151019662618637, 0.00957247894257307, 0.05217047035694122, 0.010101177729666233, -0.08267562091350555, -0.00549537967890501, 0.017080672085285187, 0.02051033452153206, 0.012666179798543453, 0.3959607481956482, 0.0028082227800041437, 0.006828180514276028, 0.03948044031858444, 0.08674778044223785, -0.004129355773329735, -0.02288859523832798, -0.0011755971936509013, -0.07478699088096619, 0.017683889716863632, -0.009889724664390087, 0.03178228810429573, -0.012624780647456646, 0.06844224780797958, -0.10745885968208313, 0.013752445578575134, 0.02383102849125862, 0.023452067747712135, 0.040316686034202576, -0.026057904586195946, 0.02873063273727894, -0.01742379181087017, 0.0015299473889172077, 0.03238670527935028, -0.01676912046968937, 0.03971008211374283, 0.035616032779216766, 0.03492768108844757, 0.036517612636089325, 0.044218529015779495, 0.01955549791455269, 0.075110524892807, 0.02327049896121025, -0.07555782794952393, 0.03816404566168785, -0.004576025065034628, -0.007304936181753874, 0.025550300255417824, -0.0349758043885231, 0.00493810698390007, -0.005054689943790436, -0.035324499011039734, -0.037857234477996826, 0.05114036425948143, -0.0004232051724102348, -0.04925056919455528, 0.12180785089731216, 0.011123372241854668, -0.04714476317167282, -0.015962252393364906, -0.03660183399915695, -0.028013959527015686, 0.03395998850464821, 0.03596673160791397, -0.08515402674674988, 0.017973830923438072, 0.020433828234672546, 0.0836372822523117, -0.004492098465561867, -0.09335040301084518, -0.00893459189683199, -0.02802141010761261, -0.03789469599723816, -0.037915948778390884, 0.05380326136946678, 0.053491245955228806, -0.13291320204734802, 0.003182501532137394, 0.03307710587978363, 0.02387036196887493, -0.06702551245689392, 0.01503030490130186, 0.015178034082055092, -0.023021215572953224, -0.028645869344472885, 0.09324059635400772, 0.0035411554854363203, -0.023487500846385956, -0.015559379011392593, 0.07034334540367126, 0.019736099988222122, -0.0037737940438091755, -0.009057631716132164, -0.017902063205838203, -0.0009266952984035015, -0.07318998128175735, -0.06318142265081406, -0.06720540672540665, 0.012079947628080845, -0.021899305284023285, -0.03532760590314865, 0.0008066028822213411, -0.021500160917639732, -0.0469752699136734, 0.07837589085102081, -0.05025571212172508, -0.02438986487686634, -0.019267993047833443, -0.0017019191291183233, -0.03391912579536438, -0.02678264118731022, 0.02280726097524166, -0.023028090596199036, -0.005332288797944784, 0.02598622627556324, -0.03287900239229202, 0.025393372401595116, 0.04464638605713844, -0.03410346433520317, 0.07485847175121307, 0.027176422998309135, -0.03677919879555702, -0.011536178179085255, -0.007675376255065203, -0.0025337825063616037, 0.00044554355554282665, -0.034748420119285583, -0.03505822643637657, -0.03776419535279274, 0.007280276622623205, 0.04648606851696968, -0.01951105333864689, -0.0006927515496499836, -0.02368888631463051, -0.34290453791618347, -0.021926220506429672, -0.007130950223654509, 0.002921466715633869, 0.025540577247738838, -0.03880387917160988, -0.0035725098568946123, -0.03439849987626076, 0.04249510169029236, -0.011059769429266453, 0.11654351651668549, 0.009239062666893005, 0.017928222194314003, -0.10909302532672882, 0.012962926179170609, 0.055250875651836395, -0.0027507622726261616, -0.010736796073615551, -0.019383303821086884, -0.016770150512456894, -0.011807414703071117, -0.0586552694439888, -0.006122329272329807, -0.046510715037584305, -0.021330231800675392, -0.025126300752162933, 0.12458306550979614, 0.013932290486991405, 0.03285670280456543, -0.04694797471165657, 0.031449802219867706, -0.003220318118110299, -0.0374300554394722, -0.09042228013277054, 0.001896657282486558, -0.02937179058790207, 0.0590825080871582, 0.03355466201901436, -0.017288966104388237, -0.0314747616648674, -0.027446234598755836, 0.00023604644229635596, -0.01954878494143486, -0.02767784707248211, -0.051303450018167496, 0.03146231919527054, -0.013400017283856869, -0.025515293702483177, 0.007457689382135868, 0.056109100580215454, 0.010519557632505894, 0.03847074136137962, 0.005076854955404997, 0.02822410687804222, -0.00004523349707596935, -0.021003445610404015, -0.07548515498638153, -0.00204568263143301, 0.007285464555025101, 0.0362711176276207, -0.02226036787033081, 0.03777706250548363, 0.018396463245153427, -0.08466410636901855, 0.02452566847205162, 0.021351085975766182, -0.008491708897054195, -0.04374614357948303, 0.03691493719816208, -0.015010814182460308, -0.009682905860245228, 0.09444461017847061, -0.020253801718354225, 0.002081304555758834, 0.061261679977178574, 0.02259211428463459, 0.004955651238560677, 0.04184248670935631, 0.0583956353366375, 0.024821817874908447, -0.003244145540520549, -0.028242409229278564, 0.04283468797802925, -0.0076177483424544334, -0.016977401450276375, 0.015544301830232143, 0.001331270788796246, -0.03676958754658699, 0.05104406177997589, 0.014792161993682384, -0.03972921893000603, -0.002077145967632532, -0.013656127266585827, -0.039351318031549454, 0.05750245600938797, -0.01886097900569439, -0.2633292078971863, 0.05228275805711746, 0.061038315296173096, 0.06953007727861404, -0.007618717383593321, -0.020143944770097733, 0.0058320206589996815, -0.02755049802362919, -0.010098994709551334, -0.001993156038224697, 0.016724983230233192, 0.05563759803771973, -0.004242507740855217, 0.02758144401013851, -0.01085287518799305, 0.006433264818042517, 0.03579309955239296, 0.010385090485215187, 0.026197943836450577, -0.005628029350191355, 0.04799872264266014, -0.02748488262295723, 0.15127794444561005, 0.031177958473563194, 0.01617623306810856, 0.023791352286934853, -0.027786962687969208, 0.007581072393804789, 0.037938907742500305, -0.010765994898974895, -0.02983005717396736, 0.0070619359612464905, 0.011096864938735962, 0.03418317064642906, 0.031095411628484726, -0.05378693342208862, -0.04073628783226013, 0.051329974085092545, 0.006371856667101383, -0.03494146838784218, 0.014998332597315311, 0.006971396971493959, -0.0544855073094368, 0.02305755950510502, 0.09506037831306458, -0.03567023202776909, -0.02303047478199005, -0.028405236080288887, -0.07617133855819702, -0.012590073049068451, -0.036089856177568436, -0.06611697375774384, -0.055330533534288406, 0.009072203189134598, -0.0028120065107941628, 0.0696001648902893, 0.022041235119104385, -0.024950960651040077, 0.043498653918504715, -0.0010502630611881614, -0.008615044876933098, -0.04062463343143463, 0.12785080075263977, -0.007943286560475826, 0.026805851608514786 ]
[ 0.0516311414539814, 0.03869252651929855, -0.004632018506526947, 0.03772087022662163, -0.035010602325201035, 0.012758956290781498, -0.03785032406449318, 0.005739874206483364, -0.015028122812509537, -0.013015702366828918, -0.029538223519921303, 0.025436468422412872, 0.007685599848628044, -0.0002447353908792138, 0.03068464621901512, -0.006344989407807589, 0.010797206312417984, -0.00977901928126812, 0.07882912456989288, 0.0004950640723109245, -0.022266026586294174, 0.015402131713926792, 0.02439241297543049, 0.00017263114568777382, -0.006936396937817335, 0.04202502965927124, -0.059584811329841614, 0.014115091413259506, 0.02477959170937538, -0.11797595024108887, 0.007855948060750961, -0.020301278680562973, -0.012520087882876396, 0.011647564359009266, -0.02327556535601616, 0.008907378651201725, -0.01304647233337164, 0.01201502326875925, -0.030039571225643158, 0.03302602097392082, 0.012178817763924599, -0.013886128552258015, -0.01319163292646408, 0.014488044194877148, 0.00038540249806828797, -0.009471436962485313, 0.003338201204314828, -0.013184879906475544, -0.0038295460399240255, -0.00311799393966794, -0.04209040477871895, -0.03174464404582977, -0.049095895141363144, -0.01887710765004158, 0.009963234886527061, 0.0001917652552947402, -0.03121151030063629, 0.004883080255240202, 0.03146539255976677, -0.0523139126598835, 0.06341244280338287, 0.023873792961239815, -0.044929876923561096, -0.020036660134792328, -0.00036638363962993026, -0.027005473151803017, 0.011764668859541416, -0.005130712874233723, -0.0026878484059125185, 0.015656964853405952, -0.005967021454125643, 0.03873532637953758, -0.03938748314976692, -0.025301380082964897, -0.055764976888895035, 0.0008989544003270566, 0.040366560220718384, -0.020491978153586388, -0.018609771504998207, -0.012929207645356655, -0.010996508412063122, 0.011362575925886631, -0.049064602702856064, 0.026298345997929573, -0.025043629109859467, 0.02558973990380764, -0.01033151987940073, 0.009052214212715626, 0.024112511426210403, -0.029818011447787285, -0.027673523873090744, 0.001959748798981309, -0.025522617623209953, 0.001001786789856851, -0.07081721723079681, -0.0025141965597867966, -0.0006183814839459956, 0.009047579020261765, 0.011647673323750496, 0.786738395690918, 0.003559943288564682, -0.03248489648103714, -0.022623663768172264, 0.035321883857250214, 0.05701989307999611, 0.023082587867975235, 0.01089874841272831, -0.025870688259601593, -0.0006917936843819916, 0.00010059951455332339, 0.007773079443722963, 0.03218584880232811, 0.01552592497318983, 0.023505527526140213, 0.04696734622120857, 0.06553437560796738, 0.02762107364833355, 0.027546677738428116, 0.01628418080508709, 0.03184303268790245, -0.003793241223320365, 0.014313803054392338, 0.013634876348078251, -0.03221026062965393, -0.012254221364855766, -0.18193328380584717, 0.0069760726764798164, -6.256151381757083e-33, 0.02181454747915268, -0.021143104881048203, 0.09517594426870346, -0.004978417418897152, 0.02769678644835949, -0.0017598222475498915, -0.04658888652920723, -0.039094701409339905, 0.038135360926389694, -0.034169573336839676, -0.04842622950673103, 0.015379789285361767, 0.025536196306347847, 0.010633652098476887, 0.026049796491861343, -0.04179266095161438, 0.03966164216399193, 0.025438683107495308, 0.03699684888124466, -0.011399105191230774, 0.013600635342299938, 0.004398053977638483, -0.009176005609333515, 0.05049588903784752, 0.0028884559869766235, 0.03871302679181099, 0.0355837382376194, -0.0014532252680510283, 0.012285194359719753, -0.042139358818531036, -0.06235527992248535, 0.014449442736804485, -0.022146375849843025, -0.03258050978183746, 0.023212041705846786, -0.0647667795419693, -0.07177238911390305, -0.0005665667122229934, -0.009704471565783024, -0.0731465294957161, -0.031371332705020905, -0.002278083236888051, -0.031052082777023315, -0.0377105288207531, -0.051118530333042145, -0.008576097898185253, 0.001884686527773738, 0.03539334610104561, -0.008418972603976727, 0.01778961718082428, -0.004287420306354761, -0.0005665258504450321, -0.011163000948727131, -0.006033474579453468, -0.02992543950676918, 0.015849865972995758, 0.059745196253061295, 0.03470465913414955, 0.004248407203704119, 0.02924262546002865, 0.05675661563873291, -0.010881762951612473, 0.024456782266497612, 0.027678096666932106, 0.04014609009027481, 0.005718187894672155, -0.009184165857732296, 0.03430008143186569, 0.010110610164701939, 0.03989918529987335, -0.05897214263677597, 0.034138355404138565, -0.015595178119838238, -0.03733270987868309, 0.04414012283086777, -0.04032665863633156, 0.02922007255256176, -0.004897360224276781, 0.01731114462018013, 0.024891041219234467, -0.02907511219382286, -0.055269476026296616, 0.006338600069284439, -0.03666209429502487, -0.021864652633666992, -0.019152013584971428, 0.04595830664038658, 0.02845168113708496, -0.02673172764480114, 0.04443025961518288, 0.022327769547700882, 0.02734263613820076, 0.003638260765001178, 0.0023985805455595255, -0.008712681010365486, 5.944086284288567e-33, 0.00873381644487381, 0.014796791598200798, 0.005681368988007307, 0.0034754001535475254, 0.04481108859181404, -0.0013276939280331135, 0.01295519806444645, 0.020340457558631897, -0.0584682896733284, 0.04497600719332695, -0.014280466362833977, -0.04651397466659546, -0.04058545082807541, 0.032503511756658554, 0.08083334565162659, 0.0025793397799134254, 0.03711562231183052, -0.008662975393235683, -0.0389447882771492, -0.001160288811661303, -0.02863420359790325, 0.038768038153648376, -0.018362902104854584, 0.007209992501884699, 0.07206238806247711, 0.004107663873583078, 0.031382352113723755, -0.004485330078750849, -0.038624357432127, 0.0003558203170541674, 0.0031751664355397224, -0.06368088722229004, -0.030319880694150925, -0.02840748243033886, -0.0005978301051072776, 0.01492191944271326, 0.0022594924084842205, -0.004122007638216019, 0.025000663474202156, -0.0030807077419012785, 0.05173613876104355, 0.0375208742916584, -0.03455730900168419, 0.04880181699991226, 0.015121450647711754, 0.051345545798540115, -0.018219180405139923, 0.034096866846084595, -0.04154151305556297, 0.006815949454903603, 0.016990359872579575, 0.006979657337069511, -0.0011357867624610662, 0.013783070258796215, 0.025984711945056915, -0.03815307095646858, 0.003939186688512564, 0.018046362325549126, -0.02257063053548336, -0.0228160060942173, -0.03754789009690285, -0.02247137390077114, -0.026413097977638245, 0.006146554369479418, -0.0211472325026989, -0.04765551537275314, -0.033246297389268875, -0.025975460186600685, -0.03615046665072441, 0.013611833564937115, 0.01003732904791832, -0.019133854657411575, -0.02724488265812397, 0.03102193959057331, -0.004907057620584965, -0.006504541728645563, -0.025666559115052223, 0.024956732988357544, -0.05015743523836136, 0.01694500260055065, 0.02409973181784153, 0.0008016261272132397, 0.045140936970710754, 0.01258461456745863, -0.01753251440823078, 0.032445281744003296, -0.047376085072755814, 0.008112247101962566, 0.022558514028787613, 0.011625424027442932, 0.026078440248966217, -0.02087424136698246, -0.04299189895391464, 0.03768988698720932, 0.0019671637564897537, -1.1822457679500076e-8, -0.05016692355275154, 0.022237084805965424, 0.01610599458217621, 0.013338967226445675, 0.019406987354159355, 0.01617896556854248, 0.0048456089571118355, 0.012218300253152847, 0.02068532630801201, 0.03388068079948425, 0.03806385397911072, -0.06126708909869194, 0.02483510971069336, 0.0010087988339364529, -0.02246950753033161, 0.0015804115682840347, 0.004700818099081516, 0.0006129864486865699, 0.037753500044345856, -0.011310501024127007, 0.008762702345848083, -0.008691522292792797, -0.008636084385216236, 0.017814703285694122, 0.015384686179459095, -0.015117036178708076, 0.01221239473670721, -0.07729356735944748, -0.0010940965730696917, -0.012502661906182766, 0.025163467973470688, -0.03826415538787842, -0.006956890691071749, -0.0007627098239026964, -0.06959937512874603, -0.038853634148836136, 0.04900745674967766, 0.013172367587685585, 0.0039734733290970325, 0.04549107328057289, -0.016589978709816933, 0.012313793413341045, 0.0047279177233576775, -0.037369050085544586, -0.05124782770872116, 0.03481157124042511, -0.019968558102846146, -0.023718541488051414, 0.014491036534309387, -0.06909888237714767, 0.008407051675021648, 0.009892143309116364, 0.0026515796780586243, 0.022670475766062737, 0.026606425642967224, 0.011463310569524765, -0.010461858473718166, -0.03260244056582451, -0.03679319843649864, -0.03240523487329483, 0.0334421806037426, 0.007693798281252384, -0.03827407583594322, -0.03379204496741295 ]
neo4j-querying-strava-graph-py2neo
https://markhneedham.com/blog/2018/06/15/neo4j-querying-strava-graph-py2neo
false
2018-06-12 05:30:21
Neo4j: Building a graph of Strava activities
[ "neo4j", "cypher", "apoc", "strava" ]
[ "Neo4j" ]
In my https://markhneedham.com/blog/2018/06/05/neo4j-apoc-loading-data-strava-paginated-json-api/[last post^] I showed how to import activities from Strava's API into Neo4j using only the APOC library, but that was only part of the graph so I thought I'd share the rest of what I've done. == The Graph Model In the previous post I showed how to import nodes with `Run` label, but there are some other pieces of data that I wanted to import as well. `Segments` are member created portions of a road where users can compete for time. A run can have `SegmentEfforts` on `Segments` where a segment effort will indicate how long it took to complete that segment. Each run also has 'best efforts' where Strava indicates a predicted time for different distances (e.g. 1km, 1 mile, 2 miles, 5km etc) In the graph model we'll create `DistanceEffort` nodes for each run and a `Distance` node to represent each distance. This is what our graph should look like. This diagram was created using http://www.apcjones.com/arrows/#[Alistair Jones' Arrows tool^] in case you want to create your own. image::{{<siteurl>}}/uploads/2018/06/strava-graph.svg[] == Create constraints Before we import any data we'll set up some constraints so we don't end up with duplicate nodes. When we create a constraint on a `(label, property)` pair an index is also created so it'll help speed up the import process as well. [source, cypher] ---- CREATE CONSTRAINT ON (d:Distance) ASSERT d.name is UNIQUE; CREATE CONSTRAINT ON (r:Run) ASSERT r.id is UNIQUE; CREATE CONSTRAINT ON (d:DistanceEffort) ASSERT d.id is UNIQUE; CREATE CONSTRAINT ON (s:SegmentEffort) ASSERT s.id is UNIQUE; CREATE CONSTRAINT ON (s:Segment) ASSERT s.id is UNIQUE; ---- == Importing data First we'll create a parameter that contains our Strava token for interacting with their API. You can generate a token via the https://www.strava.com/settings/api['Create and Manage Your App'^] page. [source, cypher] ---- :param stravaToken => "Bearer <strava-token>"; ---- Now we're ready to import some data! The data we want to import comes from several different API endpoints, but we'll start with the `Run` nodes. We can get these from the http://developers.strava.com/docs/reference/#api-Activities-getLoggedInAthleteActivities[List Athlete Activities^] part of the API. This is a sample of what the response from that endpoint looks like: [source, json] ---- [ { "name": "Morning Run", "distance": 3465.8, "moving_time": 1375, "elapsed_time": 1420, "total_elevation_gain": 0, "type": "Run", "id": 214959724, "start_date": "2014-11-03T06:15:07Z", "start_date_local": "2014-11-03T06:15:07Z", "timezone": "(GMT+00:00) Europe/London", "utc_offset": 0, "average_speed": 2.521, "max_speed": 6.9, "has_heartrate": false, "elev_high": 10, "elev_low": 6, }, ] ---- We will use the `apoc.load.jsonParams` procedure from the https://neo4j-contrib.github.io/neo4j-apoc-procedures/[APOC^] library to help us import this data. My colleague Jennifer Reif has https://medium.com/neo4j/explore-new-worlds-adding-plugins-to-neo4j-26e6a8e5d37e[written a blog post^] explaining how to install APOC and other plugins so check that out if you haven't used APOC yet. If we want to load the first 30 activities we could write the following query: [source, cypher] ---- WITH 'https://www.strava.com/api/v3/athlete/activities' AS uri CALL apoc.load.jsonParams(uri, {Authorization: $stravaToken}, null) YIELD value MERGE (run:Run {id: value.id}) SET run.distance = toFloat(value.distance), run.startDate = datetime(value.start_date_local), run.elapsedTime = duration({seconds: value.elapsed_time}), run.movingTime = duration({seconds: value.moving_time}), run.name = value.name, run.totalElevationGain = toInteger(value.total_elevation_gain), run.elevationHigh = toFloat(value.elev_high), run.elevationLow = toFloat(value.elev_low), run.averageSpeed = toFloat(value.average_speed), run.maximumSpeed = toFloat(value.max_speed) ---- We store the date using the new DateTime data type introduced in Neo4j 3.4 and the moving and elapsed times using the Duration data type. We could increase the number of activities from 30 to a maximum of 200 by setting the `per_page` parameter, but I have more activities than that so we're going to need to do some pagination. Luckily this API endpoint lets us pass in an `after` parameter which defines `An epoch timestamp to use for filtering activities that have taken place after a certain time`. We'll use this to help us paginate through the API and get all our activities since there are more of those than will be returned by one API call. As I explained in https://markhneedham.com/blog/2018/06/05/neo4j-apoc-loading-data-strava-paginated-json-api/[my previous post^], it took me a while to figure out how to handle the pagination using only APOC, but I eventually realised that the `apoc.periodic.commit` procedure would do the trick. The following query will import all our runs: [source, cypher] ---- CALL apoc.periodic.commit(" OPTIONAL MATCH (run:Run) WITH run ORDER BY run.startDate DESC LIMIT 1 WITH coalesce(run.startDate.epochSeconds, 0) AS after WITH 'https://www.strava.com/api/v3/athlete/activities?after=' + after AS uri CALL apoc.load.jsonParams(uri, {Authorization: $stravaToken}, null) YIELD value MERGE (run:Run {id: value.id}) SET run.distance = toFloat(value.distance), run.startDate = datetime(value.start_date_local), run.elapsedTime = duration({seconds: value.elapsed_time}), run.movingTime = duration({seconds: value.moving_time}), run.name = value.name, run.totalElevationGain = toInteger(value.total_elevation_gain), run.elevationHigh = toFloat(value.elev_high), run.elevationLow = toFloat(value.elev_low), run.averageSpeed = toFloat(value.average_speed), run.maximumSpeed = toFloat(value.max_speed) RETURN CASE WHEN count(*) < 30 THEN 0 ELSE count(*) END AS count ", {stravaToken: $stravaToken}); ---- Now we need to import the distance and segment efforts for each run. This data is available via the http://developers.strava.com/docs/reference/#api-Activities-getActivityById[Get Activity^] endpoint, and we can use the `apoc.periodic.iterate` procedure to help iterate through all our runs. This is a sample of what the response from that endpoint looks like: [source, json] ---- { "name": "Morning Run", "distance": 10884.9, "moving_time": 2918, "elapsed_time": 2918, "total_elevation_gain": 107, "type": "Run", "workout_type": 0, "id": 1620188065, "start_date": "2018-06-06T04:18:47Z", "start_date_local": "2018-06-06T05:18:47Z", "timezone": "(GMT+00:00) Europe/London", "utc_offset": 3600, "calories": 862.6, "segment_efforts": [ { "id": 40571736882, "resource_state": 2, "name": "Stanley to Bridge", "elapsed_time": 82, "moving_time": 82, "start_date": "2018-06-06T04:19:04Z", "start_date_local": "2018-06-06T05:19:04Z", "distance": 322, "segment": { "id": 17875143, "resource_state": 2, "name": "Stanley to Bridge", "activity_type": "Run", "distance": 322, "average_grade": 0, "maximum_grade": 2.9, "elevation_high": 71, "elevation_low": 69, "climb_category": 0, }, }, ], "best_efforts": [ { "id": 3497998232, "resource_state": 2, "name": "400m", "elapsed_time": 92, "moving_time": 93, "start_date": "2018-06-06T05:02:29Z", "start_date_local": "2018-06-06T06:02:29Z", "distance": 400, "start_index": 2494, "end_index": 2586, "pr_rank": null, "achievements": [] }, { "id": 3497998233, "resource_state": 2, "name": "1/2 mile", "elapsed_time": 190, "moving_time": 191, "start_date": "2018-06-06T05:01:23Z", "start_date_local": "2018-06-06T06:01:23Z", "distance": 805, "start_index": 2431, "end_index": 2618, "pr_rank": 1, }, ], } ---- The following query imports this data into our graph: [source, cypher] ---- CALL apoc.periodic.iterate( "MATCH (run:Run) RETURN run", "WITH run, 'https://www.strava.com/api/v3/activities/' + run.id + '?include_all_efforts=true' AS uri CALL apoc.load.jsonParams(uri,{Authorization:$stravaToken},null) YIELD value WITH run, value UNWIND value.best_efforts AS bestEffort MERGE (distance:Distance {name: bestEffort.name}) ON CREATE SET distance.distance = toFloat(bestEffort.distance) MERGE (effort:DistanceEffort {id: bestEffort.id}) ON CREATE SET effort.elapsedTime = duration({seconds: bestEffort.elapsed_time}), effort.movingTime = duration({seconds: bestEffort.moving_time}) MERGE (effort)-[:DISTANCE]->(distance) MERGE (run)-[:DISTANCE_EFFORT]->(effort) WITH run, value, count(*) AS count UNWIND value.segment_efforts AS segmentEffort MERGE (segment:Segment {id: segmentEffort.segment.id}) ON CREATE SET segment.name = segmentEffort.segment.name, segment.distance = toFloat(segmentEffort.segment.distance) MERGE (effort:SegmentEffort {id: segmentEffort.id}) ON CREATE SET effort.elapsedTime = duration({seconds: segmentEffort.elapsed_time}), effort.movingTime = duration({seconds: segmentEffort.moving_time}) MERGE (effort)-[:SEGMENT]->(segment) MERGE (run)-[:SEGMENT_EFFORT]->(effort)", {batchSize: 10, parallel:false, params: {stravaToken: $stravaToken}}); ---- We already have our `Run` nodes created so we iterate through those and call the API endpoint one time for each run. We then use the `UNWIND` clause to process the arrays contained in the JSON response for `best_efforts` and `segment_efforts` and connect those to the `Run` node. That's the main structure of the graph, but I also wanted to import some more detail about the segments which was available from the http://developers.strava.com/docs/reference/#api-Segments-getSegmentById[Get Segment^] endpoint. [source, cypher] ---- CALL apoc.periodic.iterate( "MATCH (segment:Segment) RETURN segment", "WITH segment, 'https://www.strava.com/api/v3/segments/' + segment.id AS uri CALL apoc.load.jsonParams(uri,{Authorization:$stravaToken},null) YIELD value WITH segment, value SET segment.averageGrade = toFloat(value.average_grade), segment.maximumGrade = toFloat(value.maximum_grade), segment.totalElevationGain = toFloat(value.total_elevation_gain), segment.elevationHigh = toFloat(value.elevation_high), segment.elevationLow = toFloat(value.elevation_low) ", {batchSize: 10, parallel:false, params: {stravaToken: $stravaToken}}); ---- == What have we imported? Now that we've got the data imported let's write a few queries to check how much data we've imported. == How many runs are there? [source, cypher] ---- MATCH (:Run) RETURN count(*) ---- [source, text] ---- ╒══════════╕ │"count(*)"│ ╞══════════╡ │604 │ └──────────┘ ---- == How many segments? [source, cypher] ---- MATCH (:Segment) RETURN count(*) ---- [source, text] ---- ╒══════════╕ │"count(*)"│ ╞══════════╡ │382 │ └──────────┘ ---- == How many efforts on those segments? [source, cypher] ---- MATCH (:SegmentEffort) RETURN count(*) ---- [source, text] ---- ╒══════════╕ │"count(*)"│ ╞══════════╡ │2913 │ └──────────┘ ---- == Which segment has the most efforts? [source, cypher] ---- MATCH (segment:Segment) RETURN segment.name AS segment, size((segment)<-[:SEGMENT]-()) AS efforts ORDER BY efforts DESC LIMIT 5 ---- [source, text] ---- ╒══════════════════════╤═════════╕ │"segment" │"efforts"│ ╞══════════════════════╪═════════╡ │"Lap of the track" │348 │ ├──────────────────────┼─────────┤ │"York to Vet" │201 │ ├──────────────────────┼─────────┤ │"Stanley to Bridge" │158 │ ├──────────────────────┼─────────┤ │"Bridge Road (down)" │83 │ ├──────────────────────┼─────────┤ │"Overton to Beresford"│67 │ └──────────────────────┴─────────┘ ---- These are just a few exploratory queries we can do on this dataset. In my next post I'll show how to query some more complex patterns.
Learn how to paginate through JSON APIs and load the data into Neo4j using only APOC's Load JSON procedure.
null
[ 0.016236111521720886, -0.013485748320817947, -0.021849732846021652, 0.029879646375775337, 0.08781643211841583, 0.0036443122662603855, 0.024552682414650917, 0.04461217671632767, -0.0039003505371510983, -0.005555220879614353, -0.015511585399508476, -0.031276505440473557, -0.07189000397920609, 0.008819367736577988, 0.008431749418377876, 0.056389566510915756, 0.06124021112918854, 0.014453737065196037, 0.015201485715806484, 0.007382635027170181, 0.02830525115132332, 0.026340031996369362, 0.021577885374426842, 0.03283291310071945, 0.03336971253156662, -0.005829859524965286, 0.011355483904480934, -0.0063808453269302845, -0.0405590645968914, -0.0023951467592269182, 0.045217398554086685, -0.01825665682554245, 0.02759828045964241, -0.021814320236444473, 0.04634428024291992, 0.006466188933700323, -0.038662947714328766, -0.01997472532093525, -0.024769430980086327, -0.007722168695181608, -0.0614205040037632, 0.031843151897192, -0.048152342438697815, 0.011451531201601028, -0.03186723217368126, 0.0014616077532991767, -0.04384762793779373, 0.02501298114657402, -0.005096774082630873, -0.006926313508301973, -0.08426140993833542, 0.022016242146492004, -0.030907124280929565, 0.04071277007460594, 0.006291169207543135, 0.04653152823448181, 0.013003937900066376, -0.08057119697332382, 0.04456959292292595, -0.012998197227716446, 0.016253164038062096, 0.013060863129794598, -0.004010762088000774, 0.012518515810370445, -0.015887675806879997, -0.06081556901335716, 0.013267585076391697, 0.05633776634931564, -0.04209812358021736, -0.010913778096437454, -0.00842893123626709, 0.005323890596628189, 0.00806141085922718, 0.01651659980416298, -0.0059529566206038, -0.055724915117025375, -0.002380882855504751, 0.05373752862215042, 0.020702866837382317, 0.042054641991853714, 0.01949894428253174, 0.010025260969996452, 0.0018508790526539087, 0.026628008112311363, 0.0013955904869362712, -0.030874302610754967, -0.03162604942917824, -0.03701140731573105, -0.054649628698825836, 0.052357062697410583, -0.0031785250175744295, -0.04191966727375984, 0.0045418282970786095, -0.0126417838037014, -0.00027464391314424574, -0.0039686583913862705, -0.0034181817900389433, -0.013339642435312271, -0.0021203085780143738, -0.013717983849346638, -0.027304066345095634, -0.018525198101997375, -0.015923138707876205, 0.03585253283381462, -0.059289008378982544, -0.03333371505141258, -0.03073878213763237, -0.01868986338376999, 0.029578328132629395, -0.013239465653896332, -0.05823401361703873, 0.00045001815306022763, -0.009755214676260948, 0.006093071307986975, -0.06794969737529755, 0.055696602910757065, 0.00392363965511322, -0.016661709174513817, -0.024714509025216103, 0.011634898371994495, 0.041775986552238464, 0.03441261872649193, 0.015975194051861763, 0.06745754927396774, -0.01500757783651352, 0.04955453798174858, -0.01895885169506073, 0.030148059129714966, -0.02664976753294468, -0.0451529435813427, -0.03374631702899933, 0.048962172120809555, -0.008675684221088886, 0.005127266980707645, 0.004683847073465586, -0.029986094683408737, -0.006398017518222332, 0.03537102788686752, 0.04773716256022453, 0.008430215530097485, 0.014018057845532894, -0.05262597277760506, 0.03232504799962044, 0.007517643738538027, 0.016825608909130096, 0.023875746876001358, -0.01936088129878044, -0.051146313548088074, -0.03724898397922516, -0.01323535293340683, 0.015902748331427574, 0.030799362808465958, 0.055548086762428284, -0.024907007813453674, -0.001396307721734047, 0.11208181828260422, 0.04397238418459892, 0.0028525744564831257, -0.028055546805262566, 0.018047455698251724, 0.04519790783524513, 0.03036794625222683, 0.007198626175522804, 0.06140159070491791, -0.014215728268027306, -0.010738660581409931, 0.003215405624359846, 0.061530664563179016, -0.025455931201577187, 0.007182246074080467, -0.019616231322288513, -0.06589188426733017, 0.06295248866081238, -0.06809405982494354, -0.025046711787581444, 0.06310568004846573, 0.05788300186395645, 0.008329907432198524, 0.013051786459982395, 0.005475714337080717, -0.07022425532341003, 0.05839187651872635, 0.006136702373623848, 0.0037928693927824497, 0.013108148239552975, -0.00515601085498929, 0.0702354907989502, 0.004063721746206284, -0.015447554178535938, 0.021899914368987083, -0.06702831387519836, -0.0730665922164917, -0.0067924996837973595, -0.018350820988416672, 0.09215802699327469, -0.040443871170282364, 0.010688631795346737, 0.05974695459008217, -0.008658100850880146, 0.047376200556755066, 0.02097010426223278, -0.008681450970470905, 0.037223368883132935, -0.08224349468946457, -0.04523374140262604, 0.05733783543109894, 0.02874561958014965, -0.01575690321624279, -0.046574968844652176, 0.02067337930202484, -0.024603812023997307, 0.012567136436700821, 0.02985704503953457, -0.025254743173718452, 0.02776254713535309, -0.006790358107537031, 0.037028323858976364, 0.009749436751008034, 0.01497128140181303, -0.027892617508769035, 0.02850838005542755, 0.012994742020964622, -0.04428466409444809, -0.023539230227470398, -0.02921396680176258, 0.09458434581756592, 0.05130171775817871, -0.024263229221105576, -0.06973793357610703, 0.02879132330417633, 0.01316750142723322, -0.027490200474858284, 0.008992575109004974, -0.02558751590549946, -0.003252958646044135, -0.0470341295003891, -0.023776128888130188, -0.009595423005521297, -0.017243778333067894, -0.03412894904613495, 0.02108207531273365, 0.05398719385266304, -0.024777859449386597, 0.047864560037851334, 0.0017418774077668786, 0.0024870869237929583, 0.013459122739732265, -0.012049330398440361, -0.06749453395605087, 0.020384162664413452, -0.01330539770424366, -0.011969327926635742, 0.07983927428722382, 0.01422396581619978, -0.023013250902295113, -0.04935048148036003, -0.007047654595226049, 0.007517569698393345, 0.054749418050050735, 0.05508410930633545, 0.002236258937045932, 0.042072102427482605, -0.03779573738574982, 0.016884153708815575, -0.031847190111875534, -0.061511024832725525, -0.06419512629508972, -0.021910464391112328, 0.025355184450745583, 0.023143868893384933, 0.025378230959177017, -0.005225622560828924, 0.05305548384785652, -0.017192866653203964, 0.02025633677840233, 0.0035148037131875753, 0.019047699868679047, 0.0058723511174321175, -0.004481608048081398, 0.006330469157546759, -0.03237186744809151, 0.05857359245419502, -0.05874065309762955, -0.02943221665918827, 0.012043877504765987, -0.05622498318552971, 0.06516268104314804, -0.050784092396497726, -0.029807770624756813, 0.03357989341020584, 0.03545915335416794, 0.05889687314629555, -0.005837884731590748, 0.008724004961550236, 0.08583585172891617, 0.025139780715107918, 0.026644529774785042, -0.0037531580310314894, -0.01005393173545599, 0.04969887062907219, -0.013282084837555885, 0.04715420678257942, 0.039239879697561264, -0.019537441432476044, 0.011873139999806881, -0.01747964322566986, -0.009727861732244492, -0.027938880026340485, -0.28079962730407715, 0.05045591667294502, -0.04916045814752579, -0.04985741898417473, -0.008672193624079227, -0.019432125613093376, 0.01521546021103859, -0.014306286349892616, -0.03664925694465637, 0.011484654620289803, 0.0022954202722758055, -0.03980562090873718, -0.012936781160533428, 0.06385886669158936, 0.022205492481589317, 0.036407653242349625, -0.028652694076299667, -0.05286542326211929, 0.013098844327032566, 0.05759171023964882, 0.004177044611424208, -0.05833518132567406, -0.01713521219789982, 0.01789696514606476, 0.020955707877874374, 0.014657707884907722, -0.10035353899002075, 0.03505481779575348, -0.03586128354072571, -0.03287373483181, -0.009420270100235939, -0.02999652363359928, 0.028054239228367805, -0.026293354108929634, -0.019100839272141457, -0.04156064987182617, 0.043902914971113205, -0.0008194848196581006, 0.008206672966480255, 0.009650702588260174, -0.032996270805597305, -0.04380957782268524, 0.01401773001998663, -0.01032883021980524, 0.07074345648288727, 0.013697020709514618, -0.06970896571874619, 0.002734814304858446, -0.011853238567709923, 0.07007477432489395, -0.00827097613364458, -0.03176024556159973, -0.029309866949915886, 0.024555984884500504, -0.010519537143409252, -0.025739071890711784, 0.006536475382745266, -0.02857440523803234, -0.06649531424045563, -0.018658746033906937, -0.01475145760923624, -0.04096135497093201, 0.013309133239090443, -0.04263833537697792, -0.03141287341713905, -0.04191550239920616, -0.07967951893806458, -0.026762302964925766, 0.041842084378004074, 0.03342611342668533, -0.04119865596294403, 0.051106151193380356, -0.02695457823574543, -0.10279880464076996, -0.03926844522356987, -0.03769023343920708, -0.0018844594014808536, -0.007991577498614788, -0.03978370130062103, 0.0399642251431942, -0.05007398501038551, -0.03586496040225029, 0.021637866273522377, 0.02474128268659115, 0.03316275775432587, 0.01819843053817749, 0.01629817672073841, -0.01966279000043869, -0.03848491236567497, 0.025119410827755928, 0.061062343418598175, -0.0026251678355038166, -0.016698328778147697, -0.011357811279594898, -0.01801161654293537, -0.006545646581798792, 0.027678431943058968, -0.02541685849428177, 0.030717937275767326, 0.012265938334167004, 0.0239644143730402, -0.01037326455116272, 0.0029695492703467607, -0.04402780160307884, -0.023203758522868156, -0.011763607151806355, -0.06417069584131241, 0.021145423874258995, 0.02872106060385704, 0.014276479370892048, 0.004375533200800419, -0.024385642260313034, 0.02563522569835186, -0.0680086761713028, -0.028176199644804, 0.00106215535197407, 0.007364054676145315, 0.026052772998809814, 0.03954245522618294, -0.009692899882793427, -0.060644906014204025, 0.03842242807149887, 0.029571453109383583, -0.030527718365192413, -0.05739876255393028, -0.01893799379467964, -0.050861358642578125, 0.004310029558837414, 0.007076828740537167, 0.0421975813806057, -0.025228066369891167, 0.036096274852752686, 0.0448429137468338, -0.03489631414413452, 0.02119085006415844, -0.0422966443002224, -0.03532285988330841, -0.02375551126897335, 0.029306476935744286, -0.01034381240606308, -0.007041549310088158, 0.020807340741157532, -0.005334530957043171, 0.049809530377388, 0.05009624734520912, 0.006136322859674692, 0.04385451599955559, 0.008729912340641022, 0.0044950880110263824, -0.025893500074744225, -0.008072629570960999, -0.033177196979522705, 0.0021253570448607206, -0.015760524198412895, -0.015059655532240868, -0.012020904570817947, 0.030767317861318588, -0.02362014725804329, 0.001235058531165123, -0.03269249200820923, 0.03855542466044426, -0.045573774725198746, 0.016045020893216133, -0.022240471094846725, -0.007635410409420729, 0.05459542199969292, -0.010900313965976238, 0.005076288711279631, -0.046629391610622406, -0.0368993766605854, 0.036751050502061844, -0.027154678478837013, -0.027362072840332985, 0.0006567177479155362, -0.012901702895760536, -0.0027329304721206427, -0.0008279039757326245, 0.03778178617358208, 0.00954169686883688, 0.006846074480563402, -0.011442513205111027, -0.0057822344824671745, 0.029574187472462654, -0.03886931762099266, 0.015448295511305332, 0.0282168947160244, -0.01344922836869955, -0.0017172398511320353, -0.0082187969237566, 0.0023070203606039286, -0.013821910135447979, 0.003621977288275957, -0.017033640295267105, 0.006864252965897322, -0.003535241587087512, -0.041614387184381485, 0.03443332761526108, -0.010049375705420971, 0.005428687669336796, 0.05074337497353554, -0.002089560031890869, -0.012216906994581223, 0.004354418721050024, 0.07235664129257202, 0.0664883553981781, -0.02320905774831772, -0.008634787052869797, 0.04218970611691475, -0.008366832509636879, -0.00963553972542286, -0.0027169184759259224, -0.0678049623966217, -0.03923202306032181, -0.007309421896934509, 0.009161499328911304, 0.0030601106118410826, -0.03641503304243088, -0.037292253226041794, 0.008725554682314396, 0.007910378277301788, 0.016990823671221733, 0.019835857674479485, -0.018708927556872368, -0.02892099879682064, -0.018455537036061287, 0.05513324216008186, 0.0016526414547115564, -0.008214963600039482, 0.027994772419333458, -0.01710430346429348, 0.004149856977164745, -0.01931268535554409, 0.04195834696292877, 0.034498997032642365, 0.004457987379282713, 0.004871846176683903, -0.08821629732847214, 0.009557290002703667, -0.017112787812948227, 0.055362898856401443, -0.013304106891155243, 0.01684303767979145, -0.014389104209840298, -0.005876109004020691, -0.01314194779843092, -0.0069268387742340565, -0.0007375347195193172, -0.004672567825764418, 0.012333572842180729, 0.04719402268528938, 0.0029630614444613457, 0.010245734825730324, -0.003299943171441555, -0.042226262390613556, 0.04538261517882347, -0.026611482724547386, -0.0714447870850563, 0.006968411151319742, -0.054819051176309586, -0.0025547295808792114, 0.017623089253902435, 0.016944119706749916, -0.04902205243706703, 0.0531255379319191, 0.0379728302359581, 0.020110951736569405, 0.05585915967822075, -0.02689088135957718, 0.02835647203028202, -0.031361859291791916, 0.004841819871217012, -0.08031235635280609, 0.041668422520160675, 0.04864896088838577, -0.014430292882025242, -0.011479351669549942, -0.00407033646479249, -0.047795746475458145, 0.03195558488368988, -0.06634531915187836, -0.0338132306933403, 0.050278495997190475, 0.01125027984380722, 0.027610931545495987, -0.002338693244382739, -0.042842965573072433, 0.01120404340326786, 0.0629277229309082, -0.0344904400408268, -0.013143795542418957, -0.01777857542037964, 0.05326524376869202, -0.030050134286284447, 0.0452616848051548, -0.01648256555199623, -0.03133498132228851, 0.07743565738201141, 0.017402157187461853, 0.0035187609028071165, 0.045089296996593475, -0.041452743113040924, 0.034955527633428574, 0.02041739411652088, -0.01948680728673935, -0.04072302207350731, 0.03573022037744522, -0.005563571583479643, -0.057065874338150024, 0.04902244359254837, 0.04507016763091087, -0.005636977031826973, -0.03963981196284294, 0.06615304946899414, 0.01922237128019333, -0.05306565761566162, -0.04981420934200287, 0.04837653785943985, -0.05184813216328621, -0.019352711737155914, -0.019047411158680916, -0.007896470837295055, -0.02284368872642517, 0.04137088358402252, -0.06348402053117752, -0.007877928204834461, 0.06774674355983734, -0.015868546441197395, 0.011836965568363667, 0.005494952201843262, 0.1028711125254631, 0.08083155751228333, 0.03541142866015434, 0.007599987089633942, 0.05581005662679672, 0.008424564264714718, -0.009164363145828247, -0.022570379078388214, -0.051917217671871185, -0.03994603827595711, -0.01411500759422779, -0.006653559394180775, 0.060564421117305756, -0.01611415110528469, 0.06483346223831177, -0.025122517719864845, -0.005344448145478964, -0.013338493183255196, -0.007642123382538557, 0.03627289831638336, 0.0330297015607357, 0.02001996338367462, 0.05003084987401962, -0.030799496918916702, -0.01727886125445366, 0.0005924917059019208, 0.00807025283575058, -0.010017188265919685, 0.06179610639810562, -0.023262452334165573, -0.014843652956187725, 0.004759580362588167, 0.024578945711255074, 0.09159909933805466, -0.030861221253871918, -0.003831002162769437, -0.017993079498410225, 0.031943418085575104, -0.003041903953999281, 0.03684695437550545, -0.0008530432241968811, -0.026747137308120728, -0.010657505132257938, -0.0451192744076252, -0.011020262725651264, -0.004861767403781414, -0.0071871220134198666, 0.012728027999401093, -0.009186777286231518, 0.02451365813612938, -0.0009312108741141856, -0.027639392763376236, -0.04848764091730118, -0.039774563163518906, -0.04686758667230606, -0.03195427730679512, -0.07100939750671387, 0.015664013102650642, -0.008792178705334663, -0.00797395221889019, -0.019037801772356033, -0.008156029507517815, -0.004740447271615267, 0.01061955001205206, 0.03169964626431465, -0.035758282989263535, 0.004212344530969858, 0.012847752310335636, 0.02534855343401432, 0.01110408827662468, 0.007018046919256449, 0.05939290300011635, -0.008439809083938599, 0.023349450901150703, -0.028871815651655197, 0.041198160499334335, 0.03839243948459625, 0.03573542460799217, -0.025517966598272324, -0.07928872853517532, -0.007632814347743988, 0.007541818078607321, -0.032389070838689804, -0.07759860903024673, 0.016222117468714714, 0.06429781019687653, 0.027056001126766205, 0.04427265003323555, 0.0036993110552430153, -0.006849391385912895, -0.02486930415034294, -0.005342364776879549, -0.01496603712439537, -0.018407484516501427, 0.047318726778030396, -0.01810632273554802, 0.06822913885116577, 0.036742713302373886, -0.015678877010941505, -0.020853638648986816, -0.0170147605240345, 0.0006696860655210912, 0.014902755618095398, -0.03986866772174835, -0.04289248213171959, -0.036053188145160675, -0.087830550968647, -0.015636879950761795, 0.01424639206379652, -0.020736265927553177, -0.020424969494342804, -0.0008140516001731157, 0.02138550579547882, -0.023126374930143356, 0.03127189725637436, -0.004930422641336918, 0.05040046200156212, -0.04319179430603981, -0.0330095998942852, -0.029433663934469223, 0.01449921727180481, -0.0017867679707705975, 0.01856522262096405, 0.03347339853644371, -0.06215503811836243, -0.004646803718060255, -0.016782796010375023, 0.03500042483210564, 0.050833798944950104, 0.004933023825287819, -0.012598409317433834 ]
[ -0.06305991113185883, -0.06293924897909164, -0.005017746239900589, -0.02413943037390709, 0.028243836015462875, -0.03814020752906799, -0.019652964547276497, 0.012425707653164864, 0.00859061349183321, -0.00005304827573127113, 0.018775153905153275, -0.04984921216964722, -0.041935041546821594, 0.012901020236313343, 0.04497029632329941, -0.028581123799085617, -0.0597037635743618, -0.033885784447193146, -0.02657478302717209, 0.055773138999938965, -0.037027835845947266, -0.025076445192098618, -0.00428730295971036, -0.04202026501297951, 0.03823069483041763, 0.08708029985427856, 0.08231976628303528, -0.016777927055954933, -0.019464392215013504, -0.22374047338962555, -0.006972742732614279, -0.0033507219050079584, 0.016205307096242905, 0.0044639259576797485, -0.001820630393922329, 0.07497412711381912, 0.027941428124904633, 0.01496286503970623, 0.012555520050227642, 0.05587739869952202, 0.012619762681424618, 0.04273255169391632, -0.06977109611034393, 0.013351315632462502, 0.039080094546079636, 0.014945094473659992, -0.03806772455573082, -0.0026157291140407324, -0.00657223304733634, 0.031434811651706696, -0.007697254419326782, 0.0007199141546152532, 0.005027350038290024, -0.007587422151118517, 0.009475934319198132, 0.04719043895602226, 0.057993993163108826, 0.06925906240940094, 0.03141260892152786, 0.02957708202302456, 0.01580391824245453, -0.0010327089112251997, -0.11276509612798691, 0.08090192079544067, 0.008330663666129112, 0.009303731843829155, -0.050486188381910324, 0.018491895869374275, -0.03551342338323593, 0.07604482769966125, 0.004408858250826597, -0.0017393797170370817, -0.02226070687174797, 0.04897741228342056, 0.024935422465205193, 0.005826094653457403, -0.007677907589823008, 0.030559131875634193, 0.03369572013616562, -0.029375644400715828, -0.01716216467320919, 0.010588894598186016, -0.052010420709848404, -0.0044425786472857, -0.007017166819423437, -0.00007800741150276735, -0.014891066588461399, 0.053320057690143585, 0.030423980206251144, 0.04646959528326988, 0.0161445289850235, -0.0048173824325203896, 0.039826057851314545, 0.034761831164360046, -0.06063540652394295, -0.035152461379766464, 0.007623534183949232, 0.00476941978558898, 0.010588218457996845, 0.364094614982605, 0.002898534992709756, 0.035706017166376114, 0.010685642249882221, 0.0669746994972229, -0.033642783761024475, -0.009189560078084469, -0.00686095654964447, -0.055351585149765015, 0.034380532801151276, 0.01336927991360426, -0.0031967912800610065, 0.0013544212561100721, 0.03332909196615219, -0.09114620089530945, -0.012030716054141521, 0.023648560047149658, 0.025765514001250267, 0.021860331296920776, -0.05144382640719414, 0.023860573768615723, -0.037932027131319046, -0.03469545766711235, 0.030374305322766304, -0.00733758183196187, 0.006975533906370401, 0.03585372865200043, 0.03873010352253914, 0.018385253846645355, 0.03934113681316376, 0.026361556723713875, 0.04937731847167015, -0.0010670089395716786, -0.08310627192258835, 0.05518345907330513, -0.006151464302092791, -0.03236151114106178, 0.00870957225561142, -0.02848738059401512, -0.032163262367248535, 0.026468735188245773, -0.02045353129506111, 0.016972990706562996, 0.06098015606403351, -0.008596984669566154, -0.028560204431414604, 0.13865457475185394, -0.008583991788327694, -0.017301157116889954, -0.016223382204771042, -0.05172310024499893, 0.007360743824392557, 0.017764782533049583, -0.013330060988664627, -0.056928232312202454, -0.012295076623558998, 0.006514580920338631, 0.07615349441766739, -0.005355297587811947, -0.07515209168195724, 0.017148926854133606, -0.03348488733172417, -0.021592002362012863, -0.0058585116639733315, 0.08201844245195389, 0.05366899445652962, -0.14438903331756592, 0.0023419158533215523, 0.037713706493377686, -0.00018237406038679183, -0.08473636955022812, 0.004812043625861406, 0.0241983775049448, -0.023282283917069435, -0.010224500671029091, 0.08173602819442749, 0.024640977382659912, -0.06332023441791534, -0.014263286255300045, 0.036208417266607285, 0.029015490785241127, -0.01665530353784561, -0.03719102218747139, -0.013808730989694595, -0.036585498601198196, -0.045058101415634155, -0.05564505234360695, -0.06312931329011917, 0.029117831960320473, -0.03655785694718361, -0.013486875221133232, -0.009568345732986927, 0.0181922297924757, -0.05848270654678345, 0.0623154379427433, -0.055664610117673874, -0.0303494893014431, -0.017330843955278397, 0.017879419028759003, -0.032747454941272736, -0.04516472667455673, -0.0007465238450095057, 0.018659289926290512, 0.011864038184285164, 0.03696202114224434, -0.037746865302324295, -0.03799566254019737, 0.044833455234766006, -0.0438169427216053, 0.05551418289542198, 0.03094485215842724, -0.08074560761451721, 0.005662161391228437, -0.03340345621109009, 0.010652134194970131, 0.00782727263867855, -0.018369626253843307, 0.0006603469373658299, -0.03723685070872307, 0.028376080095767975, 0.08774680644273758, -0.057670943439006805, 0.0013177550863474607, -0.0020371770951896906, -0.33836883306503296, -0.014842795208096504, -0.014255708083510399, 0.023826995864510536, -0.011387557722628117, -0.015593715012073517, -0.009354162961244583, -0.01231455523520708, 0.03230886533856392, -0.00466583389788866, 0.15466521680355072, 0.012779160402715206, 0.013847876340150833, -0.08354764431715012, 0.03952300176024437, 0.04594199359416962, 0.004545903764665127, -0.001760575920343399, -0.023242756724357605, 0.0028517176397144794, -0.019666478037834167, -0.025385743007063866, -0.04095117375254631, -0.008137853816151619, -0.016467737033963203, -0.01862224191427231, 0.11703404039144516, -0.03506765887141228, 0.01162817981094122, -0.0452456995844841, 0.020036229863762856, 0.0037695865612477064, -0.058252252638339996, -0.07147479802370071, 0.007605737540870905, -0.018674401566386223, 0.04518340900540352, 0.04497259482741356, -0.017761364579200745, -0.03939046338200569, -0.04141980782151222, 0.026868445798754692, -0.04186936840415001, -0.0512540303170681, 0.019436504691839218, 0.001619167742319405, -0.0574817880988121, 0.012929820455610752, 0.0378868542611599, 0.06290115416049957, -0.01723053678870201, 0.03119233064353466, 0.013758723624050617, 0.036096904426813126, -0.02481268160045147, -0.04855268448591232, -0.06588625907897949, -0.008755000308156013, 0.01469116285443306, 0.05435851961374283, -0.026549888774752617, 0.03130418434739113, 0.053220514208078384, -0.09717486798763275, 0.06037731096148491, 0.023845484480261803, -0.005521051120012999, -0.022066524252295494, 0.02718835137784481, -0.007521200925111771, -0.01907227374613285, 0.09648030251264572, -0.0059584928676486015, 0.004418996162712574, 0.09125251322984695, 0.00030687538674101233, -0.027169447392225266, 0.015118754468858242, 0.05036425217986107, 0.03283917158842087, 0.010776844806969166, -0.03520839661359787, 0.03791205957531929, 0.030295614153146744, -0.027326935902237892, 0.044356051832437515, -0.0068995109759271145, -0.0371507927775383, 0.043532393872737885, 0.020124148577451706, -0.02732730656862259, -0.03366289660334587, -0.01989811472594738, -0.03609555959701538, 0.06311759352684021, -0.015292163006961346, -0.25991499423980713, 0.035105325281620026, 0.04174104332923889, 0.05965553596615791, -0.005059517454355955, -0.017725324258208275, 0.03489295020699501, -0.05681882053613663, 0.0033904637675732374, -0.017314957454800606, 0.01796094700694084, 0.04773413762450218, -0.008202250115573406, 0.018412817269563675, -0.008562372997403145, 0.029732903465628624, 0.05475141853094101, 0.0400192067027092, 0.051779624074697495, -0.024087093770503998, 0.01952110417187214, -0.03727852180600166, 0.18422618508338928, 0.007902484387159348, -0.0021956264972686768, 0.014060602523386478, -0.02677575871348381, 0.0037590055726468563, 0.060324352234601974, -0.013658375479280949, -0.0031884326599538326, 0.010178091935813427, 0.04241279512643814, 0.02976152114570141, 0.043413903564214706, -0.0436500646173954, -0.011132207699120045, 0.03675217181444168, 0.022364560514688492, -0.052989255636930466, 0.00777945714071393, -0.01842316798865795, -0.045219067484140396, 0.014064507558941841, 0.08959577232599258, -0.04578859359025955, -0.023623524233698845, -0.05050705373287201, -0.08309010416269302, 0.0059333685785532, -0.02704828977584839, -0.06669716536998749, -0.05625662952661514, 0.00042697341996245086, -0.01550917699933052, 0.060797370970249176, -0.010921288281679153, -0.011679181829094887, -0.002259382978081703, 0.014384751208126545, -0.0149470129981637, -0.05919323489069939, 0.08092353492975235, -0.024433191865682602, 0.004180372226983309 ]
[ 0.04490713030099869, 0.021588439121842384, -0.020114153623580933, 0.029912488535046577, -0.030502649024128914, 0.021227192133665085, -0.018594592809677124, 0.011121808551251888, -0.017337612807750702, -0.013827091082930565, -0.017515437677502632, 0.026035737246274948, 0.022811396047472954, 0.005337926559150219, 0.011386103928089142, 0.01753666065633297, 0.0035732178948819637, 0.009712097235023975, 0.04706358164548874, -0.01603110320866108, -0.02004954218864441, 0.001183470361866057, 0.024469926953315735, 0.0018076812848448753, -0.02428361400961876, 0.03462013974785805, -0.032571736723184586, 0.00625671586021781, 0.02013862319290638, -0.1192956492304802, -0.01054613757878542, -0.03582075610756874, 0.02040371485054493, 0.014149675145745277, -0.039482615888118744, 0.026173226535320282, -0.0037726869340986013, -0.027247639372944832, 0.0012496840208768845, 0.015420721843838692, 0.02714243344962597, -0.005007927771657705, -0.0342928022146225, -0.004821215756237507, -0.01295061968266964, -0.01577118970453739, -0.013869138434529305, -0.019715845584869385, 0.0011072949273511767, -0.03027118742465973, -0.020965352654457092, -0.03975389525294304, -0.025321416556835175, -0.028692491352558136, 0.018116751685738564, -0.006693635135889053, -0.060934796929359436, 0.010529179126024246, 0.02176200971007347, -0.03168569877743721, 0.04730917140841484, -0.0004448556574061513, -0.03437633439898491, -0.02429238148033619, -0.029824571684002876, -0.016507133841514587, 0.01301533542573452, -0.006252823397517204, 0.009867580607533455, 0.002432025270536542, 0.014997579157352448, 0.05379403010010719, -0.040044739842414856, -0.03404398635029793, -0.031242961063981056, 0.03147367015480995, 0.03982410952448845, -0.0021307796705514193, -0.019423527643084526, -0.0021010395139455795, -0.023932507261633873, 0.024943215772509575, -0.033042341470718384, 0.022687800228595734, -0.010822441428899765, 0.0015481308801099658, -0.005540288984775543, -0.01743130572140217, 0.0451708659529686, -0.007670124061405659, -0.026127824559807777, 0.008296838030219078, -0.02217811346054077, 0.001612902618944645, -0.08021479845046997, 0.000596045283600688, 0.004097796976566315, -0.0018811566988006234, 0.02027611993253231, 0.8127025961875916, 0.003803506726399064, -0.022874407470226288, -0.013772750273346901, 0.05039665475487709, 0.026341157034039497, 0.031277675181627274, 0.020448798313736916, -0.014853833243250847, 0.0035086628049612045, 0.021793432533740997, 0.012179362587630749, 0.03820916265249252, 0.005323468241840601, 0.026761874556541443, 0.0027303327806293964, 0.023214265704154968, 0.0059412685222923756, -0.01457675825804472, 0.001250646309927106, 0.03966434299945831, -0.026828596368432045, 0.00787266530096531, 0.027121972292661667, 0.012177128344774246, 0.009777058847248554, -0.18659080564975739, -0.003607954364269972, -7.281058294083312e-33, 0.03943163529038429, -0.023893257603049278, 0.08685951679944992, -0.012899043038487434, 0.009188487194478512, -0.011267947033047676, -0.030116552487015724, -0.03950463607907295, 0.011416823603212833, -0.0411376953125, -0.037605732679367065, 0.016842996701598167, 0.025359250605106354, -0.00011200524750165641, 0.03496761620044708, -0.04095231741666794, 0.02628379687666893, 0.01842937245965004, 0.02096838317811489, -0.011764928698539734, 0.016122346743941307, -0.008928499184548855, -0.02151487022638321, 0.052483249455690384, 0.03776291012763977, 0.030309347435832024, 0.02611318789422512, -0.008508794009685516, 0.01777365431189537, -0.03441225364804268, -0.07462013512849808, 0.01874927058815956, 0.002211533486843109, -0.009089166298508644, 0.01139912847429514, -0.03613242134451866, -0.050049420446157455, 0.012355232611298561, -0.010950273834168911, -0.05840810388326645, -0.010027769021689892, -0.035817671567201614, -0.018716704100370407, -0.0367664210498333, -0.04987137019634247, -0.009743410162627697, -0.008888693526387215, 0.03126595541834831, -0.027270006015896797, 0.016227731481194496, -0.011268099769949913, 0.024745557457208633, 0.012406441383063793, -0.0185821782797575, -0.04970426484942436, -0.022635074332356453, 0.03128855302929878, 0.01576259545981884, -0.002320926170796156, 0.024635687470436096, 0.03726672753691673, -0.00890015996992588, 0.004833062179386616, 0.05551435425877571, 0.017666464671492577, 0.004623705521225929, 0.0008471840992569923, 0.024612393230199814, 0.022739291191101074, 0.025028416886925697, -0.0654415711760521, 0.012777597643435001, -0.017902106046676636, -0.011003151535987854, 0.031110215932130814, -0.053696244955062866, 0.003561821999028325, 0.006742330268025398, 0.005434105172753334, 0.03732690215110779, -0.0329778790473938, -0.03170908987522125, -0.004167935345321894, -0.04642303287982941, -0.0003267384017817676, -0.01544406358152628, 0.06286618858575821, -0.0003818297409452498, -0.0024050248321145773, 0.04756113514304161, 0.03668410703539848, 0.04549509286880493, -0.010170825757086277, -0.003775920020416379, -0.016566971316933632, 6.980591652437566e-33, -0.004769602790474892, 0.02224731259047985, 0.006397960241883993, -0.0007657555397599936, 0.019826186820864677, -0.009357326664030552, 0.014017828740179539, 0.03297102078795433, -0.04564362391829491, 0.0502236932516098, -0.02616327442228794, -0.030355824157595634, -0.013405250385403633, 0.027310030534863472, 0.053437866270542145, 0.004812534898519516, 0.0273849219083786, -0.01642783358693123, -0.029556438326835632, 0.021804332733154297, -0.0060470798052847385, 0.024081887677311897, -0.012410614639520645, -0.007053918670862913, 0.025264261290431023, 0.020846884697675705, 0.022420324385166168, -0.0033135772682726383, -0.04996900260448456, 0.0040224166586995125, -0.01797587051987648, -0.06972760707139969, -0.007728812750428915, -0.02467392012476921, -0.024435432627797127, 0.018839502707123756, -0.008927143178880215, -0.011795617640018463, 0.026567785069346428, -0.020192692056298256, 0.06860394030809402, 0.009055416099727154, 0.0033403304405510426, 0.057201486080884933, -0.001523020677268505, 0.01409325934946537, 0.0012600697809830308, 0.025179116055369377, -0.052006661891937256, 0.0024512456730008125, 0.011870651505887508, 0.04754520207643509, -0.0031880224123597145, 0.02464008517563343, 0.03571884706616402, -0.047826725989580154, -0.01009005680680275, 0.025558043271303177, -0.028571143746376038, 0.0016128870192915201, -0.030177714303135872, -0.022217631340026855, -0.020575106143951416, 0.04154820367693901, -0.0006938176229596138, -0.049894969910383224, -0.012607178650796413, -0.044633541256189346, -0.02754143625497818, -0.004131529480218887, -0.010312226600944996, 0.013265380635857582, -0.020042434334754944, 0.03832447528839111, 0.017507586628198624, -0.02162105031311512, -0.05220266059041023, 0.028823232278227806, -0.02239035815000534, 0.029006516560912132, 0.021759074181318283, 0.011909550987184048, 0.03143398091197014, 0.006771295331418514, -0.0004809747915714979, 0.022243482992053032, -0.018151650205254555, 0.023509688675403595, 0.0026158886030316353, 0.03311428800225258, 0.01905663125216961, -0.0152425616979599, -0.029799258336424828, 0.03803611174225807, -0.023724501952528954, -1.2450487751891615e-8, -0.0444825254380703, 0.055620647966861725, -0.011432690545916557, 0.005607409402728081, 0.039834726601839066, 0.009370407089591026, 0.010321124456822872, -0.004811822436749935, -0.014587176032364368, 0.01577649638056755, 0.04769735038280487, -0.04118746146559715, -0.016152653843164444, 0.004943156614899635, -0.008107292465865612, -0.043439969420433044, -0.01396410446614027, -0.01092366874217987, 0.036119770258665085, 0.011671097949147224, -0.04138108342885971, 0.03224746510386467, -0.010305275209248066, 0.022301584482192993, 0.031001964583992958, -0.028563879430294037, 0.03709806129336357, -0.0723159983754158, 0.010755057446658611, -0.0021915140096098185, 0.0009607849060557783, -0.021580198779702187, -0.0072077675722539425, 0.016300952062010765, -0.04188159480690956, -0.04371670261025429, 0.0340714305639267, 0.044841617345809937, 0.012433718889951706, 0.05487264320254326, -0.01117672584950924, 0.0029581922572106123, 0.0029619927518069744, -0.03331921994686127, -0.029356954619288445, 0.06179690361022949, -0.04501410573720932, -0.009749048389494419, 0.04243673011660576, -0.022917935624718666, -0.007284187246114016, -0.0011933096684515476, -0.00007472282595699653, 0.024199439212679863, 0.03209468722343445, -0.022333184257149696, 0.004628872033208609, -0.032433878630399704, -0.030140234157443047, -0.02454923838376999, 0.024627815932035446, 0.002730703679844737, -0.029960816726088524, -0.03134139999747276 ]
neo4j-building-strava-graph
https://markhneedham.com/blog/2018/06/12/neo4j-building-strava-graph
false
2018-12-21 16:57:00
Pandas: Create matplotlib plot with x-axis label not index
[ "python", "pandas", "matplotlib" ]
[ "Python" ]
I've been using matplotlib a bit recently, and wanted to share a lesson I learnt about choosing the label of the x-axis. Let's first import the libraries we'll use in this post: [source, python] ---- import pandas as pd import matplotlib.pyplot as plt ---- And now we'll create a DataFrame of values that we want to chart: [source,python] ---- df = pd.DataFrame({ "name": ["Mark", "Arya", "Praveena"], "age": [34, 1, 31] }) df ---- This is what our DataFrame looks like: [source, text] ---- name age 0 Mark 34 1 Arya 31 2 Praveena 1 ---- [source, python] ---- df.plot.bar() plt.tight_layout() plt.show() ---- If we run that code we'll see this chart: image::{{<siteurl>}}/uploads/2018/12/start.svg[] The chart itself looks fine, but the labels of the values on the x-axis are a bit weird. They're 1, 2, and 3, whereas we want them to use the values in the `name` column of our DataFrame. I was a bit confused at first, but eventually realised that they were the index values of our rows. We can see that by executing the following code: [source, python] ---- >>> df.index.values array([0, 1, 2]) ---- There are a couple of ways that we can fix our chart. The first is to use the `name` column as our index, an approach I learnt from https://www.dataquest.io/blog/adding-axis-labels-to-plots-with-pandas-and-matplotlib/[Josh Devlin's blog post]. We can reset the index by running the following code: [source, python] ---- df.set_index("name",drop=True,inplace=True) ---- Let's check the index values: [source, python] ---- >>> df.index.values array(['Mark', 'Arya', 'Praveena'], dtype=object) ---- Ah, much better! Now we can plot our chart again: [source, pythong] ---- df.plot.bar() plt.tight_layout() plt.show() ---- If we run that code we'll see this chart: image::{{<siteurl>}}/uploads/2018/12/next.svg[] That's much better! We can also achieve the same outcome by specifying the `x` parameter when we call the `bar` function: [source, python] ---- df = pd.DataFrame({ "name": ["Mark", "Arya", "Praveena"], "age": [34, 1, 31] }) df.plot.bar(x="name") plt.tight_layout() plt.show() ----
Learn how to set the x-axis label of a matplotxlib plot
null
[ 0.003681523259729147, -0.012502440251410007, -0.0010595009662210941, 0.02638554945588112, 0.05543002486228943, 0.03980493173003197, -0.03794556483626366, 0.02487644925713539, 0.00392168527469039, -0.01004098728299141, -0.018980512395501137, 0.008270109072327614, -0.05223843827843666, 0.030719861388206482, 0.0008988029439933598, 0.0799843892455101, 0.09608732908964157, 0.02357928641140461, 0.006046762224286795, 0.0405433289706707, 0.04839935153722763, 0.010089948773384094, -0.04710489138960838, 0.03554638475179672, -0.00948383565992117, -0.02889115922152996, 0.0027520942967385054, 0.014636331237852573, -0.04618148133158684, -0.0009537357836961746, 0.023665083572268486, -0.008332604542374611, 0.006507144309580326, 0.02800082042813301, 0.026068689301609993, 0.01792529970407486, -0.005813672672957182, 0.010090101510286331, -0.00045532677904702723, 0.010679353959858418, -0.07692885398864746, 0.017536206170916557, -0.01502273976802826, 0.004604564979672432, -0.022557737305760384, -0.0161169171333313, -0.05266433209180832, 0.001738494960591197, 0.017341459169983864, 0.038549818098545074, -0.04491567611694336, 0.03586359694600105, 0.020632164552807808, -0.03349411115050316, -0.020032059401273727, 0.04751679301261902, 0.007523199077695608, -0.055593546479940414, 0.019444461911916733, -0.01634606160223484, 0.015867769718170166, 0.007832029834389687, 0.0008726841770112514, 0.052563559263944626, 0.021375874057412148, -0.02606387995183468, -0.015987923368811607, 0.04169854521751404, -0.06351743638515472, -0.03166375681757927, -0.05073118954896927, 0.006319310981780291, -0.026552904397249222, -0.030014876276254654, -0.007653487846255302, -0.0384485088288784, -0.018526678904891014, 0.04401398450136185, 0.020286083221435547, 0.04003069922327995, 0.011105464771389961, 0.020425185561180115, 0.023419944569468498, 0.01636713556945324, -0.00486597279086709, -0.006979939062148333, -0.039713747799396515, -0.05991411581635475, -0.06288156658411026, 0.02897241897881031, -0.00024117714201565832, -0.06439804285764694, 0.03814699500799179, 0.01452303770929575, -0.012601916678249836, -0.019752534106373787, 0.015347559005022049, -0.010349356569349766, -0.016256894916296005, -0.021868372336030006, -0.057455118745565414, -0.027557894587516785, 0.04820257052779198, 0.03929951786994934, -0.04571371152997017, -0.043171606957912445, 0.0054401857778429985, 0.0022802306339144707, -0.020558826625347137, 0.003766310168430209, -0.06787806749343872, -0.013088569976389408, -0.014218052849173546, -0.005301131401211023, -0.04983792454004288, 0.043495140969753265, -0.008315193466842175, -0.036886151880025864, -0.02477519027888775, 0.019164763391017914, 0.02606065943837166, 0.03667083755135536, -0.015344026498496532, 0.06280204653739929, -0.015063625760376453, 0.04447799548506737, -0.007117713801562786, 0.06318209320306778, 0.002060636645182967, -0.03968643397092819, -0.015305586159229279, 0.048310887068510056, -0.02893860638141632, -0.03567195683717728, 0.019632751122117043, -0.043290574103593826, -0.003007233841344714, 0.013546622358262539, 0.059116654098033905, 0.034071944653987885, 0.055922895669937134, -0.02332698553800583, 0.007249303162097931, 0.02580384723842144, -0.006698134820908308, 0.016439521685242653, -0.014167706482112408, -0.07121921330690384, -0.04534924775362015, -0.0025404763873666525, 0.015960711985826492, 0.02887103147804737, 0.060169294476509094, -0.0030903457663953304, -0.011227063834667206, 0.06264019012451172, 0.023712629452347755, 0.0224396251142025, -0.02783282846212387, 0.0024620844051241875, 0.04318997263908386, -0.0072152456268668175, 0.030209530144929886, 0.05643760412931442, -0.010491070337593555, -0.02945982664823532, 0.041496727615594864, 0.044046320021152496, -0.04037623107433319, -0.026177024468779564, -0.03701326623558998, -0.029021432623267174, 0.04007929936051369, -0.02796029858291149, 0.009151252917945385, 0.08012179285287857, 0.07045818120241165, 0.04441269859671593, -0.00039701504283584654, 0.004023230168968439, -0.07392177730798721, 0.05202920734882355, 0.004301292356103659, 0.010378018021583557, 0.07114525139331818, -0.012410495430231094, 0.057522233575582504, 0.01562700793147087, 0.07256126403808594, 0.03508543595671654, -0.04351752623915672, -0.022302791476249695, -0.027873538434505463, 0.00001872248867584858, 0.03907297924160957, -0.08543383330106735, -0.013382960110902786, 0.08361828327178955, 0.03406207635998726, 0.03322982043027878, 0.01141316071152687, -0.003866305109113455, -0.009272112511098385, -0.04586559906601906, -0.04871327802538872, 0.0041988263837993145, 0.025847608223557472, -0.025078069418668747, 0.004422666970640421, 0.05258231610059738, -0.0011149590136483312, 0.004928413312882185, 0.038799311965703964, -0.017685018479824066, 0.0306831244379282, 0.01697176694869995, 0.0436023473739624, -0.0008889498421922326, 0.005301076453179121, -0.06129058450460434, 0.02163054421544075, -0.008794046938419342, -0.022492464631795883, -0.07025902718305588, 0.0020726369693875313, 0.13761042058467865, 0.08004245162010193, -0.027245650067925453, -0.06500767171382904, -0.01837661676108837, 0.0006797445239499211, -0.027163967490196228, 0.03383968770503998, -0.008473808877170086, -0.02389448881149292, 0.010807928629219532, -0.044240567833185196, -0.01978888362646103, 0.008941689506173134, -0.028071744367480278, 0.013305638916790485, 0.06693607568740845, -0.024205181747674942, 0.04995435103774071, 0.014952266588807106, -0.00962674617767334, 0.009150250814855099, -0.03143884614109993, -0.11887126415967941, 0.01954774558544159, -0.027647748589515686, -0.015101647935807705, 0.024767868220806122, -0.021569373086094856, -0.056381795555353165, -0.021805783733725548, -0.06338183581829071, -0.019618762657046318, 0.04624456912279129, 0.047747235745191574, 0.0011412627063691616, 0.016877910122275352, -0.003577467519789934, -0.01214603055268526, 0.002942988881841302, -0.03603431209921837, -0.03743845969438553, -0.021904146298766136, 0.02930811420083046, 0.03304480388760567, 0.02964610792696476, 0.011490845121443272, -0.0017709658714011312, 0.005272409413009882, 0.019869541749358177, -0.004758019465953112, 0.04238647595047951, 0.012178716249763966, -0.030557945370674133, -0.038125768303871155, 0.028466546908020973, 0.02616288885474205, -0.0004566514689940959, -0.018332386389374733, 0.0028639594092965126, -0.038648463785648346, 0.02560947835445404, -0.038492944091558456, -0.029012637212872505, 0.0010271877981722355, 0.02617199532687664, 0.056890103965997696, 0.009595563635230064, -0.0017032165778800845, 0.009280029684305191, 0.007522812578827143, 0.007153250277042389, 0.03269224986433983, -0.0020464430563151836, 0.04795775189995766, 0.0034893760457634926, 0.021224074065685272, 0.07399038970470428, -0.008669913746416569, -0.029072612524032593, -0.03475257754325867, -0.010203269310295582, -0.02376824989914894, -0.2618196904659271, 0.012103551998734474, -0.021282562986016273, -0.034176863729953766, -0.01740678958594799, -0.03660137578845024, 0.00290776533074677, -0.04170157015323639, -0.011966660618782043, 0.0084984777495265, 0.00788782723248005, -0.0793205052614212, -0.02087804675102234, 0.04069823399186134, 0.01261051930487156, 0.03344334661960602, 0.0293428935110569, -0.053432632237672806, 0.0012507012579590082, 0.04364056512713432, -0.013847433030605316, -0.04843180254101753, 0.0007174260099418461, 0.08946451544761658, 0.03342566639184952, 0.0712425708770752, -0.07291628420352936, 0.04861406609416008, -0.062499549239873886, -0.028930267319083214, 0.0036378370132297277, -0.03313210979104042, 0.0017883997643366456, -0.023934252560138702, -0.0025966735556721687, -0.06894578039646149, 0.009191281162202358, -0.03486257418990135, -0.009917594492435455, 0.004165192134678364, -0.059528060257434845, -0.017991140484809875, -0.00782221183180809, 0.0017006604466587305, 0.052452024072408676, -0.022664455696940422, -0.05006993189454079, 0.00909864529967308, -0.0431976243853569, 0.050903283059597015, -0.015261135995388031, 0.00544852577149868, -0.017315154895186424, -0.012268700636923313, -0.048493556678295135, 0.026074687018990517, -0.022671911865472794, -0.003048034617677331, -0.03351921960711479, -0.03953491523861885, -0.007889404892921448, -0.023885592818260193, -0.028787652030587196, -0.05746559798717499, -0.012054040096700191, -0.030843377113342285, -0.021488694474101067, -0.017150815576314926, 0.04938524588942528, 0.06003085896372795, -0.05863339453935623, -0.030197080224752426, 0.012662374414503574, -0.10138076543807983, 0.018704738467931747, -0.037943605333566666, -0.005753430537879467, 0.008561024442315102, -0.019544029608368874, -0.002534103812649846, -0.042877305299043655, -0.07511309534311295, 0.0807751789689064, 0.0007635705405846238, -0.014648988842964172, 0.0011255178833380342, -0.002248192671686411, -0.00221797707490623, -0.009598934091627598, -0.010646683163940907, 0.04569988697767258, -0.024119801819324493, 0.008446726016700268, 0.01878565177321434, -0.051617808640003204, 0.02517201006412506, 0.0373990498483181, 0.002670532325282693, 0.02990846522152424, 0.01670900546014309, 0.004553669597953558, -0.0758913904428482, -0.027404997497797012, -0.03771562501788139, -0.022524947300553322, -0.012630841694772243, -0.0529467947781086, -0.002268865006044507, 0.017214523628354073, -0.03310300037264824, -0.003950356971472502, -0.0368834026157856, 0.0135121401399374, -0.07480517029762268, -0.003115627449005842, -0.04828265681862831, 0.018645653501152992, 0.013851778581738472, 0.012347032316029072, -0.027527088299393654, -0.07463128119707108, 0.0035810053814202547, 0.032183293253183365, -0.002723867306485772, -0.08698152750730515, -0.02920936606824398, 0.049327731132507324, -0.022586047649383545, 0.02263760194182396, 0.013499247841536999, -0.01909724809229374, 0.03580430522561073, 0.05813460797071457, -0.026367081329226494, 0.006935824174433947, -0.013314957730472088, -0.01391712948679924, 0.0156400129199028, 0.019477853551506996, 0.016645776107907295, 0.0015670567518100142, 0.05130825936794281, -0.03187365084886551, 0.008402028121054173, 0.0412190780043602, -0.005326686892658472, 0.012166503816843033, 0.005337058566510677, 0.013683542609214783, -0.0023530845064669847, 0.024941546842455864, 0.007640422321856022, 0.000745925644878298, -0.0202254056930542, -0.03140200302004814, 0.031737882643938065, 0.026399599388241768, -0.03568904846906662, -0.023303164169192314, -0.03869331255555153, 0.017334099858999252, -0.04890543222427368, -0.0014251992106437683, -0.009182313457131386, 0.02197033353149891, 0.04003886133432388, -0.0037967499811202288, 0.02710198424756527, 0.000617488578427583, -0.01470036432147026, 0.027632933109998703, 0.011580532416701317, 0.0047661843709647655, 0.00676979823037982, -0.04161539673805237, -0.045194584876298904, 0.021951833739876747, 0.03993546962738037, 0.011882567778229713, 0.019214080646634102, -0.003702727146446705, -0.0018998379819095135, 0.00681286072358489, -0.008539821952581406, 0.009491775184869766, 0.038622934371232986, -0.019225796684622765, -0.014251142740249634, -0.03635581210255623, -0.01250974740833044, -0.013064594939351082, -0.007631451822817326, 0.0001528808061266318, 0.027038922533392906, -0.04727545753121376, -0.03998009115457535, -0.009828981943428516, -0.00899191852658987, 0.03271469101309776, 0.010140517726540565, -0.04875136539340019, 0.04154697805643082, -0.030942417681217194, 0.06298047304153442, 0.06734608113765717, -0.03620466962456703, 0.012850726023316383, 0.013224759139120579, 0.025797218084335327, -0.012722077779471874, 0.03053268790245056, -0.07651437073945999, -0.03717537596821785, -0.022027894854545593, 0.015689505264163017, 0.0003296041686553508, -0.04000106453895569, -0.062163710594177246, 0.01877685636281967, -0.0040489197708666325, 0.04006185010075569, 0.0016197779914364219, 0.004097858909517527, -0.020494945347309113, 0.0016618691151961684, 0.03715011477470398, -0.0009914216352626681, -0.01113936584442854, 0.051074475049972534, -0.016073590144515038, 0.015016109682619572, 0.005267031956464052, 0.034093067049980164, 0.053766295313835144, -0.01647942326962948, 0.005858782213181257, -0.07343219965696335, -0.0024616371374577284, 0.01055058091878891, 0.06689658761024475, 0.011470133438706398, 0.022936511784791946, -0.045759543776512146, 0.006129301153123379, 0.01359229814261198, 0.0076518310233950615, 0.0031890911050140858, -0.04560784995555878, -0.009539501741528511, 0.047836653888225555, 0.026135975494980812, -0.022524969652295113, 0.01979137398302555, -0.05276290327310562, 0.049605581909418106, -0.02744339406490326, -0.025605367496609688, 0.003230566391721368, -0.05793237313628197, 0.0005037020309828222, -0.01641472987830639, 0.02117198333144188, -0.066246896982193, 0.05917021632194519, 0.03290905803442001, 0.06506592780351639, 0.05741589888930321, -0.013641144149005413, 0.03026064671576023, -0.03768652305006981, -0.00988219678401947, -0.09055357426404953, 0.010840117931365967, 0.026367854326963425, 0.0574818029999733, -0.020556876435875893, -0.010968503542244434, -0.03910613805055618, 0.009636128321290016, -0.08009470999240875, -0.01291500125080347, 0.04971550405025482, 0.047574255615472794, 0.019140195101499557, 0.01775687374174595, -0.05834688991308212, 0.00024141334870364517, 0.0476534478366375, -0.054382652044296265, -0.015465355478227139, 0.009647684171795845, 0.07867474108934402, -0.00889776460826397, 0.022624263539910316, 0.011378233321011066, 0.023427138105034828, 0.06827157735824585, 0.03309885412454605, 0.0030405691359192133, 0.025316057726740837, -0.028534436598420143, 0.04990263655781746, 0.03271222114562988, -0.006267283111810684, -0.02387998253107071, 0.016815824434161186, 0.03714769333600998, -0.041756801307201385, 0.011377155780792236, 0.01830563135445118, 0.024914763867855072, -0.06446009874343872, 0.054883960634469986, 0.0040203905664384365, -0.059813328087329865, -0.0279458649456501, -0.002786785364151001, -0.039131391793489456, 0.004762686789035797, 0.01071038655936718, 0.0031912089325487614, -0.007444186136126518, 0.06144493445754051, -0.043869007378816605, -0.03229600191116333, 0.05108250677585602, -0.0005156476399861276, 0.031267669051885605, 0.022826382890343666, 0.07670973986387253, 0.07788869738578796, 0.06826916337013245, 0.020482944324612617, 0.029821520671248436, -0.01067615021020174, -0.05008672922849655, 0.012716849334537983, -0.02556169591844082, 0.0156668983399868, -0.045681182295084, -0.003364712232723832, 0.033664051443338394, -0.006254422012716532, 0.03381509706377983, -0.0044691492803394794, 0.03231317177414894, -0.03635471686720848, -0.006941195111721754, -0.005941948387771845, 0.03965744003653526, -0.03204008936882019, 0.05147083103656769, -0.007662514690309763, -0.01860254816710949, 0.02722565457224846, -0.00036687630927190185, -0.025755222886800766, 0.017368879169225693, -0.010627023875713348, -0.014241193421185017, 0.019736671820282936, 0.018232665956020355, 0.090030238032341, -0.050967879593372345, -0.06167220696806908, 0.018207740038633347, 0.05027156323194504, 0.012929219752550125, 0.011266942135989666, 0.026751821860671043, 0.028276940807700157, -0.0010371197713539004, -0.01855352893471718, -0.01831108331680298, -0.05181995779275894, 0.004855964798480272, 0.044256825000047684, -0.03455769643187523, 0.01262535247951746, 0.04117528721690178, -0.005491193383932114, -0.07555212825536728, -0.030350249260663986, -0.07090888917446136, -0.024651456624269485, -0.07266679406166077, -0.03529432415962219, 0.018945900723338127, -0.028636308386921883, -0.03088451363146305, -0.017870789393782616, 0.02114028111100197, 0.03575368598103523, -0.01399809680879116, -0.03989661484956741, -0.02845996804535389, 0.01389610581099987, 0.04781123623251915, -0.015687840059399605, 0.01601455733180046, 0.036164961755275726, -0.013584119267761707, -0.029076285660266876, -0.011450112797319889, 0.04584292322397232, 0.04739084467291832, 0.007197188679128885, 0.011770008131861687, -0.05488789454102516, -0.015249506570398808, 0.0006251853774301708, -0.02890731766819954, -0.06135586276650429, 0.026253361254930496, 0.021889617666602135, 0.003446262562647462, 0.020443864166736603, -0.012518358416855335, -0.023969527333974838, -0.009149441495537758, -0.01945730298757553, 0.00015410970081575215, 0.02257705293595791, 0.0339960940182209, -0.029781240969896317, 0.07258374989032745, 0.03464873135089874, 0.024143211543560028, -0.020839719101786613, -0.035430073738098145, -0.031091459095478058, 0.009111047722399235, -0.04183431342244148, -0.06425172090530396, -0.07265594601631165, -0.035213030874729156, 0.009771142154932022, 0.027800628915429115, -0.038527749478816986, -0.0323462076485157, -0.007951843552291393, 0.031509485095739365, 0.011355817317962646, 0.05015142634510994, -0.010599280707538128, -0.0016231491463258862, -0.03775855526328087, -0.018450794741511345, 0.002367837820202112, 0.03744909167289734, -0.010448852553963661, -0.010983942076563835, 0.016826381906867027, -0.038711946457624435, -0.0008674724376760423, 0.005786442197859287, 0.03752122446894646, 0.06771478801965714, -0.009610398672521114, 0.024054380133748055 ]
[ -0.05107799172401428, -0.03730421140789986, -0.03815464675426483, 0.01276746392250061, 0.06890282779932022, -0.020442651584744453, -0.05082467943429947, 0.04189896211028099, 0.0062348973006010056, 0.024234460666775703, 0.032414015382528305, -0.09254459291696548, 0.02740516886115074, -0.009898314252495766, 0.027208706364035606, 0.00827033445239067, -0.025811541825532913, -0.03438536450266838, -0.05424381420016289, 0.014944346621632576, -0.005175531376153231, -0.036994822323322296, -0.04769471287727356, -0.05424313619732857, 0.06859122216701508, 0.06327175348997116, 0.0277249738574028, -0.059427209198474884, 0.010435345582664013, -0.20197103917598724, 0.05914144590497017, 0.011891549453139305, 0.04662340134382248, -0.03603072091937065, -0.010761961340904236, 0.0018768924055621028, 0.03249329328536987, 0.04448569566011429, 0.030495809391140938, 0.026322582736611366, -0.006581384222954512, -0.011735448613762856, -0.04337916523218155, -0.029154090210795403, 0.02178889699280262, 0.010977978818118572, -0.045051876455545425, -0.010003568604588509, -0.0057469382882118225, 0.03012419119477272, -0.06068865582346916, -0.004977547563612461, -0.03236227482557297, -0.000832253135740757, -0.01572141796350479, 0.04107280448079109, 0.05086090415716171, 0.0014253072440624237, 0.029067974537611008, 0.018160518258810043, 0.0003750968025997281, -0.012529800646007061, -0.14545367658138275, 0.13139750063419342, 0.026291346177458763, 0.049264613538980484, -0.026429368183016777, 0.0021155483555048704, -0.022294146940112114, 0.0705251395702362, 0.004149848595261574, -0.0105170588940382, 0.0002710748522076756, 0.025456422939896584, 0.02465195208787918, -0.06331076472997665, -0.009375346824526787, -0.018130498006939888, 0.04225705564022064, -0.05395336449146271, -0.06308693438768387, 0.05388740822672844, -0.01899225451052189, -0.03843970596790314, 0.023336168378591537, 0.006700951140373945, 0.0033223910722881556, 0.019768819212913513, 0.01511792466044426, 0.043099671602249146, 0.03814683482050896, 0.017622455954551697, -0.010378963313996792, 0.03918159753084183, -0.07825040072202682, -0.05630190670490265, 0.011220162734389305, 0.017032070085406303, -0.016287144273519516, 0.3870593011379242, -0.057664696127176285, -0.0036313298624008894, 0.025527343153953552, 0.060436978936195374, 0.00033134486875496805, -0.03391342982649803, -0.008801734074950218, -0.055810242891311646, -0.008646574802696705, -0.022938599810004234, 0.000508345547132194, -0.024318238720297813, 0.02518124133348465, -0.0811614841222763, 0.016482867300510406, -0.05055226758122444, -0.02491159550845623, 0.011640037409961224, 0.014589671976864338, 0.017180033028125763, 0.03220362588763237, 0.015864243730902672, 0.03351679444313049, 0.03893081843852997, 0.04132276028394699, 0.045097071677446365, 0.045575469732284546, 0.04012284055352211, 0.007154613267630339, -0.020512428134679794, 0.02581772767007351, -0.05178981274366379, -0.07005003839731216, 0.037296757102012634, 0.0001999966480070725, 0.014743917621672153, 0.047642067074775696, -0.0022663213312625885, 0.0016388206277042627, 0.009602406993508339, -0.007239271886646748, -0.025592440739274025, 0.046876370906829834, 0.008737529627978802, -0.010535580106079578, 0.12650224566459656, -0.0203172005712986, 0.005627091508358717, -0.029480058699846268, -0.009790899232029915, -0.00804971344769001, 0.03020964376628399, -0.005955727305263281, -0.04765898734331131, 0.006983884610235691, 0.05505387857556343, 0.0672435313463211, -0.01506001129746437, -0.06899727880954742, -0.025626227259635925, -0.012692360207438469, -0.047690216451883316, -0.032084040343761444, 0.0022804602049291134, 0.03889596462249756, -0.10575641691684723, -0.03271067515015602, 0.03660408407449722, -0.014180455356836319, -0.0927957072854042, 0.016970722004771233, 0.03674476593732834, -0.044098518788814545, -0.020655706524848938, 0.0775945857167244, 0.01029845979064703, -0.026267727836966515, -0.006381382700055838, 0.0762418657541275, 0.00737757096067071, 0.01432590652257204, 0.018135499209165573, -0.02272205799818039, -0.02367536909878254, -0.04134272038936615, -0.07218040525913239, -0.05708993226289749, -0.005974307656288147, -0.010539460927248001, -0.06121091917157173, 0.04575011134147644, -0.048667240887880325, -0.0028575521428138018, 0.07805002480745316, -0.03666015341877937, -0.003951956517994404, 0.026168785989284515, 0.021446865051984787, -0.024680400267243385, -0.04124830290675163, 0.019941821694374084, 0.000029686158086406067, 0.025269996374845505, 0.042707763612270355, -0.02116583101451397, 0.01494959369301796, 0.0708286240696907, -0.036260128021240234, 0.0769578069448471, -0.011083271354436874, -0.0060499985702335835, 0.0185401514172554, -0.00806963536888361, 0.005973886698484421, -0.044447191059589386, 0.0023349334951490164, 0.00921339076012373, 0.010591411031782627, -0.003503819927573204, 0.042785223573446274, 0.034920915961265564, -0.07536882162094116, -0.035916589200496674, -0.3530680537223816, -0.021267171949148178, -0.0036562071181833744, 0.014325996860861778, 0.015057042241096497, -0.033060695976018906, -0.002193370833992958, 0.005445128306746483, -0.0034993598237633705, 0.048534851521253586, 0.0927414745092392, -0.0074246409349143505, -0.003456483595073223, -0.164701908826828, -0.02721833810210228, 0.028603190556168556, -0.02398907206952572, -0.059794094413518906, -0.026251114904880524, 0.0015986149664968252, -0.024380821734666824, 0.011398185975849628, -0.02892104722559452, -0.011877445504069328, 0.007570309564471245, -0.02965426817536354, 0.14302146434783936, 0.01075227651745081, 0.04188814386725426, -0.049053363502025604, 0.01794981211423874, -0.03295053914189339, -0.005087011959403753, -0.020526764914393425, -0.0032304406631737947, -0.022375544533133507, -0.04247336834669113, 0.012452554889023304, -0.033137205988168716, -0.05965587496757507, -0.005804901942610741, 0.02013583667576313, 0.005759401712566614, -0.02675647661089897, -0.04608992487192154, 0.02088899351656437, 0.0017974298680201173, -0.015811365097761154, -0.0036939301062375307, 0.09430496394634247, 0.009989229030907154, 0.05411994457244873, 0.012261828407645226, 0.023214684799313545, -0.0038520132657140493, 0.012618664652109146, -0.0657791718840599, -0.018179066479206085, -0.04019210860133171, -0.0417386069893837, -0.02057715132832527, 0.011743556708097458, 0.037382327020168304, -0.07115884870290756, -0.026745306327939034, 0.029336504638195038, 0.002915533958002925, -0.043073784559965134, 0.04400850459933281, 0.02001836709678173, -0.018872907385230064, 0.12694615125656128, -0.012318645603954792, 0.006829728838056326, 0.057351868599653244, 0.07190173864364624, -0.02638641558587551, 0.05664391815662384, 0.03666286543011665, 0.009285726584494114, 0.019738968461751938, -0.014535441994667053, 0.028482558205723763, -0.00045334335300140083, 0.06266729533672333, 0.0009849932976067066, -0.007344174664467573, -0.04048922657966614, 0.017796756699681282, 0.013973849825561047, 0.010694064199924469, -0.013990005478262901, -0.001334379892796278, -0.03535810485482216, 0.054496850818395615, -0.013994879089295864, -0.25525927543640137, 0.0564798004925251, 0.036670636385679245, 0.07855895161628723, -0.031178953126072884, -0.010755878873169422, 0.02428916096687317, -0.00550918048247695, 0.008233875036239624, 0.004558271262794733, -0.024061748757958412, 0.04133177176117897, 0.029428042471408844, -0.056406352669000626, -0.029850687831640244, -0.006469683721661568, 0.06566395610570908, 0.003924823831766844, 0.020520396530628204, 0.025678468868136406, 0.01970810256898403, -0.03879890218377113, 0.13133299350738525, 0.04473182559013367, 0.01570175215601921, -0.04331992566585541, -0.022313816472887993, 0.0028612955939024687, 0.07174258679151535, 0.027768434956669807, 0.03609391301870346, -0.010525763034820557, 0.019262714311480522, 0.022758210077881813, 0.048569440841674805, -0.021828176453709602, -0.0397503487765789, 0.011220776475965977, 0.02454441599547863, -0.02000783197581768, 0.01796768791973591, 0.02638784795999527, -0.11182191967964172, 0.018280265852808952, 0.06812774389982224, 0.007490693591535091, -0.002626006491482258, -0.006402277387678623, -0.04133246839046478, -0.013304061256349087, -0.02243148535490036, -0.01712942123413086, -0.017842601984739304, -0.0007293256348930299, 0.00997170526534319, 0.034370314329862595, 0.039866600185632706, 0.008516008965671062, 0.03945513442158699, -0.02437414601445198, 0.013177724555134773, -0.06593906879425049, 0.09296543896198273, -0.0008860259549692273, -0.009480918757617474 ]
[ 0.03750794008374214, 0.013279751874506474, -0.0069832406006753445, 0.00010793685214594007, 0.012720895931124687, -0.0326227992773056, 0.0054313549771904945, -0.0027761547826230526, -0.017335914075374603, -0.019834445789456367, -0.011348138563334942, 0.010330605320632458, -0.020550522953271866, -0.038006193935871124, 0.022852810099720955, -0.005204926244914532, 0.004722731187939644, -0.002214999170973897, 0.06629040837287903, 0.007108284626156092, -0.03489027917385101, 0.01404604036360979, 0.018744217231869698, -0.016583185642957687, -0.005211436655372381, 0.028382515534758568, -0.03929555416107178, 0.011904336512088776, 0.023582080379128456, -0.09715214371681213, -0.01499783806502819, -0.02528078481554985, 0.0021833551581948996, 0.016070108860731125, -0.05175396054983139, 0.025164613500237465, -0.012063662521541119, 0.03167179971933365, -0.012203079648315907, 0.0027849802281707525, -0.0033683532383292913, 0.0043963659554719925, -0.00177351338788867, 0.012644018977880478, -0.0072086285799741745, -0.003085710806772113, -0.013920146971940994, -0.028895284980535507, -0.013065587729215622, 0.01934642717242241, -0.060062672942876816, 0.019596625119447708, -0.04147988557815552, 0.012479934841394424, 0.008896756917238235, -0.01139800250530243, 0.001151865697465837, -0.026981817558407784, 0.024743439629673958, 0.01068949792534113, -0.03870290517807007, 0.04594238102436066, -0.003722929861396551, -0.041213881224393845, 0.004262089263647795, -0.021686118096113205, -0.007982509210705757, -0.016014879569411278, 0.0061537353321909904, 0.011595030315220356, -0.013815388083457947, 0.014164072461426258, -0.025008119642734528, -0.01986158825457096, -0.04189250245690346, -0.01244007982313633, 0.010188776068389416, -0.055197909474372864, 0.005884856451302767, -0.030032142996788025, -0.02612517587840557, 0.024036431685090065, 0.006295767147094011, 0.03174076974391937, -0.003944801166653633, -0.03867438808083534, 0.0018708037678152323, 0.013471714220941067, 0.009860166348516941, -0.03922902047634125, 0.012228423729538918, 0.01904929056763649, -0.025954989716410637, 0.063704714179039, -0.0802147388458252, 0.005794281605631113, 0.0278476569801569, 0.021549975499510765, -0.038614314049482346, 0.8218790292739868, -0.007646661251783371, -0.04995147883892059, -0.0017130880150943995, 0.01708708517253399, -0.004856698680669069, -0.00430135615170002, 0.013224872760474682, -0.038554638624191284, -0.04583027958869934, 0.007816039025783539, 0.010332969948649406, 0.015309779904782772, 0.015500947833061218, 0.028095027431845665, 0.047125063836574554, 0.01274115964770317, -0.015239482745528221, -0.005732396617531776, -0.009828641079366207, -0.01257864385843277, -0.0056379009038209915, 0.027424480766057968, 0.02162867970764637, 0.00831652618944645, -0.028730208054184914, -0.17680038511753082, 0.017160849645733833, -7.972600885988095e-33, -0.0009222046937793493, -0.019923808053135872, 0.024661967530846596, -0.010964320972561836, 0.02180965058505535, 0.0003419172717258334, -0.03825337067246437, -0.01223175972700119, 0.03996595740318298, 0.00528114615008235, -0.0017169119091704488, -0.017566179856657982, 0.006524271331727505, 0.015972061082720757, 0.030406517907977104, -0.01793357916176319, 0.029431816190481186, 0.051070526242256165, 0.005187900271266699, 0.009467747062444687, 0.01693589799106121, 0.03171025589108467, 0.024074140936136246, 0.025730378925800323, -0.008916336111724377, -0.004165709018707275, 0.005470728036016226, 0.014833725988864899, 0.013394360430538654, -0.044983893632888794, -0.08070368319749832, -0.0006951595423743129, 0.02385743148624897, -0.0561232827603817, 0.0121293431147933, -0.05220293998718262, -0.01298943068832159, 0.01751319319009781, -0.041788872331380844, 0.023577190935611725, -0.045164804905653, -0.015003717504441738, -0.018282044678926468, -0.02559737302362919, -0.050107114017009735, 0.033422648906707764, 0.023667842149734497, 0.0764242634177208, 0.00016892727580852807, -0.010037018917500973, -0.017920076847076416, 0.01715383492410183, -0.028198888525366783, 0.00980334635823965, -0.01572590321302414, 0.01741372048854828, -0.007286781910806894, -0.008411377668380737, -0.0201690923422575, -0.010257311165332794, 0.023103957995772362, -0.020416539162397385, 0.03087542951107025, 0.021301478147506714, -0.015012786723673344, -0.0003136947634629905, 0.03591654822230339, -0.012682291679084301, 0.010756023228168488, 0.014414616860449314, -0.08873454481363297, 0.011174906976521015, -0.014436180703341961, -0.053603608161211014, 0.05228613317012787, -0.03505526855587959, -0.015217901207506657, 0.005722479894757271, 0.037235695868730545, 0.02379857562482357, 0.0072576613165438175, -0.027284972369670868, -0.0021938462741672993, -0.02169458009302616, -0.024675646796822548, -0.02288432978093624, 0.02686566486954689, 0.046294428408145905, -0.03441682085394859, -0.012158256955444813, 0.01702946424484253, -0.013938948512077332, -0.0028194107580929995, -0.012752842158079147, 0.015389792621135712, 7.125415495194749e-33, -0.006188130006194115, 0.029630638659000397, -0.005657038651406765, 0.012716335244476795, 0.04008467495441437, -0.023812027648091316, 0.031255096197128296, 0.03796326369047165, -0.017616325989365578, 0.028339045122265816, -0.0073915631510317326, -0.05062390863895416, -0.028840165585279465, 0.022314419969916344, 0.04785999283194542, 0.030156129971146584, -0.02932182140648365, 0.08078194409608841, -0.033958274871110916, -0.03496086969971657, -0.04019856080412865, 0.021913154050707817, -0.009959014132618904, 0.038546737283468246, 0.014285123907029629, 0.03112935833632946, -0.0007360232993960381, -0.009770377539098263, -0.008132285438477993, -0.00861146580427885, -0.01818135194480419, -0.009725339710712433, 0.012642578221857548, -0.0313977487385273, 0.005476726684719324, 0.05507032573223114, 0.02184947207570076, -0.04090482369065285, -0.053478140383958817, 0.005345259327441454, 0.023709582164883614, 0.0366053506731987, -0.019336223602294922, 0.049581583589315414, -0.033819835633039474, 0.021523552015423775, -0.011216849088668823, 0.041259150952100754, 0.015394847840070724, 0.00029324679053388536, -0.016785169020295143, 0.012558983638882637, 0.04291106015443802, -0.00947918277233839, 0.014451129361987114, -0.0427158884704113, -0.023340970277786255, 0.052487220615148544, -0.027202781289815903, 0.018007749691605568, -0.03543747588992119, -0.013828950002789497, -0.0328858308494091, 0.025390489026904106, -0.009132244624197483, -0.010486805811524391, -0.05209258198738098, -0.046295784413814545, -0.006099113263189793, 0.012844831682741642, 0.021823257207870483, -0.03480168431997299, 0.004614608362317085, 0.0031543103978037834, -0.0063254632987082005, 0.004225466400384903, -0.021392125636339188, -0.018402690067887306, -0.03559877723455429, 0.03537417948246002, 0.060616571456193924, -0.03223918378353119, 0.042877666652202606, 0.037355661392211914, -0.035619840025901794, 0.015328905545175076, -0.017896845936775208, 0.000878368504345417, -0.011111412197351456, 0.008349992334842682, 0.0139583395794034, -0.035486068576574326, -0.013585166074335575, 0.03688940778374672, 0.028125597164034843, -1.310139374766095e-8, -0.019971860572695732, 0.02484164386987686, 0.010335017926990986, 0.015353200025856495, -0.01673274300992489, 0.045268360525369644, -0.015583972446620464, 0.01799597591161728, 0.010738316923379898, 0.03427504375576973, 0.02899055741727352, -0.009244647808372974, -0.010586981661617756, 0.015460819937288761, -0.03589053452014923, -0.03541296347975731, 0.014711616560816765, 0.013325689360499382, 0.04058732092380524, -0.005069810431450605, 0.005336671136319637, -0.004386880435049534, 0.013536292128264904, -0.02084307372570038, -0.009512139484286308, -0.024426234886050224, 0.04184368997812271, -0.06361234933137894, 0.012308585457503796, 0.01867171749472618, 0.00011769740376621485, -0.043514445424079895, 0.00878268200904131, 0.04442625120282173, -0.0008408920839428902, -0.038936253637075424, -0.013057179749011993, 0.02600814402103424, 0.032958660274744034, 0.030006710439920425, -0.00257534789852798, 0.007628769148141146, -0.0016536106122657657, -0.031798142939805984, 0.011393449269235134, 0.030182885006070137, -0.06638166308403015, 0.017577003687620163, 0.030406665056943893, -0.016035927459597588, 0.027559969574213028, -0.013497999869287014, 0.013226897455751896, -0.007888292893767357, 0.05628979951143265, -0.00027328458963893354, -0.046696972101926804, 0.04579475149512291, -0.0038747969083487988, -0.0066286553628742695, 0.011471278965473175, 0.012062053196132183, -0.006210351828485727, -0.04351814463734627 ]
pandas-plot-x-axis-index
https://markhneedham.com/blog/2018/12/21/pandas-plot-x-axis-index
false
2018-12-09 10:25:00
PySpark: Creating DataFrame with one column - TypeError: Can not infer schema for type: <type 'int'>
[ "python", "pyspark" ]
[ "Python" ]
I've been playing with PySpark recently, and wanted to create a DataFrame containing only one column. I tried to do this by writing the following code: [source, python] ---- spark.createDataFrame([(1)], ["count"]) ---- If we run that code we'll get the following error message: [source, bash] ---- Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/home/markhneedham/projects/graph-algorithms/spark-2.4.0-bin-hadoop2.7/python/pyspark/sql/session.py", line 748, in createDataFrame rdd, schema = self._createFromLocal(map(prepare, data), schema) File "/home/markhneedham/projects/graph-algorithms/spark-2.4.0-bin-hadoop2.7/python/pyspark/sql/session.py", line 416, in _createFromLocal struct = self._inferSchemaFromList(data, names=schema) File "/home/markhneedham/projects/graph-algorithms/spark-2.4.0-bin-hadoop2.7/python/pyspark/sql/session.py", line 348, in _inferSchemaFromList schema = reduce(_merge_type, (_infer_schema(row, names) for row in data)) File "/home/markhneedham/projects/graph-algorithms/spark-2.4.0-bin-hadoop2.7/python/pyspark/sql/session.py", line 348, in <genexpr> schema = reduce(_merge_type, (_infer_schema(row, names) for row in data)) File "/home/markhneedham/projects/graph-algorithms/spark-2.4.0-bin-hadoop2.7/python/pyspark/sql/types.py", line 1062, in _infer_schema raise TypeError("Can not infer schema for type: %s" % type(row)) TypeError: Can not infer schema for type: <type 'int'> ---- The problem we have is that `createDataFrame` http://sqlblog.com/blogs/jamie_thomson/archive/2016/12/12/creating-a-spark-dataframe-containing-only-one-column.aspx[expects a tuple of values^], and we've given it an integer. Luckily we can fix this reasonably easily by passing in a single item tuple: [source, python] ---- spark.createDataFrame([(1,)], ["count"]) ---- If we run that code we'll get the expected DataFrame: [options="header"] |======= |count |1 |=======
Learn how to create a PySpark DataFrame with one column.
null
[ 0.0014420893276110291, -0.03150651976466179, -0.05142136290669441, 0.04682517051696777, 0.0942295640707016, 0.02707018330693245, 0.014060244895517826, 0.01313092466443777, 0.03625793382525444, -0.02367919124662876, 0.0036881002597510815, -0.028909124433994293, -0.08437153697013855, 0.02120083011686802, -0.025652965530753136, 0.06509343534708023, 0.06485667079687119, 0.014578361064195633, -0.0033702130895107985, 0.019440623000264168, 0.0346800722181797, 0.06180686876177788, -0.024538150057196617, 0.02314283698797226, 0.005442769266664982, 0.013656070455908775, 0.012912397272884846, -0.00404979707673192, -0.05387948080897331, -0.007498881779611111, 0.03140375390648842, 0.0014642190653830767, 0.02098020538687706, 0.0024448696058243513, 0.03886192664504051, 0.011297441087663174, -0.019882870838046074, 0.02254471182823181, -0.005792225711047649, 0.006165897939354181, -0.07693669945001602, 0.03774791210889816, -0.005878911353647709, 0.015117980539798737, -0.01881510764360428, -0.007077461574226618, -0.05355582386255264, 0.02409120835363865, 0.0012740370584651828, -0.005258277058601379, -0.056446440517902374, 0.03229176625609398, 0.010381572879850864, -0.026357373222708702, -0.01370144635438919, 0.05626910179853439, -0.008570835925638676, -0.06946878135204315, 0.05257246643304825, -0.024323750287294388, 0.0041952249594032764, -0.0191535372287035, -0.025392819195985794, 0.03764089569449425, 0.014530215412378311, -0.03800981864333153, -0.01596141792833805, 0.08164536207914352, -0.06207539886236191, 0.015771081671118736, -0.00038844093796797097, 0.012896718457341194, -0.030796831473708153, 0.0030981721356511116, -0.007138832006603479, -0.027901001274585724, 0.026475412771105766, 0.060614462941884995, 0.019550003111362457, 0.06523669511079788, -0.0030492779333144426, -0.017518822103738785, 0.014222104102373123, 0.014951116405427456, 0.009379347786307335, -0.033789828419685364, -0.08083732426166534, -0.03819373622536659, -0.04509689286351204, 0.04944515973329544, -0.0125192916020751, -0.03299074247479439, 0.006231753621250391, 0.010034025646746159, -0.013781581073999405, 0.0027777929790318012, -0.014782046899199486, 0.0023349709808826447, 0.004459744784981012, -0.0328666977584362, -0.05577566847205162, -0.017819320783019066, 0.03319636359810829, -0.004021347966045141, -0.06302265077829361, -0.009386897087097168, -0.015746694058179855, -0.021361861377954483, 0.032551541924476624, 0.010607235133647919, -0.01666177064180374, -0.013137145899236202, -0.014532106928527355, -0.003419770859181881, -0.07492885738611221, 0.06697903573513031, 0.01742575317621231, -0.018675655126571655, 0.00839798804372549, 0.006788965314626694, 0.03671059012413025, 0.015755759552121162, -0.017898542806506157, 0.0778895914554596, -0.005678200162947178, 0.05406801030039787, -0.00007244050357257947, 0.06076323240995407, -0.0020827320404350758, -0.06445550918579102, -0.05118173360824585, 0.06577714532613754, 0.01114162988960743, -0.02538112923502922, 0.012396708130836487, -0.02573191374540329, -0.021958740428090096, 0.015956128016114235, 0.04031335189938545, 0.030066603794693947, 0.010094289667904377, -0.0036695266608148813, 0.011803582310676575, 0.012137085199356079, 0.02474384568631649, 0.03094053827226162, 0.010058778338134289, -0.04916023463010788, -0.026784786954522133, 0.01630863919854164, -0.0019845482893288136, 0.06125330924987793, 0.04869736731052399, 0.005853922571986914, -0.0004655816010199487, 0.09942296892404556, 0.02355228364467621, 0.005410100799053907, -0.04964444786310196, 0.01644647866487503, 0.05096470192074776, 0.0015773546183481812, 0.019343281164765358, 0.04376963898539543, 0.023228758946061134, -0.02217153273522854, 0.026339683681726456, 0.018745850771665573, -0.029364770278334618, 0.000019124689060845412, -0.03743455186486244, -0.0911039263010025, 0.047479864209890366, -0.05169679969549179, 0.03213956952095032, 0.022326907142996788, 0.06910336017608643, 0.03203057870268822, 0.05053606629371643, 0.011629111133515835, -0.07374013215303421, 0.03217604011297226, -0.03647535666823387, 0.02952662482857704, 0.06657735258340836, -0.006737954914569855, 0.0734492689371109, 0.03526967391371727, 0.0424562506377697, 0.04050605744123459, -0.07454244792461395, -0.07554441690444946, -0.023270033299922943, -0.02455078810453415, 0.06981438398361206, -0.06409414112567902, -0.005103914067149162, 0.047669388353824615, 0.010472476482391357, 0.020068736746907234, 0.013216167688369751, 0.0057212067767977715, 0.0030476502142846584, -0.028349900618195534, -0.01608407497406006, 0.014517717994749546, 0.021473534405231476, -0.017009122297167778, -0.013288471847772598, 0.000529058335814625, -0.012079781852662563, -0.00957158301025629, 0.030347824096679688, -0.03235002979636192, 0.08554153889417648, 0.028961919248104095, 0.0319371297955513, -0.009137706831097603, 0.04529325291514397, -0.02366926707327366, 0.04683039337396622, 0.0022251722402870655, -0.037731073796749115, -0.02607967145740986, 0.004451456014066935, 0.12573479115962982, 0.06824521720409393, -0.010235295630991459, -0.050642818212509155, 0.005116037558764219, 0.005193774122744799, -0.023975620046257973, 0.005011511500924826, -0.014813737943768501, -0.02610134705901146, 0.014984773471951485, -0.0266750268638134, -0.026640726253390312, 0.010701318271458149, -0.02957228198647499, 0.0036034677177667618, 0.07388170808553696, -0.07294961810112, 0.03744897246360779, 0.030355678871273994, -0.01143509242683649, -0.012501589022576809, -0.018321027979254723, -0.04682215675711632, -0.019055349752306938, 0.01672936975955963, -0.010954566299915314, 0.05816349387168884, -0.023877305909991264, -0.03923575580120087, -0.027585666626691818, -0.03474452346563339, 0.008001597598195076, 0.06069020926952362, 0.032244984060525894, -0.05849995091557503, 0.02074998803436756, -0.02365831844508648, -0.0017373526934534311, -0.034930575639009476, -0.02904890850186348, -0.033762138336896896, -0.017744168639183044, 0.016625789925456047, 0.030430302023887634, 0.03349953517317772, 0.014121029525995255, 0.006138465832918882, 0.017069198191165924, -0.011640071868896484, 0.0350928008556366, 0.039823852479457855, -0.01973036490380764, -0.0019105743849650025, -0.04439809173345566, 0.009427793323993683, 0.04130744934082031, -0.03269656375050545, -0.01354695949703455, 0.001992375822737813, -0.01648179069161415, 0.040826454758644104, -0.055432893335819244, -0.04527410492300987, 0.023298632353544235, 0.02447899430990219, 0.06215694546699524, -0.00634546997025609, -0.023747067898511887, 0.06641450524330139, 0.026198159903287888, -0.023083457723259926, 0.019047502428293228, 0.008503544144332409, 0.04880847781896591, 0.024587513878941536, 0.03227241709828377, 0.016639631241559982, -0.006804157979786396, -0.03328824043273926, -0.014517191797494888, -0.03250835835933685, 0.0032742794137448072, -0.262874037027359, 0.02675442025065422, -0.04342212155461311, -0.05828287452459335, 0.021313881501555443, -0.044949185103178024, -0.008405676111578941, -0.008610009215772152, -0.007386533543467522, -0.00420591002330184, -0.03665074333548546, -0.054452285170555115, -0.012767431326210499, 0.0675797089934349, 0.0336010679602623, 0.0209598857909441, -0.018253255635499954, -0.02966502122581005, 0.0020956117659807205, 0.02980048581957817, 0.003535330295562744, -0.023763548582792282, -0.044088732451200485, 0.0626000165939331, 0.0420980304479599, 0.04630221053957939, -0.06469555199146271, 0.04343313351273537, -0.05973481386899948, -0.039811599999666214, 0.028716886416077614, -0.043303221464157104, -0.022388147190213203, -0.015787333250045776, -0.020117901265621185, -0.016911620274186134, 0.010399842634797096, -0.004679827950894833, -0.010339342057704926, 0.010642286390066147, -0.030547164380550385, -0.066912941634655, -0.014936471357941628, -0.004883460700511932, 0.04726773872971535, -0.013993757776916027, -0.06828930228948593, 0.019075004383921623, -0.04946482926607132, 0.042059630155563354, -0.0390990786254406, -0.012448436580598354, -0.01114901527762413, 0.035371799021959305, -0.021328356117010117, 0.030955521389842033, -0.026641950011253357, 0.020619336515665054, -0.03405427560210228, -0.0032970046158879995, -0.011129241436719894, -0.06149868294596672, 0.003442738438025117, -0.04955354332923889, -0.017884081229567528, -0.06365308165550232, -0.0359136238694191, -0.018468473106622696, 0.047232046723365784, 0.06706149131059647, -0.03536665812134743, 0.015360266901552677, 0.005086068529635668, -0.08516176789999008, 0.0054272739216685295, -0.01388104259967804, 0.0025643662083894014, -0.016723349690437317, -0.020913567394018173, 0.045564547181129456, -0.03606988862156868, -0.042752817273139954, 0.013502455316483974, -0.0010428458917886019, 0.007480494678020477, 0.008408556692302227, 0.023682046681642532, 0.007377327885478735, -0.024959394708275795, -0.027151722460985184, 0.05226866528391838, -0.04614599421620369, 0.0167024414986372, 0.02717570960521698, -0.04057856276631355, 0.05894862115383148, -0.0011019657831639051, -0.001965194707736373, -0.0025052642449736595, 0.028193088248372078, 0.021637536585330963, -0.03749854862689972, -0.02286001481115818, -0.053153444081544876, -0.012817240320146084, -0.011131644248962402, -0.07164790481328964, -0.011773312464356422, 0.013613032177090645, 0.030785270035266876, 0.0022042084019631147, -0.02284214086830616, 0.024352069944143295, -0.06174946948885918, -0.024930790066719055, -0.022794272750616074, 0.00916601438075304, 0.011458121240139008, 0.006377184297889471, 0.0025073380675166845, -0.07334604859352112, 0.022952850908041, -0.001284500234760344, -0.033263854682445526, -0.04961307719349861, -0.02352156676352024, 0.0015165815129876137, -0.015199854969978333, -0.02887045219540596, -0.0068318541161715984, -0.012398754246532917, 0.017553342506289482, 0.04214658588171005, -0.01817670650780201, 0.027820827439427376, -0.025531694293022156, -0.05645878612995148, -0.03550012409687042, -0.0083409883081913, 0.05140574648976326, 0.019302627071738243, 0.025341372936964035, 0.007210589479655027, 0.01606765203177929, 0.030602160841226578, 0.013454130850732327, 0.03545353189110756, 0.013183238916099072, -0.005628831218928099, 0.003576835850253701, -0.0002127891784766689, -0.013508476316928864, 0.020549630746245384, -0.05320245400071144, -0.07207415997982025, 0.003614183282479644, 0.03549925237894058, -0.03267766162753105, 0.015931079164147377, -0.03749357536435127, 0.007198456209152937, -0.016941610723733902, -0.01771080680191517, -0.019001008942723274, 0.00877866055816412, 0.050731152296066284, 0.004584087990224361, 0.01714583858847618, 0.0004136175266467035, -0.005856932140886784, 0.0034841052256524563, -0.022787006571888924, -0.041046276688575745, 0.018758907914161682, -0.0026857999619096518, -0.010820857249200344, 0.03913644328713417, 0.013461340218782425, 0.010310855694115162, -0.013962526805698872, -0.020511697977781296, 0.005114323925226927, 0.013601422309875488, 0.008054947480559349, 0.026356609538197517, 0.045051898807287216, -0.004639143589884043, 0.00684074591845274, -0.004953008610755205, -0.04418792203068733, -0.04001224786043167, -0.0018726090202108026, 0.00418045511469245, 0.028974605724215508, -0.010018446482717991, -0.053289223462343216, 0.030821943655610085, 0.03152326121926308, 0.00027391742332838476, -0.017727985978126526, -0.027196895331144333, -0.0088651143014431, -0.018426790833473206, 0.03371105343103409, 0.10093095898628235, -0.04551723599433899, -0.005522840190678835, -0.028277337551116943, 0.008407477289438248, 0.010514110326766968, -0.0013266964815557003, -0.04213663190603256, -0.029950663447380066, -0.044857583940029144, 0.017932342365384102, 0.020281244069337845, 0.0014531174674630165, -0.04156798496842384, 0.022052695974707603, 0.0017381542129442096, 0.010159037075936794, 0.005558330100029707, 0.029543228447437286, -0.04006994515657425, -0.013406354933977127, 0.018775735050439835, 0.00030923582380637527, -0.008541485294699669, 0.017593668773770332, 0.016777530312538147, -0.004573449958115816, -0.0042190090753138065, 0.035457853227853775, 0.000878692721016705, 0.0009500008309260011, -0.024063508957624435, -0.032980259507894516, 0.015995707362890244, 0.007661244831979275, 0.05633767321705818, 0.0225342009216547, 0.00792213436216116, -0.028623713180422783, -0.00847083143889904, -0.008379111997783184, 0.01581519842147827, -0.01855454407632351, -0.02938256599009037, 0.019287768751382828, 0.04805104434490204, 0.018676400184631348, 0.018277132883667946, -0.015652963891625404, -0.03182026743888855, 0.07895362377166748, 0.0044479467906057835, -0.017290709540247917, -0.031023044139146805, -0.05544420704245567, 0.04441112279891968, 0.0018079039873555303, 0.012186524458229542, -0.042136672884225845, 0.057038094848394394, 0.03868401050567627, 0.028481440618634224, 0.03698830306529999, -0.027468537911772728, 0.060741689056158066, -0.0374627411365509, -0.02155202440917492, -0.09275438636541367, -0.033792827278375626, 0.03712514415383339, -0.01205929834395647, -0.005387292709201574, -0.03386268392205238, -0.03129284456372261, 0.006533529609441757, -0.04628201574087143, -0.043757274746894836, 0.0331689678132534, 0.013036560267210007, 0.03805319219827652, 0.03271197900176048, -0.004317609127610922, 0.013543577864766121, 0.02410401776432991, -0.05358496680855751, -0.02041839249432087, -0.02960999123752117, 0.06574845314025879, -0.004482386168092489, -0.008382981643080711, -0.008827343583106995, -0.03390137851238251, 0.06880486011505127, 0.0234916340559721, 0.022814089432358742, 0.06724346429109573, -0.024464944377541542, 0.04956135153770447, 0.044238023459911346, -0.01436438225209713, -0.005286135245114565, 0.045357733964920044, -0.0066861179657280445, -0.05313698574900627, 0.0017477298388257623, 0.017691748216748238, 0.03736376389861107, -0.04516986757516861, 0.0829935297369957, -0.003049034858122468, -0.07177906483411789, -0.04765813797712326, -0.01183403842151165, -0.0459953136742115, -0.01926722191274166, -0.03343706950545311, -0.005954103544354439, -0.018344847485423088, 0.08843789994716644, -0.03476318344473839, -0.02643442526459694, 0.053674183785915375, -0.012892336584627628, 0.0071813794784247875, 0.0048984382301568985, 0.059357453137636185, 0.07788313180208206, -0.010974415577948093, 0.013937615789473057, 0.06512653827667236, -0.022670883685350418, -0.03138084337115288, 0.016119427978992462, -0.05891944468021393, -0.0248393751680851, -0.06062841787934303, 0.029619339853525162, 0.05543920397758484, -0.012509256601333618, 0.08577452600002289, -0.02036188542842865, 0.02962516061961651, -0.009698603302240372, 0.03786647692322731, 0.03772679343819618, 0.025440022349357605, 0.006878314074128866, 0.05423516407608986, -0.0015996869187802076, -0.030170930549502373, 0.0030376033391803503, -0.021939238533377647, -0.010344245471060276, 0.01809845119714737, -0.001338847680017352, -0.004072707612067461, 0.05344483256340027, 0.03301510587334633, 0.08639046549797058, -0.029458045959472656, -0.03421352058649063, 0.014553256332874298, 0.04143974557518959, -0.012152137234807014, 0.01401367038488388, -0.015574375167489052, -0.05146932229399681, -0.02033337764441967, -0.0745602548122406, -0.0261884406208992, -0.021087659522891045, -0.04155727103352547, 0.0014095506630837917, -0.008968658745288849, 0.015069031156599522, 0.026791494339704514, 0.031864989548921585, -0.06552005559206009, -0.04590805992484093, -0.057858891785144806, -0.007818445563316345, -0.07521671801805496, 0.013101933524012566, -0.003829554421827197, -0.025927167385816574, -0.03231212869286537, -0.02754218690097332, -0.00904044695198536, 0.0339830182492733, -0.022146880626678467, 0.0032269598450511694, -0.034998293966054916, 0.032964643090963364, -0.007035417947918177, 0.0009366379817947745, 0.03712707385420799, 0.05748654529452324, 0.00540402065962553, -0.008101962506771088, -0.010211030021309853, 0.00045357513590715826, 0.059556812047958374, 0.022672168910503387, 0.03798971325159073, -0.06950131803750992, 0.01873440109193325, 0.01589125022292137, -0.000775968364905566, -0.04784323275089264, 0.01363869197666645, 0.06148757040500641, 0.03559199720621109, 0.04098554328083992, -0.009540711529552937, -0.02386057749390602, -0.04942816495895386, -0.04291806370019913, -0.014047197997570038, 0.025087568908929825, 0.03330618888139725, -0.03774653375148773, 0.054930709302425385, 0.061774224042892456, 0.004194892942905426, -0.00528680207207799, -0.01162574253976345, -0.007417712360620499, -0.021115416660904884, -0.032105859369039536, -0.05065087601542473, -0.056644272059202194, -0.07218211144208908, 0.03664989024400711, -0.0034433852415531874, -0.05529709532856941, -0.009404700249433517, -0.027528278529644012, 0.021940531209111214, -0.05671020597219467, 0.023815225809812546, -0.05014003440737724, 0.027063259854912758, -0.04081703722476959, -0.041624922305345535, -0.025327466428279877, 0.016242526471614838, 0.023843439295887947, -0.0012887385673820972, 0.002733631292358041, -0.030085928738117218, 0.0063916416838765144, -0.014461198821663857, 0.029492665082216263, 0.03393590822815895, -0.061906807124614716, 0.04341380298137665 ]
[ -0.0525849275290966, -0.05334499478340149, -0.028217636048793793, -0.010140216909348965, 0.038313403725624084, -0.01225319504737854, -0.04570157080888748, 0.0019162591779604554, 0.03812096640467644, 0.047320179641246796, 0.025506697595119476, -0.10710372775793076, 0.019004737958312035, -0.03235245123505592, 0.03923988714814186, -0.0064915865659713745, -0.03223668411374092, -0.0541234128177166, -0.09782031923532486, 0.042559146881103516, 0.013388637453317642, -0.07079290598630905, -0.08253262937068939, -0.07232724130153656, 0.025131281465291977, 0.04770892113447189, 0.0247779730707407, -0.055526815354824066, -0.023005137220025063, -0.20507493615150452, 0.000026006438929471187, -0.010021964088082314, 0.030108965933322906, -0.0208843182772398, 0.030290961265563965, 0.00980810634791851, 0.0015882380539551377, 0.031837448477745056, 0.002215706743299961, 0.05518108233809471, 0.0024017347022891045, -0.01792852394282818, -0.07138292491436005, -0.006990336813032627, 0.027860047295689583, -0.004524947144091129, -0.03958302363753319, -0.022434990853071213, 0.01469785999506712, 0.009784112684428692, -0.0909869447350502, 0.009174231439828873, -0.035464607179164886, -0.01489703357219696, -0.00008567673648940399, 0.04105479642748833, 0.04557335004210472, 0.07028008252382278, 0.019328737631440163, 0.0042045931331813335, 0.0009456968400627375, -0.011971964500844479, -0.13655811548233032, 0.04875507950782776, 0.025576120242476463, 0.05136139690876007, -0.05374867096543312, -0.024699363857507706, 0.010458557866513729, 0.04501613229513168, 0.0038931153248995543, -0.030924120917916298, 0.005759137682616711, 0.09759292751550674, 0.006093314383178949, 0.0008711062837392092, -0.04744420200586319, 0.009349257685244083, 0.05202596262097359, -0.006855266634374857, -0.08630134910345078, -0.0024308008141815662, -0.04303724318742752, 0.012721672654151917, -0.04251958057284355, 0.017606984823942184, -0.030968859791755676, 0.03694170340895653, 0.010825100354850292, 0.02466229349374771, 0.053425807505846024, -0.003376044100150466, 0.04903152957558632, 0.039591800421476364, -0.08831740915775299, -0.012148681096732616, -0.005982315633445978, -0.024139905348420143, 0.006024580914527178, 0.4091271758079529, -0.016850408166646957, 0.0015681744553148746, 0.02907317318022251, 0.074624203145504, -0.011267689056694508, -0.016033437103033066, -0.007308024913072586, -0.06219472363591194, 0.013916997238993645, -0.025854410603642464, 0.01550521794706583, -0.07129988074302673, 0.0489831417798996, -0.08782821148633957, 0.009609680622816086, -0.008160990662872791, -0.018087463453412056, 0.02266070619225502, -0.048525094985961914, 0.07505343109369278, -0.020436599850654602, 0.02808438614010811, 0.0012822872959077358, 0.022938158363103867, -0.0013006323715671897, 0.03842698037624359, 0.04025512561202049, 0.04310968890786171, 0.052551545202732086, -0.00886094942688942, 0.039901379495859146, -0.024758778512477875, -0.085929274559021, -0.010735854506492615, 0.0009611755958758295, -0.00020744415814988315, 0.03671736642718315, -0.02311929129064083, 0.027246596291661263, 0.02414901740849018, 0.0032298436854034662, -0.05849966034293175, 0.013479121029376984, 0.0014347147662192583, 0.026972709223628044, 0.12394563853740692, -0.008146076463162899, 0.019583526998758316, -0.05051020160317421, -0.021855881437659264, -0.04319154471158981, 0.016138466075062752, 0.00918805692344904, -0.05153987556695938, 0.030819272622466087, 0.028002476319670677, 0.061727073043584824, -0.024441687390208244, -0.0474623367190361, -0.0026880339719355106, -0.006039957515895367, -0.022914119064807892, -0.045480310916900635, 0.006435786373913288, 0.02170988917350769, -0.10081729292869568, -0.02212843857705593, 0.03613327443599701, -0.03052985854446888, -0.030783846974372864, 0.0007649313192814589, 0.008575128391385078, -0.019820483401417732, 0.011499290354549885, 0.06610957533121109, -0.02585502155125141, -0.057470474392175674, 0.003170388750731945, 0.04962051659822464, 0.036474790424108505, 0.027943989261984825, 0.040690988302230835, -0.015179683454334736, 0.0012852109503000975, -0.0467502623796463, -0.08452679216861725, -0.0623713918030262, -0.0031190281733870506, -0.0384971909224987, -0.07215724885463715, -0.012930572032928467, 0.007631614804267883, -0.012266956269741058, 0.08152592182159424, -0.03672981262207031, -0.03418082371354103, 0.06625064462423325, -0.013709649443626404, 0.0019728613551706076, -0.03151334449648857, -0.011799464002251625, 0.03746207058429718, -0.0017738996539264917, 0.062336213886737823, -0.07730941474437714, -0.009433924220502377, 0.018234314396977425, -0.011775124818086624, 0.03934324160218239, -0.008647187612950802, -0.034054845571517944, 0.0014858407666906714, -0.03628998622298241, 0.04640508443117142, -0.0426371768116951, 0.02841419167816639, -0.026941727846860886, -0.003740926505997777, 0.03973442688584328, 0.014376058243215084, -0.007539284415543079, -0.016200918704271317, -0.031549129635095596, -0.3593880534172058, -0.02930019423365593, -0.001394951599650085, -0.03984331339597702, -0.048487745225429535, -0.023996587842702866, -0.0032532615587115288, 0.016350600868463516, -0.04788384214043617, 0.03908262401819229, 0.07526259869337082, -0.027489613741636276, 0.005996259860694408, -0.07771513611078262, 0.004816614091396332, 0.02348434366285801, -0.05022873729467392, -0.015103615820407867, -0.017089132219552994, 0.033160094171762466, 0.018250059336423874, 0.004859983455389738, -0.0031926354859024286, -0.018580559641122818, 0.049233727157115936, -0.01436953991651535, 0.13503393530845642, 0.012078240513801575, 0.06583739817142487, -0.055418096482753754, 0.06008056923747063, -0.005609579384326935, -0.01566067896783352, -0.029178593307733536, 0.012235475704073906, -0.06559538841247559, -0.04732172191143036, 0.03247228264808655, -0.024810785427689552, -0.017186203971505165, -0.029813723638653755, 0.018315421417355537, -0.05920446291565895, -0.04042622447013855, 0.004530834034085274, -0.006149869412183762, 0.011094273999333382, 0.007061096373945475, 0.00326941697858274, 0.08696327358484268, 0.007554622367024422, 0.024682139977812767, 0.08315485715866089, 0.0381082259118557, 0.06583249568939209, -0.017383646219968796, -0.08050315082073212, 0.041264381259679794, 0.010778245516121387, -0.02875053510069847, 0.03649931773543358, 0.029175344854593277, 0.037087757140398026, -0.03734710440039635, 0.001071649487130344, -0.011067855171859264, -0.005678578279912472, 0.0011913635535165668, 0.0006803835858590901, -0.02762460894882679, -0.008507237769663334, 0.06819836050271988, 0.02097134105861187, 0.033093951642513275, 0.05293063074350357, 0.039857570081949234, -0.00942779891192913, -0.017278051003813744, -0.0032735068816691637, -0.014464427717030048, 0.026423746719956398, -0.06021691858768463, 0.059766847640275955, 0.034965820610523224, 0.028190914541482925, 0.05661043897271156, 0.004948762711137533, -0.0011813148157671094, 0.0475575216114521, -0.002828500233590603, -0.010737480595707893, -0.001284718862734735, -0.031740911304950714, 0.013704423792660236, 0.08339090645313263, -0.015850558876991272, -0.26761093735694885, 0.04745783284306526, 0.013879568316042423, 0.04256943240761757, -0.019296327605843544, 0.019052956253290176, -0.013389229774475098, -0.01749495416879654, 0.011771446093916893, 0.008446992374956608, -0.019359007477760315, 0.03888479247689247, 0.05172675848007202, 0.01700361631810665, -0.0077044423669576645, 0.0035815213341265917, 0.03635909780859947, 0.007536673918366432, 0.055428363382816315, -0.016323713585734367, 0.03142900764942169, -0.004184147343039513, 0.12572266161441803, 0.02730911411345005, -0.00031823135213926435, 0.014948634430766106, 0.00386348320171237, -0.02709910087287426, 0.03193153813481331, 0.05222751200199127, -0.007269569206982851, 0.012962819077074528, 0.023498516529798508, 0.02845766581594944, 0.035373762249946594, -0.027821820229291916, 0.013047155924141407, 0.042505279183387756, 0.043058622628450394, -0.028692185878753662, -0.01828407123684883, 0.026754530146718025, -0.03586803004145622, 0.035268742591142654, 0.04113312065601349, -0.02438037469983101, -0.0018195402808487415, -0.04577375575900078, -0.04965191334486008, -0.005613461136817932, -0.0009040323784574866, 0.017151160165667534, -0.01282714307308197, 0.014535127207636833, -0.012877613306045532, 0.03890658915042877, 0.06165652722120285, 0.018900932744145393, 0.019379517063498497, -0.01622951775789261, 0.024872247129678726, -0.06661875545978546, 0.0890057310461998, 0.010184310376644135, -0.0003258201468270272 ]
[ 0.001698540523648262, -0.014726695604622364, -0.02716357633471489, 0.002667525550350547, 0.0007170497556217015, -0.015027535147964954, 0.010207080282270908, 0.052353136241436005, -0.036122117191553116, 0.012043936178088188, -0.029580935835838318, 0.015460084192454815, -0.009719300083816051, -0.02892741933465004, -0.01222859788686037, -0.023415781557559967, -0.012440308928489685, -0.011554074473679066, 0.024085555225610733, 0.009139614179730415, 0.0009585711522959173, 0.028778022155165672, 0.010139823891222477, 0.0016224602004513144, 0.023832619190216064, 0.04369781166315079, -0.055901024490594864, 0.029339905828237534, 0.008713186718523502, -0.10055849701166153, -0.02192271687090397, -0.013139599934220314, 0.01027367077767849, 0.0036795353516936302, 0.018282920122146606, 0.0017124261939898133, -0.017198940739035606, 0.029331322759389877, -0.015471037477254868, -0.009872286580502987, 0.01846585050225258, -0.03716162219643593, -0.04832351580262184, 0.005723828449845314, -0.03775576129555702, -0.011431927792727947, -0.002413499401882291, -0.027530737221240997, -0.0029822359792888165, 0.002883541164919734, -0.058045968413352966, 0.040193378925323486, 0.015736021101474762, -0.041959650814533234, 0.018844714388251305, 0.043903835117816925, -0.012588589452207088, 0.011522972956299782, 0.01812077686190605, -0.03905726596713066, -0.023585865274071693, -0.01755458489060402, -0.0076248543336987495, -0.026061799377202988, -0.021131841465830803, -0.024280205368995667, -0.04050441086292267, -0.00411308603361249, 0.01644645631313324, 0.010848239995539188, 0.008353141136467457, 0.020686371251940727, -0.06550059467554092, -0.03430727496743202, -0.0364847257733345, 0.04401439055800438, 0.04502832889556885, -0.022600924596190453, -0.005979407113045454, 0.01979754865169525, -0.04572359099984169, 0.015322117134928703, -0.022800395265221596, -0.0034084732178598642, -0.020556408911943436, -0.04002323001623154, 0.013613104820251465, -0.02082754671573639, 0.01783926598727703, -0.030405918136239052, -0.022475620731711388, 0.023900827392935753, 0.017041917890310287, 0.034298356622457504, -0.11752509325742722, 0.02747821807861328, 0.02399570308625698, 0.0026575212832540274, 0.012262506410479546, 0.7879642248153687, -0.003151924116536975, -0.0021166822407394648, 0.0023432758171111345, 0.052460573613643646, -0.012604725547134876, 0.016752472147345543, -0.03468627855181694, -0.0407722182571888, -0.02002197690308094, -0.015323631465435028, 0.036024052649736404, -0.015519116073846817, 0.04203617200255394, 0.05039418116211891, 0.05205449089407921, 0.012669050134718418, -0.0011301037156954408, 0.009173658676445484, 0.0021827584132552147, 0.013076291419565678, 0.03753667697310448, -0.003639363218098879, 0.035644419491291046, -0.01871548779308796, -0.008569078519940376, -0.14326725900173187, 0.0022839235607534647, -6.679183145943223e-33, -0.0037773805670440197, -0.0425720177590847, 0.05230702832341194, -0.0017373845912516117, 0.04388188570737839, 0.028085628524422646, -0.02830430679023266, 0.033843331038951874, -0.005435639061033726, -0.015342405997216702, -0.023870892822742462, 0.018345985561609268, 0.015048525296151638, -0.0437094122171402, 0.005409469828009605, 0.00432325154542923, -0.0020407219417393208, 0.027754608541727066, -0.019428810104727745, 0.021706167608499527, 0.021981509402394295, 0.057522594928741455, -0.0013431110419332981, 0.06741208583116531, -0.022710690274834633, -0.0004472288419492543, 0.028911646455526352, -0.027134673669934273, 0.03674260899424553, -0.01882055588066578, -0.06776636093854904, 0.0010110350558534265, -0.015181486494839191, -0.0435933917760849, 0.0062354253605008125, -0.07130011171102524, -0.04861513525247574, -0.0026885634288191795, -0.0262878630310297, -0.021988771855831146, -0.041044607758522034, -0.016516506671905518, -0.022299261763691902, -0.06005324050784111, -0.04338408261537552, 0.032461006194353104, 0.006933294702321291, 0.09126254916191101, -0.02438383176922798, 0.04315664991736412, -0.0062770117074251175, -0.022357406094670296, 0.026130657643079758, 0.06448358297348022, 0.01360850129276514, 0.03514222428202629, -0.01895197667181492, -0.02973935380578041, 0.020198430866003036, 0.026418525725603104, 0.0017419756622985005, -0.006116779055446386, 0.006654633674770594, 0.0029075862839818, 0.0040452261455357075, -0.02297528274357319, 0.019749175757169724, 0.024321196600794792, 0.015560693107545376, 0.009428360499441624, -0.019289057701826096, 0.04253198951482773, -0.02156374417245388, 0.002111985580995679, 0.013921527191996574, -0.057310402393341064, 0.04558371752500534, -0.004770270548760891, -0.01627373695373535, 0.018925422802567482, 0.01815495453774929, -0.016558948904275894, -0.030953040346503258, -0.037765320390462875, -0.034926317632198334, -0.045742761343717575, 0.01969909854233265, 0.029908476397395134, -0.017813723534345627, 0.01813269592821598, -0.023134658113121986, -0.008353929035365582, 0.019299941137433052, -0.023583827540278435, -0.021819600835442543, 6.860209275969856e-33, -0.007852001115679741, -0.017356831580400467, 0.0016552191227674484, 0.01526324450969696, 0.05150846764445305, 0.014711852185428143, 0.09165911376476288, -0.020296497270464897, -0.032571662217378616, 0.009669393301010132, -0.06195433810353279, -0.012444247491657734, 0.03657637909054756, 0.04011496528983116, 0.04140417277812958, -0.008512609638273716, 0.0047298818826675415, -0.00492792297154665, -0.012704066000878811, 0.006832572165876627, -0.0040430789813399315, 0.01725090481340885, -0.014604362659156322, 0.053405724465847015, 0.06380175799131393, 0.0029165297746658325, -0.018411969766020775, 0.003606315702199936, -0.025437962263822556, -0.0010054950835183263, 0.02246018685400486, 0.005618445575237274, -0.016254765912890434, -0.015170365571975708, -0.036410778760910034, -0.007500141859054565, 0.03183766454458237, -0.036968816071748734, -0.0019012605771422386, -0.005201954860240221, 0.02954455278813839, -0.007109369616955519, -0.019042139872908592, 0.02950829267501831, 0.012100784108042717, 0.03938337415456772, -0.0068890987895429134, 0.06663662940263748, -0.007432238198816776, 0.011743389070034027, -0.02412720024585724, 0.033449117094278336, -0.008988084271550179, 0.049239903688430786, 0.01846861094236374, -0.05331980064511299, 0.05261131003499031, 0.059229426085948944, -0.06804291158914566, -0.005100397393107414, -0.003647421719506383, -0.04839065298438072, -0.032644499093294144, 0.0323626846075058, -0.025468425825238228, -0.06902426481246948, 0.0007188830059021711, -0.022564329206943512, -0.00940035842359066, -0.04094983637332916, 0.001986369490623474, -0.02817523293197155, 0.00781939271837473, 0.04782747104763985, 0.03729726001620293, 0.02370775118470192, -0.021075628697872162, 0.0004186131991446018, 0.00475945184007287, -0.006755837704986334, 0.01516283955425024, -0.03257938474416733, 0.05292902886867523, 0.03184526041150093, 0.0009986802469938993, -0.014677373692393303, -0.021400678902864456, -0.023403292521834373, 0.015299157239496708, 0.03227275609970093, -0.02955801412463188, -0.03979965299367905, -0.044752683490514755, 0.03458408638834953, 0.0001936484477482736, -1.2253376979742825e-8, 0.032937753945589066, -0.016839394345879555, -0.011077682487666607, 0.012440469115972519, 0.04865756258368492, 0.005690944381058216, -0.009792940691113472, 0.023484116420149803, -0.004452492576092482, 0.013455763459205627, 0.02013527974486351, -0.014460286125540733, 0.015443836338818073, 0.028081100434064865, 0.03086303547024727, 0.007262008730322123, 0.039586082100868225, 0.020342931151390076, 0.024409379810094833, -0.013699205592274666, -0.01083078607916832, 0.027739597484469414, -0.050269342958927155, 0.005630154628306627, -0.003303237957879901, -0.016031483188271523, 0.062088482081890106, -0.08535539358854294, -0.034074243158102036, -0.03790726885199547, 0.011652380228042603, -0.05864429846405983, 0.03254484012722969, 0.008841129951179028, -0.03480549901723862, -0.01331616286188364, 0.027631793171167374, 0.07181234657764435, 0.020000562071800232, -0.00901265349239111, -0.04059683158993721, 0.00495424959808588, -0.04369405657052994, -0.040051091462373734, -0.04425844922661781, 0.05318622663617134, -0.05176810175180435, 0.05548727139830589, 0.008500760421156883, -0.0024680313654243946, -0.033723749220371246, 0.008379921317100525, 0.0327877476811409, -0.0029047480784356594, 0.016186172142624855, 0.04131251201033592, 0.004279357381165028, 0.015414275228977203, -0.0202993955463171, -0.038264527916908264, 0.03580854460597038, 0.032782312482595444, -0.006352901924401522, -0.029862087219953537 ]
pyspark-creating-dataframe-one-column
https://markhneedham.com/blog/2018/12/09/pyspark-creating-dataframe-one-column
false
2018-12-24 21:09:00
Neo4j: Pruning transaction logs more aggressively
[ "neo4j" ]
[ "Neo4j" ]
One thing that new users of Neo4j when playing around with it locally is how much space the transaction logs can take up, especially when we're creating and deleting lots of data while we get started. We can see this by running the following query a few times: [source, cypher] ---- UNWIND range(0, 1000) AS id CREATE (:Foo {id: id}); MATCH (f:Foo) DELETE f ---- This query creates a bunch of data before immediately deleting it. We can now run the following command to see the state of the database: [source, cypher] ---- :sysinfo ---- We'll see this table: image::{{<siteurl>}}/uploads/2018/12/Selection_091.png[] Most of the space is taken up by `Logical Log`, which is the aggregate size of Neo4j's transaction logs. These are the files in our `data/databases/graph.db` field that have the `neostore.transaction.db` prefix: [source, bash] ---- $ ls -alh data/databases/graph.db/neostore.transaction.db* -rw-rw-r-- 1 markhneedham markhneedham 1.3M Dec 22 19:17 data/databases/graph.db/neostore.transaction.db.30 -rw-rw-r-- 1 markhneedham markhneedham 1.3M Dec 22 19:17 data/databases/graph.db/neostore.transaction.db.31 -rw-rw-r-- 1 markhneedham markhneedham 145M Dec 24 21:31 data/databases/graph.db/neostore.transaction.db.32 ---- Our latest log file is more than 100MB, and we might wonder why we need to keep around all those logs! We can run the following procedures to see the default config for checkpointing and transaction log pruning, which work together to control how many logs are kept around: [source, cypher] ---- CALL dbms.listConfig("dbms.checkpoint.interval") YIELD name, description, value RETURN name, description, value UNION CALL dbms.listConfig("dbms.tx_log") YIELD name, description, value RETURN name, description, value ---- If we run that procedure we'll see this output: image::{{<siteurl>}}/uploads/2018/12/Selection_090.png[] In summary: * Checkpointing is done every 900 seconds (15 minutes) * Checkpointing is done every 100,000 transactions * Transaction logs are kept for 7 days * Transaction log files are rotated when they reach 262,144,000 bytes (250MB) These defaults are not a bad place to start for a production system, but we probably don't need to keep around so many logs when we're playing around with Neo4j locally. Chris Gioran has https://neo4j.com/developer/kb/checkpointing-and-log-pruning-interactions/[written an excellent article^] explaining these config options in more detail. From the article I came up with the following config, which I think makes more sense when working locally: [source, text] ---- dbms.checkpoint.interval.time=30s dbms.checkpoint.interval.tx=1 dbms.tx_log.rotation.retention_policy=false dbms.tx_log.rotation.size=1M ---- So now: * Checkpointing is done every 30 seconds * Checkpointing is done every 1 transactions * Minimal transaction logs are kept around * Transaction log files are rotated when they reach 1MB If we run our first query again a few times while tailing `logs/debug.log` we'll see the following output: [source, bash] ---- 2018-12-24 21:43:20.132+0000 INFO [o.n.k.i.t.l.c.CheckPointerImpl] Checkpoint triggered by scheduler for tx count threshold @ txId: 56 checkpoint started... 2018-12-24 21:43:20.589+0000 INFO [o.n.k.i.t.l.c.CheckPointerImpl] Checkpoint triggered by scheduler for tx count threshold @ txId: 56 checkpoint completed in 457ms 2018-12-24 21:43:20.592+0000 INFO [o.n.k.i.t.l.p.LogPruningImpl] Pruned log versions 30-31, last checkpoint was made in version 33 2018-12-24 21:43:30.593+0000 INFO [o.n.k.i.t.l.c.CheckPointerImpl] Checkpoint triggered by scheduler for tx count threshold @ txId: 57 checkpoint started... 2018-12-24 21:43:30.716+0000 INFO [o.n.k.i.t.l.c.CheckPointerImpl] Checkpoint triggered by scheduler for tx count threshold @ txId: 57 checkpoint completed in 122ms 2018-12-24 21:43:30.736+0000 INFO [o.n.k.i.t.l.p.LogPruningImpl] Pruned log versions 32-32, last checkpoint was made in version 34 2018-12-24 21:43:40.737+0000 INFO [o.n.k.i.t.l.c.CheckPointerImpl] Checkpoint triggered by scheduler for tx count threshold @ txId: 65 checkpoint started... 2018-12-24 21:43:40.982+0000 INFO [o.n.k.i.t.l.c.CheckPointerImpl] Checkpoint triggered by scheduler for tx count threshold @ txId: 65 checkpoint completed in 245ms 2018-12-24 21:43:40.995+0000 INFO [o.n.k.i.t.l.p.LogPruningImpl] Pruned log versions 33-40, last checkpoint was made in version 42 ---- We can see that logs are now being pruned much more aggressively, and if we run `:sysinfo` again we'll see that the size of logical logs is now much less: image::{{<siteurl>}}/uploads/2018/12/Selection_092.png[] That's much better!
Learn how to prune Neo4j transaction log files more aggressively.
null
[ -0.013114063069224358, -0.014265406876802444, -0.0023594123777002096, 0.04613529518246651, 0.12073967605829239, -0.012234426103532314, 0.01386172790080309, 0.025172166526317596, -0.012248536571860313, -0.008229699917137623, -0.006397299002856016, -0.014979369007050991, -0.07651609927415848, 0.021261272951960564, -0.000005455194695969112, 0.05375155434012413, 0.06593316793441772, 0.01886678673326969, 0.07130248844623566, -0.018619053065776825, 0.014112750999629498, 0.017130039632320404, -0.009005791507661343, 0.05247120559215546, 0.041874516755342484, 0.019744735211133957, -0.010274607688188553, 0.010371682234108448, -0.042330849915742874, 0.00047289676149375737, 0.05255744233727455, -0.009162099100649357, 0.012059513479471207, 0.023494170978665352, 0.05452917888760567, 0.01619621366262436, -0.04501938074827194, 0.01302249077707529, -0.018363308161497116, -0.014492460526525974, -0.06899994611740112, 0.015439106151461601, -0.03532552719116211, 0.015289372764527798, -0.043320391327142715, -0.009210899472236633, -0.037812333554029465, 0.026030197739601135, 0.01579989306628704, 0.0007293012458831072, -0.09031060338020325, 0.04594854637980461, -0.019991334527730942, -0.010394887067377567, -0.01173907145857811, 0.05683983862400055, 0.025244057178497314, -0.055494923144578934, 0.04655861854553223, -0.020475341007113457, 0.013160739094018936, -0.04356297850608826, -0.01296360045671463, 0.040820736438035965, -0.001013064756989479, -0.059934455901384354, 0.02138817496597767, 0.04777411371469498, -0.02045343443751335, 0.012942507863044739, 0.005780818872153759, 0.0125953434035182, -0.013798108324408531, -0.00033064206945709884, -0.018365783616900444, -0.027725614607334137, 0.00564668420702219, 0.0241110697388649, 0.03485646843910217, 0.07606397569179535, -0.026500768959522247, 0.008222279138863087, 0.011680111289024353, 0.030543480068445206, 0.01335891056805849, -0.04231441020965576, -0.048966068774461746, -0.02281942404806614, -0.06128518655896187, 0.02020903490483761, 0.0006043550092726946, -0.05199763551354408, -0.012900801375508308, -0.008914670906960964, -0.053867995738983154, 0.011387959122657776, -0.003942807670682669, 0.014398356899619102, 0.03102402202785015, -0.008645300753414631, -0.03103659860789776, -0.015969684347510338, -0.01811826229095459, 0.021038930863142014, -0.06459195911884308, -0.012354416772723198, -0.04489933326840401, -0.04106680303812027, 0.018521083518862724, -0.02932480163872242, -0.02006364054977894, -0.009622779674828053, -0.017922569066286087, 0.01081022247672081, -0.09941183775663376, 0.06678948551416397, 0.033280737698078156, -0.02243964932858944, 0.006248709745705128, -0.004246911499649286, 0.05960870161652565, 0.033438924700021744, 0.0011419832007959485, 0.05678405612707138, -0.023600561544299126, -0.008637404069304466, 0.020797844976186752, 0.03102054074406624, -0.03089108318090439, -0.07368043810129166, -0.003370672930032015, 0.055430445820093155, 0.006361342500895262, 0.012562580406665802, -0.01440573949366808, -0.029033279046416283, 0.0001558726216899231, 0.008141299709677696, 0.06605365872383118, 0.009891483001410961, 0.03768542781472206, -0.05566614866256714, 0.03533044084906578, 0.0019269080366939306, 0.0366443395614624, -0.007790220435708761, -0.025608105584979057, -0.05666662007570267, -0.029291119426488876, 0.0051506757736206055, 0.014702104032039642, 0.058896128088235855, 0.05743417516350746, -0.02691025286912918, 0.021425068378448486, 0.11028484255075455, 0.01752394624054432, 0.003990795463323593, -0.026692897081375122, 0.012370441108942032, 0.046875447034835815, 0.03196648135781288, 0.012299329973757267, 0.04546155780553818, -0.00835959892719984, -0.011719435453414917, 0.0005017232615500689, 0.0556817427277565, -0.006220546085387468, 0.028088854625821114, -0.047537222504615784, -0.055820148438215256, 0.06363686919212341, -0.03644488379359245, -0.03503908962011337, 0.06606888771057129, 0.05994416028261185, 0.038230013102293015, -0.010486835613846779, -0.003657260211184621, -0.06786474585533142, 0.060214340686798096, 0.016236336901783943, 0.007198503706604242, 0.0024269192945212126, 0.0035548631567507982, 0.06804229319095612, 0.03579297661781311, 0.0015103942714631557, 0.007204873487353325, -0.07701870054006577, -0.07951202243566513, 0.026610281318426132, 0.006036622915416956, 0.03652572259306908, -0.051541518419981, 0.012943308800458908, 0.05476672202348709, 0.00876656174659729, 0.021265139803290367, -0.018280424177646637, 0.012226630933582783, 0.04541011527180672, -0.0778072252869606, -0.053932249546051025, 0.060081418603658676, -0.00677318312227726, -0.03578212112188339, -0.03772098198533058, 0.0200326107442379, -0.012253954075276852, -0.012854606844484806, 0.023495877161622047, -0.023303616791963577, 0.05667843297123909, 0.01569226011633873, 0.022037377581000328, -0.010400676168501377, 0.01934998296201229, -0.028830211609601974, 0.018723607063293457, 0.025093642994761467, -0.030437355861067772, 0.017383931204676628, 0.002435647649690509, 0.09398602694272995, 0.0485062338411808, -0.016756447032094002, -0.05992143228650093, 0.0559953972697258, 0.004243059083819389, -0.047600869089365005, 0.011426451615989208, -0.020225560292601585, 0.0035465301480144262, 0.015260846354067326, -0.020428769290447235, -0.00987341906875372, 0.016958797350525856, -0.030408335849642754, -0.018176432698965073, 0.04094872251152992, -0.008713156916201115, 0.062307316809892654, 0.028440099209547043, -0.0073300921358168125, 0.019321348518133163, -0.030043143779039383, -0.06299220025539398, 0.008835958316922188, 0.04415811970829964, 0.0008952463394962251, 0.05686436966061592, -0.026439359411597252, -0.0028864077758044004, -0.04773956164717674, -0.011753079481422901, 0.052322473376989365, 0.02393665350973606, 0.048522766679525375, -0.00948607549071312, 0.04081236943602562, -0.028628230094909668, 0.014928936026990414, -0.01846378669142723, -0.054663367569446564, -0.020576193928718567, -0.03183945268392563, 0.021928491070866585, 0.00011700909089995548, 0.004004274029284716, -0.0211014524102211, 0.036606818437576294, 0.011647357605397701, 0.04344740882515907, -0.04215017333626747, 0.03873952850699425, -0.0023416338954120874, -0.023989303037524223, -0.03853388503193855, -0.031828783452510834, 0.05698542669415474, -0.06531276553869247, -0.01612107828259468, 0.012757315300405025, -0.03655873239040375, 0.05844726413488388, -0.049154024571180344, -0.0357225127518177, -0.005578296724706888, 0.03615803271532059, 0.03512653708457947, 0.013290025293827057, 0.014870328828692436, 0.07832510769367218, 0.05059319734573364, 0.002914294833317399, 0.004868737421929836, 0.032117173075675964, 0.05307523161172867, 0.006588644348084927, 0.019407521933317184, 0.04088777303695679, -0.019873550161719322, -0.005808521062135696, -0.03581489995121956, -0.01510259136557579, 0.0018127196235582232, -0.2726338803768158, 0.05413822829723358, -0.027967723086476326, -0.06287290155887604, 0.008107829838991165, -0.02895677462220192, 0.004839333705604076, -0.015215917490422726, -0.038325920701026917, 0.005628715269267559, -0.02182888798415661, -0.0455397292971611, -0.0030322412494570017, 0.04430566355586052, 0.015014843083918095, 0.06306048482656479, 0.044127456843853, -0.02777128666639328, -0.005734031088650227, 0.01684434711933136, -0.014804207719862461, -0.048547450453042984, -0.004032876808196306, -0.004138330463320017, 0.019457686692476273, 0.04705529659986496, -0.08321494609117508, 0.01594342477619648, -0.06972000002861023, -0.0150368083268404, -0.0030409679748117924, -0.0272259172052145, -0.014851896092295647, 0.005725526716560125, -0.020504582673311234, -0.012104075402021408, -0.0024320653174072504, -0.0035939896479249, 0.014619343914091587, 0.007218359969556332, -0.007335272151976824, -0.04454430565237999, -0.025532279163599014, 0.018396517261862755, 0.05792117863893509, -0.006363355088979006, -0.0714947059750557, 0.003333852393552661, -0.00745060108602047, 0.06542637199163437, -0.02208123728632927, -0.040577396750450134, -0.037414319813251495, 0.007515598088502884, -0.03180784732103348, -0.04073062539100647, -0.01649155281484127, -0.009693365544080734, -0.056337080895900726, -0.02073056250810623, 0.015148177742958069, -0.03168398514389992, 0.029275430366396904, -0.0571545735001564, -0.001523314043879509, -0.05198311433196068, -0.0648450180888176, -0.016740651801228523, 0.049741145223379135, 0.028253864496946335, -0.007654499262571335, 0.04595430940389633, -0.0066635203547775745, -0.09761843085289001, -0.05086011439561844, -0.04489366337656975, -0.008068245835602283, 0.037183914333581924, -0.027108939364552498, 0.04061724990606308, -0.04214884340763092, -0.009998086839914322, 0.0014526789309456944, 0.02207706682384014, 0.0262529905885458, -0.015730269253253937, 0.010538507252931595, -0.01170647144317627, -0.0550248809158802, 0.027548452839255333, 0.049454402178525925, -0.0417342372238636, -0.01828671060502529, -0.001090065692551434, 0.0029719232115894556, 0.015407383441925049, -0.01254772674292326, -0.01054417621344328, 0.00641122180968523, 0.021394697949290276, 0.06746796518564224, -0.028317011892795563, 0.010765603743493557, -0.03668457269668579, -0.03008934110403061, -0.022446399554610252, -0.032757967710494995, 0.03161626309156418, 0.026089942082762718, 0.03133884072303772, 0.0034610098227858543, 0.01572599448263645, 0.04165833070874214, -0.06458880007266998, -0.026585210114717484, -0.0009749687160365283, 0.011685125529766083, 0.02045590616762638, 0.04735858365893364, -0.029167991131544113, -0.058854375034570694, 0.03313140943646431, 0.019762422889471054, -0.010288425721228123, -0.04458438605070114, -0.040887895971536636, -0.023365475237369537, -0.01153064426034689, -0.012446376495063305, 0.009053328074514866, -0.02802620455622673, 0.033100251108407974, 0.041043106466531754, -0.028555724769830704, 0.05830040201544762, -0.024234658107161522, -0.04032726213335991, -0.057212699204683304, 0.014515032060444355, -0.008090904913842678, -0.030795278027653694, 0.016901783645153046, 0.013442639261484146, 0.05271165445446968, 0.03601861372590065, 0.025807304307818413, 0.037222970277071, 0.0064848316833376884, 0.03522827848792076, 0.012337971478700638, -0.001010639127343893, -0.04881860315799713, 0.026947397738695145, -0.04651915654540062, -0.014656000770628452, -0.011760258115828037, 0.055303480476140976, -0.029766539111733437, -0.02721795067191124, -0.02474498562514782, 0.003978519234806299, -0.05221910402178764, 0.0031300545670092106, -0.02652229554951191, -0.022925207391381264, 0.056832339614629745, -0.024600856006145477, 0.019747566431760788, -0.016054047271609306, 0.00004559567605610937, 0.0052846139296889305, 0.006417819298803806, -0.037531778216362, 0.003832973539829254, 0.02999439276754856, -0.003638093825429678, -0.0008797985501587391, 0.02464282140135765, 0.03924797847867012, 0.027820944786071777, -0.016704244539141655, 0.012273379601538181, -0.0017010293668136, 0.014360614120960236, 0.042318303138017654, 0.07378548383712769, -0.02203182317316532, 0.014323812909424305, -0.04029284045100212, 0.0016304758610203862, -0.01571558229625225, -0.0049236733466386795, -0.021306311711668968, -0.004408649168908596, 0.002771366387605667, -0.07043614983558655, 0.052334319800138474, 0.03381247818470001, -0.009824493899941444, 0.03898043930530548, 0.04580630734562874, -0.006851415615528822, -0.027203969657421112, 0.033438216894865036, 0.04040275886654854, -0.041410475969314575, 0.003968256525695324, -0.003697206499055028, 0.00957539863884449, 0.03317685052752495, 0.009548380970954895, -0.041230458766222, -0.027607275173068047, -0.019817404448986053, 0.046707216650247574, -0.03230265900492668, -0.02717197872698307, -0.006805225741118193, -0.0060057020746171474, -0.004006131086498499, 0.002902096835896373, 0.020683012902736664, 0.00895487517118454, -0.02197187766432762, -0.012280169874429703, 0.02210543118417263, -0.006985992193222046, -0.005707018077373505, 0.0023665830958634615, -0.020465495064854622, 0.00290894927456975, -0.051790639758110046, 0.0212925486266613, 0.0037085863295942545, -0.009869299829006195, 0.013599777594208717, -0.06071311980485916, 0.03710377216339111, -0.00645048450678587, 0.032998211681842804, -0.017975084483623505, 0.019211655482649803, -0.03548312187194824, 0.002682079328224063, -0.030772250145673752, -0.0033372151665389538, -0.024877652525901794, -0.008280734531581402, 0.011239162646234035, 0.026582229882478714, -0.005192561540752649, 0.038726553320884705, 0.005019733682274818, -0.02648124471306801, 0.05147002637386322, -0.043354373425245285, -0.040576107800006866, -0.01823711208999157, -0.057539019733667374, 0.013703462667763233, 0.028096694499254227, -0.01821526139974594, -0.04350592941045761, 0.02538626827299595, 0.05821159482002258, 0.02077300474047661, 0.018804822117090225, -0.004049467854201794, 0.052298180758953094, -0.039913956075906754, -0.02488839440047741, -0.08050048351287842, -0.00473921000957489, 0.024488864466547966, -0.0015345000429078937, 0.010597439482808113, 0.021795058622956276, -0.04112221673130989, -0.009868904016911983, -0.05032186210155487, -0.037158433347940445, 0.039444826543331146, 0.001411318313330412, 0.004044177010655403, 0.014708906412124634, -0.055409058928489685, 0.011035231873393059, 0.03478613123297691, -0.03094152733683586, -0.022048860788345337, -0.03260725736618042, 0.04845486208796501, -0.023075386881828308, 0.02476145513355732, -0.04490956291556358, -0.021020621061325073, 0.09652096033096313, 0.01576649397611618, 0.04072623327374458, 0.05714266374707222, -0.0180947408080101, 0.04951860383152962, 0.02412390150129795, -0.04000335931777954, -0.006881136912852526, 0.013617481105029583, -0.02253820188343525, -0.0405074879527092, 0.00825490802526474, 0.01190842967480421, -0.009463603608310223, -0.0231697466224432, 0.06653391569852829, 0.014788955450057983, -0.04035510495305061, -0.06893076002597809, 0.039234451949596405, -0.02630762942135334, -0.01932360604405403, -0.06252503395080566, -0.008300804533064365, -0.0438782274723053, 0.06420266628265381, -0.032922547310590744, 0.018711261451244354, 0.07517055422067642, -0.028956828638911247, -0.00512590492144227, 0.011020888574421406, 0.07435999810695648, 0.10390736907720566, 0.027269162237644196, 0.028589218854904175, 0.04744911938905716, -0.01893758773803711, -0.024920912459492683, 0.0003771754272747785, -0.04073313623666763, -0.020634129643440247, -0.011092834174633026, 0.011973373591899872, 0.0502740703523159, -0.03984487056732178, 0.07269685715436935, -0.04652206972241402, 0.009677523747086525, 0.0014021473471075296, -0.014081808738410473, 0.05096043646335602, 0.06586910039186478, 0.011304370127618313, 0.025518974289298058, -0.02688669227063656, -0.026764461770653725, 0.03191526606678963, 0.005015552509576082, -0.012611684389412403, 0.04210362583398819, -0.011046558618545532, -0.030624449253082275, 0.03803834691643715, 0.049206171184778214, 0.0905180424451828, -0.027234073728322983, -0.0061307987198233604, 0.0019134898902848363, 0.011884773150086403, -0.0037400268483906984, 0.0037603904493153095, -0.006914685945957899, -0.022849174216389656, 0.0008589391363784671, -0.034099429845809937, -0.02929399348795414, -0.03338199853897095, -0.05129876732826233, -0.00784341711550951, -0.0020176463294774294, -0.001672706683166325, 0.01688341423869133, 0.0036070621572434902, -0.028909511864185333, -0.04505547881126404, -0.05348093435168266, -0.05083814263343811, -0.07584240287542343, 0.047318171709775925, -0.010246428661048412, -0.0011619945289567113, -0.016778627410531044, 0.008880924433469772, -0.008509385399520397, -0.021601347252726555, 0.03927440941333771, -0.04839301481842995, -0.01825537718832493, 0.014540248550474644, 0.01011064276099205, 0.025987809523940086, 0.028087399899959564, 0.04900142550468445, 0.006226321682333946, -0.002142386045306921, -0.009035461582243443, 0.02381015568971634, 0.042577601969242096, 0.013555595651268959, -0.012691168114542961, -0.07789142429828644, 0.004637334495782852, 0.029772242531180382, -0.023326274007558823, -0.0826716423034668, 0.006853184197098017, 0.05179732292890549, -0.01368123758584261, 0.03421107307076454, -0.02065392956137657, -0.01625053398311138, -0.0479736365377903, 0.014796523377299309, 0.0072317300364375114, 0.011249051429331303, 0.01873597502708435, -0.027962055057287216, 0.06057726591825485, 0.0504947304725647, -0.04092665761709213, -0.03064865432679653, -0.006254999898374081, -0.004041808191686869, 0.007319055963307619, -0.045666396617889404, -0.025417573750019073, -0.023883318528532982, -0.08845601230859756, -0.0397726409137249, 0.009657231159508228, -0.009031198918819427, -0.04132277891039848, 0.012296364642679691, 0.03360477089881897, -0.024836186319589615, 0.013648109510540962, -0.04117404669523239, 0.021607743576169014, -0.048256877809762955, -0.05101127177476883, -0.0222711693495512, 0.009079301729798317, -0.005590955261141062, -0.000276364095043391, 0.033329591155052185, -0.04597845673561096, -0.026247000321745872, -0.033660583198070526, 0.04199468716979027, 0.022845473140478134, 0.03319979086518288, -0.0012981364270672202 ]
[ -0.05315820500254631, -0.022783689200878143, -0.030614610761404037, -0.025110261514782906, 0.0778503566980362, -0.039632491767406464, -0.020828165113925934, -0.005285724997520447, 0.04178623855113983, -0.025152593851089478, 0.0367310456931591, -0.013908760622143745, -0.009126953780651093, 0.01641922816634178, 0.06175006926059723, -0.005387736950069666, -0.007894591428339481, -0.06817258149385452, -0.03383408859372139, 0.05370910093188286, -0.006852992344647646, -0.06560792028903961, -0.022461820393800735, -0.02934962511062622, 0.006954355631023645, 0.026584984734654427, 0.020068703219294548, -0.0405779592692852, -0.04379650950431824, -0.21222341060638428, 0.028063911944627762, 0.002040876541286707, 0.005574615206569433, -0.02289968729019165, 0.035888321697711945, 0.03354274481534958, 0.03980708494782448, 0.012140712700784206, 0.0026828187983483076, 0.04583922401070595, 0.03923625126481056, 0.03231436014175415, -0.06760542839765549, -0.016134019941091537, 0.03234453499317169, -0.01997431553900242, -0.007886001840233803, -0.03048941306769848, -0.004108722321689129, 0.04832933098077774, -0.03318743035197258, -0.006341392640024424, 0.005459440406411886, 0.01451967004686594, -0.011917740106582642, 0.03596505522727966, 0.04267515242099762, 0.049873583018779755, 0.01841702312231064, 0.015613770112395287, 0.020004073157906532, -0.003715039463713765, -0.1154794916510582, 0.03908831626176834, 0.017106017097830772, 0.004511540289968252, -0.034346967935562134, -0.011518802493810654, -0.017397750169038773, 0.08852804452180862, 0.015055600553750992, -0.01702408865094185, -0.06721879541873932, 0.07428565621376038, -0.007805990986526012, -0.007658463437110186, -0.0005511270719580352, 0.02270246297121048, 0.014589119702577591, -0.04736696556210518, -0.05564146488904953, 0.010261128656566143, -0.04551350697875023, -0.01914861984550953, -0.08758746087551117, 0.011816092766821384, -0.00079268345143646, 0.07484112679958344, 0.0011471261968836188, 0.026843156665563583, 0.059082068502902985, 0.02671027183532715, 0.0791439563035965, 0.014248644933104515, -0.09078432619571686, -0.015333271585404873, 0.001694858307018876, 0.05734657123684883, 0.03314900025725365, 0.4034019410610199, 0.021001894026994705, 0.021867481991648674, 0.03348922356963158, 0.03483561798930168, 0.00038832894642837346, 0.018451625481247902, 0.012136027216911316, -0.03731228783726692, 0.03681395575404167, -0.008126355707645416, 0.018679073080420494, -0.012439334765076637, 0.052775654941797256, -0.08821503072977066, 0.029605669900774956, 0.009615548886358738, 0.049746181815862656, 0.024133918806910515, -0.05695461481809616, 0.02196587808430195, -0.01670713908970356, 0.03061467595398426, 0.04062016308307648, 0.011488252319395542, 0.03481244668364525, 0.005747928749769926, 0.022993577644228935, 0.04491368681192398, 0.03313182666897774, 0.007088321261107922, 0.011426709592342377, -0.006727817468345165, -0.06676621735095978, 0.034404970705509186, -0.0032162878196686506, -0.010359400883316994, 0.02767813764512539, -0.039894949644804, -0.016839349642395973, 0.017552915960550308, -0.03006123937666416, -0.018926145508885384, 0.030876625329256058, -0.018514525145292282, -0.04427305981516838, 0.13802820444107056, 0.017905648797750473, -0.050295569002628326, -0.04039902240037918, -0.06748134642839432, -0.006005288101732731, 0.04300922527909279, 0.019051121547818184, -0.07867942005395889, -0.013222828507423401, 0.019798047840595245, 0.06001708284020424, -0.014281398616731167, -0.08295930176973343, -0.008123449981212616, -0.01735139824450016, -0.012438468635082245, -0.02154802531003952, 0.07233425974845886, 0.031059062108397484, -0.09666728228330612, -0.03432795777916908, 0.03766154870390892, 0.03007962554693222, -0.050710856914520264, 0.002586287446320057, 0.005561090540140867, -0.06135430559515953, -0.04805213212966919, 0.061219263821840286, -0.04596302658319473, -0.014043735340237617, -0.023836741223931313, 0.010716223157942295, 0.001538088545203209, -0.009317978285253048, -0.014609619043767452, -0.04748258739709854, 0.004798421170562506, -0.06344431638717651, -0.08570585399866104, -0.08715394884347916, 0.037761978805065155, -0.013208943419158459, -0.005233861040323973, -0.026941876858472824, -0.015118295326828957, -0.048293765634298325, 0.07485910505056381, -0.05084533616900444, -0.05068330094218254, -0.009155875071883202, 0.040932126343250275, -0.05802631378173828, -0.04114822298288345, 0.05629609525203705, 0.043661314994096756, -0.02738589607179165, 0.03693365305662155, -0.0560140535235405, 0.04802104830741882, 0.049188025295734406, -0.02701248973608017, 0.07149439305067062, 0.03246087580919266, -0.017691172659397125, 0.011483442038297653, -0.017557526007294655, 0.02041134610772133, -0.008576201274991035, -0.017241714522242546, 0.0042841206304728985, -0.022032858803868294, 0.031148020178079605, 0.03124978393316269, -0.007921718060970306, -0.004059670493006706, -0.012796563096344471, -0.35574302077293396, -0.04815570265054703, -0.0267759058624506, -0.0004305294423829764, 0.046020325273275375, -0.04231962189078331, 0.02645476534962654, -0.014867513440549374, 0.012281777337193489, -0.0030100499279797077, 0.049560412764549255, -0.026871927082538605, -0.014523732475936413, -0.09133574366569519, 0.01037926971912384, 0.05437292531132698, -0.02210037037730217, 0.01648286171257496, -0.0422956682741642, -0.0048301625065505505, 0.002164531499147415, -0.04891744256019592, -0.04460917413234711, -0.044808924198150635, 0.010038129054009914, -0.014617636799812317, 0.11108292639255524, -0.02662636525928974, 0.03146307170391083, -0.051269132643938065, 0.054722465574741364, -0.016493527218699455, -0.025206562131643295, -0.08077888935804367, 0.0036008080933243036, -0.01998054049909115, 0.0036838646046817303, 0.023388341069221497, -0.006919861305505037, -0.023825041949748993, -0.06412441283464432, -0.0018797711236402392, -0.039627742022275925, -0.046346768736839294, -0.02923285774886608, 0.023946404457092285, -0.04680519551038742, -0.018316306173801422, 0.019959241151809692, 0.049842469394207, 0.021124590188264847, 0.03593841567635536, 0.01797426864504814, 0.04107332602143288, 0.04474574327468872, -0.048651322722435, -0.051910124719142914, -0.019833574071526527, 0.022988634184002876, 0.014807428233325481, -0.005734352394938469, 0.033443745225667953, 0.009867032058537006, -0.06846468150615692, 0.029388226568698883, 0.00018493890820536762, -0.01874055340886116, -0.009252907708287239, 0.018694955855607986, -0.05991652235388756, -0.018930813297629356, 0.11451820284128189, -0.016313910484313965, -0.009588389657437801, 0.041330575942993164, 0.02736833691596985, -0.01836003176867962, 0.03160937502980232, 0.007830996997654438, 0.0027340271044522524, 0.048568662256002426, -0.052785441279411316, 0.07061243802309036, -0.007677419576793909, -0.016851643100380898, 0.07427773624658585, 0.029163585975766182, -0.0567282997071743, 0.07070806622505188, 0.008543144911527634, 0.00275383866392076, 0.0015093060210347176, -0.03876867517828941, -0.09874767065048218, 0.06432643532752991, -0.0222860686480999, -0.2427484542131424, 0.03182835131883621, 0.024316422641277313, 0.06429967284202576, 0.013152721337974072, 0.03681768476963043, 0.021304171532392502, 0.01631750538945198, 0.040490880608558655, 0.013815019279718399, 0.03461877629160881, 0.0557812862098217, -0.0031502682249993086, -0.015256883576512337, 0.006943737156689167, 0.0025045834481716156, 0.03195486217737198, -0.0007660274277441204, 0.029707234352827072, 0.00832188781350851, 0.016964823007583618, -0.03551281616091728, 0.15906330943107605, 0.07906795293092728, 0.006981491111218929, 0.0506412610411644, -0.030638312920928, 0.04493187740445137, 0.047779008746147156, -0.005490775220096111, -0.03443644940853119, 0.03437747433781624, -0.010903854854404926, 0.02410842850804329, 0.01723843440413475, -0.02760567143559456, -0.016617542132735252, 0.04007207602262497, 0.03397603705525398, -0.022878900170326233, 0.010147392749786377, 0.0012399564730003476, -0.035453349351882935, 0.04173712432384491, 0.07428696751594543, -0.02350454032421112, -0.00044911823351867497, -0.028966160491108894, -0.03942444920539856, 0.00035702367313206196, -0.03490427881479263, -0.0234074704349041, -0.02784031629562378, -0.012304818257689476, 0.0011584670282900333, 0.08916473388671875, 0.03509814292192459, -0.02105812355875969, 0.04684663936495781, -0.002578858518972993, -0.021231595426797867, -0.04105245694518089, 0.0712694302201271, -0.032729025930166245, -0.0016283682780340314 ]
[ 0.06200342997908592, 0.02352636680006981, -0.015439149923622608, 0.017923956736922264, -0.004843888804316521, -0.03438550978899002, 0.04143957793712616, 0.001642861869186163, -0.005606087390333414, 0.027580875903367996, -0.010654253885149956, 0.025613699108362198, 0.06521416455507278, 0.009260629303753376, -0.006292099133133888, -0.011943834833800793, 0.0010768617503345013, 0.024511326104402542, 0.02678447961807251, 0.022167446091771126, -0.03454851731657982, -0.019215524196624756, 0.041990894824266434, 0.013441435992717743, 0.020653758198022842, -0.006525913719087839, -0.015182632952928543, -0.012061040848493576, 0.0071482425555586815, -0.12173717468976974, -0.03380961716175079, 0.0031188742723315954, -0.01501852460205555, 0.02371438406407833, -0.00984187051653862, -0.0073188538663089275, 0.02988361567258835, 0.03710651397705078, -0.0026768664829432964, 0.012687796726822853, 0.035066623240709305, -0.007923818193376064, -0.05006100609898567, 0.00643543666228652, 0.018247727304697037, -0.023860564455389977, -0.04575343430042267, -0.014700706116855145, 0.013974583707749844, 0.009005650877952576, -0.034658703953027725, 0.0023477983195334673, 0.011433413252234459, 0.02094944566488266, 0.019861632958054543, 0.021154211834073067, 0.004983487538993359, -0.016409507021307945, -0.001657998887822032, 0.016466381028294563, 0.017449328675866127, 0.017968937754631042, -0.04850400239229202, -0.02002512291073799, -0.0042702555656433105, -0.0077440920285880566, 0.018734725192189217, 0.009512856602668762, 0.0017308209789916873, 0.022454559803009033, -0.025813033804297447, 0.021407926455140114, -0.09436188638210297, -0.024116115644574165, -0.046144142746925354, 0.0259394533932209, 0.05718674138188362, -0.023093432188034058, -0.0700199231505394, 0.000597803620621562, -0.044394031167030334, 0.023082293570041656, 0.013337427750229836, -0.04400981217622757, -0.06183582916855812, 0.0006958048325031996, -0.006188951898366213, -0.01049042772501707, 0.03709603101015091, 0.008503315970301628, -0.0013072406873106956, 0.05118940770626068, -0.024241367354989052, -0.0619494765996933, -0.0931418165564537, -0.03315706178545952, 0.030806468799710274, 0.00605030357837677, 0.04052967205643654, 0.7937204241752625, 0.04282236099243164, 0.012492128647863865, 0.007496685720980167, 0.020262595266103745, -0.005436981096863747, 0.04517818242311478, 0.015101181343197823, -0.00046159737394191325, -0.05164915323257446, -0.0008121340069919825, -0.012209801934659481, 0.028271492570638657, 0.0008663417538627982, 0.03290610760450363, 0.013547820970416069, 0.06778812408447266, -0.002646407810971141, -0.03682216629385948, -0.03887373208999634, 0.020280923694372177, 0.03216460719704628, 0.011074980720877647, -0.017523938789963722, 0.025204110890626907, -0.008363964967429638, -0.1331515610218048, -0.016266856342554092, -6.525402770916744e-33, 0.023377764970064163, -0.010850964114069939, 0.03698039427399635, -0.0019334538374096155, 0.041741471737623215, 0.03634023666381836, -0.041796986013650894, -0.043304238468408585, -0.02393983118236065, -0.019765065982937813, -0.03722407668828964, -0.024943355470895767, 0.004133552312850952, -0.0441814661026001, 0.014627155847847462, -0.00012821561540476978, -0.0026341008488088846, 0.034823693335056305, -0.003510738955810666, 0.006680895574390888, -0.012409979477524757, 0.05299942195415497, -0.04325254634022713, 0.026025792583823204, 0.007070566993206739, 0.06187460198998451, -0.010901734232902527, -0.02765841782093048, -0.00024251801369246095, -0.05090843141078949, -0.047287747263908386, -0.0005615595728158951, -0.012082348577678204, -0.013140151277184486, -0.005137624219059944, -0.04643552005290985, -0.057014524936676025, -0.007892288267612457, -0.02905907668173313, -0.08255869895219803, -0.039451636373996735, 0.005460881162434816, -0.04050802066922188, -0.028560088947415352, -0.04394547641277313, 0.025514081120491028, -0.025218112394213676, 0.030649757012724876, 0.002177613088861108, 0.003301731077954173, 0.029277678579092026, 0.014860155992209911, -0.0037606284022331238, -0.018517961725592613, -0.029159164056181908, 0.014076520688831806, 0.03658707067370415, -0.030183851718902588, -0.012879341840744019, 0.04150393232703209, 0.04439215362071991, -0.022737011313438416, -0.031701717525720596, 0.0562443807721138, 0.02741818130016327, 0.020153120160102844, -0.010147685185074806, 0.01937619037926197, 0.011882026679813862, 0.029358038678765297, -0.06587918847799301, 0.06757860630750656, 0.030879918485879898, -0.012969370000064373, 0.04955970123410225, -0.04859718680381775, -0.030027635395526886, -0.03333810344338417, -0.012821846641600132, 0.049352843314409256, -0.024354981258511543, -0.051088400185108185, -0.04576369374990463, -0.0392906591296196, -0.007302881684154272, -0.010941783897578716, 0.03767527639865875, 0.012111152522265911, 0.023786915466189384, 0.0033497209660708904, 0.036844268441200256, 0.008122975006699562, 0.00866653397679329, -0.01518021896481514, -0.025789795443415642, 6.424683476202413e-33, -0.006359864957630634, -0.007288141641765833, 0.004003956448286772, 0.003291977336630225, 0.01871022768318653, 0.026187287643551826, 0.004920903593301773, 0.014730808325111866, -0.038353219628334045, 0.02544843591749668, -0.02929634042084217, -0.004192417953163385, 0.0033915555104613304, 0.040483180433511734, 0.05607625097036362, 0.004763730335980654, 0.03575502708554268, -0.04853950813412666, -0.03190995752811432, 0.03178005665540695, 0.0038371158298105, 0.00964308436959982, -0.0093693807721138, 0.04967428743839264, 0.021802565082907677, 0.01770871877670288, -0.0035247765481472015, 0.01372144278138876, -0.027537217363715172, -0.0036888939794152975, -0.02377777174115181, -0.03683920577168465, 0.013036209158599377, -0.0299088004976511, 0.020435545593500137, -0.025355186313390732, -0.004185074474662542, 0.03001450002193451, -0.0069636935368180275, 0.004907494876533747, 0.0022374195978045464, 0.024981945753097534, -0.04780448228120804, 0.06368567049503326, 0.0032329056411981583, 0.04727700725197792, 0.006165113300085068, 0.021511530503630638, 0.02037806436419487, 0.0042784688994288445, 0.006058114115148783, -0.003647732315585017, 0.018504004925489426, 0.03375617414712906, 0.016068516299128532, -0.02822921983897686, 0.005841489415615797, 0.01843922957777977, 0.020343754440546036, 0.0011536682723090053, -0.026684880256652832, 0.0350201353430748, -0.022960128262639046, 0.04304910823702812, -0.013460736721754074, -0.04477741941809654, 0.0066689783707261086, 0.015426410362124443, -0.03530656918883324, -0.017426257953047752, -0.0011765609961003065, 0.013539994135499, -0.017780277878046036, 0.05420619249343872, 0.0527816116809845, -0.016286596655845642, -0.0396588109433651, -0.023543093353509903, -0.03345212712883949, 0.025572748854756355, 0.024183841422200203, 0.018467416986823082, 0.008706970140337944, 0.01787509024143219, -0.02241886593401432, -0.005149703938513994, -0.04481034353375435, 0.02842797338962555, -0.0055922348983585835, -0.006152078043669462, 0.007585478946566582, -0.022687094286084175, -0.04834114387631416, 0.023394979536533356, -0.04522368684411049, -1.2111226688205079e-8, -0.0598045252263546, -0.02370109036564827, -0.010178296826779842, 0.026474731042981148, 0.010174590162932873, 0.021956613287329674, 0.003294027643278241, 0.023534445092082024, -0.028736095875501633, 0.014843808487057686, 0.00741251464933157, -0.0036346293054521084, 0.00917104072868824, -0.011504041962325573, 0.007049818057566881, -0.054102785885334015, 0.005992432590574026, -0.02020706608891487, 0.04103849083185196, 0.02702896110713482, -0.003316591726616025, 0.029247956350445747, -0.047608863562345505, 0.006909938994795084, -0.011531630530953407, -0.013166711665689945, 0.05595274642109871, -0.03411924093961716, -0.022595107555389404, -0.02598562091588974, 0.013734076172113419, -0.017822755500674248, 0.016652759164571762, 0.028080331161618233, -0.05294760689139366, -0.03696185350418091, 0.036157168447971344, 0.06356316059827805, 0.024444617331027985, 0.017707891762256622, -0.04171597212553024, -0.009273244999349117, -0.025441370904445648, -0.03339000418782234, -0.04671887308359146, -0.009759563952684402, -0.06501159071922302, -0.010362506844103336, 0.06337769329547882, -0.03817389905452728, 0.012165735475718975, -0.02522827871143818, 0.04624583572149277, 0.032882772386074066, 0.05477883666753769, -0.0014534820802509785, 0.006895086262375116, -0.001546851941384375, 0.010671265423297882, -0.015315711498260498, 0.05051124468445778, -0.012177628464996815, 0.013877623714506626, -0.019098959863185883 ]
neo4j-prune-transaction-logs-more-aggressively
https://markhneedham.com/blog/2018/12/24/neo4j-prune-transaction-logs-more-aggressively
false
2018-12-25 21:09:00
Python: Pandas - DataFrame plotting ignoring figure
[ "python", "matplotlib" ]
[ "Python" ]
In my continued use of matplotlib I wanted to change the size of the chart I was plotting and struggled a bit to start with. We'll use the same DataFrame as before: [source,python] ---- df = pd.DataFrame({ "name": ["Mark", "Arya", "Praveena"], "age": [34, 1, 31] }) df ---- In my last blog post I showed how we can create a bar chart by executing the following code: [source,python] ---- df.plot.bar(x="name") plt.tight_layout() plt.show() plt.close() ---- But how do we make it bigger? We can control this https://stackoverflow.com/questions/332289/how-do-you-change-the-size-of-figures-drawn-with-matplotlib[by using^] the https://matplotlib.org/api/_as_gen/matplotlib.pyplot.figure.html#matplotlib.pyplot.figure[`figure`^] function. I gave this a try: [source,python] ---- plt.figure(figsize=(20,10)) df.plot.bar(x="name") plt.tight_layout() plt.show() plt.close() ---- If we run that we'll see this output: image::{{<siteurl>}}/uploads/2018/12/Selection_093.png[] Hmmmm...we now have two figures, and the bigger one is completely blank! That's not quite what we expected. I came across a https://stackoverflow.com/questions/42215252/inconsistency-when-setting-figure-size-using-pandas-plot-method/42216385#42216385[really thorough StackOverflow post^] which explained a variety of ways to solve the problem. The first way is to specify the `figsize` parameter when we call the `bar` function: [source,python] ---- df.plot.bar(x="name", figsize=(20,10)) plt.tight_layout() plt.show() plt.close() ---- If we execute that code we'll now have our big chart: image::{{<siteurl>}}/uploads/2018/12/big.svg[] There are another couple of ways we can achieve this as well. The `plot` function takes in a `ax` parameter, to which we can pass an existing Axes. The `gca` function on our plot returns the current Axes instance or creates a new one: [source,python] ---- plt.figure(figsize=(20,10)) df.plot.bar(x="name", ax=plt.gca()) plt.tight_layout() plt.show() plt.close() ---- Or rather than using the `gca` function on `plt`, we can capture the axes from the `figure` function and pass it in directly: [source,python] ---- fig = plt.figure(figsize=(20,10)) df.plot.bar(x="name", ax=fig.gca()) plt.tight_layout() plt.show() plt.close() ----
Learn how to plot a Pandas DataFrame onto a custom sized chart.
null
[ 0.004275256767868996, -0.01227639615535736, -0.0028149597346782684, -0.005737378261983395, 0.05707765743136406, 0.04458591341972351, -0.04128973186016083, -0.02642165496945381, -0.013255991041660309, -0.010404441505670547, -0.033011700958013535, -0.002585981972515583, -0.0717993676662445, 0.03208337724208832, -0.0033893331419676542, 0.07335349172353745, 0.08292827755212784, 0.006709111854434013, 0.04441792145371437, 0.03160508722066879, 0.05532996729016304, 0.007726187817752361, -0.034529320895671844, 0.022512327879667282, 0.00043647282291203737, -0.05695285648107529, 0.004980615805834532, 0.040772777050733566, -0.03433500602841377, -0.016748487949371338, 0.025962866842746735, -0.0371457077562809, 0.006599178072065115, -0.0006925675552338362, 0.00918842013925314, -0.017233410850167274, -0.02378060668706894, 0.021064644679427147, -0.005870590917766094, 0.0025081471540033817, -0.06388125568628311, 0.019128387793898582, -0.021455012261867523, -0.014712605625391006, -0.018611814826726913, 0.00706873182207346, -0.023568155243992805, -0.01512120757251978, 0.006262791343033314, -0.0011058314703404903, -0.057399019598960876, 0.039561595767736435, -0.0038698131684213877, -0.026823952794075012, 0.0148239154368639, 0.044992849230766296, 0.026082221418619156, -0.06870687007904053, 0.028131337836384773, -0.0367463193833828, 0.011177890934050083, 0.0036382139660418034, 0.01694091036915779, 0.048153072595596313, 0.012337288819253445, -0.008778235875070095, -0.03289848566055298, 0.04804083704948425, -0.0539974607527256, -0.013920562341809273, -0.03319871798157692, -0.01287785917520523, -0.0208255797624588, -0.005198577418923378, 0.0013447952223941684, -0.019080879166722298, -0.03500610589981079, 0.04033636301755905, 0.031727131456136703, 0.0271094162017107, 0.019245514646172523, 0.02035043016076088, 0.041220538318157196, 0.04331750050187111, 0.006270867306739092, -0.00980218593031168, -0.06013652682304382, -0.05358344689011574, -0.050676263868808746, 0.04484476521611214, -0.02811943180859089, -0.0628432184457779, 0.03768068552017212, 0.020880697295069695, -0.0005958395195193589, -0.0051926723681390285, -0.04532772675156593, 0.016009917482733727, -0.010646671056747437, -0.015859350562095642, -0.06713537126779556, -0.04188615083694458, 0.02055119350552559, 0.04105041176080704, -0.027356421574950218, -0.023232653737068176, 0.019324691966176033, 0.0004702892620116472, -0.03968452289700508, -0.00015676625480409712, -0.048906564712524414, -0.011730990372598171, -0.024969689548015594, -0.018862327560782433, -0.08396019041538239, 0.042759139090776443, 0.021102042868733406, -0.02365633100271225, -0.0374331921339035, 0.01634734496474266, 0.023022938519716263, 0.025893446058034897, -0.025127027183771133, 0.08022864907979965, -0.014006612822413445, 0.04840997979044914, 0.0037335497327148914, 0.07240121811628342, -0.013685999438166618, -0.040162719786167145, -0.005113473627716303, 0.062471065670251846, -0.019755395129323006, -0.0778709203004837, 0.022548135370016098, -0.05514409765601158, -0.004548203200101852, 0.0013520647771656513, 0.03999772667884827, 0.006365237757563591, 0.04202574864029884, -0.01226553600281477, 0.022219501435756683, 0.023813733831048012, 0.016596931964159012, 0.01758573204278946, -0.005585003644227982, -0.06074022501707077, -0.05159700661897659, 0.00505926413461566, 0.03803521767258644, 0.03271196782588959, 0.0773109719157219, 0.0011746776290237904, 0.008358721621334553, 0.0648069903254509, -0.004077516030520201, -0.003329184837639332, -0.0022848311346024275, -0.0014878412475809455, 0.04786350950598717, -0.0007633015629835427, 0.019948633387684822, 0.032892677932977676, 0.009765872731804848, -0.04654897749423981, 0.03903944045305252, 0.06086191162467003, -0.021989857777953148, -0.007476776838302612, -0.038061559200286865, -0.02821488305926323, 0.05246436968445778, 0.001573186251334846, -0.00871877558529377, 0.041783303022384644, 0.06735610961914062, 0.02897711656987667, 0.0044001126661896706, 0.02794794738292694, -0.06772906333208084, 0.057359397411346436, 0.018948694691061974, 0.019407076761126518, 0.055875204503536224, -0.030382288619875908, 0.08019724488258362, 0.03320080041885376, 0.05283775180578232, -0.0011121503775939345, -0.03196835517883301, -0.030353255569934845, -0.029147932305932045, 0.024719128385186195, 0.06533315777778625, -0.060942526906728745, -0.049983542412519455, 0.08383011817932129, 0.05157235264778137, 0.017650334164500237, -0.003610595129430294, 0.0036888516042381525, 0.006103499326854944, -0.04378689453005791, -0.044594332575798035, 0.0039964537136256695, 0.012402503751218319, -0.017455557361245155, -0.02631594054400921, 0.047466591000556946, -0.01757279969751835, -0.010263611562550068, 0.02227090112864971, -0.012963366694748402, 0.06629279255867004, 0.04462803155183792, 0.053827203810214996, -0.02251502498984337, 0.030252637341618538, -0.032333970069885254, 0.031741395592689514, -0.010395760647952557, -0.025389745831489563, -0.07185795158147812, -0.01354234665632248, 0.1331053376197815, 0.08399149030447006, -0.009921962395310402, -0.08364014327526093, -0.03207876533269882, -0.02830716408789158, -0.03147369250655174, 0.03505285084247589, 0.018063073977828026, -0.024409959092736244, 0.001005035126581788, -0.021993672475218773, -0.019172847270965576, 0.021174395456910133, -0.03482541814446449, 0.029964052140712738, 0.06376207619905472, 0.00971720926463604, 0.048935189843177795, -0.002702075755223632, -0.027764635160565376, 0.025400353595614433, -0.03709154203534126, -0.05822572857141495, 0.01706480234861374, 0.004597912542521954, 0.0035257700365036726, 0.07006801664829254, -0.016305899247527122, -0.03280448913574219, -0.004908173345029354, -0.07159657031297684, -0.023530999198555946, 0.05442536622285843, 0.037603940814733505, 0.0035122924018651247, 0.0007076362380757928, 0.01906963437795639, -0.0019718732219189405, -0.03657134622335434, -0.03367811441421509, -0.041254010051488876, -0.036368243396282196, 0.021962692961096764, 0.035015545785427094, 0.023881293833255768, 0.021850140765309334, -0.0037005979102104902, -0.005449576303362846, 0.03249374404549599, -0.019087685272097588, 0.039864636957645416, -0.01613425649702549, -0.024808743968605995, -0.056825973093509674, 0.03271855041384697, 0.04245021194219589, 0.011566698551177979, -0.03527454659342766, 0.014967956580221653, -0.03709564357995987, 0.02599053457379341, -0.06712447106838226, -0.008651680313050747, -0.008372169919312, 0.029501084238290787, 0.06537425518035889, 0.018065398558974266, -0.003867589868605137, 0.00783584825694561, 0.012028161436319351, -0.008046961389482021, 0.01431176345795393, 0.03060508333146572, 0.062435332685709, -0.0026872160378843546, 0.02280857041478157, 0.06557904928922653, -0.00937856175005436, -0.02236555702984333, -0.023754509165883064, -0.02089664153754711, -0.026005638763308525, -0.24210017919540405, 0.023137303069233894, -0.021351389586925507, -0.015511146746575832, -0.018349356949329376, -0.02409752830862999, -0.004429657477885485, -0.02239602990448475, 0.007018964271992445, 0.0100919920951128, -0.015516456216573715, -0.04416279122233391, -0.04581617936491966, 0.06391848623752594, 0.0011411842424422503, 0.0671139508485794, 0.01461169496178627, -0.012897558510303497, -0.012232795357704163, 0.022349990904331207, -0.009519977495074272, -0.04209412261843681, 0.01987522840499878, 0.058703988790512085, 0.03126529976725578, 0.05342724919319153, -0.0778839960694313, 0.05041719600558281, -0.06472895294427872, -0.03027404472231865, 0.017311174422502518, -0.03155314177274704, -0.0016622354742139578, -0.008507582359015942, 0.003519404912367463, -0.027242621406912804, -0.007999034598469734, -0.01788678579032421, -0.006178923416882753, -0.013759213499724865, -0.018335089087486267, -0.050188563764095306, -0.01970296911895275, 0.03940414637327194, 0.04613463580608368, -0.027687786146998405, -0.03160310536623001, 0.01910834200680256, -0.03654865175485611, 0.07436419278383255, 0.012333695776760578, -0.014107484370470047, -0.03021297976374626, 0.009591628797352314, -0.025402242317795753, 0.021145902574062347, -0.018233509734272957, 0.00888114795088768, -0.011341153644025326, -0.04933629184961319, 0.031054126098752022, -0.024506310001015663, -0.05304235965013504, -0.04938073083758354, 0.001141302869655192, -0.02687460370361805, -0.03457288816571236, -0.026577817276120186, 0.05153249576687813, 0.054591525346040726, -0.034798722714185715, -0.03666054829955101, 0.007836268283426762, -0.09372664988040924, 0.011951655149459839, -0.06901445239782333, 0.00664925342425704, 0.026126351207494736, -0.014783431775867939, 0.004706079605966806, -0.04957398399710655, -0.05397779494524002, 0.07732092589139938, -0.0013796596322208643, -0.004249780438840389, 0.008628949522972107, -0.008299700915813446, -0.006758053321391344, -0.008787068538367748, -0.02214112877845764, 0.055907201021909714, -0.008698245510458946, -0.0022846609354019165, 0.0006716179195791483, -0.04003496095538139, 0.015206808224320412, 0.04691213741898537, 0.03341759741306305, 0.014708195813000202, -0.0031830815132707357, 0.00174836372025311, -0.06108708679676056, -0.058403100818395615, -0.02747008018195629, -0.005032832268625498, -0.006087346468120813, -0.06674722582101822, 0.020090484991669655, -0.011305168271064758, -0.021640725433826447, 0.0036063494626432657, -0.05556580051779747, -0.009640653617680073, -0.06349551677703857, -0.03281634673476219, -0.044214341789484024, 0.009863179177045822, 0.015211873687803745, -0.012532499618828297, -0.04088061675429344, -0.06596744060516357, 0.017131967470049858, 0.03521258383989334, 0.001357354922220111, -0.04771557077765465, -0.03421405702829361, 0.03127388283610344, -0.01510882843285799, 0.013378748670220375, 0.006659411825239658, -0.04449441283941269, 0.024555888026952744, 0.05847474932670593, -0.03308080509305, 0.0029176720418035984, -0.004299667198210955, -0.024783723056316376, -0.005599776282906532, 0.03564820438623428, 0.017311938107013702, -0.00006744291022187099, 0.056117430329322815, -0.03387843817472458, 0.004085823427885771, 0.04059436544775963, 0.0007834667921997607, 0.04676895961165428, 0.014554615132510662, 0.013691511936485767, 0.026056313887238503, 0.007723451126366854, -0.018777186051011086, 0.0033207295928150415, -0.024524977430701256, -0.04498738422989845, -0.001116171246394515, 0.02329964004456997, -0.015710756182670593, -0.0016008985694497824, -0.035957153886556625, 0.014480785466730595, -0.04958336427807808, -0.029911139979958534, -0.010233224369585514, 0.010609450750052929, 0.041677530854940414, -0.01993938535451889, 0.04717826470732689, 0.019794253632426262, -0.014665436930954456, 0.007084898184984922, 0.01621406525373459, -0.013518194667994976, 0.0014385591493919492, -0.03902200609445572, 0.0002582636079750955, 0.03376675769686699, 0.005053882487118244, 0.00952660758048296, 0.024387160316109657, 0.02299819141626358, -0.003640086157247424, 0.019953252747654915, 0.0011911311885342002, 0.0027027565520256758, 0.06576360017061234, -0.03599987179040909, 0.010900340043008327, -0.014009196311235428, -0.00535593880340457, -0.010064234025776386, -0.012528342194855213, -0.011325581930577755, 0.0218709334731102, -0.033000633120536804, -0.06446278840303421, 0.005756311118602753, 0.011994881555438042, 0.019751206040382385, 0.001451003015972674, -0.035529058426618576, 0.021210040897130966, -0.06500925868749619, 0.019332071766257286, 0.06888389587402344, -0.05343528091907501, 0.012515900656580925, -0.002764554228633642, 0.03488574177026749, 0.009092501364648342, 0.007726207375526428, -0.042214300483465195, -0.036359429359436035, -0.02808542177081108, 0.025411905720829964, 0.019458306953310966, -0.023557454347610474, -0.03411838039755821, 0.015905488282442093, -0.01690450683236122, 0.0415065623819828, -0.008381756953895092, 0.004871489014476538, -0.007764528039842844, -0.027412641793489456, 0.023635083809494972, 0.001129872165620327, -0.018214071169495583, 0.036471981555223465, -0.02203134447336197, 0.04138951003551483, -0.020014353096485138, 0.017708148807287216, 0.039821408689022064, -0.024179361760616302, -0.004873290192335844, -0.08101309835910797, 0.008089001290500164, 0.011445466428995132, 0.040966689586639404, 0.017541317269206047, 0.030963756144046783, -0.041316453367471695, 0.009026316925883293, -0.01155573595315218, -0.001070242840796709, -0.017817815765738487, -0.04712154343724251, 0.013946318067610264, 0.019599299877882004, -0.00007260349957505241, -0.05044521763920784, 0.019140461459755898, -0.032928239554166794, 0.038766372948884964, -0.010017536580562592, -0.04319639876484871, -0.01775231957435608, -0.07024439424276352, 0.039877645671367645, -0.009534995071589947, 0.04250365495681763, -0.07813183963298798, 0.028781406581401825, 0.024834655225276947, 0.05983047932386398, 0.038567204028367996, -0.028561685234308243, 0.009709618054330349, -0.051831331104040146, -0.02752009965479374, -0.0796300545334816, -0.009524340741336346, 0.019883165135979652, 0.026847628876566887, -0.02656518667936325, 0.01806304231286049, -0.040024567395448685, 0.0811675563454628, -0.0600811168551445, -0.007533344440162182, 0.08125539124011993, 0.058426834642887115, 0.013844165951013565, 0.03595101833343506, -0.0524081327021122, 0.01290528941899538, 0.004171662498265505, -0.06975814700126648, -0.024308713153004646, 0.00288178026676178, 0.05907844007015228, 0.003107235301285982, -0.02215707302093506, 0.0009826960740610957, 0.02376910299062729, 0.07843481004238129, 0.02899503894150257, 0.02889181487262249, 0.007849745452404022, 0.0008596329716965556, 0.042919207364320755, 0.02819105051457882, 0.010163819417357445, -0.028111854568123817, 0.018708376213908195, 0.01530542317777872, -0.06065073981881142, 0.0663079023361206, 0.028798267245292664, 0.028548400849103928, -0.07845795899629593, 0.06561923772096634, -0.0037565152160823345, -0.06875155866146088, -0.012051397003233433, -0.008046709932386875, -0.03430771827697754, 0.012872805818915367, -0.006210885010659695, -0.006398964673280716, 0.001840339507907629, 0.06732414662837982, -0.025802958756685257, -0.0269145667552948, 0.06327535957098007, -0.007156340405344963, 0.011160762049257755, 0.005180744454264641, 0.03884274885058403, 0.08031172305345535, 0.06326254457235336, 0.027949882671236992, 0.036792077124118805, -0.001124683883972466, -0.060458533465862274, 0.007327703293412924, -0.011116287671029568, 0.023145625367760658, -0.06675595790147781, 0.04053756222128868, 0.04448189213871956, -0.015361170284450054, 0.05651048943400383, 0.003746586386114359, 0.030612004920840263, -0.03736746683716774, 0.00029624265152961016, 0.010700853541493416, 0.0640626773238182, -0.017300138249993324, 0.03112030401825905, -0.010600313544273376, -0.021024120971560478, 0.017264021560549736, -0.006181684788316488, -0.0005559765268117189, 0.004069979768246412, 0.02490904927253723, -0.01981218159198761, 0.019431427121162415, 0.03837095573544502, 0.07699171453714371, -0.02562190406024456, -0.053637951612472534, 0.05050132796168327, 0.029376044869422913, 0.00942931603640318, -0.0068397680297493935, 0.05279071256518364, 0.031226016581058502, 0.023145904764533043, 0.0022855920251458883, -0.015322359278798103, -0.050989627838134766, 0.01627221331000328, 0.03605301305651665, -0.03376677259802818, 0.004222871735692024, 0.00198567402549088, -0.037800561636686325, -0.06960656493902206, -0.016310596838593483, -0.06953996419906616, -0.05713890865445137, -0.07617418467998505, -0.021580522879958153, 0.022426364943385124, -0.03084075264632702, -0.05226004496216774, -0.038308702409267426, -0.01689884066581726, 0.0464930422604084, -0.019416574388742447, -0.012899572029709816, -0.04889427125453949, 0.009409219957888126, 0.010170310735702515, 0.004584744106978178, 0.003158358857035637, 0.026426268741488457, 0.015595907345414162, -0.021493909880518913, -0.003753409953787923, 0.07565200328826904, 0.006482248660176992, 0.022547440603375435, 0.03183929994702339, -0.04716915264725685, -0.023375781252980232, -0.011196424253284931, -0.02412557043135166, -0.07290798425674438, 0.038065847009420395, 0.024078430607914925, 0.018763629719614983, 0.026319866999983788, -0.020238535478711128, -0.006848514080047607, 0.0058953543193638325, -0.024337735027074814, -0.038961708545684814, 0.03144649416208267, 0.02410559356212616, -0.04043734446167946, 0.05554266273975372, 0.016422376036643982, 0.015565957874059677, -0.0075572822242975235, -0.004149120766669512, -0.048339881002902985, 0.02065747231245041, -0.0454685315489769, -0.06009458750486374, -0.05184832215309143, -0.05067075416445732, 0.01298367977142334, 0.02514161914587021, -0.046278443187475204, -0.04116880148649216, -0.02281905524432659, 0.018028955906629562, 0.005215413868427277, 0.04398028180003166, -0.002956270705908537, -0.009019428864121437, -0.049552593380212784, -0.033188458532094955, -0.0207237359136343, 0.018203169107437134, 0.03673767298460007, 0.009041886776685715, 0.013363918289542198, -0.04130170866847038, -0.03019081801176071, -0.00268232892267406, 0.019005553796887398, 0.03184765577316284, -0.02664870023727417, 0.023557394742965698 ]
[ -0.02384527586400509, -0.05887226387858391, 0.01682661846280098, -0.0036425006110221148, 0.030598845332860947, -0.002959578763693571, -0.06113453954458237, 0.03632369637489319, 0.024907810613512993, 0.015270610339939594, 0.022630782797932625, -0.10505236685276031, 0.05119756609201431, 0.012754345312714577, 0.017640531063079834, 0.0017059968085959554, -0.007593241520226002, -0.022156711667776108, -0.0933234840631485, 0.05577627196907997, 0.012774736620485783, -0.026856867596507072, -0.012185588479042053, -0.035337723791599274, 0.06827840954065323, 0.03920533508062363, 0.009709132835268974, -0.0668841004371643, 0.0005761227803304791, -0.22991985082626343, 0.03428449109196663, 0.021479446440935135, 0.021854933351278305, -0.05156128108501434, -0.026538223028182983, 0.016142796725034714, 0.04696231707930565, 0.030738960951566696, 0.04807722568511963, 0.0355495847761631, 0.009154103696346283, 0.021390222012996674, -0.025821268558502197, -0.03875301778316498, 0.012641433626413345, 0.0024151524994522333, -0.026482634246349335, 0.009269359521567822, 0.003707519033923745, 0.03708845376968384, -0.05018868297338486, -0.04049909487366676, -0.009446625597774982, 0.03340770676732063, 0.02181544154882431, 0.003906843718141317, 0.03796800225973129, 0.010323128663003445, 0.05600663274526596, 0.00564492167904973, 0.009647844359278679, 0.009435570798814297, -0.14105574786663055, 0.11837472766637802, -0.009098662994801998, 0.03615584596991539, -0.03511736914515495, 0.003859597956761718, -0.008913139812648296, 0.11138633638620377, -0.00342575297690928, -0.040153466165065765, -0.013558704406023026, 0.04320712760090828, 0.018584003672003746, -0.09519971162080765, -0.03310505673289299, 0.019314348697662354, 0.07935766875743866, -0.01678238809108734, -0.0747164711356163, 0.01604989729821682, -0.023638099431991577, -0.02201598510146141, 0.019854668527841568, 0.008887739852070808, 0.0077926539815962315, 0.0033094785176217556, 0.006603261921554804, 0.026328960433602333, 0.042580898851156235, 0.022343510761857033, 0.01951070874929428, 0.008154251612722874, -0.0830228254199028, -0.0531349778175354, 0.035035938024520874, -0.0027005537413060665, -0.02268105186522007, 0.3318558931350708, -0.010455163195729256, -0.0030688706319779158, 0.01848885975778103, 0.06753511726856232, -0.01359813567250967, -0.00986750889569521, 0.0017956829397007823, -0.02096521481871605, 0.02746250294148922, 0.0014754922594875097, -0.01849382184445858, -0.02847081422805786, 0.0003126853844150901, -0.06651024520397186, 0.02766844816505909, -0.07457602769136429, -0.04472861438989639, -0.003383798524737358, -0.012842386029660702, 0.018659377470612526, 0.013012985698878765, 0.04553399980068207, 0.0008432923350483179, 0.04003753885626793, 0.043988220393657684, 0.053319044411182404, -0.0023946440778672695, 0.03670473396778107, -0.008703390136361122, -0.044296953827142715, 0.025864435359835625, -0.05429515242576599, -0.09495662152767181, 0.024198070168495178, -0.008417339995503426, -0.00009777301602298394, 0.025262022390961647, -0.02446797490119934, 0.05158224701881409, -0.022829577326774597, -0.01131579652428627, 0.009049762040376663, 0.040316153317689896, 0.028253663331270218, -0.011196053586900234, 0.14688482880592346, -0.0470597930252552, 0.0038234919775277376, -0.03212965652346611, -0.015679052099585533, -0.0326601080596447, 0.012453091330826283, -0.024279028177261353, -0.05461536720395088, 0.03537551313638687, 0.040896616876125336, 0.049069833010435104, 0.02639610879123211, -0.03852082043886185, -0.050489671528339386, -0.0014421343803405762, 0.008206627331674099, 0.006261448375880718, -0.06683333218097687, 0.04558274522423744, -0.0994454100728035, -0.0219320859760046, 0.0383620522916317, -0.011048351414501667, -0.08639093488454819, -0.01918090507388115, 0.027398064732551575, -0.058795247226953506, -0.016521809622645378, 0.10014484077692032, -0.016809334978461266, -0.029171911999583244, -0.032717861235141754, 0.07454679161310196, 0.018026478588581085, 0.019574621692299843, 0.011272361502051353, -0.01099042221903801, -0.028776658698916435, -0.07924458384513855, -0.07966624945402145, -0.014658262953162193, -0.009294976480305195, 0.006863445043563843, -0.04144968464970589, 0.08590712398290634, -0.015435757115483284, -0.031968746334314346, 0.046315453946590424, -0.045747656375169754, -0.01811012625694275, 0.033569902181625366, -0.017433594912290573, -0.06466234475374222, -0.009368675760924816, 0.044471174478530884, 0.021600892767310143, 0.020030435174703598, 0.012521965429186821, -0.05038440600037575, 0.06847565621137619, 0.08266591280698776, -0.06366187334060669, 0.061301104724407196, 0.010967789217829704, -0.050827182829380035, -0.011235634796321392, -0.035478685051202774, -0.0037563161458820105, -0.0307942945510149, 0.005196956917643547, 0.0041599697433412075, -0.0081006595864892, -0.02459315024316311, 0.004212372470647097, 0.06941880285739899, -0.04560011252760887, -0.011403055861592293, -0.35516461730003357, -0.00011930725304409862, 0.015388880856335163, -0.00842099916189909, 0.024725863710045815, -0.045968279242515564, -0.013482876121997833, 0.008752959780395031, -0.016296952962875366, 0.040345314890146255, 0.09340716898441315, -0.009498648345470428, -0.028628448024392128, -0.16760294139385223, -0.043007105588912964, 0.014583730138838291, -0.03163967281579971, -0.040188632905483246, -0.04496349021792412, -0.0397789366543293, -0.012648265808820724, 0.011296269483864307, -0.04606989771127701, -0.002908521331846714, -0.023738045245409012, -0.011618410237133503, 0.1420879065990448, -0.005838952027261257, 0.03305426239967346, -0.03133426234126091, 0.02150954119861126, 0.008418447338044643, -0.02825343795120716, -0.04618093743920326, -0.009969066828489304, 0.04715019091963768, -0.04268292710185051, 0.0614551343023777, -0.03365001082420349, -0.024283628910779953, 0.028954721987247467, 0.04053821414709091, -0.01730603538453579, -0.012304943986237049, -0.02048536017537117, 0.015290056355297565, -0.0013640731340274215, 0.001001488883048296, 0.004097803961485624, 0.05868672579526901, -0.034647438675165176, 0.058182645589113235, 0.02242562361061573, 0.017368558794260025, -0.0006457418203353882, 0.0009457261767238379, -0.04598275199532509, 0.0021366258151829243, -0.022794773802161217, -0.05618412792682648, -0.02636251226067543, 0.029795415699481964, 0.041217319667339325, -0.07355708628892899, -0.040701016783714294, 0.04038713127374649, -0.00844211783260107, -0.057210344821214676, 0.02957003191113472, 0.0372965969145298, -0.003942936193197966, 0.09836497157812119, -0.021146563813090324, 0.013180405832827091, 0.10503967106342316, 0.03636404499411583, 0.00552538363263011, 0.09249776601791382, 0.029580986127257347, -0.017851857468485832, -0.014347628690302372, -0.00715638417750597, 0.03009168617427349, 0.01707751676440239, 0.05675317719578743, -0.011733416467905045, -0.015930792316794395, -0.03391144424676895, 0.02375357411801815, 0.026295507326722145, 0.00474728224799037, -0.050823960453271866, -0.003833810333162546, 0.02109351195394993, 0.03318760171532631, -0.0003759394458029419, -0.2506358027458191, 0.06423533707857132, 0.06408016383647919, 0.04054074361920357, -0.041031185537576675, 0.020893795415759087, 0.03143175318837166, 0.004663280677050352, 0.04816829785704613, -0.005455576349049807, -0.041433148086071014, 0.0203799270093441, 0.02254183031618595, -0.039968281984329224, -0.017078448086977005, -0.010038641281425953, 0.011623856611549854, 0.005178654100745916, 0.023348137736320496, 0.02349325455725193, 0.0627138763666153, -0.04280876740813255, 0.12148255854845047, 0.05473480001091957, 0.012492978014051914, -0.04343005642294884, 0.009467227384448051, -0.02504531852900982, 0.07752272486686707, 0.01814139261841774, 0.016591964289546013, -0.0016117192571982741, 0.0032413918524980545, 0.01842077076435089, 0.031160876154899597, 0.026799537241458893, -0.050757624208927155, 0.006722215097397566, 0.02005525678396225, -0.02583014778792858, 0.003366811666637659, -0.00462933536618948, -0.07173849642276764, 0.03327136114239693, 0.08125228434801102, 0.0033593017142266035, 0.026215514168143272, 0.011000349186360836, -0.05277746543288231, -0.0028763317968696356, -0.0378919318318367, -0.002966999774798751, -0.02752753533422947, 0.010623235255479813, 0.008744076825678349, 0.0269915908575058, 0.0525268018245697, 0.004176090471446514, 0.04450250044465065, -0.0013131897430866957, 0.034556660801172256, -0.050495583564043045, 0.04652554169297218, -0.02414630353450775, 0.02149336040019989 ]
[ 0.028357869014143944, -0.002068502129986882, 0.02184855192899704, -0.013290991075336933, 0.00010545636177994311, -0.008656766265630722, -0.016911689192056656, 0.029432520270347595, -0.01880713179707527, 0.007608181796967983, -0.01527965348213911, 0.003846255363896489, -0.002598088001832366, -0.012230029329657555, 0.0441167876124382, 0.0010366808855906129, 0.012648869305849075, -0.005388420540839434, 0.03383292630314827, 0.008450220339000225, -0.02798689715564251, -0.006355851888656616, 0.005713518708944321, -0.00880588497966528, -0.004169912543147802, -0.019392315298318863, -0.058910299092531204, 0.006414266303181648, 0.024777399376034737, -0.11491730064153671, -0.016943320631980896, -0.045823052525520325, 0.005231458228081465, -0.01957167685031891, -0.032638631761074066, 0.027910446748137474, 0.000028622589525184594, 0.023316018283367157, -0.005223528016358614, 0.007902142591774464, -0.01989862136542797, 0.004993126727640629, -0.009755170904099941, 0.000013504620255844202, 0.026983371004462242, 0.012282252311706543, -0.008333022706210613, -0.008241107687354088, -0.0291314534842968, 0.013807190582156181, -0.05535711348056793, 0.011316469870507717, -0.04116542264819145, 0.0036028586328029633, 0.03424322232604027, -0.020398704335093498, 0.008832283318042755, -0.024552756920456886, 0.033256903290748596, 0.004306774120777845, -0.043620847165584564, 0.03872222080826759, -0.028322206810116768, -0.03829392045736313, 0.007139171473681927, 0.0012457513948902488, -0.002357747172936797, -0.006984884850680828, 0.010921871289610863, 0.014399705454707146, 0.007639950141310692, 0.017631173133850098, -0.021517127752304077, -0.02439715526998043, -0.031883299350738525, -0.02846638299524784, 0.0031203951220959425, -0.034079037606716156, 0.002283262088894844, -0.02258363552391529, -0.026585377752780914, 0.023755334317684174, 0.012423520907759666, 0.017560048028826714, 0.013622257858514786, -0.01705319806933403, 0.020738089457154274, 0.025546172633767128, 0.015059500001370907, -0.028985705226659775, -0.023042451590299606, 0.03473498672246933, -0.021824577823281288, 0.0864797830581665, -0.10104750841856003, -0.01343041192740202, 0.002041860716417432, 0.006945337634533644, -0.03793134540319443, 0.8156395554542542, 0.024116065353155136, -0.020769674330949783, 0.045356813818216324, 0.010625365190207958, 0.014725914224982262, -0.0034888461232185364, 0.03783348575234413, -0.01005878858268261, -0.01608603447675705, -0.004743979778140783, 0.014469034038484097, -0.0030322796665132046, 0.008490558713674545, 0.05087384581565857, 0.010031847283244133, 0.013573385775089264, -0.0060251024551689625, 0.001348102348856628, -0.012810338288545609, -0.006140516139566898, -0.0013213894562795758, 0.036706116050481796, 0.0035929556470364332, 0.005375836975872517, -0.02490738406777382, -0.1693517416715622, 0.005095155443996191, -7.428277206580296e-33, -0.014445127919316292, -0.04191981628537178, 0.02102845162153244, 0.002324163680896163, 0.03397318720817566, 0.011588694527745247, -0.06831543147563934, -0.011714579537510872, 0.027333000674843788, -0.007019350305199623, 0.0068978434428572655, -0.04377363994717598, -0.014573504216969013, 0.027748174965381622, 0.07114585489034653, 0.0024749222211539745, 0.019652660936117172, 0.06044028326869011, -0.0011981865391135216, 0.02038181945681572, -0.0031024706549942493, 0.022999336943030357, 0.017130132764577866, 0.03765823319554329, 0.005030188709497452, 0.01489062700420618, 0.05437709018588066, 0.01706751435995102, -0.023044517263770103, -0.042127594351768494, -0.05869187414646149, -0.025591537356376648, 0.046002451330423355, -0.053821537643671036, 0.0005197470891289413, -0.049000125378370285, -0.010573729872703552, 0.005505803972482681, -0.03807162865996361, 0.01595686934888363, -0.03742208331823349, -0.04332909733057022, -0.04615674912929535, 0.006039906293153763, -0.03810236230492592, 0.00263010710477829, 0.021627267822623253, 0.07346188277006149, -0.015172355808317661, 0.004890649579465389, -0.00935166236013174, 0.04155020788311958, -0.011575791984796524, 0.009812496602535248, -0.01241115853190422, -0.009541504085063934, -0.02982652746140957, -0.007407813332974911, -0.002992646535858512, -0.03208152949810028, 0.044630952179431915, -0.02158314920961857, 0.021737711504101753, 0.041434526443481445, -0.03309384733438492, 0.01887338049709797, 0.030980993062257767, -0.015212845988571644, 0.004606884438544512, 0.0175462793558836, -0.09905121475458145, 0.03170163184404373, -0.013019653037190437, -0.047874271869659424, 0.04634430259466171, -0.032338134944438934, -0.0034468602389097214, 0.02236018516123295, 0.016147352755069733, 0.04824996739625931, 0.037958770990371704, -0.02978888712823391, 0.0053052338771522045, -0.02794520929455757, -0.030563542619347572, -0.022321375086903572, 0.061844222247600555, 0.05179430544376373, -0.05041910335421562, -0.000893188698682934, 0.01224067434668541, -0.008621766231954098, -0.01243773102760315, 0.00896559190005064, 0.025432681664824486, 7.419850381452838e-33, 0.006449087988585234, 0.03356839343905449, 0.015544494614005089, 0.008609927259385586, 0.02089611254632473, -0.025283584371209145, 0.013747120276093483, 0.0115731842815876, -0.012325393967330456, 0.008237065747380257, -0.0063940538093447685, -0.055936068296432495, -0.04727890342473984, -0.00416602985933423, 0.061925265938043594, 0.0251007117331028, -0.0052548665553331375, 0.06188897415995598, -0.03169313073158264, -0.037440430372953415, -0.031246695667505264, 0.0014781244099140167, 0.0032656590919941664, 0.03566480800509453, 0.008361400105059147, 0.05473538860678673, -0.0092987772077322, -0.0013126349076628685, -0.013902062550187111, -0.010369788855314255, -0.012225139886140823, -0.026689158752560616, 0.009801684878766537, -0.030673537403345108, 0.02735760249197483, 0.04123128205537796, 0.03170061111450195, -0.0210274551063776, -0.04159926250576973, 0.011251352727413177, 0.026833735406398773, 0.03468279913067818, -0.02016657218337059, 0.01127261109650135, -0.041980352252721786, 0.0406322106719017, -0.007171604782342911, 0.014815334230661392, 0.00740357581526041, 0.006927888374775648, -0.021164417266845703, 0.026974452659487724, 0.04725969210267067, 0.0005182833410799503, 0.025951847434043884, -0.027810173109173775, -0.02702348865568638, 0.08255172520875931, -0.032051533460617065, 0.007925801910459995, -0.02416044846177101, -0.03239826485514641, -0.02065657451748848, 0.012786738574504852, 0.003344049910083413, 0.011625056155025959, -0.05381368100643158, -0.050898123532533646, -0.013505412265658379, 0.018377382308244705, 0.009964264929294586, -0.02413313277065754, -0.000233613551245071, 0.033303674310445786, -0.00944576971232891, 0.021981213241815567, 0.008464805781841278, -0.021806340664625168, -0.02745918370783329, 0.02312416210770607, 0.05168412998318672, -0.04157411679625511, 0.045518629252910614, 0.03338968753814697, -0.017308076843619347, 0.03045252524316311, -0.021090077236294746, -0.006073241122066975, -0.011260160245001316, -0.003205234883353114, 0.00139681959990412, -0.030031658709049225, 0.0010562307434156537, 0.015525145456194878, 0.042517658323049545, -1.2687049633086644e-8, -0.017953243106603622, 0.022225787863135338, 0.004857256542891264, 0.00301924510858953, -0.002225226256996393, 0.04116063192486763, -0.008745313622057438, 0.02079096995294094, -0.0007933381712064147, 0.0363391749560833, 0.03429774194955826, -0.0023461428936570883, -0.007892630062997341, 0.005983641836792231, -0.04433334991335869, -0.05460094287991524, -0.000010276348803017754, 0.003700980916619301, 0.040785904973745346, -0.008949031122028828, -0.010108906775712967, -0.019238095730543137, 0.021566404029726982, -0.0031824554316699505, -0.035917188972234726, -0.03764684870839119, 0.021900581195950508, -0.05191763490438461, -0.002933376468718052, -0.007255156524479389, 0.02963300235569477, -0.044003989547491074, 0.00767115131020546, 0.021929455921053886, -0.0037320333067327738, -0.037927888333797455, 0.0022099355701357126, 0.015556426718831062, 0.025916753336787224, 0.0187497790902853, -0.008904843591153622, -0.01681605540215969, 0.03472662344574928, -0.03303532674908638, 0.02271815948188305, 0.006868590135127306, -0.013156247325241566, 0.018738118931651115, 0.008823948912322521, -0.005536499433219433, 0.04458232596516609, 0.01064083818346262, 0.00749992486089468, -0.010447616688907146, 0.026946015655994415, -0.019607629626989365, -0.015043549239635468, 0.012544536963105202, -0.00918501615524292, 0.023979539051651955, 0.02662229724228382, -0.009362220764160156, -0.02909170649945736, -0.042279891669750214 ]
python-pandas-dataframe-plot-figure
https://markhneedham.com/blog/2018/12/25/python-pandas-dataframe-plot-figure
false
2011-03-04 02:49:59
TWU: Session Design - Measurable goals
[ "thoughtworks-university" ]
[ "ThoughtWorks University" ]
We've been spending our time recently preparing the sessions for the next ThoughtWorks University batch and one thing http://www.learninggeneralist.com/[Sumeet] has encouraged us to do is ensure that we have a *measurable goal for each session*. In our case that means that we need to design our sessions with the intention of the grads being able to do something rather than understand something after the session. It's very difficult to measure whether someone understands something and from what I've noticed having a goal of someone understanding something can encourage you to put in more than is strictly necessary. Sumeet pointed us to Cathy Moore's http://blog.cathy-moore.com/2008/05/be-an-elearning-action-hero/[action mapping] which talks about the need to create some sort of action from the learning opportunity that we're providing. She also talks about the need to avoid http://www.markhneedham.com/blog/2010/10/31/distributed-agile-context/[brain dumping] and I've noticed that I have a tendency to do this if my goal is for someone to 'understand topic x'. I've found it quite difficult to work out how much information and context we should be providing but our current thinking is that providing just enough to allow the grads to work on http://www.sukrupa.org/[their project] while encouraging them to seek out more information when they need it will be the most effective approach. On a somewhat related note, after a recommendation by my colleague http://jimbarritt.com/non-random/[Jim Barritt] I've been reading through Gerald Weinburg's 'http://www.amazon.com/Becoming-a-Technical-Leader-ebook/dp/B004J4VV3I/ref=sr_1_2?ie=UTF8&m=AG56TWVU5XWC2&s=books&qid=1299125329&sr=8-2[Becoming a Technical Leader]' and I quite like Weinburg's advice around this: ____ When I write a book or an essay or a novel, or give a workshop, I measure my success by one simple test: _When I'm finished with them, do they care less about the subject?_ If the answer if yes, I've failed. ____ I'm not sure how measurable this one is but it certainly encourages you not to make the session boring!
null
null
[ 0.03680209815502167, -0.00047666902537457645, -0.011151361279189587, 0.01680988259613514, 0.08047306537628174, -0.007883157581090927, 0.024813318625092506, 0.02817416749894619, 0.020733356475830078, -0.023288438096642494, -0.01692599430680275, 0.0022076372988522053, -0.018439941108226776, 0.01781003177165985, -0.03851752355694771, 0.06629263609647751, 0.0689847469329834, 0.012848325073719025, 0.003926715813577175, 0.018985632807016373, 0.01497170701622963, 0.07949688285589218, 0.03138533979654312, 0.03495662286877632, 0.05070304870605469, 0.0044494932517409325, 0.0306838471442461, -0.024208027869462967, -0.046623796224594116, -0.006280952598899603, 0.023802779614925385, -0.02500816434621811, 0.01732783392071724, 0.011449364945292473, 0.034761883318424225, -0.020484594628214836, 0.005513755604624748, 0.04588145390152931, 0.02308068238198757, -0.00814681313931942, -0.08407380431890488, 0.036311689764261246, -0.023195277899503708, -0.003617203561589122, -0.02774188295006752, 0.0021708912681788206, -0.03104414790868759, -0.002582722343504429, 0.021709201857447624, -0.0069520678371191025, -0.07188629359006882, 0.054884959012269974, 0.01602301001548767, -0.02071974240243435, -0.005849268287420273, 0.03762880712747574, 0.005492951720952988, -0.0710812658071518, 0.006081027910113335, -0.04789161682128906, -0.018118182197213173, -0.004177963361144066, -0.013116502203047276, 0.043082330375909805, 0.03798055276274681, -0.037985507398843765, 0.011438705958425999, 0.0209189523011446, -0.036283303052186966, 0.004042940214276314, -0.04129358008503914, 0.014996478334069252, -0.018634313717484474, -0.0013471717247739434, 0.0007559219957329333, -0.039000317454338074, 0.01921789161860943, 0.04920026659965515, 0.021087389439344406, 0.024604590609669685, -0.03203270584344864, 0.01897420920431614, 0.01062028668820858, 0.024521762505173683, -0.012028963305056095, -0.04842492565512657, 0.005319872405380011, -0.01445383857935667, -0.07047128677368164, 0.06194731965661049, 0.004627343732863665, -0.054765406996011734, 0.004419486038386822, 0.04237058386206627, -0.0015323599800467491, 0.00020931020844727755, 0.05255387723445892, 0.005216752644628286, -0.015638476237654686, -0.024837182834744453, -0.01169504877179861, -0.02154194377362728, -0.0012017084518447518, 0.036431215703487396, -0.08802895247936249, 0.01329797599464655, -0.013944755308330059, -0.027858974412083626, -0.020032068714499474, 0.0128321573138237, -0.027541648596525192, 0.025590475648641586, -0.029680507257580757, -0.004532058257609606, -0.059943825006484985, 0.06509654968976974, 0.023038029670715332, -0.032052814960479736, -0.021203285083174706, 0.012090988457202911, 0.022506745532155037, 0.021029267460107803, 0.006939747836440802, 0.06016117334365845, -0.012598845176398754, 0.005187483970075846, -0.047382257878780365, 0.06409051269292831, -0.015564230270683765, -0.05395485833287239, -0.005529714748263359, 0.03650014102458954, -0.005750750657171011, -0.014975045807659626, 0.012259546667337418, -0.015826646238565445, 0.03109528310596943, -0.005721975117921829, 0.016054853796958923, 0.0639617070555687, -0.01264063362032175, -0.029890460893511772, 0.0318230539560318, 0.011611917987465858, 0.02357110008597374, -0.010939946398139, 0.01471854280680418, -0.022766247391700745, -0.06474191695451736, -0.017186244949698448, -0.007481228094547987, 0.012358314357697964, 0.025739513337612152, -0.03266114741563797, 0.01833060011267662, 0.09861132502555847, 0.03249466419219971, 0.007169147487729788, -0.014864363707602024, 0.03168991580605507, 0.02579852007329464, 0.037707291543483734, 0.017733432352542877, 0.02928203158080578, 0.003824857994914055, -0.0006753707421012223, -0.00018440571147948503, 0.035124313086271286, -0.011462835595011711, 0.0030331432353705168, -0.06053083762526512, -0.03732358664274216, 0.04025935381650925, -0.058783676475286484, -0.028817053884267807, 0.04893022030591965, 0.061179228127002716, 0.04565528780221939, 0.03388762101531029, 0.0010900689521804452, -0.07625409215688705, 0.033563099801540375, 0.018699217587709427, 0.026567725464701653, 0.02909368835389614, -0.042633235454559326, 0.041709646582603455, 0.027442440390586853, -0.01208401657640934, 0.059025369584560394, -0.07104726135730743, -0.08389012515544891, -0.015733154490590096, -0.02434590645134449, 0.03737938776612282, -0.04337085783481598, 0.030840080231428146, 0.07012476772069931, -0.007296685595065355, 0.04921263828873634, 0.03824591264128685, -0.002116185612976551, 0.009350316599011421, -0.025979360565543175, -0.03027699515223503, 0.08316775411367416, 0.014997714199125767, -0.006085574626922607, -0.053111180663108826, 0.02316521294414997, -0.014691186137497425, -0.03804708644747734, 0.04504122585058212, 0.0009979367023333907, 0.016933204606175423, -0.009186014533042908, 0.054761480540037155, -0.027859056368470192, 0.06775104999542236, -0.024168018251657486, 0.007751839235424995, -0.014116378501057625, -0.02249998413026333, 0.022951632738113403, -0.025400083512067795, 0.09163809567689896, 0.04759718477725983, -0.03538891673088074, -0.048543721437454224, 0.03359588608145714, 0.02555185742676258, -0.051473550498485565, -0.007200269494205713, 0.01508559100329876, 0.025179270654916763, 0.008419809862971306, -0.058454446494579315, -0.05098143219947815, 0.035841815173625946, -0.061626188457012177, 0.009454901330173016, 0.06028266251087189, -0.012115523219108582, 0.08056487143039703, 0.014595018699765205, -0.0031932361889630556, -0.001601756433956325, 0.012450963258743286, -0.05028396099805832, 0.016790758818387985, 0.01563931256532669, -0.01591799594461918, 0.03665636479854584, -0.01680750586092472, -0.05469415336847305, -0.03269009292125702, -0.03526496887207031, 0.002482796087861061, 0.06839807331562042, 0.05380410701036453, -0.0015169464750215411, 0.07424557209014893, -0.00918675772845745, 0.045029737055301666, 0.01028965413570404, -0.03820390626788139, -0.02216293476521969, -0.03910231590270996, -0.010373885743319988, 0.020404046401381493, 0.022046733647584915, -0.004713569302111864, 0.032621607184410095, 0.023902012035250664, -0.04716258496046066, 0.004415313247591257, 0.03916323930025101, 0.00874897837638855, -0.00923924334347248, -0.027763158082962036, -0.010029575787484646, 0.03684128820896149, -0.04823318123817444, -0.004618322476744652, 0.036487579345703125, -0.08997739851474762, 0.037828341126441956, -0.06283703446388245, -0.043948642909526825, -0.0029704913031309843, 0.009975647553801537, 0.05390879511833191, 0.04002954065799713, 0.01958552747964859, 0.07927301526069641, 0.02300984039902687, 0.002394626149907708, -0.017796248197555542, 0.00005062399213784374, 0.051701005548238754, -0.005364520009607077, -0.0219575148075819, 0.047306761145591736, 0.0044828238897025585, 0.0029261468444019556, -0.06177408620715141, 0.05864272266626358, -0.04664730653166771, -0.28301697969436646, 0.03671456500887871, 0.013152132742106915, -0.021098529919981956, 0.019293978810310364, -0.044894028455019, 0.017325304448604584, -0.05924804508686066, -0.04409182816743851, 0.006276801228523254, -0.045510951429605484, -0.02805079147219658, -0.013519374653697014, 0.05594959110021591, -0.004829234443604946, 0.034315839409828186, 0.03517845273017883, -0.04146865755319595, 0.027250753715634346, 0.06690653413534164, -0.005309543572366238, -0.05908043682575226, -0.018254242837429047, 0.05967431515455246, 0.058772943913936615, 0.059799738228321075, -0.09259957820177078, 0.02751055918633938, -0.06567009538412094, -0.005217586178332567, 0.01875879056751728, 0.012498807162046432, -0.009493225254118443, -0.019371628761291504, -0.007808806374669075, -0.006017784122377634, 0.047540389001369476, 0.011294105090200901, -0.01508378330618143, -0.0027134206611663103, -0.014414270408451557, -0.03801831230521202, -0.007687050849199295, 0.0376308411359787, 0.051354292780160904, 0.017277048900723457, -0.05397183820605278, -0.03486672043800354, -0.01842552237212658, 0.07967732101678848, -0.04169423505663872, -0.0192585326731205, 0.0010975159239023924, 0.03592553734779358, -0.009213445708155632, -0.02275051549077034, 0.008327228017151356, -0.033950820565223694, -0.04539557173848152, -0.03094148263335228, -0.013792213052511215, -0.029323335736989975, -0.00759029621258378, -0.05576376989483833, -0.0009959887247532606, -0.06205034628510475, -0.039541665464639664, -0.015941327437758446, 0.04701634496450424, 0.015213505364954472, -0.04487146809697151, -0.002756251720711589, -0.019153732806444168, -0.09146391600370407, -0.0053012375719845295, -0.005130118224769831, -0.021149013191461563, 0.0001507178822066635, 0.015811042860150337, 0.04558761417865753, -0.029842806980013847, -0.0581078864634037, 0.023218506947159767, 0.022389763966202736, 0.047928955405950546, 0.00989301037043333, 0.043704383075237274, 0.011236574500799179, -0.026477104052901268, 0.035797711461782455, 0.05123727023601532, 0.015395590104162693, -0.030927516520023346, -0.01957131177186966, 0.0255519300699234, 0.01194088812917471, 0.009526073932647705, -0.028014037758111954, 0.009815804660320282, 0.007601155899465084, -0.0028093052096664906, -0.03880826011300087, 0.02064734511077404, -0.007465858943760395, -0.041020844131708145, -0.026967234909534454, -0.05611066520214081, 0.03732268512248993, 0.0515904575586319, 0.005637035705149174, -0.0010694654192775488, -0.030137011781334877, 0.015655996277928352, -0.021669644862413406, -0.030430585145950317, -0.015521680936217308, -0.008853187784552574, 0.06953667104244232, -0.029201986268162727, 0.00004289257776690647, -0.0610014982521534, -0.01127439271658659, -0.020444247871637344, -0.026439838111400604, -0.053283050656318665, -0.002400178462266922, -0.012056107632815838, -0.03906893730163574, -0.002496106782928109, 0.01940092258155346, -0.012985968962311745, 0.007844577543437481, 0.037599559873342514, -0.03977056220173836, 0.006659636273980141, -0.05941016972064972, -0.07877074182033539, -0.02833334170281887, 0.002345795277506113, -0.005620675161480904, -0.030310533940792084, 0.03648640215396881, 0.001721683656796813, 0.020254069939255714, 0.05246996507048607, 0.023394985124468803, -0.009672052226960659, -0.02607402391731739, 0.015614206902682781, 0.019991924986243248, 0.029006024822592735, -0.05672062188386917, 0.02903636172413826, -0.03792297840118408, -0.004609854891896248, -0.01780885085463524, 0.0025539302732795477, -0.03008454665541649, -0.00027668059919960797, 0.005461531691253185, -0.01085909828543663, -0.06282587349414825, -0.04985828697681427, -0.045285940170288086, 0.028737884014844894, 0.06042260304093361, -0.00648246705532074, -0.0005515754455700517, -0.02479219250380993, -0.009037988260388374, 0.03314918652176857, -0.028788020834326744, -0.0420181006193161, 0.008694109506905079, 0.004100830294191837, -0.010837922804057598, 0.022648291662335396, 0.0024615670554339886, 0.04735838994383812, -0.008245794102549553, -0.0070021688006818295, -0.05056922137737274, 0.01926281675696373, -0.009543674066662788, 0.0424182154238224, 0.03345182538032532, -0.0002372305461904034, -0.0020275763235986233, -0.040107276290655136, -0.017306681722402573, -0.04644744098186493, -0.008548221550881863, 0.012287551537156105, 0.024829668924212456, -0.042726416140794754, -0.06265151500701904, 0.053697530180215836, 0.026053039357066154, 0.013780293986201286, 0.02380327694118023, -0.003801880171522498, -0.01698211021721363, -0.023464946076273918, 0.032610129565000534, 0.06660833954811096, -0.06854154169559479, -0.007643192075192928, -0.019405672326683998, 0.006801068317145109, 0.012060298584401608, -0.021442662924528122, -0.02737770415842533, -0.009416121989488602, -0.005313435103744268, 0.015673406422138214, -0.08342978358268738, -0.037759218364953995, -0.05249297246336937, 0.028704430907964706, 0.004752057604491711, 0.010473273694515228, -0.021777303889393806, -0.020658249035477638, -0.03857201337814331, -0.024694068357348442, -0.004715887364000082, -0.04809386655688286, -0.002435764530673623, 0.006763767451047897, -0.040216606110334396, -0.01923554763197899, -0.025770630687475204, 0.004658444318920374, 0.008113245479762554, -0.01824737899005413, -0.00613882951438427, -0.014754632487893105, 0.02243206650018692, 0.010163984261453152, 0.03305663913488388, -0.0088747413828969, -0.017495600506663322, -0.05253065377473831, -0.012166653759777546, -0.04340343922376633, 0.019646912813186646, -0.03423226997256279, -0.004305761307477951, 0.03586159273982048, 0.06330583244562149, 0.04175281152129173, 0.03133204206824303, -0.01632646471261978, -0.02867566980421543, 0.04872095212340355, -0.05109548941254616, -0.020124047994613647, -0.03596576303243637, -0.044476285576820374, 0.0060645234771072865, 0.011616984382271767, 0.02581586316227913, -0.0631924569606781, 0.038800861686468124, -0.005741599015891552, 0.03437985107302666, 0.04129493981599808, 0.015881266444921494, 0.021545113995671272, -0.04897930473089218, 0.0015115985879674554, -0.08040005713701248, -0.02405601181089878, -0.0021769923623651266, -0.0007801552419550717, -0.04075251519680023, 0.0064354706555604935, -0.03768327087163925, 0.0575510673224926, -0.08047263324260712, -0.016549207270145416, 0.04962226003408432, 0.007377582602202892, -0.018027398735284805, 0.02126576565206051, -0.058718081563711166, 0.028978517279028893, 0.018165893852710724, -0.04784310236573219, 0.00021487570484168828, -0.028948316350579262, 0.046099789440631866, 0.005097001791000366, 0.004558084532618523, -0.04155312106013298, 0.02694818004965782, 0.10059534758329391, -0.00037174756289459765, 0.015298574231564999, 0.05595151707530022, -0.009804082103073597, 0.03444235026836395, 0.02490960620343685, 0.010935451835393906, -0.019873540848493576, -0.005641823634505272, -0.014789793640375137, -0.055536121129989624, 0.043377313762903214, -0.0019651507027447224, -0.019876951351761818, -0.03840920329093933, 0.06415653228759766, 0.013596483506262302, -0.029021114110946655, -0.05852457508444786, 0.007748791016638279, -0.05607759952545166, -0.00028437262517400086, -0.013439960777759552, 0.0009384471923112869, -0.0410015732049942, 0.03672100231051445, -0.010506059043109417, 0.00962557177990675, 0.05270087718963623, -0.02238522097468376, -0.02676178701221943, -0.014468253590166569, 0.09974547475576401, 0.06430652737617493, 0.0705886036157608, 0.023906486108899117, 0.07405098527669907, -0.014767836779356003, -0.040775131434202194, 0.01774781383574009, -0.016169656068086624, -0.02519863098859787, -0.03801760822534561, 0.024845439940690994, 0.04901250824332237, 0.007795064710080624, 0.04608995467424393, -0.02647608146071434, -0.034723248332738876, 0.0065630353055894375, 0.05843717232346535, 0.01625373214483261, 0.04071669653058052, 0.0032097373623400927, 0.002368544926866889, -0.01928134448826313, -0.06667163968086243, 0.028009328991174698, -0.01612180471420288, -0.006458463612943888, 0.03179226443171501, -0.015199030749499798, 0.021990930661559105, 0.012297743000090122, 0.0056102219969034195, 0.07772315293550491, -0.043187566101551056, 0.036598753184080124, -0.018554845824837685, 0.0346708819270134, -0.011501914821565151, 0.014151484705507755, -0.0026415816973894835, -0.01681509055197239, 0.014109782874584198, -0.01977810636162758, -0.010565515607595444, -0.010677049867808819, -0.0011785966344177723, 0.037136245518922806, -0.03997000679373741, 0.0103184524923563, 0.02419808879494667, 0.029469091445207596, -0.023302774876356125, -0.05565144121646881, -0.03367755189538002, -0.026802709326148033, -0.037159234285354614, 0.032783109694719315, 0.02337099239230156, -0.005113203078508377, -0.026174353435635567, -0.012403924949467182, -0.011855775490403175, -0.044461701065301895, 0.037720706313848495, -0.050447817891836166, -0.022659242153167725, -0.005230434704571962, 0.02339441142976284, 0.03792444244027138, -0.009813152253627777, 0.03728695958852768, -0.007993525825440884, 0.0061641354113817215, -0.01730482280254364, 0.02233090251684189, 0.018375147134065628, -0.01356909703463316, 0.025857413187623024, -0.07933203876018524, 0.01255498081445694, 0.013543694280087948, -0.012458568438887596, -0.054882097989320755, 0.026082828640937805, 0.03294696286320686, 0.008802052587270737, 0.05559784919023514, 0.015331421978771687, 0.0009013247326947749, -0.04041796177625656, -0.011915410868823528, 0.007045988459140062, 0.009877405129373074, 0.04424334317445755, -0.030476661399006844, 0.07699748873710632, 0.02647618018090725, -0.004968997556716204, -0.047939710319042206, -0.02936975657939911, 0.02627769485116005, 0.003439401276409626, -0.01878410577774048, -0.012673172168433666, -0.010816472582519054, -0.07813692092895508, -0.02576535753905773, 0.03408997505903244, -0.020615220069885254, -0.03381314128637314, 0.03320940211415291, 0.006724628619849682, 0.00011976517998846248, 0.024936459958553314, -0.05837426707148552, 0.02440200001001358, -0.009359573945403099, -0.02676578424870968, 0.015981731936335564, 0.024145113304257393, -0.02837926149368286, 0.000008677543519297615, 0.012472310103476048, -0.05661328136920929, 0.005072478204965591, 0.010139391757547855, 0.02170661836862564, 0.05688561499118805, -0.010950621217489243, -0.004654246382415295 ]
[ -0.08060003072023392, -0.002187996171414852, -0.0018643789226189256, -0.036320172250270844, 0.0061616054736077785, -0.023190390318632126, 0.0009022559970617294, 0.027891995385289192, -0.009927916340529919, -0.02176632545888424, 0.012667751871049404, -0.04343259334564209, -0.017106730490922928, -0.007959547452628613, 0.08415248245000839, 0.016332533210515976, -0.01758260652422905, -0.045324333012104034, 0.011034838855266571, 0.02808360382914543, 0.005288250744342804, -0.029040595516562462, -0.0384521521627903, 0.0036154938861727715, 0.01996465027332306, 0.024438831955194473, 0.025965049862861633, -0.05274619534611702, 0.02470378950238228, -0.1605018973350525, 0.013823903165757656, 0.012612803839147091, 0.0479915626347065, -0.024563932791352272, -0.005022109020501375, 0.07751300930976868, 0.022492146119475365, 0.027242254465818405, -0.013410628773272038, 0.04594209045171738, 0.024479765444993973, 0.007065120618790388, -0.04794733598828316, -0.024918079376220703, 0.027399031445384026, -0.010619835928082466, -0.0052166166715323925, -0.05975687876343727, -0.03228290006518364, -0.002432549372315407, -0.04335109889507294, -0.04970356449484825, -0.02513086050748825, -0.028190992772579193, -0.01481679081916809, 0.023076098412275314, 0.025175204500555992, 0.047333862632513046, 0.005197987426072359, 0.009316028095781803, 0.015661343932151794, -0.021743077784776688, -0.16180744767189026, 0.08372364938259125, 0.02919413149356842, 0.04669507220387459, -0.05845637992024422, 0.003106051357463002, -0.016922662034630775, 0.08507750183343887, 0.018008572980761528, -0.033223122358322144, -0.012078922241926193, 0.048535510897636414, 0.04622361436486244, 0.02362624928355217, 0.012048623524606228, 0.020713329315185547, 0.04705284535884857, -0.056508734822273254, -0.008097928948700428, 0.005384465679526329, -0.009186025708913803, -0.008165627717971802, -0.03878136724233627, 0.017056453973054886, -0.0010175700299441814, 0.024107761681079865, 0.02801341377198696, 0.026764964684844017, 0.04124811291694641, -0.008851378224790096, -0.02141619473695755, -0.011617016047239304, -0.06228593736886978, -0.048607781529426575, -0.0081848269328475, 0.02774268016219139, -0.06255334615707397, 0.4636607766151428, -0.014967176131904125, 0.002811035141348839, 0.083579421043396, 0.03376206010580063, -0.011201334185898304, 0.0015046405605971813, 0.02047855220735073, -0.05593876540660858, 0.028623400256037712, -0.01849605143070221, 0.023729272186756134, 0.006299741566181183, 0.0374247170984745, -0.0485849604010582, 0.018810158595442772, 0.049853041768074036, 0.03153207153081894, 0.0029067329596728086, -0.006324720568954945, -0.017060404643416405, -0.021716510877013206, 0.012088381685316563, 0.04058700427412987, -0.0347270593047142, -0.03476863354444504, -0.04890274628996849, 0.024353889748454094, 0.05820842832326889, 0.01959005929529667, 0.006363971624523401, 0.052060794085264206, -0.055339932441711426, -0.058514952659606934, 0.00258902576752007, -0.00232721702195704, 0.00695279985666275, 0.042353346943855286, -0.025137677788734436, -0.00102728302590549, 0.06073018163442612, 0.031574029475450516, 0.004945672117173672, 0.0158244501799345, -0.052054375410079956, -0.046115316450595856, 0.14058469235897064, 0.036000002175569534, -0.027616707608103752, -0.006188800558447838, -0.025009697303175926, -0.013261470943689346, 0.026843316853046417, 0.008599827066063881, -0.04458121955394745, 0.038106486201286316, 0.009049477055668831, 0.10213164240121841, -0.02215934358537197, -0.06906559318304062, -0.009633468464016914, -0.007350640837103128, -0.030152522027492523, -0.05110902339220047, 0.024684954434633255, 0.0866878405213356, -0.06056241691112518, -0.01686440221965313, -0.01255704928189516, 0.030977632850408554, -0.08138030022382736, 0.0031995028257369995, 0.01693812571465969, -0.025009674951434135, 0.015721095725893974, 0.07222074270248413, -0.034105222672224045, -0.027445035055279732, 0.014875001274049282, 0.02277539111673832, 0.0077001797035336494, 0.050628412514925, 0.0012904535979032516, -0.004768324084579945, -0.005896204151213169, -0.04063933715224266, -0.0629582405090332, -0.006147807464003563, -0.039731215685606, -0.01750313676893711, -0.011735967360436916, -0.01573067530989647, 0.0073218196630477905, -0.07292003929615021, 0.07256058603525162, -0.027883175760507584, -0.02080528624355793, 0.02492941915988922, -0.03480178490281105, -0.054117366671562195, -0.019326036795973778, -0.0904795452952385, 0.011829284019768238, -0.07217658311128616, 0.044232435524463654, -0.05180411413311958, 0.04640313982963562, 0.07275271415710449, -0.02199557051062584, 0.1068548932671547, 0.04326818510890007, -0.0440540537238121, -0.04010433331131935, 0.02491268515586853, 0.018569765612483025, -0.0008519385592080653, -0.017669128254055977, 0.007554671261459589, 0.026956751942634583, -0.004504562355577946, 0.02190566062927246, -0.0031565993558615446, 0.030877085402607918, -0.024051787331700325, -0.33868277072906494, -0.027626391500234604, -0.028046775609254837, 0.00297713209874928, 0.015375648625195026, -0.01653779298067093, 0.028235377743840218, 0.005557056050747633, -0.034807123243808746, -0.004767690785229206, 0.07534854114055634, -0.009929930791258812, 0.013033561408519745, -0.08401278406381607, 0.010022983886301517, -0.004060890059918165, -0.051258739084005356, -0.01848275028169155, -0.017310773953795433, -0.003387562232092023, 0.022856740280985832, 0.01218564622104168, -0.039207495748996735, -0.03866814821958542, -0.012664229609072208, -0.04981430619955063, 0.08413780480623245, 0.03823504596948624, 0.07475613057613373, -0.03284642845392227, 0.035245899111032486, 0.016401251778006554, 0.03679220750927925, -0.1245172992348671, 0.005931976716965437, -0.026561569422483444, -0.019070276990532875, -0.028189202770590782, 0.025221431627869606, -0.050119951367378235, -0.05179305374622345, 0.0478605218231678, -0.08351176232099533, -0.023297883570194244, -0.1074218675494194, 0.00705924816429615, -0.01845541037619114, -0.007369857281446457, -0.016469433903694153, 0.05898880958557129, 0.024314703419804573, -0.0037199363578110933, 0.007878724485635757, -0.021228503435850143, -0.029459625482559204, -0.007522463798522949, -0.11668379604816437, 0.018299181014299393, -0.021501487120985985, 0.0017130434280261397, -0.002379583427682519, 0.08450881391763687, 0.015233532525599003, -0.05392400175333023, 0.007218301296234131, -0.0011953596258535981, 0.020563269034028053, 0.020306961610913277, 0.03252624720335007, -0.030408963561058044, 0.01824270933866501, 0.06098295748233795, 0.005811345297843218, -0.015212342143058777, 0.01883101835846901, 0.0048400647938251495, -0.019107773900032043, 0.014103907160460949, 0.017834113910794258, -0.001658193301409483, -0.0015416336245834827, -0.04246057942509651, 0.013645321130752563, -0.034943822771310806, 0.013354601338505745, 0.014565409161150455, -0.016204694285988808, -0.05541826784610748, 0.04450571537017822, 0.03523821383714676, -0.01435951329767704, 0.02961396984755993, -0.021378731355071068, -0.05557581037282944, 0.08547166734933853, -0.008639656007289886, -0.22627755999565125, 0.02690909430384636, 0.05929705128073692, 0.028649671003222466, -0.0033773549366742373, 0.030186831951141357, 0.0348258875310421, -0.044893551617860794, 0.003547767410054803, 0.036044880747795105, 0.024489229544997215, 0.0037185370456427336, -0.010105622000992298, 0.01055662240833044, 0.01611427031457424, 0.010580949485301971, 0.06029919162392616, -0.013732674531638622, 0.017979968339204788, -0.018585514277219772, 0.016016604378819466, 0.000435188616393134, 0.14498861134052277, 0.014303773641586304, 0.03373199701309204, -0.009552916511893272, -0.001300281030125916, -0.005587605759501457, 0.08936133235692978, -0.009981761686503887, 0.01915663853287697, -0.0017400324577465653, 0.027176786214113235, 0.015893956646323204, 0.020874978974461555, -0.06740448623895645, -0.021900925785303116, 0.013700456358492374, 0.01844773441553116, 0.0129164420068264, 0.03453574702143669, -0.01388537883758545, -0.003589807078242302, 0.032837964594364166, 0.07730995863676071, 0.00989608559757471, 0.003784190397709608, -0.044936321675777435, -0.07891029119491577, -0.013221743516623974, -0.025206556543707848, -0.016827555373311043, 0.006754854694008827, -0.0009849799098446965, 0.016819210723042488, 0.08598905801773071, 0.047304026782512665, -0.03186957910656929, -0.00027550343656912446, -0.0162985697388649, -0.02787470631301403, -0.005815938115119934, 0.10652921348810196, 0.040517959743738174, 0.024776989594101906 ]
[ -0.014671720564365387, 0.004482998978346586, -0.003736481536179781, -0.005326248239725828, -0.007360957562923431, 0.027272460982203484, 0.007607991341501474, 0.012780626304447651, 0.017393684014678, 0.028601976111531258, -0.009696546010673046, 0.020337224006652832, 0.011759251356124878, -0.0057396190240979195, 0.035167042165994644, -0.009171511046588421, 0.017458779737353325, -0.02972513809800148, 0.016689125448465347, 0.025337278842926025, 0.012205556966364384, 0.004277705680578947, 0.016879335045814514, -0.018769601359963417, -0.032317113131284714, 0.025734806433320045, -0.01381674688309431, -0.039700690656900406, 0.017914285883307457, -0.13050371408462524, -0.027269471436738968, -0.012964277528226376, -0.014092816039919853, 0.000024030532586039044, -0.0020510212052613497, 0.021733080968260765, -0.013319496065378189, 0.032997388392686844, 0.015034034848213196, -0.004780101589858532, -0.00138088536914438, -0.009532647207379341, 0.006776425521820784, 0.035315558314323425, 0.0030934771057218313, -0.0025628930889070034, -0.0012647641124203801, -0.05917316675186157, -0.019963372498750687, -0.019314397126436234, -0.022498661652207375, -0.016254479065537453, -0.006259667221456766, 0.0017127339961007237, -0.012786563485860825, 0.0028528072871267796, 0.008487518876791, 0.0018612842541188002, 0.0018593542044982314, -0.008363386616110802, -0.016789352521300316, -0.025063594803214073, -0.039699703454971313, -0.035284653306007385, -0.0006734195630997419, -0.01403432060033083, -0.02323596365749836, 0.014441674575209618, -0.024348342791199684, 0.011920910328626633, 0.005699186120182276, 0.0013696755049750209, -0.027039021253585815, -0.034568559378385544, 0.023815084248781204, -0.020155370235443115, 0.003926112316548824, -0.0019382555037736893, 0.016093770042061806, -0.0014812666922807693, -0.03271147236227989, 0.04745122045278549, 0.018872322514653206, -0.0032926236744970083, 0.00320804538205266, -0.008154470473527908, 0.015318749472498894, -0.009769928641617298, 0.0328388549387455, 0.005824188236147165, -0.023188577964901924, 0.009155519306659698, -0.032199446111917496, 0.005670967511832714, -0.08796597272157669, -0.0029724210035055876, -0.02065373584628105, -0.0010435422882437706, 0.000762664363719523, 0.8727330565452576, -0.014379993081092834, 0.007959199137985706, 0.019517458975315094, -0.0016823497135192156, -0.008145499043166637, -0.0035027095582336187, 0.007873417809605598, -0.01417764462530613, 0.025943927466869354, -0.037773579359054565, 0.013114217668771744, -0.0021022213622927666, 0.0221300907433033, 0.029378758743405342, 0.015994971618056297, 0.01775323785841465, 0.015429452061653137, -0.009882005862891674, -0.03585704416036606, 0.016257070004940033, 0.01440301164984703, 0.007806616369634867, 0.016664162278175354, 0.008289722725749016, -0.022487245500087738, -0.19591183960437775, -0.000720198848284781, -8.601794522841294e-33, 0.039733342826366425, -0.018497895449399948, -0.0019843780901283026, 0.0022958284243941307, -0.007166049908846617, -0.015466884709894657, 0.032888203859329224, 0.017881188541650772, -0.004664383828639984, -0.012907193973660469, 0.014288152568042278, 0.005046912468969822, -0.0022648065350949764, -0.011085016652941704, 0.011311659589409828, -0.02093535102903843, -0.02248513698577881, 0.017725424841046333, 0.008585543371737003, -0.002558737527579069, 0.04003623500466347, 0.021810123696923256, -0.009776820428669453, -0.025204576551914215, 0.011307965964078903, 0.0059342412278056145, 0.014673697762191296, 0.02406797930598259, -0.00672681862488389, -0.03788486123085022, -0.003295476548373699, 0.014434384182095528, -0.03205038979649544, -0.0316510871052742, 0.009884022176265717, -0.03202569857239723, -0.02399342693388462, 0.008917315863072872, 0.010888869874179363, -0.050911612808704376, -0.043839022517204285, 0.013239163905382156, -0.013961673714220524, -0.023278485983610153, -0.025951620191335678, -0.0012611198471859097, 0.04540326073765755, 0.016986481845378876, 0.018660403788089752, 0.00028886814834550023, 0.0033825074788182974, -0.01864006370306015, 0.019179806113243103, 0.0025928791146725416, -0.004760521464049816, 0.02208228036761284, -0.003454144112765789, 0.032538656145334244, 0.012250850908458233, 0.026842521503567696, 0.011931813322007656, -0.003613612847402692, -0.03592415526509285, 0.017595184966921806, -0.007972448132932186, -0.001067038276232779, -0.008260932750999928, 0.031079759821295738, 0.03556041792035103, -0.03182174265384674, -0.05160127207636833, 0.010031791403889656, 0.00900514330714941, -0.01557663269340992, -0.005265283863991499, 0.000559802632778883, 0.011976875364780426, 0.02831910364329815, -0.020413562655448914, 0.06237533316016197, 0.017981311306357384, -0.022575274109840393, -0.01784588024020195, -0.03288964182138443, -0.015493785962462425, 0.025414207950234413, 0.0215751975774765, -0.03201935440301895, -0.005863841623067856, 0.00820901058614254, 0.030283669009804726, 0.01824752800166607, -0.019447579979896545, 0.01651012897491455, -0.007883301004767418, 8.085671687593691e-33, 0.021982606500387192, -0.012684370391070843, -0.008178611285984516, -0.0018065654439851642, 0.05805797129869461, 0.006026079412549734, 0.02074812725186348, -0.012239516712725163, -0.05785540118813515, 0.020852526649832726, -0.02330818958580494, -0.002148177707567811, -0.0397551991045475, 0.027074536308646202, 0.02193300798535347, -0.025951500982046127, 0.005111161153763533, -0.014854523353278637, 0.022327110171318054, -0.00802604854106903, 0.013145404867827892, 0.014100135304033756, -0.022669631987810135, 0.003450975054875016, 0.03377916291356087, 0.043969735503196716, -0.018011685460805893, 0.0315549336373806, -0.002937582554295659, 0.012173347175121307, 0.0008378854836337268, -0.016745304688811302, 0.005232140887528658, -0.00007413484127027914, -0.022222155705094337, 0.01529042050242424, 0.005338083952665329, 0.005387770012021065, -0.009607394225895405, -0.0030417221132665873, 0.02532719448208809, 0.004683191888034344, 0.012407013215124607, 0.023297986015677452, 0.026820790022611618, 0.02033541537821293, 0.0046743121929466724, -0.009435885585844517, -0.03492109477519989, 0.030668849125504494, -0.008611702360212803, 0.005419563502073288, -0.02205190807580948, -0.020384419709444046, 0.006092158146202564, -0.022634664550423622, -0.01701163686811924, -0.017687348648905754, -0.021304799243807793, -0.0090913912281394, -0.003393865656107664, 0.015883976593613625, -0.02470359392464161, 0.016297975555062294, -0.012490137480199337, -0.015008028596639633, -0.00547688128426671, -0.0012335085775703192, -0.004673433490097523, 0.024651555344462395, -0.022580010816454887, 0.009385157376527786, 0.003811571281403303, 0.016717419028282166, 0.023830490186810493, -0.039215750992298126, -0.018164319917559624, -0.00041790821705944836, -0.04089610278606415, 0.0054359096102416515, 0.0010739979334175587, -0.0008013437036424875, 0.005570726934820414, 0.008814116939902306, 0.008550794795155525, 0.05705363303422928, -0.020784707739949226, 0.02707848884165287, -0.0005849781446158886, -0.013648412190377712, -0.030188944190740585, -0.031249670311808586, 0.008391759358346462, 0.02998121827840805, -0.0193286444991827, -1.3923114217107013e-8, -0.010054061189293861, 0.03711482509970665, -0.013211661018431187, 0.0016204298008233309, 0.01821826584637165, 0.00982827041298151, -0.029315894469618797, 0.004299862775951624, -0.01639701798558235, 0.020276958122849464, 0.030772095546126366, -0.034197013825178146, -0.010268089361488819, 0.0010832612169906497, 0.012340178713202477, -0.05159388482570648, 0.0034444108605384827, 0.006613045930862427, 0.0354236476123333, -0.011142799630761147, 0.031127719208598137, 0.0399455651640892, -0.0010758211137726903, 0.014979175291955471, -0.0017073008930310607, 0.0013890537666156888, -0.022576503455638885, -0.08299938589334488, -0.037362899631261826, 0.017945874482393265, 0.007397942245006561, -0.007912547327578068, -0.01972951553761959, 0.017488699406385422, -0.012003163807094097, -0.02724759839475155, 0.00814876053482294, 0.004688167944550514, 0.005951398983597755, -0.012675502337515354, -0.011783924885094166, 0.011715486645698547, 0.014403843320906162, -0.02556990087032318, -0.010051442310214043, 0.039976995438337326, -0.02608868107199669, -0.020464785397052765, 0.033920805901288986, -0.02608598582446575, 0.020481327548623085, -0.02601502649486065, 0.014764007180929184, 0.04622023180127144, 0.04079504311084747, 0.036061763763427734, -0.0017581057036295533, -0.020676545798778534, -0.026873793452978134, -0.000505193427670747, 0.019800791516900063, 0.01929854042828083, -0.036432623863220215, -0.02681726962327957 ]
twu-session-design-measurable-goals
https://markhneedham.com/blog/2011/03/04/twu-session-design-measurable-goals
false
2011-03-20 18:36:42
Retrospectives: Mini Group Discussions
[ "retrospectives" ]
[ "Agile" ]
One of the approaches that I like the best in retrospectives is when the facilitator splits the team into smaller groups during the brainstorming part of the retrospective. I decided to try this out in a retrospective we ran after one week of ThoughtWorks University, using http://www.thekua.com/rant/2006/03/the-retrospective-starfish/[The Retrospective Starfish] to provide a framework in which people could frame their thoughts. Usually what I've seen happen in these mini groups is that everyone will write down their own ideas on stickies and then discuss them as a group but still put up all the stickies even if the group didn't agree with everything. http://twitter.com/frankmt[Frankie] observed that in this retrospective that hadn't really happened and the mini groups had been reaching a consensus on their ideas before one or two people went and put them up on the wall. I think this partly came down to my failure to explain the intent of the exercise clearly i.e. *it is a brainstorming exercise rather than an analytical one*. An interesting side effect was that when people came and looked at the wall to see what the other groups had come up with they noticed quite a few things that they agreed with but hadn't come up with in their group. I think next time I'll try and explain the exercise a bit more clearly to help keep people in the mindset of coming up with ideas. It's difficult to say if any important points were missed by people analysing so early but there was certainly less duplication of ideas than normal!
null
null
[ 0.0067112925462424755, -0.020370744168758392, -0.00418538274243474, 0.037515442818403244, 0.07546931505203247, 0.0032043817918747663, 0.0012613078579306602, 0.033469732850790024, 0.013218716718256474, -0.024929454550147057, -0.0006257328204810619, -0.0025853875558823347, -0.02843012847006321, 0.02639159746468067, -0.04320289567112923, 0.07404077053070068, 0.04024166241288185, 0.0023788530379533768, 0.006359730381518602, 0.03429647535085678, 0.05647611990571022, 0.06227948144078255, 0.024844784289598465, 0.028819490224123, 0.04659600928425789, -0.003831824753433466, 0.042037367820739746, -0.029739417135715485, -0.03572080656886101, -0.0052892728708684444, 0.018895449116826057, -0.014006703160703182, 0.009400477632880211, 0.002412585774436593, 0.03655685484409332, -0.024820351973176003, -0.01578277349472046, 0.03893987461924553, 0.010885189287364483, 0.00009513738768873736, -0.08739066869020462, 0.02858106605708599, -0.01538427546620369, -0.017287692055106163, -0.0484747476875782, 0.023860609158873558, -0.03573007881641388, 0.005237574689090252, -0.004501068498939276, -0.0018698942149057984, -0.06454496830701828, 0.03108942322432995, 0.04403965175151825, 0.007633509114384651, -0.012466458603739738, 0.03990782052278519, 0.0012833363143727183, -0.05469714105129242, 0.012947537004947662, -0.044071756303310394, -0.02493567205965519, 0.00703267240896821, -0.0012418943224474788, 0.03870203346014023, 0.010761221870779991, -0.04943598806858063, 0.023054368793964386, 0.03930429369211197, -0.03782420605421066, 0.017014989629387856, -0.028142616152763367, 0.0009003242012113333, -0.003405481344088912, -0.017812693491578102, -0.0018317968351766467, -0.03552737087011337, 0.030022047460079193, 0.05826565623283386, 0.037803564220666885, 0.024152588099241257, -0.021745968610048294, 0.00564358476549387, 0.00522987637668848, 0.025197189301252365, -0.012126432731747627, -0.04740975424647331, 0.004902272950857878, -0.017381256446242332, -0.07795834541320801, 0.058910444378852844, -0.02520650625228882, -0.05618938431143761, 0.017817625775933266, 0.02720879204571247, 0.00777191249653697, 0.015208804979920387, 0.03866927698254585, 0.010262765921652317, -0.002458729315549135, -0.025294801220297813, -0.018280891701579094, -0.02166212908923626, -0.016586393117904663, 0.03632209450006485, -0.08760695159435272, -0.00028105854289606214, 0.012182245030999184, -0.018992749974131584, -0.024774974212050438, 0.003819648642092943, -0.030628986656665802, 0.035932477563619614, -0.03156226873397827, 0.018338384106755257, -0.0672096386551857, 0.054200299084186554, 0.014780072495341301, -0.03356843441724777, -0.031897999346256256, 0.004385981243103743, 0.029241876676678658, 0.03261759877204895, -0.0009854139061644673, 0.07533195614814758, -0.02172410488128662, 0.015050029382109642, -0.0258023664355278, 0.05092547833919525, -0.03578823804855347, -0.06924654543399811, -0.019299816340208054, 0.055968597531318665, -0.04173518717288971, -0.01697581820189953, -0.0017347907414659858, -0.04242841154336929, 0.008271277882158756, -0.014809382148087025, 0.016350403428077698, 0.06212947890162468, 0.003322453470900655, -0.029489008709788322, -0.0063010817393660545, 0.024176502600312233, 0.01671801134943962, -0.015489775687456131, -0.023212488740682602, -0.03614078462123871, -0.04336749017238617, -0.03571479022502899, 0.011057758703827858, 0.003900370793417096, 0.0327192060649395, -0.045348260551691055, 0.02406248450279236, 0.08912967890501022, 0.04779185354709625, 0.007302089128643274, -0.014245820231735706, 0.03354853764176369, 0.02553676813840866, 0.029154988005757332, 0.016400910913944244, 0.04072858765721321, 0.03308293595910072, -0.03287896141409874, -0.008931701071560383, 0.026201216503977776, -0.005830685142427683, 0.008985517546534538, -0.059280917048454285, -0.04124928638339043, 0.03124077618122101, -0.05470949411392212, -0.018483387306332588, 0.062553770840168, 0.07552222907543182, 0.0676204115152359, 0.026167703792452812, 0.016063658520579338, -0.07522724568843842, 0.027154134586453438, 0.001132535864599049, 0.03267122060060501, 0.029944268986582756, -0.034411415457725525, 0.037302643060684204, 0.02590307965874672, 0.009695486165583134, 0.05860145017504692, -0.06877505779266357, -0.08390074968338013, 0.003572946647182107, -0.019287128001451492, 0.04555734619498253, -0.02881322242319584, 0.03007189743220806, 0.08178017288446426, 0.008673678152263165, 0.05294555798172951, 0.027084767818450928, 0.017707349732518196, 0.013289283029735088, -0.03191143274307251, -0.031152095645666122, 0.05442536622285843, 0.0323505774140358, -0.01936979778110981, -0.03494294732809067, 0.025704525411128998, -0.028989749029278755, -0.0063291494734585285, 0.043445318937301636, -0.004699871875345707, 0.031755056232213974, -0.0027980352751910686, 0.059287700802087784, -0.0063200113363564014, 0.033395592123270035, -0.040960945188999176, 0.014204169623553753, -0.004061504732817411, -0.006031164433807135, 0.0065934546291828156, -0.011837837286293507, 0.09840163588523865, 0.04518609493970871, -0.06195870041847229, -0.03279681131243706, 0.03348500281572342, 0.017712539061903954, -0.018676454201340675, -0.010660229250788689, 0.010933698154985905, 0.021150978282094002, 0.016137653961777687, -0.05830298736691475, -0.02712235413491726, 0.039471570402383804, -0.07217808812856674, -0.0018032105872407556, 0.04472574219107628, -0.01491804700344801, 0.08694375306367874, -0.010751179419457912, 0.020484069362282753, -0.038149941712617874, -0.0014939302345737815, -0.06257352232933044, 0.025885483250021935, 0.012974119745194912, -0.014758617617189884, 0.05619071051478386, -0.016556786373257637, -0.0160406194627285, -0.01763884536921978, -0.023006940260529518, -0.007806333247572184, 0.06677370518445969, 0.05146276205778122, -0.0007415679865516722, 0.0783969834446907, -0.01838945969939232, 0.02634766511619091, 0.007094971835613251, -0.0412885956466198, -0.026929594576358795, -0.01890714280307293, -0.011461291462182999, 0.00548443291336298, 0.01575208082795143, -0.011442351154983044, 0.018220212310552597, 0.02617505192756653, -0.030064785853028297, 0.0034977574832737446, 0.0032891295850276947, -0.008255003951489925, 0.0009020866127684712, -0.007081765681505203, -0.014331947080790997, 0.05842139944434166, -0.020836880430579185, -0.017264168709516525, 0.026588724926114082, -0.06705757230520248, 0.032050393521785736, -0.029496487230062485, -0.044160936027765274, 0.013390320353209972, 0.02266433835029602, 0.02698749303817749, 0.01227565947920084, 0.012376700527966022, 0.07412157207727432, 0.026416977867484093, 0.02030014619231224, -0.009308169595897198, -0.028177421540021896, 0.053211431950330734, -0.015686191618442535, -0.024482425302267075, 0.06087498366832733, -0.010150134563446045, 0.0022904204670339823, -0.05230502784252167, 0.047635793685913086, -0.031832046806812286, -0.2910727858543396, 0.02943127229809761, 0.01475619524717331, -0.017023472115397453, 0.019106853753328323, -0.0476507730782032, 0.012945076450705528, -0.056422244757413864, -0.030949726700782776, -0.0018374171340838075, -0.026681330054998398, -0.026907727122306824, -0.020900515839457512, 0.04900817573070526, -0.0022069530095905066, 0.0403941310942173, 0.004635461140424013, -0.02811410091817379, -0.005509290378540754, 0.0620974563062191, -0.016401486471295357, -0.069341279566288, -0.04654112830758095, 0.04505064710974693, 0.034959837794303894, 0.06670308113098145, -0.07542368769645691, 0.034465812146663666, -0.06179817020893097, -0.0056130848824977875, 0.0031589563004672527, -0.00552227720618248, 0.011402100324630737, -0.01969211921095848, -0.002510030521079898, -0.030783452093601227, 0.04836662486195564, -0.006773678585886955, -0.010094757191836834, -0.02284390665590763, -0.010129339061677456, -0.034598711878061295, 0.011586075648665428, 0.04150309041142464, 0.05904269218444824, 0.023708343505859375, -0.059187911450862885, -0.00301143410615623, -0.04492487758398056, 0.08014591038227081, -0.028063194826245308, -0.02096688747406006, -0.020271852612495422, 0.03400552645325661, -0.009659861214458942, -0.019221285358071327, -0.016492560505867004, -0.04746103286743164, -0.04096648842096329, -0.05114061012864113, -0.018346648663282394, -0.02588014118373394, -0.010739435441792011, -0.0375608466565609, -0.035321228206157684, -0.06461754441261292, -0.06871844083070755, 0.0073168110102415085, 0.06188666447997093, -0.007508591283112764, -0.024254085496068, 0.02413315512239933, -0.0388031080365181, -0.08665170520544052, -0.005371449049562216, 0.021155240014195442, -0.031777095049619675, 0.0041404361836612225, 0.019684594124555588, 0.08272739499807358, -0.006176820490509272, -0.03435151278972626, 0.021205581724643707, 0.010220439173281193, 0.016056479886174202, 0.004344904329627752, 0.04908455163240433, 0.03618738427758217, -0.04077853262424469, 0.009055722504854202, 0.05149085819721222, 0.03185778111219406, -0.05151326581835747, -0.012586398050189018, 0.03744103014469147, 0.03784990310668945, -0.0012369537726044655, -0.02600182592868805, 0.03337634727358818, 0.007354729808866978, 0.027747049927711487, -0.03646111115813255, 0.016397204250097275, -0.01719793491065502, -0.02477283403277397, -0.011682111769914627, -0.06892461329698563, 0.031404733657836914, 0.03267834335565567, 0.004886348731815815, 0.00504273222759366, -0.012915806844830513, 0.035292573273181915, -0.026123110204935074, 0.00716400658711791, -0.022013772279024124, -0.01126035489141941, 0.07833217084407806, -0.002218375215306878, -0.0013386547798290849, -0.05408260226249695, 0.012907743453979492, -0.04665884003043175, -0.00427333265542984, -0.05055719614028931, -0.02309422381222248, -0.017128048464655876, -0.027890054509043694, -0.0037421537563204765, 0.03784600645303726, -0.01437600888311863, -0.01000025775283575, 0.0520046167075634, -0.020654326304793358, 0.05260901898145676, -0.0476851649582386, -0.0724041685461998, -0.020849905908107758, -0.0073321787640452385, -0.004492557607591152, -0.005003593862056732, 0.022219330072402954, 0.0031690734904259443, 0.014744439162313938, 0.03770868480205536, 0.014940053224563599, -0.014066444709897041, -0.026139721274375916, 0.010327983647584915, -0.004818149842321873, 0.04117610678076744, -0.04624238982796669, -0.00008476874063489959, -0.03432687371969223, -0.012834598310291767, 0.0030288302805274725, 0.016513697803020477, -0.02611168660223484, 0.010903874412178993, -0.01430569402873516, 0.0036877449601888657, -0.030812373384833336, -0.05408462882041931, -0.0439310148358345, 0.018483160063624382, 0.05012500658631325, -0.03165837749838829, 0.007442733272910118, 0.005681693088263273, -0.011774241924285889, 0.013010642491281033, -0.009548485279083252, -0.050319477915763855, -0.005541571881622076, 0.01959855854511261, 0.016384508460760117, 0.0049913073889911175, -0.0005894428468309343, 0.04962866008281708, 0.005346827208995819, -0.002856619656085968, -0.040263641625642776, 0.01561310701072216, -0.007538201287388802, 0.050720032304525375, 0.036457814276218414, 0.008857747539877892, 0.006950771436095238, -0.04015675559639931, -0.012411387637257576, -0.04461769759654999, -0.020507128909230232, 0.004677602555602789, 0.02180461399257183, -0.038107410073280334, -0.06930265575647354, 0.05412602424621582, 0.019094856455922127, 0.006191488821059465, 0.0061349584721028805, 0.00992957316339016, 0.015596483834087849, -0.02997077815234661, 0.02263321727514267, 0.05924937501549721, -0.07128704339265823, 0.01754356175661087, -0.021862510591745377, -0.007042604498565197, 0.0072756120935082436, -0.02100365236401558, -0.03261514753103256, -0.031156588345766068, -0.03237469494342804, 0.011276545003056526, -0.078757144510746, -0.014221392571926117, -0.07040121406316757, 0.05887306481599808, 0.029104093089699745, 0.01201066467911005, -0.05019547417759895, -0.03420873358845711, -0.00435830419883132, -0.039187315851449966, 0.021845519542694092, -0.03776763379573822, 0.0029959401581436396, -0.015545659698545933, -0.0429944172501564, 0.013804813846945763, -0.03197399526834488, 0.027391856536269188, 0.01571878232061863, -0.05096704140305519, -0.011104249395430088, 0.0016360529698431492, 0.011087850667536259, 0.007026602979749441, 0.03821021690964699, -0.011896608397364616, -0.026736296713352203, -0.04153194651007652, 0.005914839915931225, -0.026635827496647835, -0.015741534531116486, -0.010683584026992321, 0.011916767805814743, 0.019413774833083153, 0.07422100007534027, 0.01927933096885681, 0.010953271761536598, -0.04010407254099846, -0.027753552421927452, 0.05152946338057518, -0.05707690119743347, -0.03694264218211174, -0.034684229642152786, -0.047473661601543427, 0.01107323169708252, -0.0014942213892936707, 0.02536129765212536, -0.04763505607843399, 0.013828900642693043, 0.012731923721730709, 0.01638513244688511, 0.0396917387843132, 0.01794571802020073, 0.020625820383429527, -0.05800255015492439, 0.009992585517466068, -0.06526367366313934, -0.022489428520202637, 0.031351521611213684, 0.006346079055219889, -0.005257366690784693, -0.002125142142176628, -0.045722607523202896, 0.06766724586486816, -0.0876743346452713, -0.016311073675751686, 0.025441251695156097, -0.0357217974960804, 0.004282016307115555, 0.042154569178819656, -0.09000552445650101, 0.0028756363317370415, 0.005405433941632509, -0.0390620157122612, -0.013641656376421452, -0.028255565091967583, 0.06686273217201233, -0.017075316980481148, 0.011553662829101086, -0.024393606930971146, -0.001584516023285687, 0.06050607189536095, 0.02385670877993107, 0.006247388664633036, 0.07507332414388657, -0.0014409481082111597, 0.02630535326898098, 0.04114554449915886, 0.012108064256608486, -0.0003504049382172525, 0.003343472722917795, -0.0184516329318285, -0.046312086284160614, 0.05491683632135391, 0.006770120933651924, -0.01373511366546154, -0.03317343071103096, 0.05019408464431763, 0.011052749119699001, -0.037253640592098236, -0.0455302819609642, 0.02702132798731327, -0.06104716286063194, 0.010137632489204407, -0.016014905646443367, -0.006848050281405449, -0.019452514126896858, 0.03870609402656555, -0.014298091642558575, 0.026169391348958015, 0.06127719581127167, -0.017184749245643616, -0.02496911771595478, -0.03455943241715431, 0.08397085964679718, 0.07109485566616058, 0.0887908786535263, 0.021797820925712585, 0.0737881064414978, -0.029560580849647522, -0.050601616501808167, 0.020468981936573982, -0.0057935998775064945, -0.004534690175205469, -0.028386153280735016, 0.0375276580452919, 0.05127221718430519, -0.01324246171861887, 0.05291006714105606, -0.0044335247948765755, -0.015148798003792763, -0.008435618132352829, 0.04944618418812752, 0.018581360578536987, 0.029937637969851494, 0.014446446672081947, -0.001412644051015377, -0.020861241966485977, -0.07649421691894531, 0.05124613270163536, -0.01502140611410141, -0.001169305294752121, 0.02299068681895733, -0.013464092276990414, 0.04207494854927063, 0.038203757256269455, 0.013689964078366756, 0.0627446398139, -0.036493346095085144, 0.02085227333009243, -0.002878758357837796, 0.004739546217024326, 0.004274854902178049, 0.011260478757321835, 0.009758089669048786, -0.010514471679925919, 0.004009816329926252, -0.028030863031744957, -0.017372436821460724, -0.009593733586370945, -0.01136050745844841, 0.02924221195280552, -0.033745866268873215, 0.015294316224753857, 0.02413429692387581, 0.0016732981894165277, -0.04350591078400612, -0.05158478394150734, -0.01344046089798212, -0.05903445929288864, -0.042555440217256546, 0.03019307367503643, 0.020060408860445023, -0.022432919591665268, -0.03531377762556076, -0.02987969107925892, -0.027815159410238266, -0.005453511606901884, 0.0361994169652462, -0.05123288556933403, -0.016982441768050194, 0.0070043220184743404, 0.022716868668794632, 0.02283327654004097, -0.0032851691357791424, 0.030284937471151352, 0.01569269225001335, -0.010029206983745098, 0.006795328110456467, 0.03363584727048874, 0.034578435122966766, -0.01702149026095867, -0.0006862154114060104, -0.11158437281847, 0.029175760224461555, 0.026514725759625435, -0.02252848446369171, -0.06281361728906631, 0.040167804807424545, 0.013941633515059948, -0.006617863662540913, 0.05348258465528488, 0.010249986313283443, -0.006980564910918474, -0.05344821512699127, 0.01744792051613331, 0.010582422837615013, 0.016067055985331535, 0.04966140165925026, -0.0355488657951355, 0.07870550453662872, 0.03557836264371872, -0.035442423075437546, -0.03695736825466156, -0.01790526509284973, 0.013206378556787968, -0.020184224471449852, -0.004566266667097807, -0.04269993677735329, -0.03254082798957825, -0.06999923288822174, -0.02619038335978985, 0.03320317715406418, -0.017941894009709358, -0.022845027968287468, 0.03945967182517052, -0.014964329078793526, -0.026982981711626053, 0.010554946959018707, -0.0608745776116848, 0.026654979214072227, -0.005546179134398699, -0.0016946806572377682, -0.002379164332523942, 0.003846539184451103, 0.015558155253529549, -0.0052056810818612576, 0.013488663360476494, -0.043259888887405396, 0.0031037249136716127, -0.00661234138533473, 0.013942964375019073, 0.026573648676276207, -0.006541127804666758, -0.026593608781695366 ]
[ -0.06906747817993164, 0.010123453103005886, -0.016056789085268974, -0.01417893823236227, 0.03367018327116966, -0.006992045324295759, -0.0042775594629347324, 0.020161207765340805, -0.0035584212746471167, -0.032722339034080505, 0.01672976091504097, -0.014127037487924099, 0.0029235240072011948, 0.00142328639049083, 0.04392201080918312, -0.0026571352500468493, -0.007536616176366806, -0.05276993662118912, -0.004506849683821201, 0.024576516821980476, -0.040726255625486374, -0.02041931077837944, -0.03008446842432022, 0.023426735773682594, 0.011426536366343498, 0.03992272540926933, 0.02857273258268833, -0.0636340081691742, -0.0136693911626935, -0.1907104104757309, 0.012460095807909966, 0.015537809580564499, 0.026244133710861206, -0.022687168791890144, -0.009858861565589905, 0.08356089890003204, 0.02733379788696766, 0.02783389203250408, -0.016988525167107582, 0.059170663356781006, 0.018114397302269936, 0.018583962693810463, -0.032104890793561935, -0.030420422554016113, 0.035377565771341324, 0.0076757436618208885, -0.006818586960434914, -0.04606501758098602, -0.03238493576645851, 0.012717361561954021, -0.036802180111408234, -0.04877375066280365, -0.028553815558552742, -0.01097796205431223, -0.0404629223048687, 0.0545245036482811, 0.015903005376458168, 0.008641880936920643, 0.007083116099238396, 0.006209610961377621, 0.04305734857916832, 0.007756219245493412, -0.1342391073703766, 0.08203185349702835, 0.004767995793372393, 0.06347593665122986, -0.040672872215509415, 0.004717250820249319, -0.010356180369853973, 0.09520823508501053, -0.010450347326695919, -0.02521650865674019, 0.019913677126169205, 0.016262676566839218, 0.028862526640295982, 0.024756668135523796, -0.005368516314774752, 0.0394657626748085, 0.009951510466635227, -0.04778853803873062, -0.022301768884062767, 0.013664302416145802, -0.014953096397221088, -0.028332021087408066, -0.02507149986922741, 0.014035705476999283, -0.01646854355931282, 0.040225762873888016, 0.0018102069152519107, 0.040450502187013626, 0.049571603536605835, 0.026654059067368507, 0.012896097265183926, -0.01625024899840355, -0.08729628473520279, -0.03797221928834915, -0.010793033987283707, 0.021205473691225052, -0.020297491922974586, 0.46818798780441284, -0.01416727527976036, 0.010004219599068165, 0.11719206720590591, 0.0379507839679718, -0.04270212724804878, -0.03756203502416611, -0.005677987355738878, -0.06340054422616959, 0.026405271142721176, -0.008846912533044815, -0.0015665368409827352, 0.011258239857852459, 0.0767127200961113, -0.03594882786273956, 0.04436768963932991, 0.01844489760696888, 0.03944670781493187, 0.022100064903497696, -0.0054041543044149876, -0.017569981515407562, -0.004464217461645603, 0.00667992141097784, 0.033940572291612625, -0.008887741714715958, -0.03650292381644249, -0.04273243248462677, 0.02325805462896824, 0.043940089643001556, 0.048132285475730896, -0.038529012352228165, 0.05121529474854469, -0.03660118579864502, -0.06504859775304794, 0.0016680278349667788, -0.002134968526661396, -0.007233289536088705, 0.05413827672600746, -0.0366341695189476, 0.03635682538151741, 0.025678979232907295, 0.02951172925531864, 0.005184730514883995, 0.05035176873207092, 0.009259438142180443, -0.0504501573741436, 0.14276769757270813, 0.014864394441246986, -0.049924563616514206, -0.015183020383119583, 0.015164719894528389, -0.02256634272634983, -0.0036178610753268003, -0.03294794261455536, -0.043629344552755356, 0.029641753062605858, 0.005446511786431074, 0.0811493918299675, -0.007067636586725712, -0.050434745848178864, 0.013263377360999584, -0.01329830288887024, 0.0008436962380073965, -0.04279564321041107, 0.03784257918596268, 0.07322647422552109, -0.09602947533130646, -0.021925948560237885, -0.031623806804418564, 0.021385105326771736, -0.07466402649879456, -0.014441085048019886, 0.02453596331179142, -0.0005573466187343001, 0.01775457337498665, 0.031662795692682266, -0.003625099314376712, -0.041153136640787125, 0.0033310239668935537, 0.0324690006673336, 0.0071549080312252045, 0.029749929904937744, 0.0243053138256073, -0.03838648647069931, 0.012771896086633205, -0.02995893359184265, -0.0992305725812912, -0.04915177822113037, -0.016826355829834938, -0.03247426077723503, 0.004728713072836399, -0.008933790028095245, -0.029515722766518593, -0.07366376370191574, 0.10559035837650299, -0.066400445997715, -0.01714233309030533, 0.032465286552906036, -0.023874016478657722, -0.03268003836274147, -0.015500177629292011, -0.09487348049879074, -0.012681195512413979, -0.03820810839533806, 0.03667708486318588, -0.039202429354190826, 0.06459599733352661, 0.060416948050260544, -0.05279768258333206, 0.10541936755180359, 0.03964029252529144, -0.023674611002206802, -0.06375367939472198, 0.008640321902930737, 0.018719900399446487, 0.001469214796088636, 0.021063609048724174, 0.013089844956994057, -0.015731049701571465, -0.0028870932292193174, 0.002560942666605115, 0.018577134236693382, -0.02561708725988865, -0.022693000733852386, -0.3241744637489319, -0.03362121805548668, -0.004276591818779707, -0.009031281806528568, 0.04322219267487526, -0.04058799147605896, 0.01301926001906395, -0.01505774911493063, -0.0077857449650764465, -0.000812356942333281, 0.012780641205608845, -0.018120817840099335, -0.0009272233000956476, -0.06131913885474205, -0.00124212761875242, 0.023220408707857132, -0.05602416396141052, -0.0016621609684079885, -0.027941040694713593, 0.014612500555813313, 0.004226440563797951, -0.0054025608114898205, -0.021523931995034218, -0.05109751597046852, -0.004143435973674059, -0.03096388466656208, 0.09934920072555542, 0.05623370781540871, 0.04932180792093277, -0.008691121824085712, 0.023794928565621376, 0.008804094046354294, -0.006913806311786175, -0.0713215172290802, 0.022204631939530373, -0.013918789103627205, 0.016485193744301796, -0.046369120478630066, 0.030326256528496742, -0.06178286299109459, -0.039051882922649384, 0.02408606931567192, -0.05327901616692543, -0.05649846792221069, -0.09025377780199051, 0.0281442292034626, -0.02460562065243721, -0.024100102484226227, -0.002453530440106988, 0.06063949316740036, 0.01176285371184349, -0.013647155836224556, 0.024015409871935844, -0.005011044908314943, 0.002186194760724902, -0.01121311541646719, -0.10542378574609756, -0.0027323896065354347, -0.000474071828648448, 0.014846219681203365, 0.026617903262376785, 0.08706873655319214, 0.03740295395255089, -0.06507614254951477, -0.0025482631754130125, 0.018810639157891273, -0.023049846291542053, -0.006261223927140236, 0.02204318344593048, -0.00453443406149745, -0.0129281310364604, 0.07721301913261414, -0.02404947020113468, -0.011902516707777977, 0.03753168508410454, 0.038465552031993866, -0.0050950078293681145, 0.008350858464837074, -0.004085659049451351, -0.006292858626693487, 0.012563565745949745, -0.038638483732938766, -0.0004391886468511075, -0.039172545075416565, -0.031886015087366104, 0.02809644304215908, -0.011530151590704918, -0.0695754885673523, 0.08950582891702652, -0.017696470022201538, -0.010053492151200771, 0.043275851756334305, -0.03524256870150566, 0.0009475178667344153, 0.042686156928539276, -0.008148475550115108, -0.24531525373458862, 0.058323170989751816, 0.07604341953992844, 0.046060431748628616, 0.009727904573082924, 0.06249652057886124, -0.003376977052539587, -0.03684733808040619, 0.02031756564974785, 0.007883970625698566, 0.037949807941913605, 0.02920730970799923, 0.004606045316904783, -0.0004452724533621222, -0.00088545773178339, 0.004881011787801981, 0.04866090789437294, -0.007934960536658764, 0.021636562421917915, -0.024371681734919548, 0.013052557595074177, -0.012804960831999779, 0.15315499901771545, 0.01352724526077509, 0.02326672524213791, 0.004529561847448349, -0.005292280577123165, 0.0013698054244741797, 0.0300714410841465, -0.025454530492424965, 0.012301965616643429, -0.023852398619055748, 0.0010792852845042944, -0.01733335480093956, 0.028767071664333344, -0.07308144867420197, -0.029546629637479782, 0.020043527707457542, 0.02461678721010685, 0.021604783833026886, 0.01747702620923519, 0.0000169722279679263, -0.03729383647441864, 0.029037369415163994, 0.06967686861753464, 0.030730895698070526, 0.008352112025022507, -0.026705047115683556, -0.10088235884904861, -0.013448242098093033, -0.0044817207381129265, -0.027919664978981018, -0.015412119217216969, -0.013525198213756084, 0.04719776660203934, 0.06247209012508392, 0.029314197599887848, -0.018553825095295906, 0.022056063637137413, 0.018586428835988045, -0.026578838005661964, 0.004078144207596779, 0.11473545432090759, 0.026228275150060654, 0.04113784804940224 ]
[ 0.02424268238246441, 0.02207850106060505, 0.016142385080456734, -0.00864739902317524, -0.010726175270974636, 0.03201590105891228, -0.022495323792099953, 0.005831017158925533, -0.005000779405236244, -0.041861552745103836, 0.004194906447082758, 0.023553892970085144, 0.00244922679848969, -0.025041891261935234, 0.002366616390645504, -0.02638493850827217, 0.03875312954187393, -0.029514506459236145, 0.05362839251756668, 0.013581092469394207, -0.049910783767700195, -0.02956034615635872, -0.01289496012032032, -0.01768568903207779, -0.015383929945528507, 0.039698559790849686, -0.05030744895339012, 0.0007953630993142724, 0.036417145282030106, -0.09151561558246613, 0.004771617706865072, -0.0030729181598871946, 0.0003545401559676975, 0.017091931775212288, 0.005588761065155268, 0.0018708208808675408, -0.0305277481675148, 0.03663201257586479, 0.03339417278766632, -0.001689412398263812, -0.00010947889677481726, -0.018948130309581757, -0.011337936855852604, 0.011995460838079453, -0.006234798580408096, -0.005216133780777454, -0.011129829101264477, -0.061594538390636444, -0.03696080297231674, -0.04658278077840805, -0.011822822503745556, -0.036249153316020966, -0.009079375304281712, 0.01603425294160843, 0.0063742720521986485, -0.02850901335477829, -0.007575196214020252, -0.0377466157078743, 0.018123410642147064, -0.009893161244690418, 0.004605211783200502, -0.022621290758252144, -0.017588503658771515, -0.017656361684203148, -0.03202942758798599, -0.005342873744666576, 0.005612362176179886, 0.017227653414011, -0.048607684671878815, 0.006817341782152653, 0.012397398240864277, 0.036339543759822845, -0.017426541075110435, -0.024751584976911545, 0.032139234244823456, 0.02727521024644375, -0.006264109164476395, -0.006926858797669411, 0.002975426847115159, -0.035809583961963654, -0.04464833810925484, 0.012293076142668724, -0.0239220280200243, 0.027525464072823524, 0.020969057455658913, -0.01981968991458416, 0.012971526943147182, -0.0020287511870265007, -0.02822549268603325, 0.03847286477684975, -0.02953888662159443, 0.04748537763953209, 0.007321221753954887, -0.010672861710190773, -0.09332875907421112, -0.0057496619410812855, -0.009714549407362938, -0.006167551502585411, 0.012554055079817772, 0.846534013748169, -0.0009432865772396326, 0.03873906284570694, 0.023714913055300713, -0.00862514041364193, 0.0017309411196038127, 0.00265592522919178, 0.012069950811564922, -0.047975629568099976, -0.007385815493762493, 0.0227182749658823, -0.017837608233094215, 0.011839048005640507, 0.013132493011653423, 0.020443905144929886, -0.0035011502914130688, 0.032119132578372955, -0.006758319679647684, 0.01331196166574955, 0.023886509239673615, -0.01762101612985134, 0.06129743158817291, -0.00026049104053527117, 0.06171675771474838, -0.003199805738404393, 0.01748516410589218, -0.12576866149902344, -0.00044397314195521176, -7.81272704212054e-33, 0.06254439055919647, -0.018133336678147316, -0.028527123853564262, -0.01678050309419632, 0.013876567594707012, -0.023057805374264717, -0.00017127908358816057, 0.024603229016065598, -0.01191697921603918, -0.02625989355146885, 0.011653420515358448, 0.0001360065070912242, 0.030946819111704826, -0.004109976813197136, 0.03942718356847763, -0.02076827734708786, -0.012476364150643349, 0.03879852965474129, 0.006708955392241478, 0.00448303297162056, 0.004957761615514755, 0.026427408680319786, -0.005769191309809685, -0.021053848788142204, -0.009095785208046436, 0.002371604787185788, -0.00989791564643383, 0.003318234346807003, 0.003478163620457053, -0.03711729124188423, -0.05324258655309677, -0.011428273282945156, -0.014879406429827213, -0.0060260421596467495, -0.007549353409558535, -0.019725395366549492, 0.0216972678899765, -0.01640232279896736, -0.005841854959726334, -0.038980066776275635, 0.02963452786207199, 0.01801501028239727, -0.045263998210430145, -0.03286696597933769, -0.000476171204354614, -0.004047444090247154, 0.021548351272940636, 0.010529219172894955, 0.018328703939914703, -0.03399457037448883, -0.001100062276236713, 0.011429433710873127, -0.013708200305700302, 0.0011131966020911932, -0.005893544759601355, -0.0009574137511663139, -0.04551520198583603, 0.013170911930501461, -0.015943674370646477, -0.026217596605420113, 0.05935239791870117, 0.02789745107293129, -0.029408961534500122, 0.05908704176545143, 0.017664369195699692, 0.018750015646219254, -0.008483948186039925, 0.023536289110779762, 0.019399365410208702, -0.01220138743519783, -0.026179078966379166, -0.0049008531495928764, 0.023904239758849144, -0.014789963141083717, 0.013588828034698963, -0.0013157485518604517, 0.029946139082312584, 0.0036675904411822557, -0.019626596942543983, -0.020847178995609283, -0.013300606980919838, 0.005271129310131073, -0.030902907252311707, -0.043091338127851486, -0.01928050071001053, 0.03037138469517231, 0.051043085753917694, 0.019556457176804543, -0.04375366494059563, -0.008735385723412037, 0.0013133713509887457, -0.022233672440052032, 0.04912114888429642, 0.004017650615423918, -0.02578376978635788, 7.497817248323034e-33, -0.003319871611893177, 0.003650221275165677, -0.0011540126288309693, -0.01718279905617237, 0.06753384321928024, -0.026229921728372574, 0.02180057391524315, -0.018712950870394707, -0.05385928228497505, 0.015429023653268814, -0.044900864362716675, -0.003619407769292593, -0.026676207780838013, 0.009477592073380947, 0.015305687673389912, -0.033891722559928894, 0.022570809349417686, -0.01911814883351326, 0.03253273293375969, -0.036198124289512634, 0.027194947004318237, 0.005422897636890411, 0.025859396904706955, 0.030965132638812065, 0.015790289267897606, 0.03975554183125496, 0.006181822624057531, 0.02045041136443615, -0.025505337864160538, -0.010394643060863018, 0.023838261142373085, -0.013787155039608479, 0.005706378724426031, -0.016300123184919357, -0.025605779141187668, 0.02538183145225048, -0.03632773086428642, -0.02431531995534897, -0.03589947149157524, -0.0015340193640440702, -0.012279865331947803, 0.010943464003503323, -0.008455054834485054, 0.0327320322394371, 0.0135653056204319, 0.0356253944337368, 0.0019537839107215405, 0.006579706910997629, -0.02587534300982952, 0.016858123242855072, -0.011521540582180023, 0.02706967294216156, 0.03901596739888191, -0.01758929342031479, 0.014318188652396202, -0.014213671907782555, 0.010901215486228466, -0.03092312626540661, 0.03442065417766571, 0.001283238991163671, 0.0005285601946525276, -0.00013807076902594417, -0.041856274008750916, -0.010427402332425117, -0.02006775699555874, 0.006344756111502647, -0.008163736201822758, 0.011875842697918415, -0.02924642339348793, 0.04695497825741768, -0.012526336126029491, 0.0339324027299881, -0.03139232099056244, 0.033321015536785126, 0.05362116917967796, 0.012943306937813759, -0.0269381795078516, 0.024855006486177444, 0.0014748648973181844, 0.010311104357242584, 0.0006829258054494858, -0.004702107049524784, -0.022084001451730728, -0.018800312653183937, -0.025217698886990547, 0.011818157508969307, -0.028443939983844757, 0.06725238263607025, -0.014206231571733952, -0.012198970653116703, 0.01295850332826376, -0.04079679399728775, 0.01897381618618965, 0.0026553869247436523, 0.005013598594814539, -1.331236365587074e-8, 0.043849099427461624, 0.02277889847755432, -0.0076482659205794334, 0.03983833268284798, 0.011360019445419312, -0.05075836926698685, -0.02074611373245716, -0.02004576101899147, -0.0008217975264415145, -0.0012821187265217304, 0.03207889571785927, -0.02987411804497242, 0.01250399462878704, 0.013087165541946888, 0.02740447223186493, -0.030901875346899033, 0.0005730226403102279, -0.019073529168963432, 0.017362497746944427, 0.016321001574397087, 0.020097915083169937, 0.04190122336149216, -0.03248915821313858, 0.013476946391165257, -0.02690606378018856, -0.0022758296690881252, 0.0026315839495509863, -0.05958058312535286, -0.054697003215551376, -0.027731619775295258, -0.00042057695100083947, 0.0017612254014238715, -0.02581704966723919, 0.032818857580423355, -0.007451473269611597, -0.03265393525362015, 0.049335937947034836, -0.0041738348081707954, 0.01173487864434719, 0.022314390167593956, 0.0049359179101884365, -0.011175536550581455, -0.025720281526446342, -0.03806944936513901, -0.03354154899716377, 0.042059276252985, -0.045269183814525604, -0.02588253654539585, -0.02336125820875168, -0.05062152445316315, 0.011109578423202038, 0.0004569524899125099, 0.029512867331504822, 0.062066126614809036, -0.0027240205090492964, 0.03529884293675423, -0.03208920359611511, 0.037784986197948456, -0.034643471240997314, -0.028082875534892082, 0.034701231867074966, 0.0655461996793747, -0.01220154669135809, -0.007644056808203459 ]
retrospectives-mini-group-discussions
https://markhneedham.com/blog/2011/03/20/retrospectives-mini-group-discussions
false
2011-03-20 18:08:35
Confirmation Bias and Loss of Autonomy
[ "software-development" ]
[ "Organisational Patterns" ]
I've mentioned confirmation bias http://www.markhneedham.com/blog/2010/07/22/the-prepared-mind-vs-having-context-when-learning-new-ideas/[in] http://www.markhneedham.com/blog/2009/08/12/zen-mind-beginners-mind-book-review/[a few] http://www.markhneedham.com/blog/2009/12/24/debug-it-book-review/[of my previous blog posts] but I hadn't realised quite how widespread it can be in organisations until quite recently. _Confirmation bias_ ____ [A] tendency for people to favor information that confirms their preconceptions or hypotheses regardless of whether the information is true. As a result, people gather evidence and recall information from memory selectively, and interpret it in a biased way. The biases appear in particular for emotionally significant issues and for established beliefs. ____ I've noticed that it is particularly prevalent in organisations when people feel that they are being told what to do i.e. people feel they don't have autonomy. http://www.youtube.com/watch?v=u6XAPnuFjJc[Dan Pink] talks about autonomy as being one of the 3 things that lead to better performance and personal satisfaction. _Autonomy_ ____ immunity from arbitrary exercise of authority ____ One example could be if an organisation were to force a certain way of working on their employees without getting their input on it beforehand. It's highly likely the employees will start looking for reasons why the new way of working is worse than what they have. Even if the management can very logically explain why it's better they're unlikely to make much headway because *people will only see information which confirms their view that the old way is better*. http://twitter.com/zaynilee[Zaynab] pointed out that a useful technique to avoid confirmation bias is to look at what you were trying to achieve in old way and see how you would do that with the new way. That way you lose nothing! I think this approach only really works once the http://stevenmsmith.com/ar-satir-change-model/[emotions of the change] have calmed down a bit though. Equally the management may be prone to confirmation bias since they have bought into the fact that the new way is better and may dismiss potentially valid feedback because it doesn't fit with their belief system of how things should be. I feel like confirmation bias is quite a natural human reaction to a situation like this so it's useful to be aware of it if you're having something forced onto you but also if you're in a position of instigating some sort of organisational change.
null
null
[ 0.017931994050741196, 0.024240784347057343, -0.0019871031399816275, 0.03336450457572937, 0.07130557298660278, 0.0005944491713307798, 0.032230667769908905, 0.04230380803346634, 0.030323732644319534, -0.022502843290567398, -0.021749738603830338, 0.01325618289411068, -0.04083537310361862, 0.0022234024945646524, -0.03607427328824997, 0.06520151346921921, 0.04723531752824783, 0.014436551369726658, -0.00035912467865273356, 0.00200534425675869, 0.044542111456394196, 0.060307662934064865, 0.03665899857878685, 0.020354485139250755, 0.06669022142887115, -0.006042789667844772, 0.045823387801647186, -0.027518996968865395, -0.050499796867370605, -0.0044634221121668816, 0.046508342027664185, 0.01233807485550642, -0.01882190629839897, 0.03824073448777199, 0.013668416067957878, 0.024751141667366028, -0.008002138696610928, 0.01348587591201067, 0.005499354097992182, 0.010783880949020386, -0.09060334414243698, 0.05851106718182564, -0.009800797328352928, 0.01577375829219818, -0.06509478390216827, 0.0066145905293524265, -0.033134423196315765, 0.0220144335180521, -0.006550078745931387, -0.021945560351014137, -0.07004854083061218, 0.04209743067622185, 0.0059677776880562305, -0.001986407907679677, -0.020726488903164864, 0.052354004234075546, -0.005914018489420414, -0.055750079452991486, 0.004445610102266073, -0.03218339756131172, 0.0011828822316601872, 0.002896297723054886, -0.01641451008617878, 0.027823807671666145, 0.029718779027462006, -0.05007003992795944, 0.0007515509496442974, 0.04502594470977783, -0.03329195827245712, 0.014924915507435799, -0.052818574011325836, -0.00026677496498450637, -0.01266767829656601, 0.009152542799711227, 0.011813881807029247, -0.04446292296051979, 0.01091297622770071, 0.05806279182434082, 0.04433088377118111, 0.009710281156003475, -0.026769563555717468, 0.020055625587701797, 0.0034671409521251917, 0.017194412648677826, -0.009577309712767601, -0.050790052860975266, 0.03457849845290184, -0.03944344446063042, -0.0740346908569336, 0.07160920649766922, -0.006077049300074577, -0.054160963743925095, 0.00856940820813179, 0.03620195388793945, -0.02211710251867771, 0.0023370536509901285, 0.056083932518959045, -0.020068656653165817, -0.01370960846543312, -0.06472500413656235, -0.016402166336774826, -0.029675625264644623, -0.003309431951493025, 0.014217650517821312, -0.09266924858093262, -0.01029590331017971, -0.012971150688827038, 0.00946344155818224, -0.030566222965717316, 0.016252335160970688, -0.04803423210978508, 0.05002777650952339, -0.010324341244995594, 0.012109102681279182, -0.06607218831777573, 0.04379615932703018, 0.018689271062612534, -0.03873763978481293, 0.011716424487531185, 0.012019854970276356, 0.03795705363154411, 0.014095905236899853, -0.01823294907808304, 0.061702992767095566, 0.011981746181845665, 0.016822202131152153, -0.04084256663918495, 0.046556856483221054, -0.023999305441975594, -0.05635613948106766, -0.003773877862840891, 0.0415634885430336, -0.04438608139753342, -0.0007785503985360265, -0.02105465903878212, -0.015080076642334461, -0.003772537922486663, -0.004676614888012409, 0.03599942475557327, 0.0789550393819809, 0.021934447810053825, -0.06138172000646591, 0.001805911655537784, 0.041936296969652176, 0.02228359691798687, -0.020295359194278717, -0.006640811916440725, 0.0053392681293189526, -0.04608219116926193, -0.03282575681805611, 0.0032748105004429817, -0.008280265145003796, 0.020636942237615585, -0.04403505101799965, 0.02175653539597988, 0.08123647421598434, 0.06008060276508331, -0.0039603509940207005, -0.01712704822421074, 0.031776923686265945, 0.03687985613942146, 0.04316805675625801, 0.02716594748198986, 0.025579756125807762, 0.03081776387989521, -0.022644706070423126, -0.005556091666221619, 0.04881606996059418, -0.004378418438136578, 0.03243692219257355, -0.04790457338094711, -0.05935227870941162, 0.04102711006999016, -0.04518255963921547, -0.022417571395635605, 0.06104859709739685, 0.051398083567619324, 0.04021748900413513, 0.053180720657110214, 0.002127032959833741, -0.07372453063726425, 0.03516610339283943, 0.0006612942088395357, 0.036437422037124634, 0.022792873904109, -0.007806579582393169, 0.02915852516889572, 0.02752930484712124, 0.014358487911522388, 0.05730739235877991, -0.05583638697862625, -0.07147824019193649, 0.00020937807857990265, 0.002300236839801073, 0.045991986989974976, -0.02323424443602562, 0.03204058110713959, 0.10153801739215851, -0.0032895661424845457, 0.05102996155619621, 0.026275258511304855, -0.011772286146879196, 0.002754931803792715, -0.02191201038658619, -0.04144012928009033, 0.08290879428386688, 0.032307032495737076, 0.002464804332703352, -0.05182787775993347, 0.022239618003368378, -0.039455294609069824, -0.002527795499190688, 0.020051341503858566, -0.0011591068468987942, 0.02787749469280243, 0.0022653196938335896, 0.05701068788766861, -0.024340251460671425, 0.03480635583400726, -0.03610159084200859, 0.008978604339063168, 0.018711471930146217, -0.007195712067186832, 0.022907687351107597, 0.01723567582666874, 0.12168717384338379, 0.05750193074345589, -0.04322449490427971, -0.05229195952415466, 0.02902151644229889, 0.03014574572443962, -0.0392712727189064, 0.009357892908155918, 0.013003545813262463, 0.002022356493398547, -0.002306378446519375, -0.05298665538430214, -0.031179780140519142, 0.035999227315187454, -0.04903072118759155, -0.009043115191161633, 0.04036210477352142, -0.007295139133930206, 0.07481884211301804, -0.030404819175601006, 0.0014476929791271687, -0.022284794598817825, -0.00904788076877594, -0.053295884281396866, 0.01646541804075241, 0.004958877339959145, -0.016187749803066254, 0.032614026218652725, -0.02047225460410118, -0.015289549715816975, -0.04823054373264313, -0.03762542083859444, 0.019153226166963577, 0.06457386910915375, 0.06014499440789223, -0.011154665611684322, 0.06735344231128693, -0.02063969522714615, 0.04012005776166916, 0.016909779980778694, -0.04947458207607269, -0.048350777477025986, -0.018529582768678665, -0.012263050302863121, 0.01687534712255001, -0.0004891175776720047, -0.0193302221596241, 0.01778358407318592, 0.029903948307037354, -0.02231024019420147, -0.007792078424245119, 0.01396430004388094, 0.013054384849965572, 0.017852304503321648, -0.00025020926841534674, -0.008805333636701107, 0.06516826897859573, -0.0013325089821591973, 0.018860509619116783, 0.010262814350426197, -0.09821677207946777, 0.04270472750067711, -0.06599164009094238, -0.04973671957850456, 0.012610591016709805, 0.008006596006453037, 0.037309616804122925, 0.051055945456027985, 0.012110172770917416, 0.05816296115517616, 0.01924988068640232, 0.008721370249986649, 0.000403669779188931, -0.0010222273413091898, 0.04399821534752846, -0.0019108918495476246, -0.017423486337065697, 0.04462259262800217, 0.0015314482152462006, 0.0216303039342165, -0.05134624242782593, 0.048443373292684555, -0.040313173085451126, -0.2803100049495697, 0.03632485866546631, 0.02765060029923916, -0.039391957223415375, 0.02123711071908474, -0.031126871705055237, 0.024406233802437782, -0.057521216571331024, -0.030763350427150726, 0.021589770913124084, -0.03167201578617096, -0.03577858954668045, -0.01843721605837345, 0.03827430307865143, -0.0023544873110949993, 0.019017856568098068, 0.026919396594166756, -0.02032039687037468, 0.004627203568816185, 0.053189195692539215, 0.0022177454084157944, -0.05765599384903908, -0.018604224547743797, 0.05352683365345001, 0.04301506653428078, 0.07323818653821945, -0.05456647649407387, 0.03451777249574661, -0.06857456266880035, 0.010284202173352242, -0.01262996718287468, -0.00004368159352452494, 0.0028416465502232313, -0.004148098174482584, 0.018307611346244812, -0.03145381435751915, 0.04969015717506409, 0.008266343735158443, -0.01846255175769329, 0.0023355206940323114, -0.020875772461295128, -0.02690241113305092, 0.031064070761203766, 0.030369404703378677, 0.05315917730331421, 0.024334825575351715, -0.09088235348463058, -0.01051303930580616, -0.03006056509912014, 0.06502288579940796, -0.06206598877906799, -0.009906576946377754, -0.038725122809410095, 0.022386737167835236, -0.022559354081749916, -0.0033581522293388844, 0.003242612350732088, -0.024054735898971558, -0.049336083233356476, -0.044526949524879456, -0.019097257405519485, -0.024860454723238945, -0.003511191811412573, -0.04824529215693474, -0.0023075025528669357, -0.06077485904097557, -0.07644671946763992, -0.026977580040693283, 0.0804445818066597, 0.00279377237893641, -0.023381322622299194, 0.019329119473695755, -0.02008579671382904, -0.10650719702243805, -0.018985364586114883, -0.013163859955966473, -0.039966024458408356, 0.02190976031124592, 0.023715712130069733, 0.07048554718494415, -0.00621175579726696, -0.04475661367177963, 0.03217744082212448, 0.016310105100274086, 0.03721658140420914, -0.010297746397554874, 0.04293786734342575, 0.041442204266786575, -0.031497541815042496, 0.019766654819250107, 0.07415687292814255, 0.027346109971404076, -0.03353879973292351, -0.025913814082741737, 0.02380586415529251, 0.022732866927981377, 0.012965823523700237, -0.019913148134946823, 0.029136907309293747, 0.0060861073434352875, -0.0031003078911453485, -0.05206702649593353, 0.018904458731412888, -0.03589640185236931, -0.022730162367224693, -0.008005955256521702, -0.03870922327041626, 0.024271564558148384, 0.02075350657105446, -0.015112851746380329, 0.0012185488594695926, -0.015358256176114082, 0.026812829077243805, -0.007500705774873495, -0.022613171488046646, -0.022077716886997223, -0.0022336477413773537, 0.052422478795051575, -0.021416066214442253, -0.019458575174212456, -0.043086737394332886, -0.006793199107050896, -0.058127667754888535, -0.011629262007772923, -0.058321334421634674, -0.011771089397370815, -0.010301248170435429, -0.025598181411623955, -0.012556685134768486, 0.0374118946492672, 0.003738642204552889, 0.009374002926051617, 0.052934788167476654, -0.016361288726329803, 0.027708664536476135, -0.030392806977033615, -0.044920533895492554, -0.04240148887038231, -0.011797252111136913, 0.0022764322347939014, -0.008516083471477032, 0.022299958392977715, 0.015992650762200356, 0.02187066525220871, 0.03365420177578926, 0.016317686066031456, 0.028397830203175545, -0.03419044241309166, 0.02244718000292778, 0.023611558601260185, 0.016958123072981834, -0.03753026947379112, 0.007318220566958189, -0.015552857890725136, -0.005108590237796307, 0.030761118978261948, 0.03075672686100006, -0.019653258845210075, -0.023048855364322662, -0.033861491829156876, -0.00820110272616148, -0.05663574859499931, -0.04694254696369171, -0.040194038301706314, 0.03159988671541214, 0.05392099916934967, -0.02670988254249096, 0.022556301206350327, 0.015585620887577534, -0.004222240298986435, 0.013231365941464901, 0.010227478109300137, -0.04907926917076111, 0.011746404692530632, 0.003281545592471957, -0.007643857970833778, 0.005996846128255129, -0.01792696863412857, 0.03937505558133125, -0.020207149907946587, -0.01894548162817955, -0.0273586418479681, 0.0029842134099453688, 0.0038076306227594614, 0.03744618594646454, 0.031056609004735947, -0.003467206610366702, -0.006978003308176994, -0.00199162308126688, -0.020222138613462448, -0.050016410648822784, -0.023881610482931137, -0.019477875903248787, 0.016458610072731972, -0.029223868623375893, -0.05274498462677002, 0.05031644552946091, -0.022137662395834923, -0.004325223155319691, 0.011615464463829994, -0.00015249747957568616, -0.011190752498805523, -0.023902541026473045, 0.012662389315664768, 0.054147448390722275, -0.05445655807852745, 0.003625465091317892, 0.0015537915751338005, -0.030395284295082092, 0.03205375000834465, -0.021291635930538177, -0.03020906075835228, -0.016673024743795395, -0.017536861822009087, 0.030121756717562675, -0.10088783502578735, -0.030803442001342773, -0.047536544501781464, -0.0004243886796757579, 0.008059117011725903, 0.010957256890833378, -0.02092842571437359, -0.021009385585784912, 0.017554208636283875, -0.01507280208170414, 0.02044864557683468, -0.027790658175945282, -0.004343554377555847, 0.015398144721984863, -0.038098108023405075, -0.025643330067396164, -0.005562635604292154, 0.011334450915455818, 0.03674989566206932, -0.03544609248638153, -0.025870366021990776, -0.0038913292810320854, 0.004690039437264204, -0.016210293397307396, 0.033672962337732315, -0.011679188348352909, -0.05293987691402435, -0.05178775638341904, -0.010420795530080795, -0.03271649405360222, 0.017136774957180023, -0.03184441849589348, 0.0032571100164204836, 0.02913927100598812, 0.075982965528965, 0.020714977756142616, 0.014098674058914185, -0.017607886344194412, -0.008194477297365665, 0.02470575086772442, -0.04974056035280228, -0.01049547828733921, -0.02974737249314785, -0.042773518711328506, 0.010328770615160465, 0.020543115213513374, 0.007938722148537636, -0.012937658466398716, 0.02864925004541874, -0.0025686402805149555, 0.01830943487584591, 0.018559271469712257, 0.03221786394715309, 0.026913294568657875, -0.04821024462580681, 0.001738154562190175, -0.08228665590286255, -0.02295050583779812, 0.012357125990092754, 0.01270325668156147, -0.0006715391064062715, -0.014750191010534763, -0.04623280093073845, 0.042686574161052704, -0.08023954927921295, -0.021859724074602127, 0.022975681349635124, -0.014082231558859348, -0.029473256319761276, 0.017693599686026573, -0.08315648883581161, 0.017979692667722702, 0.004648773930966854, -0.05600380524992943, -0.0268128402531147, -0.03056718036532402, 0.05314913019537926, -0.006223555188626051, 0.006713630631566048, -0.031860142946243286, 0.0030600442551076412, 0.06686985492706299, 0.03309779241681099, 0.0005621488089673221, 0.03544405475258827, -0.011870423331856728, 0.034951332956552505, 0.03387676179409027, 0.05611410737037659, -0.014752150513231754, 0.007104634772986174, -0.02095322124660015, -0.06383626908063889, 0.04234717786312103, -0.010032097809016705, -0.025241177529096603, -0.04210587590932846, 0.05736982449889183, 0.02784111723303795, -0.01664433814585209, -0.06744498759508133, -0.001172842225059867, -0.04658586531877518, -0.026068691164255142, 0.002323244931176305, -0.015230145305395126, -0.03570597246289253, 0.03765331208705902, -0.010188796557486057, 0.02814522571861744, 0.048632219433784485, 0.0010867275996133685, 0.012409333139657974, -0.00004751051892526448, 0.09234092384576797, 0.07261207699775696, 0.07900351285934448, 0.013285353779792786, 0.09191274642944336, 0.00013300697901286185, -0.036826856434345245, 0.02898396924138069, -0.010659629479050636, -0.010635423474013805, 0.0027522838208824396, 0.022213684394955635, 0.04985756427049637, -0.0315333791077137, 0.05568253621459007, -0.027766171842813492, -0.026074958965182304, -0.0001521598460385576, 0.043199360370635986, 0.01907993108034134, 0.07405176758766174, 0.003686269512400031, -0.003442883025854826, -0.04282368719577789, -0.06943289190530777, 0.03336334601044655, -0.02649119310081005, -0.009016410447657108, 0.029762160032987595, -0.04226415604352951, 0.034948404878377914, 0.00520550599321723, 0.029647914692759514, 0.0709908977150917, -0.03211021423339844, 0.029375890269875526, 0.0016167928697541356, 0.017931148409843445, -0.005756528582423925, 0.00624235300347209, -0.003263875376433134, -0.022246206179261208, -0.017764568328857422, -0.03544478118419647, -0.030215492472052574, -0.007907841354608536, -0.023691970854997635, 0.027128372341394424, -0.04656515270471573, -0.026911551132798195, 0.029574044048786163, 0.01957888901233673, -0.04948321357369423, -0.052473437041044235, -0.034274037927389145, -0.020251354202628136, -0.04441462457180023, -0.0075684054754674435, 0.011619613505899906, 0.0004401853948365897, -0.021916942670941353, -0.024327822029590607, -0.001252477988600731, -0.02298237383365631, 0.024252835661172867, -0.04284641146659851, -0.022389227524399757, 0.0017340655904263258, 0.01915963739156723, 0.015302937477827072, -0.006328802090138197, 0.03168141096830368, 0.009123234078288078, -0.01208348385989666, -0.00013802942703478038, 0.021474266424775124, 0.01792479306459427, -0.00868414156138897, -0.0037240497767925262, -0.09471395611763, -0.022640982642769814, 0.01117918360978365, -0.020911026746034622, -0.0574653223156929, 0.023081554099917412, 0.013716361485421658, 0.009631221182644367, 0.05680500343441963, 0.021376730874180794, -0.0002174468245357275, -0.019929956644773483, -0.013399009592831135, -0.017762448638677597, -0.013966844417154789, 0.05132336914539337, -0.0288077499717474, 0.0852455422282219, 0.04088019207119942, -0.014014506712555885, -0.04706691578030586, -0.02148575894534588, -0.004839414265006781, -0.015913542360067368, -0.023058941587805748, -0.046711515635252, -0.019833585247397423, -0.08221200108528137, -0.011158431880176067, 0.03372291475534439, -0.03235679864883423, -0.040341056883335114, 0.023134710267186165, -0.0063800327479839325, -0.02096709981560707, 0.024781474843621254, -0.03738280385732651, 0.019692791625857353, -0.019015680998563766, -0.01938563771545887, 0.019963303580880165, 0.028304047882556915, -0.0057962690480053425, 0.006875093560665846, 0.013312691822648048, -0.05704646557569504, -0.008640478365123272, -0.020998258143663406, 0.03590209782123566, 0.04548485204577446, 0.006822820287197828, -0.02099788188934326 ]
[ -0.06821874529123306, 0.008039124310016632, -0.03637087345123291, -0.00741201126947999, 0.0611465685069561, 0.016554825007915497, 0.04361797496676445, 0.007819905877113342, -0.007497747428715229, -0.006190854590386152, 0.021005291491746902, -0.001631557708606124, -0.01044410653412342, -0.015195747837424278, 0.06246035546064377, 0.02770284004509449, -0.008366360329091549, -0.08952853828668594, 0.0033019569236785173, 0.03931182250380516, -0.016907470300793648, -0.03549584001302719, -0.017165184020996094, 0.02792602777481079, 0.002871378790587187, -0.019753368571400642, 0.05177206173539162, -0.02007913775742054, -0.0025154247414320707, -0.15393035113811493, 0.027702180668711662, -0.004832886159420013, 0.019270354881882668, -0.0024602909106761217, 0.011185639537870884, 0.07018230110406876, 0.033757757395505905, 0.0014325339579954743, 0.0077170561999082565, 0.03070812299847603, 0.009792787954211235, 0.009743830189108849, -0.0344548337161541, -0.02240193821489811, 0.018538014963269234, 0.05642788112163544, 0.03739942982792854, -0.030213354155421257, -0.06785106658935547, 0.0023828144185245037, -0.0497710146009922, 0.00625019334256649, -0.021919632330536842, 0.005353985354304314, -0.03410695865750313, 0.02395498752593994, 0.04680316150188446, 0.06859391182661057, -0.01439825538545847, 0.014175839722156525, 0.035066891461610794, 0.004881362896412611, -0.14681346714496613, 0.09039522707462311, 0.021893460303544998, 0.052477918565273285, -0.05482577160000801, -0.025010505691170692, -0.06029193848371506, 0.04301617667078972, -0.004187534563243389, 0.0006012305384501815, -0.01922718808054924, -0.006737313233315945, 0.018446939066052437, -0.0006434144452214241, 0.00746125029399991, 0.03159254044294357, 0.037793245166540146, -0.06610634177923203, 0.008956508710980415, 0.051338113844394684, -0.015033721923828125, -0.017931131646037102, -0.02317201904952526, 0.012467268854379654, -0.0086319325491786, 0.018348056823015213, 0.012355049140751362, 0.019059931859374046, 0.0556161105632782, 0.016110660508275032, 0.023681780323386192, -0.017172183841466904, -0.037709757685661316, -0.00590601796284318, -0.01589469239115715, 0.02938549965620041, -0.04915940389037132, 0.43155890703201294, -0.025108737871050835, 0.01238852646201849, 0.057633016258478165, 0.051167380064725876, 0.011905265040695667, -0.014133937656879425, 0.002951414790004492, -0.061712536960840225, 0.03470594808459282, -0.0006905776681378484, 0.04768744856119156, 0.0008709810790605843, 0.08159565925598145, -0.03552268072962761, 0.01277838833630085, 0.02221078611910343, 0.06215876340866089, -0.0009727423312142491, 0.01067417860031128, -0.034782301634550095, -0.053542234003543854, 0.018089963123202324, 0.033323150128126144, 0.0005967918550595641, -0.05272427573800087, -0.05650520697236061, 0.01167025975883007, 0.07213819772005081, 0.03819848224520683, -0.05434789881110191, 0.057640355080366135, -0.08955243974924088, -0.07485310733318329, -0.0023368431720882654, -0.00267003383487463, 0.015037357807159424, 0.040034979581832886, 0.0035719838924705982, 0.037503790110349655, 0.05099773034453392, 0.006980695761740208, -0.03784676268696785, -0.021652095019817352, -0.02209535986185074, -0.06517472118139267, 0.14460143446922302, 0.03512564301490784, -0.04200407490134239, -0.003468985902145505, 0.019972601905465126, 0.0022692105267196894, 0.050249263644218445, -0.03660401701927185, -0.047220874577760696, 0.010556750930845737, 0.004621349740773439, 0.05487772822380066, 0.009413456544280052, -0.04257877171039581, -0.01062336377799511, 0.015514117665588856, -0.015215893276035786, -0.057213734835386276, 0.04707011952996254, 0.07842431217432022, -0.07981834560632706, -0.02073412947356701, -0.01980256475508213, 0.045097220689058304, -0.05703405290842056, -0.015189830213785172, -0.01261303760111332, -0.029959242790937424, -0.003019391093403101, 0.04223621264100075, -0.040536925196647644, -0.03169560059905052, 0.027496488764882088, 0.03283696994185448, 0.039801061153411865, 0.05290808901190758, -0.009295550175011158, -0.030984748154878616, -0.006237239111214876, -0.0506359301507473, -0.061081647872924805, -0.031081628054380417, -0.016370313242077827, -0.015989093109965324, 0.011442557908594608, -0.01064527127891779, -0.02424437552690506, -0.09872318804264069, 0.07106181979179382, -0.031164610758423805, -0.033910270780324936, 0.011276407167315483, 0.0008484917343594134, -0.04020746424794197, 0.006502597592771053, -0.1115427240729332, 0.01889762096107006, -0.06602837145328522, 0.016840608790516853, -0.0531606525182724, 0.0619581937789917, 0.05419612675905228, -0.05381441116333008, 0.14722341299057007, 0.024617576971650124, -0.009429095312952995, -0.03686808422207832, 0.01626635156571865, 0.04574337974190712, 0.004654240794479847, -0.013884449377655983, 0.017391260713338852, 0.01059192605316639, 0.009068177081644535, 0.0008634935948066413, -0.001071828417479992, 0.007239304482936859, -0.027619609609246254, -0.33718767762184143, -0.04523096978664398, -0.06871051341295242, 0.0008833474130369723, 0.010246883146464825, -0.04924207553267479, 0.027217796072363853, 0.008834950625896454, -0.01796223223209381, 0.028730226680636406, 0.02943289279937744, 0.016697993502020836, 0.010480635799467564, -0.059770338237285614, 0.026853518560528755, -0.0005227804067544639, -0.06108979135751724, -0.02715904638171196, -0.06399034708738327, 0.014505518600344658, -0.015313701704144478, 0.03401008993387222, -0.020227773115038872, -0.05501220002770424, 0.029751818627119064, -0.042909905314445496, 0.06601180881261826, 0.0037049392703920603, 0.04323425889015198, 0.008749160915613174, 0.02332153543829918, -0.01068111788481474, 0.027274461463093758, -0.12132655084133148, 0.030040809884667397, -0.019301870837807655, -0.029394833371043205, -0.05895095318555832, -0.0003793413343373686, -0.03903898969292641, -0.05007324740290642, 0.022366657853126526, -0.0766092836856842, -0.03863387182354927, -0.10800822079181671, 0.006629243027418852, -0.02312089316546917, 0.03772367164492607, -0.03946377709507942, 0.06023973971605301, 0.005946390796452761, 0.0009926374768838286, 0.011990904808044434, 0.018171222880482674, -0.029232652857899666, -0.032130006700754166, -0.11418662220239639, 0.02841886132955551, -0.025900106877088547, 0.021469196304678917, 0.02005637437105179, 0.06286443769931793, 0.011887889355421066, -0.05596360191702843, -0.005400755908340216, 0.003120296634733677, 0.0016344367759302258, 0.013204170390963554, 0.054478324949741364, 0.01356394961476326, -0.0063874381594359875, 0.14089186489582062, -0.004665918182581663, -0.03977968543767929, 0.031174812465906143, 0.03141332417726517, -0.02681609056890011, 0.0010531253647059202, -0.03290553018450737, -0.01215623039752245, 0.04420258477330208, -0.01486185658723116, 0.02106928825378418, 0.01828964240849018, -0.0176882054656744, 0.009620624594390392, -0.013618570752441883, -0.04644502326846123, 0.09661964327096939, 0.010091789998114109, -0.02572561614215374, 0.007627979386597872, -0.03015972301363945, -0.07819774001836777, 0.0690816193819046, -0.010371750220656395, -0.21280483901500702, 0.02017386257648468, 0.028746072202920914, 0.06384984403848648, -0.0005262288032099605, 0.04444562643766403, 0.02154366299510002, -0.0522063784301281, 0.009548421017825603, 0.023200437426567078, 0.016381537541747093, 0.03040238469839096, 0.023754898458719254, 0.024032076820731163, 0.03527337312698364, -0.017520621418952942, 0.047905102372169495, -0.01057208701968193, 0.0029777823947370052, 0.0006002620793879032, 0.02502455748617649, -0.010311979800462723, 0.13225214183330536, 0.032560743391513824, -0.011729286052286625, -0.009043264202773571, 0.00788422953337431, -0.020577576011419296, 0.029143135994672775, -0.021135838702321053, 0.013999110087752342, -0.00004457671821000986, 0.004874309524893761, -0.0008671177783980966, 0.025988681241869926, -0.09226272255182266, -0.0482114814221859, 0.011294706724584103, 0.028991512954235077, -0.013535781763494015, 0.01100954320281744, -0.006909490097314119, -0.013631688430905342, 0.03831486776471138, 0.09282117336988449, -0.006552537903189659, -0.0056137219071388245, -0.03586319833993912, -0.03161449730396271, -0.0051907990127801895, -0.035950321704149246, -0.017095379531383514, 0.007761902641505003, 0.0012272365856915712, 0.031023818999528885, 0.05982120335102081, 0.035425346344709396, -0.0346677303314209, 0.0005807494162581861, -0.041473258286714554, -0.011279147118330002, 0.0070507521741092205, 0.10813141614198685, 0.049200087785720825, 0.040708620101213455 ]
[ 0.0056432634592056274, -0.002770216902717948, -0.009402629919350147, 0.011994634754955769, 0.017712604254484177, -0.01053578220307827, 0.015429380349814892, -0.022313592955470085, 0.023538751527667046, 0.031917471438646317, 0.009101610630750656, 0.03852155804634094, 0.01676352322101593, 0.00498071126639843, 0.023588063195347786, -0.0008901124238036573, -0.007162065245211124, -0.023376239463686943, 0.014789244160056114, 0.002425395417958498, -0.03443317860364914, 0.005178602412343025, 0.010579918511211872, -0.0007836705772206187, -0.019816096872091293, 0.02102133259177208, 0.0017252523684874177, 0.005563064478337765, 0.018762361258268356, -0.1458565592765808, -0.009584822691977024, -0.03451695293188095, 0.0024277057964354753, -0.005582216661423445, -0.019485125318169594, 0.000482896895846352, -0.01306226383894682, 0.04067772254347801, 0.010649686679244041, -0.015499855391681194, 0.0008558328845538199, -0.010580934584140778, -0.023258911445736885, -0.004353077616542578, 0.004645709414035082, 0.038745980709791183, 0.0021963478066027164, -0.030790776014328003, -0.037120699882507324, -0.040067173540592194, -0.03154716640710831, -0.020291397348046303, -0.02472706325352192, -0.0015827554743736982, -0.009959031827747822, 0.00877700187265873, 0.01493814866989851, 0.030444154515862465, -0.017057452350854874, 0.016549790278077126, -0.008823617361485958, -0.02729506604373455, -0.06826983392238617, -0.018244434148073196, -0.027227912098169327, 0.0037573860026896, -0.010576329194009304, 0.004708714783191681, -0.03522403538227081, -0.01033368892967701, 0.0056228903122246265, 0.015908923000097275, -0.02782939188182354, -0.03717302158474922, 0.022967107594013214, -0.012113019824028015, 0.006029520649462938, -0.02912924624979496, 0.02477818727493286, -0.016133176162838936, -0.021435445174574852, 0.0576217956840992, 0.016129326075315475, -0.0010320520959794521, 0.007455341052263975, -0.03034268133342266, -0.0013283906737342477, -0.01416818331927061, 0.015814606100320816, 0.017985962331295013, 0.0040024928748607635, 0.015454377047717571, -0.016108335927128792, 0.022379059344530106, -0.07089412212371826, -0.0009281054954044521, -0.014042994938790798, -0.006849492434412241, 0.00005890758984605782, 0.8814610838890076, 0.024172475561499596, 0.026806578040122986, 0.009064674377441406, 0.002126662991940975, 0.014563744887709618, -0.0011515018995851278, 0.022540174424648285, -0.011098941788077354, -0.011085662059485912, -0.014447829686105251, -0.013203071430325508, 0.00838339701294899, 0.01901722513139248, 0.007135631050914526, 0.01349334791302681, 0.009043673053383827, 0.012461226433515549, 0.025000641122460365, -0.027230611070990562, 0.023481275886297226, 0.04082544147968292, -0.004817049950361252, 0.019127659499645233, 0.03025185875594616, -0.008521798066794872, -0.175577312707901, -0.018117740750312805, -8.270876700037496e-33, 0.04313613474369049, 0.009238995611667633, 0.006920583546161652, 0.013997924514114857, -0.001000806107185781, 0.010011134669184685, 0.02176319807767868, 0.0329209603369236, 0.00957497302442789, -0.012489218264818192, -0.004221048671752214, -0.008955546654760838, -0.004963717423379421, -0.043576665222644806, 0.03181329369544983, 0.004369839560240507, -0.03188746050000191, 0.0519072562456131, -0.0014500819379463792, 0.02676037698984146, 0.015882354229688644, 0.035020481795072556, -0.021510574966669083, -0.026928940787911415, 0.004430525004863739, 0.005653289146721363, 0.016828540712594986, 0.027560485526919365, -0.015541854314506054, -0.04557856172323227, -0.03225606679916382, 0.006102719344198704, -0.019112296402454376, -0.031396910548210144, -0.024462638422846794, -0.023388652130961418, -0.02732457034289837, 0.005057730711996555, -0.007092601619660854, -0.039634037762880325, -0.0024570031091570854, 0.003799421712756157, -0.02394973300397396, 0.004570893011987209, -0.010737535543739796, 0.0058335498906672, -0.0070976391434669495, 0.003955969586968422, 0.018198346719145775, 0.004798193462193012, -0.011443043127655983, -0.003676351858302951, 0.012849562801420689, 0.008650661446154118, -0.02028573863208294, 0.0021823830902576447, -0.01854371465742588, 0.019419776275753975, 0.012281452305614948, -0.003836071351543069, 0.011660338379442692, 0.002670695772394538, -0.04522150382399559, 0.028599325567483902, -0.010189690627157688, 0.005225731525570154, -0.0125988544896245, -0.011596896685659885, 0.02651713602244854, -0.008843139745295048, -0.049034345895051956, -0.016476670280098915, -0.0035097929649055004, 0.009147037751972675, -0.018653905019164085, 0.001860579359345138, -0.009795949794352055, 0.03553866967558861, 0.005631723441183567, 0.030314547941088676, 0.019092662259936333, 0.030038395896553993, -0.01689576357603073, -0.024475790560245514, 0.010539183393120766, -0.014717329293489456, 0.005225047934800386, 0.0014345619129016995, -0.00848675612360239, 0.00332311587408185, 0.023352719843387604, 0.036119867116212845, 0.02019224502146244, 0.0028391217347234488, -0.01183824148029089, 8.22162642547392e-33, 0.006922576576471329, -0.020880060270428658, -0.018021220341324806, -0.0025716384407132864, 0.029476705938577652, 0.007148536387830973, 0.010791257955133915, 0.02464582957327366, -0.05544165521860123, 0.006185465957969427, -0.02557009644806385, -0.030392806977033615, 0.01015556138008833, 0.029307840391993523, -0.004434213973581791, -0.024343211203813553, 0.004327534232288599, -0.022583210840821266, 0.012756777927279472, 0.02540506236255169, 0.012284203432500362, 0.01509540993720293, -0.002835374791175127, 0.006074891891330481, 0.024459626525640488, 0.047761380672454834, 0.010860228911042213, 0.031098900362849236, 0.011729796417057514, -0.0050931768491864204, -0.020710939541459084, -0.0025434670969843864, 0.009272348135709763, 0.013385489583015442, -0.0070427581667900085, 0.005466710310429335, -0.017290452495217323, -0.011490311473608017, -0.03134436905384064, 0.004717468284070492, -0.014637690037488937, -0.004453551489859819, 0.02184939943253994, 0.013904478400945663, 0.017985224723815918, -0.005340895149856806, 0.013839572668075562, -0.015839988365769386, -0.013626974076032639, 0.018892571330070496, -0.020501691848039627, -0.01518973521888256, -0.003843707265332341, 0.016221219673752785, 0.009104597382247448, -0.028577901422977448, -0.03935942053794861, -0.005433595273643732, 0.0009566131047904491, 0.008137392811477184, -0.014534734189510345, 0.021796617656946182, -0.02493741735816002, 0.0021047410555183887, -0.01878492347896099, 0.0021848364267498255, -0.00203847442753613, 0.01792929880321026, 0.00022840827296022326, -0.00333390268497169, -0.002961289370432496, -0.0034318063408136368, 0.01359941903501749, 0.013347349129617214, 0.03754795342683792, -0.008513864129781723, -0.011466898024082184, 0.00431617209687829, -0.024284804239869118, 0.02346433699131012, 0.008811364881694317, -0.0026086706202477217, 0.0036475781816989183, -0.01287834346294403, -0.004699429962784052, 0.029226690530776978, -0.00251815770752728, 0.023525435477495193, -0.006695438176393509, -0.015695376321673393, -0.0018440772546455264, -0.024997394531965256, 0.026854513213038445, 0.016554104164242744, -0.01215792540460825, -1.3976714896557496e-8, -0.018222259357571602, -0.00815771333873272, 0.013101703487336636, 0.027212100103497505, 0.008116750046610832, -0.01746974140405655, -0.006970626767724752, -0.029890917241573334, -0.04836861789226532, 0.023983830586075783, 0.03836188092827797, -0.008102760650217533, 0.009305856190621853, 0.010792799293994904, 0.02679961733520031, -0.036046650260686874, -0.01691063679754734, 0.0006213051965460181, 0.041659414768218994, 0.0002747706021182239, 0.029526863247156143, 0.05270903557538986, -0.02492496930062771, -0.004332076292484999, 0.026069801300764084, 0.0015678796917200089, -0.0328078493475914, -0.08100259304046631, -0.022587288171052933, 0.0031308962497860193, 0.011961757205426693, -0.03092389740049839, 0.005325132515281439, 0.009019467048346996, 0.0033045385498553514, -0.02748163603246212, 0.012657038867473602, -0.002206017030403018, 0.00557089876383543, -0.019102750346064568, 0.005505552049726248, 0.0009115822031162679, -0.003031624248251319, -0.026504483073949814, -0.03993219509720802, -0.0056147025898098946, -0.03689142316579819, -0.015943283215165138, -0.003101492300629616, -0.007971450686454773, 0.034428250044584274, -0.005975479260087013, 0.041305702179670334, 0.007349435705691576, 0.03036804310977459, 0.014175361022353172, 0.016909679397940636, 0.00867463182657957, -0.04626362398266792, 0.0026524090208113194, 0.021817944943904877, 0.03815368562936783, -0.011151780374348164, -0.044045865535736084 ]
confirmation-bias-and-loss-of-autonomy
https://markhneedham.com/blog/2011/03/20/confirmation-bias-and-loss-of-autonomy
false
2011-03-29 18:32:14
ThoughtWorks University: Pulling the 'pearls'
[ "thoughtworks-university" ]
[ "ThoughtWorks University" ]
I recently wrote about the http://www.markhneedham.com/blog/2011/03/29/thoughtworks-university-coding-dojo-style/[coding dojo style week that we ran at ThoughtWorks University last week] and I briefly mentioned that we used break out sessions to cover topics ('the pearls') that people didn't totally understand. To describe that in more detail what we did to start with was write the name of each of the 90/180 minute sessions on a card and put it on the wall under a 'To Do' heading:+++<div align="center">+++image::{{<siteurl>}}/uploads/2011/03/twu-topics-todo.jpg[Twu topics todo,271] image::{{<siteurl>}}/uploads/2011/03/twu-topics-done.jpg[Twu topics done,271]+++</div>+++ There were about 10 of those topics and our goal was to cut each of those topics down to a 20 minute introduction that one of the trainers could give when it seemed like a good time. For example we did a brief introduction to 'Build and Deployment' when we first talked about continuous integration and we went through the application architecture just before we started coding our first story. Our goal with this approach was to *encourage a pull based approach to learning over a push based one* where we just presented on different topics without giving the grads a chance to properly see if they understood the topic. The reason that we did such short presentations is that we didn't feel you can learn that much from a presenation so we wanted to give just enough information that the grads would be able to go and explore the topic more on their own. To push this further we asked the grads to add any other topics they wanted us to talk about to the board so that we could cover those when we got the chance. While we were doing these introductory presentations http://twitter.com/frankmt[Frankie] and http://twitter.com/jimbarritt[Jim] came up with the idea of asking the grads to rate themselves 1-5 on their current understanding of the topic and to also give a time limit for the presentation. We repeated the rating afterwards to see if the introduction had actually been useful and then spent time discussing the topic further if necessary. This approach worked pretty well for helping avoid the http://www.markhneedham.com/blog/2011/03/23/twu-brain-dumping/[brain dumping] that I wrote about last week and the rating system has helped give us an idea of which topics are considered more difficult by the group. Hopefully within the next few weeks we'll start to see the grads running their own sessions which will http://www.markhneedham.com/blog/2009/04/21/learning-through-teaching/[take their learning even further].
null
null
[ 0.030815714970231056, -0.0071718269027769566, -0.005674025509506464, 0.04140099510550499, 0.0831121951341629, 0.006105845328420401, 0.027372730895876884, 0.04738815873861313, 0.025309350341558456, -0.010261261835694313, -0.027565401047468185, -0.013408072292804718, -0.043447189033031464, 0.004493867512792349, -0.02380569651722908, 0.05590422824025154, 0.046797432005405426, -0.008575244806706905, 0.03654240071773529, 0.010196498595178127, 0.020824605599045753, 0.06398947536945343, 0.027381863445043564, 0.027664819732308388, 0.055921975523233414, 0.006510051898658276, 0.01378227025270462, -0.011957830749452114, -0.06181275099515915, -0.007034108974039555, 0.027249643579125404, -0.007696998305618763, 0.015166329219937325, 0.006196771282702684, 0.023821089416742325, -0.023281272500753403, -0.007509047165513039, 0.037173088639974594, 0.013932106085121632, 0.016475068405270576, -0.07148244231939316, 0.029420586302876472, -0.002765374956652522, -0.002566026523709297, -0.05319836363196373, 0.005925729870796204, -0.03573895990848541, 0.0025520087219774723, -0.0023222663439810276, -0.022990118712186813, -0.07859782874584198, 0.03240359202027321, 0.01892162300646305, -0.004893928300589323, -0.010411398485302925, 0.04700484871864319, 0.02968798764050007, -0.0691237822175026, 0.00813800748437643, -0.04519965127110481, -0.011544661596417427, -0.009860195219516754, -0.006537836976349354, 0.031187813729047775, 0.026186643168330193, -0.04905245453119278, 0.002462666016072035, 0.04753289744257927, -0.03488025814294815, -0.005911215208470821, -0.0037622028030455112, 0.022176852449774742, -0.008997826837003231, -0.0211837999522686, 0.0064931404776871204, -0.05018303915858269, 0.0025410351809114218, 0.06665576249361038, 0.020597990602254868, 0.01343563199043274, -0.03417946770787239, 0.02335391566157341, 0.005512609146535397, 0.034344058483839035, -0.021329721435904503, -0.045291632413864136, -0.01014570239931345, -0.015253977850079536, -0.05968094989657402, 0.06991321593523026, 0.0008162935846485198, -0.03167681768536568, 0.02368653565645218, 0.03949574753642082, 0.014062506146728992, 0.02581869438290596, 0.018332628533244133, -0.002464842749759555, -0.010564903728663921, -0.019987739622592926, -0.03506838157773018, -0.017337245866656303, 0.026128867641091347, 0.018702413886785507, -0.07861221581697464, -0.01147360447794199, -0.019200874492526054, -0.022106904536485672, 0.010696384124457836, 0.021278783679008484, -0.02681843191385269, 0.01636301912367344, -0.011670280247926712, 0.006133576855063438, -0.07068978995084763, 0.06894753128290176, 0.011624081060290337, -0.04998977482318878, -0.03419193625450134, -0.007697524968534708, 0.016856763511896133, 0.031579457223415375, -0.001611289568245411, 0.08586078882217407, 0.02312871441245079, 0.016417037695646286, -0.02637908235192299, 0.045297056436538696, -0.03424307331442833, -0.05965113267302513, -0.006169437430799007, 0.038602910935878754, -0.0026546085719019175, 0.006845719181001186, 0.005764421541243792, -0.01563362404704094, 0.01138730812817812, -0.006225528661161661, 0.026906240731477737, 0.04062410071492195, -0.004311583936214447, -0.04014531150460243, 0.005696294829249382, -0.0043607535772025585, 0.014964815229177475, -0.012419009581208229, -0.008809838443994522, -0.02733376994729042, -0.03925628960132599, -0.01175728626549244, -0.0035003162920475006, -0.008893760852515697, 0.0033699877094477415, -0.04305022209882736, 0.026818040758371353, 0.08653026819229126, 0.038227252662181854, 0.014157271943986416, -0.023671263828873634, 0.030377596616744995, 0.01740090921521187, 0.04330173134803772, 0.009859208948910236, 0.041356414556503296, 0.007106048054993153, -0.010331433266401291, -0.002513689687475562, 0.02582358382642269, -0.012436950579285622, 0.008100886829197407, -0.061229851096868515, -0.03723941370844841, 0.052097875624895096, -0.03832578659057617, -0.03991542011499405, 0.04616864025592804, 0.08011496812105179, 0.036078620702028275, 0.02508293278515339, 0.003817572956904769, -0.08533856272697449, 0.014521822333335876, 0.029264088720083237, 0.026077859103679657, 0.03444511443376541, -0.05049297213554382, 0.05839657783508301, 0.03892836719751358, -0.002284570597112179, 0.0459330752491951, -0.07339678704738617, -0.0814283937215805, -0.01775813102722168, -0.017924116924405098, 0.05426139011979103, -0.009894825518131256, 0.024591848254203796, 0.07667382806539536, 0.007419918198138475, 0.05631322041153908, 0.042146895080804825, -0.0012617666507139802, 0.03361837938427925, -0.04188481718301773, -0.02699827402830124, 0.05946438014507294, 0.035472940653562546, -0.01874694600701332, -0.041135914623737335, 0.012657647021114826, -0.024631166830658913, -0.011780873872339725, 0.039991896599531174, 0.0003500971070025116, 0.020049337297677994, -0.005113653838634491, 0.06913843005895615, -0.03243184834718704, 0.04360462352633476, -0.04300786182284355, 0.0323544442653656, -0.0048681749030947685, -0.022067522630095482, 0.005921377334743738, -0.0028464996721595526, 0.1087706908583641, 0.0385417640209198, -0.04969239979982376, -0.0300610214471817, 0.012701379135251045, 0.006489141844213009, -0.04508277773857117, -0.012824490666389465, -0.003373820800334215, 0.024732142686843872, 0.008771063759922981, -0.060725580900907516, -0.05179618299007416, 0.028545653447508812, -0.06310585141181946, 0.03576979041099548, 0.06406509876251221, -0.011878260411322117, 0.05474391579627991, -0.020474601536989212, -0.0033011578489094973, 0.005392731167376041, -0.003249173751100898, -0.03300582617521286, 0.013638850301504135, 0.006077313330024481, -0.014887130819261074, 0.03798319399356842, -0.016686292365193367, -0.02525479905307293, -0.02065211720764637, -0.03477596119046211, 0.004296399187296629, 0.04326355457305908, 0.047545064240694046, -0.005336323287338018, 0.0819171667098999, -0.002824503695592284, 0.03718369081616402, -0.00017220441077370197, -0.04853728413581848, -0.024982335045933723, -0.025009190663695335, -0.000017626352928346023, 0.011048437096178532, 0.012157558463513851, 0.010361604392528534, 0.031416576355695724, -0.00973572675138712, -0.025128716602921486, -0.016900276765227318, 0.038616497069597244, -0.011006328277289867, -0.02249099686741829, -0.029099619016051292, -0.028045063838362694, 0.0441252663731575, -0.04919398948550224, -0.016650047153234482, 0.021439261734485626, -0.07184635102748871, 0.03272843733429909, -0.05883979797363281, -0.05310113728046417, 0.013775231316685677, 0.01014207024127245, 0.04648265987634659, 0.008848142810165882, 0.0050932252779603004, 0.0894068032503128, 0.00824369303882122, 0.021474435925483704, -0.021615037694573402, -0.01793644018471241, 0.04471823573112488, -0.016690347343683243, 0.002058926969766617, 0.04955665394663811, 0.009352285414934158, 0.003945982549339533, -0.046684153378009796, 0.048259858042001724, -0.02711307629942894, -0.29412010312080383, 0.0415010042488575, -0.0017148877959698439, -0.027379842475056648, 0.026942098513245583, -0.033579420298337936, 0.018020467832684517, -0.052376314997673035, -0.028039652854204178, -0.00292532192543149, -0.03499610349535942, -0.04149314761161804, -0.03275981917977333, 0.04763246700167656, -0.002806168282404542, 0.033936914056539536, 0.015375060960650444, -0.03504487872123718, 0.01628597266972065, 0.05996008217334747, -0.004456336610019207, -0.06812763959169388, -0.012346522882580757, 0.04362482950091362, 0.040218085050582886, 0.05984048545360565, -0.09004347026348114, 0.03353461995720863, -0.04411306977272034, -0.002356759738177061, 0.030440879985690117, -0.0005473183700814843, 0.011195750907063484, 0.0003547669621184468, -0.022506875917315483, -0.00916097592562437, 0.07587364315986633, -0.004927339963614941, 0.004127394873648882, -0.0034122245851904154, -0.01400200929492712, -0.02984071709215641, -0.021648699417710304, 0.021432319656014442, 0.06450556218624115, 0.013349324464797974, -0.06894466280937195, -0.020772406831383705, -0.021368663758039474, 0.07059244066476822, -0.023701136931777, -0.01677963323891163, -0.01530181709676981, 0.03429552540183067, -0.018110547214746475, -0.02190563455224037, -0.013756209053099155, -0.008712004870176315, -0.04470202699303627, -0.0470428392291069, -0.012737046927213669, -0.03801868483424187, -0.005199381150305271, -0.07154194265604019, 0.00047257219557650387, -0.07143200933933258, -0.0517771951854229, 0.01844038814306259, 0.08137186616659164, 0.02979668602347374, -0.036421895027160645, 0.04024587571620941, -0.020377760753035545, -0.10784287750720978, 0.007704612798988819, 0.005486888810992241, -0.02563440427184105, -0.0011770527344197035, 0.025930408388376236, 0.03793112188577652, -0.02296694926917553, -0.04163274168968201, 0.0420009009540081, 0.012227404862642288, 0.017641475424170494, -0.023215757682919502, 0.04431445151567459, 0.009622981771826744, -0.011211026459932327, 0.02288873679935932, 0.07333431392908096, 0.015388972125947475, -0.041127756237983704, -0.020780248567461967, 0.03757885470986366, 0.02674279175698757, 0.011329971253871918, -0.007866781204938889, 0.0073615629225969315, 0.033437736332416534, 0.007137666922062635, -0.043232664465904236, 0.009188808500766754, -0.03109976276755333, -0.017928417772054672, -0.003820923389866948, -0.05320794880390167, 0.022902579978108406, 0.0256149023771286, 0.03416110575199127, -0.009788323193788528, -0.046594440937042236, 0.006812427658587694, -0.03772512823343277, -0.02275615930557251, -0.01190956775099039, 0.008280252106487751, 0.033985238522291183, -0.0031680481042712927, -0.017834166064858437, -0.04626946151256561, 0.01593487709760666, 0.0005776795442216098, -0.009246555157005787, -0.03748270496726036, -0.007273816503584385, -0.013252509757876396, -0.028459936380386353, 0.001369177014566958, 0.018312282860279083, 0.00047590406029485166, -0.007054583635181189, 0.01865263283252716, -0.02493809536099434, 0.02074580080807209, -0.022164054214954376, -0.048785798251628876, -0.04945126548409462, 0.012636849656701088, 0.013915110379457474, -0.021018365398049355, 0.044592637568712234, -0.0013641457771882415, 0.008937068283557892, 0.0565197616815567, 0.014911230653524399, -0.0029669629875570536, -0.007857229560613632, 0.00480530085042119, -0.0002087155298795551, 0.0011537293903529644, -0.0838686004281044, 0.005776682402938604, -0.05146031826734543, -0.017095057293772697, -0.005484729539602995, 0.021518632769584656, -0.014245891012251377, -0.013120356947183609, -0.0040726508013904095, 0.007495555095374584, -0.04914192855358124, -0.051396097987890244, -0.021413281559944153, 0.008296884596347809, 0.05658620595932007, -0.008614369668066502, 0.026053108274936676, -0.010164345614612103, -0.0371059812605381, 0.019427556544542313, 0.0016387255163863301, -0.052590951323509216, -0.012860641814768314, 0.020070884376764297, -0.022723810747265816, 0.01227075420320034, 0.007480337750166655, 0.038186412304639816, 0.022611327469348907, 0.004286895971745253, -0.04666250944137573, 0.005027221981436014, 0.01911643147468567, 0.0569482147693634, 0.0401158407330513, -0.010912720113992691, 0.010790224187076092, -0.032540470361709595, -0.0005288243992254138, -0.03274914249777794, -0.013925469480454922, 0.00032745834323577583, 0.01677841693162918, -0.03368622437119484, -0.07259257137775421, 0.062178827822208405, 0.027843741700053215, 0.0012979879975318909, 0.02295001782476902, -0.0010211183689534664, 0.008397064171731472, -0.04294007644057274, 0.0539199523627758, 0.05483463779091835, -0.05971376225352287, 0.014099875465035439, -0.019424768164753914, 0.015783032402396202, -0.019547879695892334, -0.01004689559340477, -0.03284546732902527, -0.016483837738633156, -0.03199804946780205, 0.006755390670150518, -0.0766376256942749, -0.029583817347884178, -0.036639485508203506, 0.03870756924152374, -0.017733832821249962, 0.013953104615211487, -0.01253606379032135, 0.007160752546042204, -0.006527825724333525, -0.039465952664613724, 0.024221856147050858, -0.06323524564504623, -0.009834823198616505, -0.005018164869397879, -0.051489342004060745, 0.0010058816988021135, -0.02183500863611698, 0.009535359218716621, 0.03628583624958992, -0.033302828669548035, -0.005156110040843487, -0.02763746678829193, 0.00042347583803348243, 0.02099163457751274, 0.04671024531126022, -0.0025777064729481936, -0.020402656868100166, -0.06288395822048187, -0.009701254777610302, -0.03931775316596031, 0.027195924893021584, -0.03456339240074158, 0.015881052240729332, 0.047213029116392136, 0.046988774091005325, 0.03537405654788017, 0.04098327457904816, -0.030587924644351006, -0.02596951276063919, 0.03846437484025955, -0.08018713444471359, -0.01729847490787506, -0.04689154773950577, -0.06622018665075302, 0.011026282794773579, -0.0023660813458263874, 0.041284020990133286, -0.03819402679800987, 0.05100151151418686, 0.008849238976836205, 0.025421004742383957, 0.04221812263131142, -0.016171179711818695, 0.023941587656736374, -0.045177675783634186, 0.0036768545396625996, -0.08097708970308304, -0.028249887749552727, 0.036795128136873245, 0.016260424628853798, -0.004866806324571371, 0.007507404312491417, -0.04253081977367401, 0.06650038808584213, -0.060497574508190155, -0.028861500322818756, 0.0352339930832386, -0.02445845678448677, -0.026102028787136078, 0.020226700231432915, -0.06321588903665543, 0.04138478636741638, 0.027847278863191605, -0.0487833246588707, -0.006296259816735983, -0.031847961246967316, 0.046302326023578644, -0.004978494253009558, 0.02571197785437107, -0.031023534014821053, -0.024641359224915504, 0.07775965332984924, 0.006924980785697699, -0.0010220626136288047, 0.04718181863427162, -0.0036701068747788668, 0.03357892110943794, 0.03283536806702614, 0.01582723669707775, 0.004442131612449884, -0.005143576767295599, -0.008512250147759914, -0.06077715381979942, 0.025317901745438576, 0.008446657098829746, -0.03287200257182121, -0.03151416778564453, 0.06772663444280624, 0.0296473428606987, -0.03615386411547661, -0.05299204960465431, 0.0342491939663887, -0.060923341661691666, 0.0005419549997895956, -0.044654104858636856, 0.0065552545711398125, -0.04121144488453865, 0.05870760977268219, 0.0069161332212388515, 0.012964374385774136, 0.06437845528125763, -0.015632959082722664, -0.03602026030421257, -0.031055858358740807, 0.07235369831323624, 0.0671350285410881, 0.07363339513540268, 0.0009382881689816713, 0.07555734366178513, -0.027349235489964485, -0.048590242862701416, 0.010519543662667274, -0.009527132846415043, -0.010254639200866222, -0.021671440452337265, 0.03231402114033699, 0.08185770362615585, -0.015539356507360935, 0.058075737208127975, -0.0143408989533782, -0.015898404642939568, 0.010032692924141884, 0.04227631539106369, 0.017273327335715294, 0.04449113458395004, 0.0134309446439147, 0.005689182784408331, -0.00551102589815855, -0.055027104914188385, 0.02827097848057747, -0.03949578106403351, -0.012694125063717365, 0.03288697078824043, -0.010224269703030586, 0.026099015027284622, -0.0018854946829378605, 0.030054040253162384, 0.07906851172447205, -0.05907939001917839, 0.015665659680962563, -0.011495614424347878, 0.02591995894908905, 0.009296929463744164, 0.03199860081076622, -0.014775414019823074, -0.015861770138144493, 0.012080361135303974, -0.027376018464565277, -0.030388282611966133, -0.010711265727877617, -0.011775380931794643, 0.03881713002920151, -0.03384041413664818, 0.01983535848557949, 0.029896944761276245, 0.009475601837038994, -0.032060883939266205, -0.06513271480798721, -0.027218060567975044, -0.04514090344309807, -0.04558158665895462, -0.0091753164306283, 0.03805786371231079, -0.004687338136136532, -0.02689743973314762, -0.017367837950587273, -0.04184214770793915, -0.013819528743624687, 0.05318514630198479, -0.045666079968214035, -0.016016505658626556, 0.004290704149752855, 0.013916605152189732, 0.028601152822375298, 0.010439617559313774, 0.04672234132885933, -0.019151877611875534, -0.006358049809932709, -0.03358016535639763, 0.018685806542634964, 0.02052929624915123, 0.003017676994204521, 0.0028862408362329006, -0.09835649281740189, 0.02514132671058178, 0.026682758703827858, 0.0029692919924855232, -0.0522293895483017, 0.04109017550945282, 0.02582908794283867, 0.03187054023146629, 0.06428278237581253, -0.008702229708433151, 0.0132252536714077, -0.02921258471906185, -0.014482241123914719, -0.01663278415799141, 0.007891307584941387, 0.04330827668309212, -0.019233183935284615, 0.08963101357221603, 0.016473200172185898, -0.014381222426891327, -0.03311862051486969, -0.020962879061698914, 0.01259656436741352, -0.006364232860505581, -0.016339438036084175, -0.01729346066713333, -0.0419318862259388, -0.08035551756620407, -0.03584693372249603, 0.027076486498117447, -0.007631327025592327, -0.03707108646631241, 0.03906060382723808, 0.008231167681515217, -0.03018994815647602, 0.008737429045140743, -0.05775010585784912, 0.026833603158593178, -0.013289558701217175, -0.004016823135316372, -0.0017850613221526146, -0.025241563096642494, 0.000036461664421949536, -0.008103720843791962, 0.008484716527163982, -0.046154607087373734, -0.015374276787042618, 0.007813837379217148, 0.010820421390235424, 0.04659570753574371, 0.009906874038279057, -0.021123213693499565 ]
[ -0.08976048231124878, 0.014070379547774792, -0.009165600873529911, -0.04101678356528282, 0.04293049871921539, -0.02318304218351841, -0.04074816778302193, 0.016658369451761246, -0.011436439119279385, -0.027838464826345444, 0.016569819301366806, -0.0040642814710736275, -0.015663111582398415, -0.0032971117179840803, 0.0986582562327385, 0.013456552289426327, -0.016372233629226685, -0.05952633172273636, 0.006564647424966097, 0.02575286291539669, 0.010167457163333893, -0.025499580428004265, -0.03843577951192856, -0.01119508221745491, 0.014747942797839642, 0.02474474161863327, 0.028261831030249596, -0.06063646823167801, 0.02325090393424034, -0.16607972979545593, -0.006447888445109129, 0.013863184489309788, 0.05627066269516945, 0.010343399830162525, 0.010001403279602528, 0.060366831719875336, 0.020938275381922722, 0.015083787962794304, -0.03387806937098503, 0.042450785636901855, 0.012999464757740498, 0.005226380191743374, -0.046625878661870956, -0.03788016736507416, 0.03011288493871689, -0.021664973348379135, -0.0064172749407589436, -0.0784761905670166, -0.023060595616698265, 0.0176130011677742, -0.05775705352425575, -0.05979514494538307, -0.019492290914058685, -0.042694851756095886, -0.03927882760763168, 0.02239770069718361, 0.034104567021131516, 0.06613343209028244, -0.012820915319025517, 0.021846819669008255, 0.016490640118718147, -0.015831423923373222, -0.152578666806221, 0.10399717092514038, 0.03305773064494133, 0.043570227921009064, -0.047412723302841187, 0.0204542838037014, 0.010585582815110683, 0.10676606744527817, 0.002691068686544895, -0.039680901914834976, -0.013426157645881176, 0.04269837960600853, 0.00919094868004322, 0.022384844720363617, 0.009080944582819939, 0.02442343346774578, 0.03324992582201958, -0.05293302610516548, -0.04008086770772934, -0.013960578478872776, 0.015042944811284542, -0.009730634279549122, -0.0365113765001297, 0.004498284310102463, -0.0046913474798202515, 0.0421588271856308, 0.009554216638207436, 0.00310729187913239, 0.05864395946264267, -0.030488479882478714, 0.0026714869309216738, -0.004045136272907257, -0.0814155638217926, -0.04380139708518982, -0.0023739843163639307, 0.03834345191717148, -0.038354769349098206, 0.44458937644958496, -0.03311464935541153, -0.012385387904942036, 0.09179694950580597, 0.026901444420218468, -0.006113337352871895, -0.018574055284261703, 0.037895191460847855, -0.054313741624355316, 0.022309202700853348, -0.01665063574910164, 0.015923721715807915, 0.007576901465654373, 0.06303419917821884, -0.04242363199591637, 0.02490811236202717, 0.04327094927430153, 0.03233605623245239, 0.015964528545737267, 0.00947318971157074, 0.003659822279587388, -0.005181352142244577, 0.010244767181575298, 0.020326239988207817, -0.02949007786810398, -0.043432511389255524, -0.02866639569401741, 0.031886987388134, 0.06072724610567093, 0.03704936057329178, 0.011825986206531525, 0.06681525707244873, -0.032836079597473145, -0.05315742269158363, 0.003502362407743931, -0.007370187435299158, 0.0017680140445008874, 0.04066426306962967, -0.012736530043184757, 0.007382128853350878, 0.0603514090180397, 0.04333239048719406, 0.025163711979985237, 0.018705233931541443, -0.028507040813565254, -0.054974474012851715, 0.13628798723220825, -0.009220882318913937, -0.009918339550495148, -0.002523992443457246, -0.020825713872909546, 0.011687271296977997, 0.018584294244647026, -0.018132083117961884, -0.06734719127416611, 0.02447938732802868, -0.01954379864037037, 0.0928499698638916, 0.0029585983138531446, -0.030768556520342827, -0.0034230565652251244, -0.020097844302654266, -0.033135946840047836, -0.027085943147540092, 0.023877207189798355, 0.07474632561206818, -0.08685651421546936, -0.0028097182512283325, -0.002294090809300542, 0.035005033016204834, -0.08788914233446121, -0.006788465194404125, 0.008664137683808804, -0.02308853343129158, 0.00288305408321321, 0.07899968326091766, -0.019878452643752098, -0.014205384999513626, 0.016634058207273483, 0.04709609970450401, 0.02266746759414673, 0.028995830565690994, -0.010409008711576462, -0.031032100319862366, -0.008523736149072647, -0.03374061360955238, -0.0594712495803833, -0.02393380180001259, -0.0383368581533432, -0.03949148952960968, 0.004275243729352951, -0.041922781616449356, -0.022840086370706558, -0.09756303578615189, 0.0627845898270607, -0.03553808107972145, -0.02995501644909382, 0.05134198069572449, -0.04896646738052368, -0.03522667661309242, -0.005911362357437611, -0.06339207291603088, 0.01572699472308159, -0.05300375446677208, 0.04176686331629753, -0.04289538413286209, 0.03341341391205788, 0.06035999208688736, -0.015936732292175293, 0.09408529847860336, 0.05797642096877098, -0.04967622458934784, -0.04393241927027702, 0.032551027834415436, 0.01018298976123333, 0.014306251890957355, -0.031201211735606194, 0.006625555921345949, 0.02189749851822853, -0.011491556651890278, 0.007283841725438833, -0.0083941500633955, 0.002892439253628254, -0.019075842574238777, -0.34066513180732727, -0.03139444440603256, -0.011525378562510014, -0.015830274671316147, 0.012296671979129314, -0.03920283168554306, 0.04938386380672455, -0.02579495683312416, 0.001291346037760377, 0.027499105781316757, 0.06757649779319763, 0.011411333456635475, 0.01412215456366539, -0.09063468873500824, 0.007207097020000219, -0.009902478195726871, -0.02451176941394806, -0.008491843938827515, -0.0072117033414542675, 0.003334978362545371, 0.01808963157236576, 0.008465069346129894, 0.0077608064748346806, -0.06131469085812569, -0.03043195605278015, -0.043091289699077606, 0.09469734132289886, 0.013964361511170864, 0.08794865757226944, -0.02754339762032032, 0.03482426330447197, 0.00040326325688511133, 0.03119630366563797, -0.1205374225974083, 0.029763130471110344, -0.023436622694134712, 0.007294659968465567, -0.03091067261993885, 0.04185531288385391, -0.05804131552577019, -0.03897583857178688, 0.038443099707365036, -0.05004223436117172, -0.06159457936882973, -0.06617160141468048, 0.008010895922780037, -0.03790102154016495, -0.042684998363256454, -0.026378925889730453, 0.05500400438904762, 0.017260277643799782, -0.030608417466282845, 0.022244205698370934, 0.0031083666253834963, -0.040412623435258865, -0.022305360063910484, -0.0958818644285202, 0.0056841191835701466, -0.0026184699963778257, 0.01041139755398035, 0.013416491448879242, 0.05044841393828392, 0.024850891903042793, -0.05635726824402809, -0.02925635129213333, 0.0171637125313282, 0.01645447500050068, 0.007491688709706068, 0.04237661138176918, -0.027971185743808746, -0.0024107585195451975, 0.0602731816470623, 0.019617047160863876, 0.0009821697603911161, 0.02851620502769947, 0.014947089366614819, -0.004773631691932678, -0.00020872904860880226, 0.000246085983235389, -0.0013824219349771738, 0.03265056759119034, -0.019260074943304062, 0.03248942270874977, -0.03522639349102974, -0.00952184572815895, 0.04833202809095383, 0.02438441477715969, -0.05248638987541199, 0.06134772673249245, 0.04260099306702614, -0.0249750055372715, 0.014692545868456364, -0.020216122269630432, -0.021642131730914116, 0.05973018333315849, -0.011498790234327316, -0.25503668189048767, 0.01098632626235485, 0.05655556544661522, 0.030273817479610443, 0.002120662946254015, 0.03217129036784172, 0.05170024186372757, -0.06387277692556381, -0.003954649902880192, 0.012563359923660755, 0.014938983134925365, 0.014363035559654236, -0.017920972779393196, -0.01779431477189064, 0.03661065548658371, 0.014867662452161312, 0.04334581270813942, -0.008557152934372425, 0.025508631020784378, 0.004674707539379597, -0.0052540358155965805, -0.016718896105885506, 0.14925386011600494, 0.008263299241662025, 0.04572921618819237, 0.0012602894566953182, -0.006321723107248545, -0.002203592099249363, 0.09246453642845154, -0.006237570196390152, 0.014712095260620117, -0.01912318542599678, 0.036013029515743256, -0.0068421256728470325, 0.013796260580420494, -0.06742578744888306, -0.031012192368507385, 0.03915774077177048, 0.031014110893011093, 0.016150344163179398, 0.01192475389689207, -0.03398077189922333, -0.03603583574295044, 0.014568839222192764, 0.060120049864053726, 0.02850164659321308, 0.014217901974916458, -0.043867144733667374, -0.05384374409914017, -0.00028419477166607976, -0.01394170243293047, -0.03154938295483589, -0.0009030899964272976, -0.00007658566028112546, 0.01261914148926735, 0.08561089634895325, 0.023266924545168877, -0.022346219047904015, -0.017694149166345596, -0.014217879623174667, -0.014364157803356647, -0.0198874082416296, 0.09107846766710281, 0.036190468817949295, 0.037931740283966064 ]
[ -0.01011092308908701, 0.013658459298312664, 0.038260869681835175, 0.011097081936895847, 0.01249880064278841, 0.00708418246358633, -0.012457613833248615, 0.026881631463766098, 0.007621283642947674, -0.015560124069452286, -0.007306342478841543, 0.014246976934373379, 0.017943864688277245, 0.0039964159950613976, 0.035134635865688324, -0.011732104234397411, 0.010432002134621143, -0.02386958710849285, 0.019161833450198174, 0.016921289265155792, -0.0014174222014844418, 0.01327507384121418, -0.007286376785486937, -0.007609792519360781, -0.015157017856836319, 0.017605796456336975, -0.03154631331562996, -0.03068545274436474, 0.03113291785120964, -0.13583089411258698, -0.017204303294420242, -0.01856769062578678, -0.0034118860494345427, 0.010773777030408382, -0.027642009779810905, 0.007682709023356438, 0.006753728725016117, 0.039223577827215195, 0.01356393564492464, 0.016792232170701027, -0.027411049231886864, -0.014049654826521873, 0.020510632544755936, 0.01770390383899212, 0.020388342440128326, -0.020389610901474953, 0.003818109631538391, -0.040045157074928284, -0.025596195831894875, 0.004597621038556099, -0.03148053586483002, -0.011030859313905239, -0.012741509824991226, 0.003974515479058027, -0.01275066751986742, -0.008845638483762741, 0.004168578423559666, -0.007397513370960951, -0.006480150856077671, -0.02022128365933895, -0.0048693642020225525, -0.009566057473421097, -0.030054667964577675, -0.012602039612829685, -0.007897757925093174, -0.026757322251796722, -0.018005376681685448, 0.0230467077344656, -0.007592812180519104, 0.013770201243460178, 0.004958214703947306, 0.023403391242027283, -0.0216403566300869, -0.028990885242819786, 0.009227401576936245, -0.004195215180516243, -0.0019295878009870648, -0.004852967336773872, 0.007330961059778929, -0.02688964270055294, -0.024699470028281212, 0.016514955088496208, 0.020451901480555534, -0.001684562535956502, -0.001697295461781323, -0.01435808651149273, 0.002633050549775362, 0.006321438588202, 0.0075511569157242775, -0.00355304847471416, -0.014977455139160156, 0.004890314303338528, -0.02115166001021862, 0.022053759545087814, -0.08637657016515732, -0.01122299488633871, -0.043826017528772354, -0.0032759581226855516, -0.008527814410626888, 0.8724622130393982, -0.0076246242970228195, 0.011614646762609482, 0.043692514300346375, -0.004858874250203371, 0.01375157106667757, -0.01003885269165039, 0.005726377014070749, 0.0047553423792123795, 0.011047202162444592, -0.029019443318247795, 0.0385325625538826, 0.022186368703842163, 0.014740844257175922, 0.00953719113022089, 0.029221057891845703, 0.015336506068706512, 0.002340033883228898, -0.01911137066781521, -0.005322339478880167, 0.030976640060544014, 0.03413427248597145, 0.009925371035933495, 0.004677015822380781, -0.0004590472381096333, -0.02976527437567711, -0.20045369863510132, 0.028913583606481552, -7.577113893177598e-33, 0.030835669487714767, -0.03674157336354256, -0.003327136393636465, 0.01527527254074812, -0.0038279497530311346, 0.0008063304703682661, 0.00019892796990461648, 0.008927600458264351, -0.03125893697142601, -0.01417061872780323, -0.00805625319480896, 0.0017894965130835772, -0.007477730978280306, -0.021753650158643723, 0.02925415337085724, -0.024242307990789413, -0.020614471286535263, 0.04101619869470596, 0.002296845195814967, 0.032838124781847, 0.030607599765062332, 0.012037300504744053, -0.01663224957883358, 0.006028934847563505, -0.0018905550241470337, 0.031162366271018982, 0.021982084959745407, 0.008531584404408932, 0.007168082520365715, -0.04520227387547493, -0.00860546063631773, 0.012339611537754536, -0.012533959001302719, -0.02538883686065674, 0.0024758228100836277, -0.04497247189283371, -0.0031660315580666065, 0.02400381490588188, -0.009200820699334145, -0.034673720598220825, -0.02219761721789837, 0.0020455564372241497, -0.03259910270571709, -0.012436713092029095, 0.00048685696674510837, 0.013105255551636219, 0.013803906738758087, 0.001473856857046485, -0.001662194263190031, -0.026504212990403175, -0.002681472571566701, 0.003807562869042158, -0.003599255345761776, 0.01545324269682169, -0.01001044362783432, -0.01110074669122696, 0.013624505139887333, 0.022284196689724922, 0.0033309427089989185, 0.021416116505861282, -0.004540710244327784, -0.002576295053586364, -0.03627162054181099, 0.03471722826361656, -0.04255439713597298, -0.003342684358358383, 0.005518867634236813, 0.01610763557255268, 0.008345129899680614, -0.010394839569926262, -0.0562170147895813, 0.028610052540898323, -0.008670296519994736, -0.021518167108297348, 0.00041578628588467836, -0.008687998168170452, 0.00787530466914177, 0.027522966265678406, -0.016247263178229332, 0.05603205785155296, -0.00864090584218502, -0.02970840223133564, -0.017134753987193108, -0.050934240221977234, -0.003659783396869898, 0.013515696860849857, 0.040514301508665085, -0.0200263112783432, -0.02414989471435547, 0.007785384077578783, 0.037289444357156754, 0.03477281332015991, 0.005174756515771151, -0.007776591926813126, 0.0001899040798889473, 7.894572305664481e-33, 0.0032760731410235167, -0.01940252259373665, -0.011231078766286373, 0.0016950808931142092, 0.03561093658208847, 0.0004323123721405864, 0.007532930467277765, 0.011727375909686089, -0.05426192656159401, -0.0038220053538680077, -0.014897760935127735, -0.008113526739180088, -0.043279655277729034, 0.032461341470479965, 0.02646002359688282, -0.025663860142230988, 0.03759060427546501, -0.010242900811135769, -0.01014459878206253, 0.01198542769998312, 0.02007434517145157, 0.007092285435646772, -0.00981952715665102, -0.0028146840631961823, -0.0017309433314949274, 0.0845506489276886, -0.007402494549751282, 0.025848781690001488, 0.0029067755676805973, 0.014105179347097874, -0.011927923187613487, -0.03626765310764313, 0.014114067889750004, 0.025703562423586845, -0.01673169434070587, 0.02634984627366066, -0.023736434057354927, 0.000015747054931125604, -0.0038390429690480232, -0.006460059899836779, 0.040115319192409515, 0.0062922146171331406, -0.022703910246491432, 0.04876593127846718, -0.012091019190847874, 0.0131010627374053, -0.019834022969007492, -0.02377147786319256, -0.02149721421301365, -0.0017516028601676226, -0.01042306050658226, -0.009647899307310581, 0.010038022883236408, 0.000054063140851212665, -0.002924310276284814, -0.03580663725733757, -0.023579271510243416, 0.009793851524591446, -0.02274557203054428, 0.018163541331887245, -0.005667632445693016, 0.009253963828086853, -0.006293255835771561, -0.009067271836102009, -0.024203810840845108, 0.005451444070786238, -0.019543150439858437, 0.021276330575346947, -0.021779924631118774, 0.03747024014592171, -0.012910176068544388, 0.03508264198899269, 0.008202251978218555, 0.029534822329878807, 0.036807406693696976, -0.010864336974918842, 0.0027676753234118223, -0.003381572663784027, -0.027558982372283936, 0.014280673116445541, -0.0023519196547567844, 0.000009292254617321305, -0.018413832411170006, 0.0023871795274317265, 0.00036173805710859597, 0.00315558142028749, -0.024810736998915672, 0.039373643696308136, 0.020183656364679337, -0.02558920532464981, -0.01610175333917141, -0.014513347297906876, 0.0074814362451434135, 0.01691414788365364, 0.008893409743905067, -1.3606981319469469e-8, -0.03965136781334877, 0.0018602005438879132, -0.02456091158092022, 0.014917291700839996, 0.014883714728057384, 0.005165877752006054, -0.017751745879650116, 0.012823601253330708, -0.019290069118142128, 0.011441926471889019, 0.05919795483350754, -0.004428054206073284, -0.026253217831254005, 0.02017488144338131, 0.01239109504967928, -0.05903436243534088, -0.008926305919885635, -0.006438485346734524, 0.03962676227092743, -0.02488466165959835, 0.01854258030653, 0.0441141314804554, 0.013739407993853092, 0.010590136982500553, 0.010943425819277763, 0.01891094446182251, 0.00048283013165928423, -0.07419513165950775, -0.012720173224806786, -0.006003319285809994, 0.03119908645749092, -0.03397061303257942, -0.02550646848976612, 0.04277362301945686, -0.0030128848738968372, -0.03180383890867233, 0.014340510591864586, 0.03541659563779831, 0.005269492976367474, -0.0016536192269995809, -0.018205566331744194, -0.008883977308869362, -0.003753188531845808, -0.02569185197353363, -0.010072068311274052, 0.018937939777970314, -0.011343550868332386, 0.008523688651621342, 0.0075263362377882, -0.018420495092868805, -0.016191693022847176, -0.0046014501713216305, 0.011492040008306503, 0.045442450791597366, -0.009661480784416199, 0.0006655478500761092, 0.013398395851254463, -0.007475946564227343, -0.03994383662939072, -0.004788026213645935, 0.010332435369491577, 0.019613170996308327, -0.013371777720749378, -0.008872803300619125 ]
thoughtworks-university-pulling-the-pearls
https://markhneedham.com/blog/2011/03/29/thoughtworks-university-pulling-the-pearls
false
2011-03-29 17:25:20
The working long hours culture
[ "software-development" ]
[ "Software Development" ]
One of the aspects of software development that I've thankfully seen relatively infrequently over the last few years is that of some people in teams working long hours on a consistent basis. I have seen it happen on a few occasions and I think it can have a detrimental effect on a team rather than the good which is presumably intended. The biggest disadvantage is that it makes other people in the team feel guilty that they aren't working long hours and they may feel peer pressured into matching the hours of their colleagues. In a conversation with http://www.learninggeneralist.com[Sumeet] about work/life balance he pointed out that if you really enjoy what you do for work then you don't necessarily see a clear distinction between the two and it wouldn't be a big deal to work for 10+ hours a day. While I understand this point of view I think in a team environment it's very easy to start believing that you're more important to a team because you put in more hours. It's then very easy to stop valuing the contributions of your colleagues or considering their opinions less important since they *only* worked a standard work day. *Someone isn't necessarily not committed to something because they don't spend their whole life doing it*. Another aspect to this which is easy to overlook is that the people working these long hours might not actually be working in a particularly effective way. If I spend most of the day getting distracted/procrastinating and end up 'working' for 12 hours then I may actually end up being just as productive as someone who works only 8 hours but is much more focused during that time. Even if we assume that someone is productive for 12 hours a day it still isn't necessarily great because they'll end up being the only one who knows the code that they write when everyone else has gone home. When I was in Pune one of the other teams in the office had a mandated finish time of 6.30 and it actually seemed to help people remain focused during their time in the office because they knew they wouldn't be able to work after that time. I'm not necessarily a fan of setting rules of what people can/should be allowed to do but in that case it seemed to work reasonably well.
null
null
[ 0.03998115286231041, 0.016996484249830246, -0.0014105677837505937, 0.007921271957457066, 0.07240064442157745, -0.0016207784647122025, 0.019826790317893028, 0.04986333101987839, 0.029666099697351456, -0.035370830446481705, -0.025199905037879944, 0.0039040748961269855, -0.0692049041390419, 0.029699012637138367, -0.060973167419433594, 0.07900369167327881, 0.0737949013710022, -0.009105307050049305, -0.0007514723693020642, -0.021716460585594177, 0.04690425843000412, 0.07273644953966141, 0.035941172391176224, 0.04700503125786781, 0.06358286738395691, -0.0018749870359897614, -0.025783462449908257, 0.002951869973912835, -0.040248218923807144, -0.0034840453881770372, 0.04220467805862427, 0.005763464607298374, 0.01326185092329979, 0.015561267733573914, 0.013773789629340172, -0.020060628652572632, 0.0013259709812700748, 0.018337948247790337, 0.004924357403069735, -0.0002330292045371607, -0.07886931300163269, 0.02328750491142273, -0.027372248470783234, -0.003820448648184538, -0.04354334995150566, 0.015942540019750595, -0.010534320026636124, 0.015902122482657433, 0.006741900462657213, 0.009173204191029072, -0.0457468181848526, 0.020265933126211166, 0.022755110636353493, -0.002356054726988077, -0.010683582164347172, 0.051039811223745346, 0.010757026262581348, -0.0398545116186142, 0.012581199407577515, -0.05647275596857071, -0.003013526787981391, -0.014874903485178947, -0.003534190123900771, 0.02259882353246212, 0.042302317917346954, -0.025181496515870094, 0.018482202664017677, 0.017848584800958633, -0.02649335004389286, 0.029406720772385597, -0.032030243426561356, -0.006801177281886339, -0.037217482924461365, -0.028748689219355583, -0.007479979190975428, -0.06629166007041931, -0.0007089963764883578, 0.033803343772888184, 0.03761196509003639, 0.06021950766444206, -0.017592359334230423, 0.020204145461320877, 0.0069970786571502686, 0.03359425440430641, -0.006771084852516651, -0.022183997556567192, 0.020011456683278084, -0.03915785998106003, -0.04882533848285675, 0.05732882767915726, 0.009155266918241978, -0.03075701929628849, 0.03497043251991272, 0.04208621382713318, -0.014739757403731346, 0.017881104722619057, 0.029618924483656883, 0.00427665701135993, -0.029180053621530533, -0.016626499593257904, -0.031332824379205704, -0.039411358535289764, -0.01775236614048481, 0.02359190583229065, -0.068016916513443, -0.01680213026702404, 0.012362951412796974, -0.00170660181902349, 0.0011994641972705722, 0.015102233737707138, -0.053646642714738846, 0.0018875694368034601, -0.015054482035338879, 0.01298498548567295, -0.06974462419748306, 0.06288250535726547, 0.013597248122096062, -0.026181144639849663, -0.018091922625899315, -0.018649818375706673, 0.024582525715231895, 0.02008902281522751, -0.007619503885507584, 0.05561171472072601, -0.00864021573215723, 0.009086832404136658, -0.043891262263059616, 0.027820387855172157, -0.007083594333380461, -0.053051989525556564, 0.0038669260684400797, 0.04955644905567169, -0.0416860394179821, -0.012285295873880386, -0.012055570259690285, -0.013206664472818375, -0.004990910645574331, 0.013752520084381104, 0.01834636554121971, 0.04229281470179558, 0.0005899432580918074, -0.03614339977502823, 0.022192224860191345, 0.023485032841563225, 0.023176860064268112, -0.02263636328279972, -0.0057889060117304325, -0.02596755139529705, -0.03459552302956581, -0.053036972880363464, 0.01835121214389801, 0.0076633840799331665, 0.0158737413585186, -0.04362458363175392, 0.03618432953953743, 0.08550222218036652, 0.05358346551656723, -0.005777973216027021, -0.001818065531551838, 0.028293943032622337, 0.022832076996564865, 0.0360831543803215, -0.010349917225539684, 0.021436816081404686, 0.0245780348777771, -0.003712877631187439, 0.007257872726768255, 0.029072359204292297, 0.0009889024076983333, 0.025235919281840324, -0.05713401734828949, -0.010149039328098297, 0.05605766922235489, -0.06468517333269119, -0.024678755551576614, 0.0685056522488594, 0.08009766042232513, 0.04217529296875, 0.010594485327601433, 0.008859921246767044, -0.07702544331550598, 0.026710497215390205, 0.019081037491559982, 0.03539770096540451, 0.054801903665065765, -0.011737593449652195, 0.03847391530871391, 0.008258315734565258, -0.01163942739367485, 0.023732416331768036, -0.0789092630147934, -0.0711895078420639, 0.019923660904169083, -0.016080781817436218, 0.04136492684483528, -0.06784479320049286, 0.012752699665725231, 0.06833638995885849, 0.002773687709122896, 0.05871768668293953, 0.00962464977055788, 0.011790003627538681, 0.0064001805149018764, -0.04018779098987579, -0.06705375015735626, 0.0749860405921936, 0.015496140345931053, 0.007518855854868889, -0.03487396240234375, 0.015269452705979347, 0.0032591703347861767, -0.011777046136558056, 0.04269914701581001, -0.005708387121558189, 0.023131277412176132, 0.0050548892468214035, 0.05511190742254257, -0.03200174495577812, 0.04381702467799187, -0.05717330425977707, 0.0019516104366630316, 0.014483220875263214, -0.009431254118680954, 0.02359556034207344, -0.014557190239429474, 0.08902192860841751, 0.06292547285556793, -0.07434548437595367, -0.04062044620513916, 0.05200032889842987, 0.0029474240727722645, -0.05563509836792946, -0.009624828584492207, 0.013995770364999771, 0.02284780517220497, 0.010559101589024067, -0.056666452437639236, -0.043802861124277115, 0.010802218690514565, -0.06268658488988876, 0.012312029488384724, 0.05180978775024414, -0.002537177409976721, 0.06067483499646187, -0.024684134870767593, -0.015839433297514915, -0.024314839392900467, 0.020478026941418648, -0.04164309427142143, 0.016309481114149094, -0.004753530491143465, -0.011219450272619724, 0.04591060057282448, -0.011725988239049911, -0.01692747138440609, -0.04040098562836647, -0.028190674260258675, 0.03449326753616333, 0.04887612909078598, 0.060280878096818924, -0.0017762640491127968, 0.06209510564804077, 0.00775220338255167, 0.02771705575287342, 0.006845478434115648, -0.05807054042816162, -0.048957206308841705, -0.03273340314626694, 0.004794775974005461, -0.00254669482819736, 0.0017154599772766232, 0.010317726992070675, 0.0022538634948432446, 0.015611084178090096, -0.023590313270688057, -0.005584774538874626, 0.030907895416021347, -0.0045634424313902855, -0.008420380763709545, -0.013944740407168865, -0.005030250642448664, 0.07295868545770645, -0.01156709622591734, -0.014484263956546783, 0.0028581612277776003, -0.07921253144741058, 0.02899455837905407, -0.0704093873500824, -0.04508135840296745, -0.013993514701724052, 0.01056580152362585, 0.04141487553715706, 0.009718634188175201, 0.012182753533124924, 0.06467688083648682, 0.016910742968320847, 0.01927161030471325, 0.00928261037915945, 0.007834178395569324, 0.03329389542341232, 0.025386560708284378, -0.012197570875287056, 0.05711960792541504, -0.012028711847960949, 0.0027305481489747763, -0.053616102784872055, 0.04642760753631592, -0.04495030641555786, -0.2797543406486511, 0.04479155316948891, -0.00436634523794055, -0.019360993057489395, 0.012423744425177574, -0.027300944551825523, 0.02520672045648098, -0.03709094226360321, -0.04100291430950165, 0.0072683412581682205, -0.03972165286540985, -0.058805111795663834, -0.00347345438785851, 0.051311194896698, 0.010699858888983727, 0.03382650017738342, 0.025248445570468903, -0.026557646691799164, 0.024200433865189552, 0.047393325716257095, -0.022009482607245445, -0.06535827368497849, -0.03365974873304367, 0.04125965014100075, 0.07081416249275208, 0.06515907496213913, -0.04624868556857109, 0.04225800186395645, -0.08932115882635117, -0.003075455082580447, -0.007389056961983442, -0.016443224623799324, 0.019304443150758743, -0.04391011595726013, 0.0236053429543972, -0.029393354430794716, 0.0392727293074131, 0.009661003947257996, 0.013385421596467495, 0.02020808681845665, -0.016297152265906334, -0.04195510223507881, -0.017911477014422417, 0.024297134950757027, 0.06160827353596687, 0.02697044424712658, -0.08509016036987305, -0.00977141223847866, -0.016457783058285713, 0.0736335888504982, -0.018736006692051888, -0.019346019253134727, -0.018414130434393883, 0.02591726928949356, -0.036499761044979095, -0.03701746091246605, -0.02152951993048191, -0.01752644032239914, -0.029587743803858757, -0.02541758306324482, -0.022779300808906555, -0.019645875319838524, -0.01603493094444275, -0.04095397889614105, -0.028661468997597694, -0.0477241612970829, -0.07551921159029007, -0.03709110990166664, 0.06631900370121002, 0.007251169998198748, -0.04114516079425812, -0.0006732307956553996, 0.010951030999422073, -0.09719152748584747, -0.019101085141301155, 0.013486649841070175, -0.044795211404561996, 0.0035459077917039394, 0.02600698359310627, 0.04333122447133064, 0.00010964638204313815, -0.06740762293338776, 0.04307277500629425, 0.006102691404521465, 0.041497185826301575, -0.007396872155368328, 0.034911490976810455, 0.04085103049874306, -0.012669637799263, 0.025246474891901016, 0.049319520592689514, 0.017922136932611465, -0.05565956234931946, 0.0002822431270033121, 0.022908007726073265, 0.009831195697188377, -0.007557563483715057, -0.009859874844551086, -0.0006526249344460666, 0.008871695026755333, -0.007777000777423382, -0.04446114972233772, 0.013268410228192806, -0.009131639264523983, -0.007097799796611071, -0.03137313202023506, -0.037639468908309937, 0.03920035436749458, 0.02335604652762413, 0.04372073709964752, 0.03366878256201744, -0.010354735888540745, 0.006591819226741791, -0.03206070885062218, -0.0019079025369137526, -0.04550744965672493, 0.008619292639195919, 0.04810840263962746, 0.004468311555683613, 0.017508288845419884, -0.04763909429311752, 0.01691725105047226, -0.021790942177176476, -0.010452358052134514, -0.06455356627702713, 0.009563900530338287, -0.006476469803601503, -0.034844882786273956, -0.004742686171084642, 0.03624149039387703, -0.03670717403292656, 0.023946493864059448, 0.027326146140694618, -0.03472720459103584, 0.007134403567761183, -0.024453405290842056, -0.07137664407491684, -0.043170880526304245, -0.01848064363002777, -0.015499034896492958, 0.0022015580907464027, 0.017940739169716835, -0.0028525437228381634, 0.02148333750665188, 0.04446998983621597, 0.03140398859977722, 0.0051051052287220955, -0.037887685000896454, 0.02721978910267353, 0.02387942187488079, 0.005463277455419302, -0.06672603636980057, 0.01697181537747383, -0.049045294523239136, -0.03527947887778282, -0.03989625722169876, 0.03080107271671295, -0.006395080592483282, -0.033530622720718384, -0.021067753434181213, -0.008108188398182392, -0.06856707483530045, -0.06875922530889511, -0.03467477858066559, 0.05362806096673012, 0.06416184455156326, -0.023292208090424538, -0.005561294499784708, -0.013215139508247375, 0.007465950213372707, 0.004213659558445215, 0.03210156783461571, -0.05730922147631645, -0.01749306544661522, 0.001444218447431922, -0.000356839009327814, 0.006118373479694128, -0.012284430675208569, 0.04191267490386963, 0.015515168197453022, 0.020855451002717018, -0.011424776166677475, -0.00030574019183404744, 0.007410112302750349, 0.027406221255660057, 0.03011404536664486, 0.0005332682630978525, -0.018923526629805565, -0.014289174228906631, -0.012435639277100563, -0.041141949594020844, -0.04419512301683426, -0.010842072777450085, -0.0006332954508252442, -0.03646355867385864, -0.04535791650414467, 0.062036365270614624, 0.03362630307674408, 0.011624251492321491, 0.020730942487716675, -0.007710531819611788, -0.015580986626446247, -0.026385299861431122, 0.010335944592952728, 0.04870641604065895, -0.06382767111063004, 0.00745970057323575, 0.007019045762717724, -0.0007025705999694765, 0.0212944857776165, -0.02008107677102089, -0.003911795560270548, -0.02692301571369171, -0.03906605392694473, 0.030829759314656258, -0.065027616918087, 0.0007039703195914626, -0.03789663687348366, 0.012835055589675903, -0.013617880642414093, -0.02061513438820839, -0.0385177917778492, -0.04187896475195885, -0.015268738381564617, -0.03156249597668648, 0.01777760684490204, -0.033930301666259766, 0.0018493556417524815, 0.029420487582683563, -0.021761151030659676, -0.01268153265118599, -0.03440148010849953, 0.021569186821579933, 0.01375992689281702, -0.04232453927397728, -0.01514520589262247, 0.011646369472146034, -0.004666350781917572, 0.020092280581593513, 0.024675488471984863, -0.008841227740049362, -0.03358592838048935, -0.013005908578634262, -0.027249310165643692, -0.0372743159532547, 0.003475487232208252, -0.03762900456786156, -0.006351088639348745, 0.004389702342450619, 0.059907667338848114, 0.025293320417404175, 0.013966651633381844, -0.0027335314080119133, -0.01876028999686241, 0.016313007101416588, -0.06559746712446213, -0.03931596502661705, -0.009886685758829117, -0.0339319109916687, 0.021778108552098274, 0.010204799473285675, 0.000029904855182394385, -0.032735466957092285, 0.025127628818154335, 0.03491399437189102, 0.05773257091641426, 0.04956146329641342, 0.008132797665894032, 0.04190133512020111, -0.07140325009822845, -0.004977069329470396, -0.0787900760769844, -0.011127309873700142, 0.007468647789210081, 0.023587752133607864, 0.0063950056210160255, 0.015019308775663376, -0.013214216567575932, 0.040182940661907196, -0.07266722619533539, -0.018019916489720345, 0.049146126955747604, -0.0035243292804807425, -0.00445907935500145, 0.026242997497320175, -0.09032966941595078, 0.02786904014647007, 0.015508399344980717, -0.05022484436631203, -0.016745902597904205, -0.01328425295650959, 0.05110938847064972, -0.006256031338125467, 0.024286868050694466, -0.07427425682544708, 0.004814422223716974, 0.07732415944337845, 0.008668709546327591, -0.01421846728771925, 0.06137114390730858, -0.004908979870378971, 0.04670414328575134, 0.028376948088407516, 0.01325503271073103, -0.03177163377404213, 0.009217219427227974, 0.0068375966511666775, -0.05102105066180229, 0.0012853414518758655, 0.005406394135206938, -0.036581769585609436, -0.028822874650359154, 0.06460527330636978, 0.020832113921642303, -0.02598077431321144, -0.04049229994416237, -0.0022926470264792442, -0.02929866686463356, 0.010927173309028149, -0.02021273970603943, -0.029516277834773064, -0.05716371163725853, 0.04674273729324341, -0.004896875936537981, 0.012923083268105984, 0.07965359836816788, 0.03150203824043274, -0.024566877633333206, -0.00030357131618075073, 0.11666910350322723, 0.08229847997426987, 0.057566918432712555, 0.01318697165697813, 0.08223126083612442, -0.010798576287925243, -0.04117950424551964, 0.011945752426981926, -0.018681596964597702, -0.028764724731445312, -0.015248800627887249, 0.04564719274640083, 0.04196772351861, 0.013813048601150513, 0.066937655210495, 0.005200529005378485, -0.023245610296726227, -0.002360451500862837, 0.021919438615441322, 0.033457979559898376, 0.06582839041948318, 0.01990986056625843, 0.017758656293153763, -0.009086502715945244, -0.03513585031032562, 0.04445989057421684, -0.03167159855365753, 0.0006346096051856875, 0.024192413315176964, 0.0009537603473290801, 0.010777817107737064, 0.03790287300944328, 0.005505144130438566, 0.05615302175283432, -0.02840527519583702, 0.026666399091482162, -0.026221849024295807, 0.03618473932147026, -0.03870246186852455, 0.012958748266100883, -0.025913897901773453, 0.0006710675079375505, -0.027406970039010048, -0.01890607178211212, -0.03277117758989334, -0.006741727702319622, -0.01981409825384617, 0.05529169365763664, -0.028776057064533234, 0.033775694668293, 0.029035592451691628, 0.001960110617801547, -0.03163357079029083, -0.056294847279787064, -0.029640981927514076, -0.045035477727651596, -0.04617902636528015, 0.0003709208103828132, 0.03753890469670296, 0.0070367250591516495, -0.015844369307160378, 0.00011160307622049004, 0.015441603027284145, -0.03951644524931908, 0.011950700543820858, -0.04831927642226219, -0.02184850163757801, 0.018353013321757317, 0.01589198224246502, 0.04724080488085747, 0.011341242119669914, 0.056849267333745956, -0.03241812437772751, -0.00042555571417324245, -0.030556336045265198, 0.009688741527497768, 0.0211690291762352, -0.008389824070036411, -0.019753871485590935, -0.060418885201215744, 0.002027451992034912, 0.023225776851177216, -0.026323700323700905, -0.08560976386070251, 0.03687635064125061, 0.03263159096240997, 0.01084644254297018, 0.05627249553799629, -0.017033051699399948, 0.007172300014644861, -0.06681139767169952, 0.02163642644882202, -0.005057381931692362, 0.013013122603297234, 0.04730620235204697, -0.020357655361294746, 0.06894177943468094, 0.014826757833361626, -0.024502428248524666, -0.030564719811081886, 0.003233959898352623, -0.019757049158215523, -0.0073195816949009895, -0.03064000979065895, -0.02278820425271988, -0.03046628274023533, -0.08709856122732162, -0.028931688517332077, 0.011537764221429825, -0.02934005670249462, -0.05335433408617973, 0.044355835765600204, 0.004760358016937971, -0.024381304159760475, 0.008184448815882206, -0.04794822633266449, 0.04673400893807411, -0.0366864837706089, -0.008730611763894558, 0.010468089021742344, 0.009007658809423447, -0.001396600971929729, -0.02419630065560341, 0.03537403792142868, -0.04681846499443054, 0.016736557707190514, -0.010020499117672443, 0.0077695720829069614, 0.05997228994965553, 0.015527356415987015, 0.012392030097544193 ]
[ -0.06549543887376785, 0.011663202196359634, -0.02520025335252285, -0.024645408615469933, 0.05853264406323433, -0.03818085044622421, 0.024130312725901604, -0.010263146832585335, -0.0037605883553624153, -0.01647769659757614, 0.001559425494633615, 0.006005785893648863, 0.0106698889285326, -0.0239271130412817, 0.060175422579050064, -0.009297986514866352, -0.015049035660922527, -0.097525954246521, 0.0007417642627842724, 0.029197385534644127, -0.00028808764182031155, -0.03084498457610607, -0.028486793860793114, -0.01809462159872055, 0.04064323753118515, 0.005832999013364315, 0.03016018494963646, -0.035473790019750595, -0.0023575909435749054, -0.13621550798416138, -0.0026435283944010735, 0.007845389656722546, 0.046452365815639496, -0.007200801279395819, 0.011490480974316597, 0.06326089799404144, 0.021385489031672478, 0.0261670034378767, 0.012208015657961369, 0.04758979007601738, 0.036716483533382416, 0.025887219235301018, -0.03521952033042908, -0.03508000448346138, -0.004153135232627392, 0.032399993389844894, -0.019341183826327324, -0.03304540738463402, -0.042656488716602325, 0.046024225652217865, -0.06796392798423767, -0.028524402529001236, -0.008900405839085579, 0.024407392367720604, -0.023257330060005188, 0.01538181584328413, 0.03367535397410393, 0.06102621927857399, 0.007970460690557957, 0.020433150231838226, 0.014121237210929394, -0.024340372532606125, -0.15180964767932892, 0.08272571116685867, 0.04300810769200325, 0.04792284592986107, -0.05875770002603531, -0.005298744887113571, -0.0304288137704134, 0.06641893833875656, -0.03384273499250412, -0.01617310754954815, -0.006041963584721088, 0.03135842829942703, 0.0402788408100605, -0.005313939414918423, 0.009820577688515186, 0.028420861810445786, 0.02250806987285614, -0.035138629376888275, -0.02564099431037903, -0.001096904743462801, -0.0037059064488857985, 0.002007768489420414, -0.023702917620539665, 0.03783475607633591, -0.018672116100788116, 0.06644757091999054, 0.047685809433460236, 0.03733544051647186, 0.047121502459049225, 0.01549152284860611, 0.014203219674527645, -0.018911903724074364, -0.06259306520223618, -0.027828019112348557, -0.009886923246085644, 0.06608006358146667, -0.08288872987031937, 0.4319884777069092, -0.04516664519906044, -0.013827569782733917, 0.07593744993209839, 0.04489206150174141, -0.014949734322726727, 0.02325511910021305, 0.010388094931840897, -0.03249005600810051, 0.010273179039359093, 0.002548668999224901, 0.044077616184949875, 0.04935695603489876, 0.038359634578228, -0.04785819724202156, 0.016425317153334618, 0.06042076274752617, 0.04887695237994194, 0.008266845718026161, -0.010749268345534801, 0.012740615755319595, -0.022149359807372093, 0.021653031930327415, -0.014554287306964397, 0.013728274963796139, -0.030127674341201782, -0.04165100306272507, 0.03164060413837433, 0.05266520008444786, 0.044512271881103516, -0.03298467397689819, 0.060172189027071, -0.06215878948569298, -0.04008720815181732, 0.018060803413391113, -0.00605392549186945, 0.012446884997189045, 0.025164104998111725, -0.027099020779132843, 0.0023845734540373087, 0.03018508478999138, 0.020702673122286797, -0.02517169900238514, 0.006064302753657103, -0.04001573473215103, -0.02108890749514103, 0.13839276134967804, 0.058242008090019226, -0.02667642943561077, -0.00447764853015542, -0.028507063165307045, -0.021571246907114983, 0.02587185427546501, -0.008194869384169579, -0.06216755136847496, 0.03106602467596531, 0.002530943602323532, 0.12558265030384064, -0.00046366098104044795, -0.050277598202228546, -0.030570652335882187, -0.007357076741755009, -0.014071844518184662, -0.04948778450489044, 0.0233304463326931, 0.09997199475765228, -0.05964053422212601, -0.014889023266732693, 0.006440481171011925, 0.015890713781118393, -0.06643234938383102, -0.007441156078130007, -0.008844268508255482, -0.018899764865636826, 0.0047454084269702435, 0.07721764594316483, -0.046069253236055374, -0.016609933227300644, 0.03508860245347023, 0.0696806088089943, 0.015970703214406967, 0.0605103000998497, 0.007833525538444519, -0.0131690613925457, -0.011186485178768635, -0.03247292712330818, -0.06463304162025452, -0.029846100136637688, 0.0017598868580535054, -0.01556073222309351, -0.015014424920082092, -0.030341658741235733, -0.03834238275885582, -0.10763001441955566, 0.09401316940784454, -0.017187805846333504, -0.05844252184033394, 0.025077005848288536, -0.026390962302684784, -0.03928365930914879, -0.014351933263242245, -0.06409047544002533, 0.017064232379198074, -0.02257406897842884, 0.028529686853289604, -0.043367549777030945, 0.056877803057432175, 0.024012085050344467, -0.04165485128760338, 0.11237914115190506, 0.031051702797412872, -0.01945428177714348, -0.04749514162540436, 0.029277564957737923, 0.03460497781634331, 0.009893705137073994, 0.003825001884251833, 0.027420103549957275, 0.03514445573091507, 0.024687111377716064, 0.007884695194661617, -0.00515431584790349, 0.028389979153871536, 0.005760448519140482, -0.32138770818710327, -0.03671050816774368, -0.04755494371056557, 0.007737568113952875, 0.01282961294054985, -0.016086984425783157, 0.003097583306953311, -0.026417318731546402, -0.02647949941456318, 0.003714142367243767, 0.07389519363641739, -0.018773404881358147, -0.019146492704749107, -0.07472426444292068, 0.005037125200033188, 0.016545938327908516, -0.07686331868171692, 0.012453800067305565, -0.015212686732411385, -0.022487511858344078, 0.029883114621043205, 0.017176268622279167, -0.03159456327557564, -0.05950107052922249, 0.006515142507851124, -0.05530136823654175, 0.10573363304138184, -0.034364327788352966, 0.053142789751291275, -0.05182226002216339, 0.030935898423194885, -0.0071414378471672535, 0.03382091969251633, -0.14416161179542542, -0.001587271923199296, -0.034749556332826614, -0.007693368010222912, -0.07577647268772125, -0.011142000555992126, -0.02780410833656788, -0.0602346770465374, 0.016385473310947418, -0.09952731430530548, -0.013818210922181606, -0.10020367056131363, 0.02320985496044159, -0.019973641261458397, -0.03167131915688515, -0.04658523201942444, 0.05845456197857857, -0.027553144842386246, -0.014040208421647549, 0.00833812728524208, -0.00024240196216851473, 0.023016126826405525, -0.06315236538648605, -0.10663650929927826, 0.05123579874634743, -0.027080636471509933, -0.018101481720805168, 0.002119690179824829, 0.04444517195224762, 0.03678178787231445, -0.02086656168103218, -0.0024616196751594543, 0.027384059503674507, -0.016783686354756355, 0.019194599241018295, 0.0138422641903162, 0.005535371135920286, -0.0015619938494637609, 0.11122287809848785, -0.034544218331575394, -0.04611573740839958, 0.03765520453453064, 0.022615822032094002, -0.02576282247900963, 0.033369746059179306, 0.02007196843624115, -0.0038143096026033163, 0.009502341039478779, -0.05401081591844559, 0.022656232118606567, 0.00494350865483284, 0.01224169135093689, 0.012599078938364983, -0.031098386272788048, -0.00720202224329114, 0.06581338495016098, 0.030489452183246613, -0.011270754970610142, 0.003090719925239682, -0.03258763626217842, -0.049705587327480316, 0.0906217098236084, -0.004069400951266289, -0.2414419949054718, 0.009606382809579372, 0.03333098068833351, 0.013319389894604683, 0.003297867253422737, 0.023091880604624748, -0.013890563510358334, -0.010158024728298187, -0.019450001418590546, 0.03794771432876587, 0.04337441176176071, 0.0386100597679615, -0.010965142399072647, -0.012993881478905678, 0.04700035974383354, -0.009070206433534622, 0.050028882920742035, 0.00012021094880765304, 0.03876698017120361, -0.009994486346840858, 0.009118927642703056, -0.00894931424409151, 0.12966419756412506, -0.01396171934902668, 0.05885421857237816, 0.027166541665792465, 0.0009041071753017604, 0.009279877878725529, 0.06325522065162659, -0.00823840219527483, 0.004976713098585606, -0.015154238790273666, 0.039437711238861084, 0.023984242230653763, -0.004828086122870445, -0.07154379040002823, -0.043013300746679306, 0.035675060003995895, 0.010990786366164684, 0.009743498638272285, 0.03203757479786873, -0.003876117989420891, -0.014157397672533989, 0.029549144208431244, 0.09522058069705963, -0.004441342316567898, -0.03718970715999603, -0.07661150395870209, -0.020020946860313416, -0.04746402055025101, -0.04736871272325516, -0.05195533484220505, 0.011161606758832932, 0.04047630354762077, 0.007818751968443394, 0.04254869744181633, 0.032176673412323, -0.03176523372530937, 0.026205364614725113, -0.013399867340922356, -0.04342379793524742, -0.0017236045096069574, 0.07051928341388702, 0.025096874684095383, 0.02922397293150425 ]
[ -0.015862997621297836, 0.026255810633301735, -0.012379550375044346, -0.0023455482441931963, -0.009739297442138195, 0.005156195722520351, -0.006405313964933157, -0.004178234376013279, 0.008851957507431507, -0.007461676839739084, -0.03544818237423897, 0.04612604156136513, -0.026812486350536346, 0.0020318347960710526, 0.030430631712079048, -0.026520460844039917, -0.00432402640581131, -0.004887664690613747, 0.025742875412106514, 0.007739579770714045, -0.002957036718726158, 0.004660248756408691, -0.00046232956810854375, 0.012951023876667023, 0.027786903083324432, 0.005204292014241219, -0.0005696909502148628, -0.003931444603949785, 0.02722942642867565, -0.13799908757209778, -0.04628603532910347, -0.003126070136204362, -0.003307180944830179, 0.013891090638935566, 0.010882379487156868, -0.02518283948302269, 0.008771891705691814, 0.015007632784545422, 0.011850254610180855, -0.006612356286495924, -0.007592867128551006, -0.008806363679468632, 0.0006546280346810818, 0.006921092979609966, -0.01886449195444584, -0.007224631495773792, 0.0013231246266514063, -0.056112583726644516, -0.013086551800370216, 0.026103315874934196, -0.016376089304685593, -0.0009931809036061168, -0.015345803461968899, 0.038943033665418625, 0.056947626173496246, -0.011222390457987785, -0.009881198406219482, -0.008329499512910843, 0.01664764992892742, -0.008018975146114826, 0.00981486402451992, -0.010850278660655022, -0.04636622220277786, -0.014453215524554253, -0.022965434938669205, -0.014682398177683353, -0.013722269795835018, 0.02063818648457527, -0.04620620608329773, 0.007977264001965523, -0.025549976155161858, -0.009119448252022266, -0.015069101937115192, -0.043374333530664444, -0.00035885616671293974, 0.0006428744527511299, -0.011471030302345753, -0.01295996829867363, 0.03010796755552292, 0.003694442566484213, -0.007735193707048893, 0.028634943068027496, 0.009823858737945557, 0.02435879223048687, -0.03472745791077614, -0.010974929668009281, 0.038917116820812225, -0.00003592574648791924, 0.02953486330807209, -0.034852609038352966, -0.013833062723279, 0.03268184885382652, -0.011363275349140167, -0.015208271332085133, -0.0856277346611023, -0.014394018799066544, -0.006541120819747448, 0.005282246042042971, 0.0046810973435640335, 0.8552119135856628, -0.007883836515247822, 0.017285114154219627, 0.023401683196425438, -0.0009417393011972308, 0.009651095606386662, 0.0072397226467728615, 0.01721399463713169, 0.006864944472908974, 0.012068490497767925, -0.040015555918216705, -0.006523365620523691, 0.016702627763152122, 0.015886414796113968, 0.018929218873381615, 0.03269989416003227, 0.028557859361171722, 0.011288105510175228, 0.005442430730909109, -0.013054856099188328, 0.032411884516477585, 0.03824659436941147, 0.0030555306002497673, 0.016271697357296944, 0.024719666689634323, 0.013700833544135094, -0.15912961959838867, 0.015944959595799446, -8.234985184087046e-33, 0.055802103132009506, -0.016432035714387894, -0.00427963538095355, 0.004795102868229151, -0.002750813029706478, -0.004486129153519869, 0.01980626955628395, 0.04597100988030434, -0.010860247537493706, -0.050096191465854645, -0.011125712655484676, -0.014230027794837952, 0.0009608461405150592, -0.022750385105609894, 0.024479741230607033, -0.018349014222621918, 0.003170640440657735, 0.04508739337325096, 0.000352211733115837, 0.027528446167707443, 0.00882655568420887, -0.007418476510792971, 0.0029804189689457417, 0.006819465663284063, -0.018631238490343094, 0.0197816863656044, -0.0044473521411418915, 0.007263517938554287, 0.017510652542114258, -0.04364701360464096, 0.013548758812248707, 0.011358159594237804, -0.02766592428088188, -0.00019275570230092853, -0.03157486021518707, -0.024122580885887146, -0.0007772707031108439, 0.01467900350689888, 0.013219446875154972, -0.0626828595995903, -0.02989153563976288, 0.0036989448126405478, -0.017537089064717293, 0.000891504401806742, 0.01676188036799431, -0.015593972988426685, 0.03561790660023689, 0.0056752352975308895, 0.01330126915127039, 0.009723390452563763, 0.008840860798954964, 0.012758227065205574, 0.0011215003905817866, -0.013602660037577152, -0.006875263527035713, 0.018603196367621422, 0.0007355056004598737, 0.03839503228664398, 0.0008627744391560555, 0.05541417747735977, 0.00240200012922287, -0.019376102834939957, -0.02070690132677555, 0.02819713205099106, -0.013303237967193127, 0.014310949482023716, 0.01333581656217575, 0.004532846622169018, 0.03684965521097183, -0.02838861756026745, -0.028098762035369873, -0.02108612470328808, -0.00895718950778246, 0.028174664825201035, -0.006643333006650209, 0.009304904378950596, -0.014538691379129887, 0.021031655371189117, -0.043699368834495544, 0.036350131034851074, 0.017093315720558167, 0.007201114669442177, -0.005902263801544905, -0.06888100504875183, -0.009595977142453194, -0.008182337507605553, -0.00007804635970387608, -0.014946741051971912, -0.05271274223923683, 0.02015196532011032, 0.0323270708322525, -0.03459586575627327, 0.017925042659044266, -0.0034932075068354607, -0.021106863394379616, 8.117196242030837e-33, 0.014756519347429276, -0.054964274168014526, -0.04617250710725784, -0.03262763470411301, 0.048045940697193146, 0.011982731521129608, 0.018122127279639244, -0.012479616329073906, -0.052230753004550934, 0.04691038280725479, 0.004202750977128744, 0.008442722260951996, -0.021410798653960228, 0.010992561466991901, 0.0030752408783882856, -0.03606483340263367, 0.028568916022777557, -0.0045957863330841064, 0.01946992427110672, 0.00005613188477582298, -0.0010895184241235256, 0.002960833255201578, -0.000674150709528476, 0.013753346167504787, 0.04503218084573746, 0.07874307036399841, -0.01122778095304966, 0.014886838383972645, -0.005426648072898388, 0.021181592717766762, 0.003772253170609474, -0.002477559493854642, -0.016714438796043396, 0.020902497693896294, 0.0030027988832443953, 0.022120334208011627, -0.023925375193357468, -0.021453185006976128, -0.0053913164883852005, 0.007135343737900257, 0.01488565094769001, -0.009236851707100868, 0.013790289871394634, -0.016718292608857155, 0.027194662019610405, 0.003629060694947839, -0.01914476603269577, 0.0008302342030219734, -0.03025921992957592, 0.010396511293947697, 0.012582269497215748, -0.017847592011094093, -0.000337803503498435, 0.008304726332426071, -0.00411022687330842, -0.027008716017007828, -0.042340345680713654, -0.007907701656222343, -0.021741105243563652, 0.016919942572712898, 0.013351240195333958, 0.012890798971056938, -0.03242279589176178, 0.015961935743689537, -0.04348393529653549, 0.027170130982995033, 0.006003824062645435, -0.024760441854596138, -0.0048506478779017925, 0.027140727266669273, -0.019534818828105927, 0.008177872747182846, -0.01898360252380371, 0.03799665346741676, -0.00035828130785375834, -0.027230404317378998, 0.0023099896498024464, 0.004508092068135738, -0.04113975167274475, 0.012221255339682102, -0.012534850277006626, 0.0020549779292196035, 0.005670482758432627, 0.008181758224964142, 0.003361697308719158, 0.012867913581430912, -0.013071224093437195, 0.014238519594073296, 0.00914995837956667, 0.013416927307844162, 0.013813027180731297, -0.02507116086781025, -0.014171403832733631, 0.011779936961829662, 0.030958451330661774, -1.3620265804092924e-8, 0.023883936926722527, -0.0020776696037501097, -0.00045351710286922753, 0.0013571622548624873, 0.012701209634542465, -0.03746310621500015, -0.022433869540691376, 0.016945507377386093, -0.0026267655193805695, 0.03018121048808098, 0.057170480489730835, -0.07652638107538223, -0.0009505102061666548, 0.010805381461977959, 0.01255378033965826, -0.051060233265161514, -0.005888220854103565, -0.011586764827370644, 0.01817980408668518, -0.011683077551424503, 0.035963475704193115, 0.03556540980935097, -0.026736637577414513, 0.017466925084590912, 0.025092503055930138, 0.004972797352820635, -0.03341129049658775, -0.05926427245140076, 0.01252477616071701, 0.0348362997174263, 0.03170614317059517, -0.013110035099089146, -0.07156907021999359, 0.009531760588288307, -0.03521181270480156, -0.054116472601890564, 0.04437374696135521, -0.012304884381592274, -0.01061229594051838, 0.05913006514310837, -0.010492450557649136, 0.013385258615016937, -0.04358995705842972, -0.03643136844038963, -0.006355800200253725, 0.0296773761510849, -0.04003242403268814, -0.02411278896033764, -0.011806795373558998, -0.03203872963786125, 0.025936318561434746, 0.005553894676268101, 0.025164494290947914, 0.029343239963054657, -0.031220948323607445, 0.013667495921254158, -0.0010552534367889166, -0.005183943081647158, -0.04052577167749405, 0.0023041358217597008, 0.02293436788022518, 0.05341362580657005, -0.013842149637639523, -0.03354714438319206 ]
the-working-long-hours-culture
https://markhneedham.com/blog/2011/03/29/the-working-long-hours-culture
false
2011-03-29 17:15:48
ThoughtWorks University: Coding Dojo Style
[ "thoughtworks-university" ]
[ "ThoughtWorks University" ]
One of the things that link:[Sumeet] has been encouraging at ThoughtWorks University is the idea that the 'trainers' should be in http://www.learninggeneralist.com/2010/05/changing-our-trainer-mindsets.html[a coaching role rather than a training one]. As a result of this suggestion one of the things we've done is to change http://www.learninggeneralist.com/2010/08/thoughtworks-university-story-of-our.html[the style of the second week] so that it wasn't full of sessions/workshops but instead involved working on code as a group. http://twitter.com/jimbarritt[Jim] came up with the idea of the 'exploded story' whereby we spent the whole of last week as a group working on one story for http://www.sukrupa.org[Sukrupa] while spending quite a bit of time exploring the different activities that playing a story end to end would involve. We did this by making use of two types of coding dojos: * *Randori* - two people at the keyboard and the rest of the group watching and contributing ideas about what could be done next. * *Kake* - one computer per pair but everyone is working on the same problem == Randori We began last week with a http://codingdojo.org/cgi-bin/wiki.pl?RandoriKata[Randori dojo] where initially two of the trainers paired while implementing a story to add improved search functionality to the sukrupa admin application. image::{{<siteurl>}}/uploads/2011/03/twu-code.jpg[Twu code,258] We rotated one of the pair every 5 minutes, initially making sure that there was always a trainer at the keyboard but we quickly changed that so that it was mostly the grads driving the implementation. The cool thing about using the randori dojo like this was that we were able to code as a group and people were able to get a rough feel for the strengths of their colleagues and see any areas they might be able to improve on. We were also easily able to see where people were struggling so that we could break out and do a quick session on a topic if necessary. One disadvantage of this style is that it does put people under a bit of pressure because everyone is seeing the code they're writing so I'm not sure that it necessarily provides the best learning environment. We did the randori dojo for a few mornings while doing a kake dojo in the afternoon before deciding as a group that it would be more beneficial to do a http://www.dtsato.com/blog/2008/10/29/uberdojo-sao-paulo-coding-dojo/[kake dojo] for the whole day. == Kake image::{{<siteurl>}}/uploads/2011/03/twu-dojo.jpg[Twu dojo] We initially ran the kake dojo with 10 minute iterations after which we would discuss how everyone was doing and whether there were any learnings to share. We pair rotated every other iteration and eventually increased the iteration time to 30 minutes so that we'd have more time to solve some of the more difficult problems. It was getting really irritating being interrupted every 10 minutes at times! A few times a day we went around the room to each machine and the pair was able to describe the code they'd written and the approach they'd taken. We'd then choose as a group which code we wanted to push to the github repository as a baseline and then continue working from there. I quite enjoyed working in this style and it worked fairly well until we got towards the end of the story and the code that each pair was writing was pretty much identical. At that stage we switched back to a 30 minute randori dojo before the week was complete!
null
null
[ 0.033122431486845016, -0.01648939587175846, -0.024072783067822456, 0.04568420350551605, 0.08537835627794266, 0.015844982117414474, 0.02488725446164608, 0.027126964181661606, 0.030750321224331856, -0.014790794812142849, -0.05024973303079605, -0.006670607253909111, -0.048846762627363205, 0.013313764706254005, -0.025989649817347527, 0.07122369855642319, 0.060706909745931625, 0.009382635354995728, 0.018353424966335297, -0.00004161389733781107, 0.02210315875709057, 0.0829799547791481, 0.030907902866601944, 0.02865605428814888, 0.03690878674387932, 0.005705473944544792, 0.03182170167565346, -0.010982553474605083, -0.04557393491268158, -0.0007176177459768951, 0.04011636972427368, 0.00028911521076224744, 0.02484089508652687, 0.02007284387946129, 0.03642259165644646, -0.026025867089629173, -0.006334870588034391, 0.026612814515829086, 0.025466743856668472, 0.016691498458385468, -0.06547250598669052, 0.05465126410126686, -0.009538228623569012, 0.015553383156657219, -0.04312528297305107, -0.004352192860096693, -0.04878358542919159, 0.01785435527563095, 0.0030464516021311283, -0.013304563239216805, -0.07631813734769821, 0.030335325747728348, 0.024561090394854546, -0.019405096769332886, -0.017897354438900948, 0.0560515895485878, 0.02647685445845127, -0.05826765298843384, 0.015907565131783485, -0.040970563888549805, -0.015059021301567554, -0.001660553039982915, 0.005136879626661539, 0.03357306495308876, 0.02732277661561966, -0.0479089580476284, 0.010899420827627182, 0.038997672498226166, -0.024135896936058998, -0.009549960494041443, -0.01152439508587122, 0.023798171430826187, -0.008559408597648144, -0.007056489586830139, 0.016031574457883835, -0.056120820343494415, -0.00933877658098936, 0.07635068148374557, 0.021862555295228958, 0.01390727236866951, -0.037393637001514435, 0.031027190387248993, 0.004747297614812851, 0.027100663632154465, -0.011531153693795204, -0.05306199565529823, -0.020006589591503143, -0.027955854311585426, -0.06622958183288574, 0.07462083548307419, -0.008970152586698532, -0.04367775097489357, 0.01692790910601616, 0.04357803985476494, 0.0031102874781936407, 0.037941597402095795, 0.01938784308731556, -0.014568406157195568, -0.003424660302698612, -0.02416081726551056, -0.045683443546295166, -0.025655345991253853, 0.01228620857000351, 0.02384650707244873, -0.08277010172605515, 0.009154555387794971, -0.002159341238439083, -0.020507201552391052, 0.003679725108668208, 0.02396872639656067, -0.036824967712163925, 0.012652156874537468, -0.0046044825576245785, 0.007549711037427187, -0.06664498150348663, 0.05724898353219032, 0.006996696349233389, -0.03689141571521759, -0.04450841248035431, 0.012446006760001183, 0.041579604148864746, 0.007468921132385731, -0.01320998277515173, 0.08053369075059891, 0.01550485659390688, 0.014886358752846718, -0.040923960506916046, 0.05264880135655403, -0.01528672780841589, -0.05597234517335892, 0.01590259000658989, 0.03684878721833229, -0.015251502394676208, -0.001989548560231924, 0.0028158891946077347, -0.01877882145345211, 0.022490644827485085, -0.020165391266345978, 0.03717853128910065, 0.05762544646859169, 0.010768053121864796, -0.021486731246113777, 0.0028408830985426903, 0.013012874871492386, 0.013514135964214802, -0.00665635010227561, -0.011515829712152481, -0.014419350773096085, -0.028495904058218002, -0.028114980086684227, -0.0013506877003237605, -0.002763539319857955, 0.02701939083635807, -0.03553227335214615, 0.022462978959083557, 0.08174293488264084, 0.027528783306479454, 0.021665509790182114, -0.031603142619132996, 0.036601144820451736, 0.022881312295794487, 0.04163280129432678, -0.00299430382438004, 0.029722915962338448, 0.0051483637653291225, -0.0075789871625602245, -0.004589770454913378, 0.03283808380365372, -0.0005705802468582988, 0.016921574249863625, -0.060206979513168335, -0.038988739252090454, 0.054316483438014984, -0.05608585849404335, -0.04651794582605362, 0.03985954076051712, 0.06897962838411331, 0.029366159811615944, 0.03151426836848259, 0.002075756900012493, -0.07813672721385956, 0.01698306016623974, 0.017255127429962158, 0.022114284336566925, 0.03266925737261772, -0.03824067488312721, 0.05542436242103577, 0.029324525967240334, -0.005229220259934664, 0.054477814584970474, -0.07434167712926865, -0.08885068446397781, -0.021053185686469078, -0.010122654028236866, 0.04971360042691231, -0.017626281827688217, 0.03448784723877907, 0.07475635409355164, -0.004639210645109415, 0.04336775839328766, 0.04802114516496658, -0.005415493622422218, 0.025254853069782257, -0.03216908872127533, -0.03807076811790466, 0.06186879798769951, 0.018794171512126923, -0.016731534153223038, -0.052390046417713165, -0.002030692296102643, -0.019858213141560555, -0.013180595822632313, 0.04462329298257828, -0.0077245221473276615, 0.03614180162549019, 0.011506329290568829, 0.054219577461481094, -0.03111332096159458, 0.05296875908970833, -0.04443192109465599, 0.017720209434628487, -0.00036712782457470894, -0.018533796072006226, -0.007846279069781303, 0.003740997752174735, 0.11684636026620865, 0.04217713326215744, -0.039872292429208755, -0.043571263551712036, 0.01971367374062538, 0.01136041060090065, -0.05653315410017967, -0.009324205107986927, 0.013139354065060616, 0.011850565671920776, -0.004218237940222025, -0.05756634101271629, -0.06114460527896881, 0.030620131641626358, -0.05427318066358566, 0.0262885894626379, 0.07548780739307404, -0.016879471018910408, 0.04604121670126915, 0.004620525520294905, -0.00811976008117199, -0.004199351649731398, 0.007025490049272776, -0.04393509775400162, 0.006402532570064068, 0.015798043459653854, -0.016613850370049477, 0.04853112995624542, -0.01803302764892578, -0.03515724092721939, -0.027077566832304, -0.030220024287700653, -0.006456039380282164, 0.057586103677749634, 0.0525091327726841, -0.016761159524321556, 0.06841129064559937, -0.024286482483148575, 0.025806814432144165, 0.0017595267854630947, -0.044361717998981476, -0.025826385244727135, -0.033975306898355484, -0.006476225797086954, -0.006607202347368002, 0.021016089245676994, 0.004367695190012455, 0.015745148062705994, 0.004259531851857901, -0.03258036449551582, -0.003644461277872324, 0.04699280112981796, 0.0024692201986908913, -0.01284199021756649, -0.024358991533517838, -0.030629197135567665, 0.0427369587123394, -0.03466704487800598, -0.00003227906199754216, 0.005389663856476545, -0.07619515806436539, 0.023487664759159088, -0.07480843365192413, -0.054817572236061096, 0.016531556844711304, 0.0033776257187128067, 0.04918663203716278, 0.02534942515194416, -0.006275158375501633, 0.06646283715963364, -0.004881868604570627, 0.019863957539200783, -0.00988779030740261, -0.005346710328012705, 0.04576663300395012, -0.002956493990495801, 0.012220475822687149, 0.04192044213414192, 0.014678667299449444, 0.0018806324806064367, -0.035837337374687195, 0.05266395956277847, -0.03504740819334984, -0.29114457964897156, 0.03213140368461609, 0.004241198301315308, -0.0283869206905365, 0.03330198675394058, -0.04406125470995903, 0.012640630826354027, -0.05996722728013992, -0.03176290914416313, -0.0036054272204637527, -0.05034886300563812, -0.03868814557790756, -0.032392676919698715, 0.05554469674825668, -0.012202125042676926, 0.024864140897989273, -0.002442113822326064, -0.027269363403320312, 0.006568292621523142, 0.05336083099246025, -0.008235694840550423, -0.056216347962617874, -0.021712077781558037, 0.066252700984478, 0.044055622071027756, 0.07397476583719254, -0.0870215892791748, 0.02184946835041046, -0.05313125252723694, -0.022875241935253143, 0.015852853655815125, -0.0005437720101326704, -0.0017040148377418518, -0.014508558437228203, -0.018213992938399315, -0.012485306710004807, 0.06253586709499359, -0.00030867537134326994, -0.0034999025519937277, 0.0008365476387552917, -0.028403373435139656, -0.03799666464328766, -0.007192034274339676, 0.020969118922948837, 0.07696865499019623, 0.01843292824923992, -0.0838661640882492, -0.020781876519322395, -0.04106595367193222, 0.07758867740631104, -0.02360224723815918, -0.02815226837992668, -0.00874165166169405, 0.044767845422029495, 0.006883366499096155, -0.00808531604707241, -0.006886881776154041, -0.010544680058956146, -0.04056300222873688, -0.048288457095623016, -0.016875969246029854, -0.03718971088528633, -0.017242249101400375, -0.0692811906337738, -0.0001267971092602238, -0.07152392715215683, -0.056289952248334885, 0.00542414328083396, 0.06634689122438431, 0.026188697665929794, -0.07592970132827759, 0.02174323983490467, -0.01812204346060753, -0.10696584731340408, -0.0075420113280415535, 0.00949000846594572, -0.020966921001672745, -0.0036262134090065956, 0.029941990971565247, 0.041226379573345184, -0.0285323653370142, -0.05217229947447777, 0.0270378440618515, 0.005963764153420925, 0.03139143064618111, -0.024293525144457817, 0.06480062752962112, 0.01443637814372778, 0.0012644784292206168, 0.018405117094516754, 0.07310938835144043, 0.015150063671171665, -0.03778073191642761, -0.020487220957875252, 0.02757815271615982, 0.028050757944583893, 0.01423583459109068, -0.022214585915207863, -0.011369241401553154, 0.029822513461112976, -0.00986874382942915, -0.04514329135417938, 0.018215231597423553, -0.020115355029702187, -0.005573903676122427, -0.011782222427427769, -0.043091028928756714, 0.005505173932760954, 0.021644074469804764, 0.025089457631111145, -0.001986691728234291, -0.06122288107872009, -0.0032210766803473234, -0.024101098999381065, -0.026789596304297447, -0.008256584405899048, 0.011652681045234203, 0.030775820836424828, -0.00892661977559328, 0.007549236994236708, -0.0376928374171257, 0.011187613941729069, -0.003189697628840804, -0.016570614650845528, -0.05407249927520752, -0.01930418610572815, -0.009351557120680809, -0.04061616212129593, 0.015422213822603226, 0.001980902859941125, -0.013869186863303185, 0.0008721314952708781, 0.01380679290741682, -0.03941057622432709, 0.009573860093951225, -0.029319748282432556, -0.058839522302150726, -0.03429373353719711, 0.003135841805487871, 0.005325462203472853, -0.01861032098531723, 0.03244289010763168, -0.009151419624686241, -0.0020331034902483225, 0.0542929582297802, 0.019167255610227585, 0.007519917096942663, -0.010459781624376774, 0.0115050058811903, 0.005308541934937239, -0.0030454727821052074, -0.06406348943710327, 0.016511613503098488, -0.04162735864520073, -0.021659061312675476, -0.003152051940560341, 0.03084682486951351, -0.007934937253594398, -0.010071402415633202, 0.0013404912315309048, 0.008114437572658062, -0.06623794883489609, -0.030731355771422386, -0.012887569144368172, 0.02919933572411537, 0.05436766520142555, -0.00885803997516632, 0.011491027660667896, -0.00837226863950491, -0.01975342072546482, 0.01869027502834797, 0.010400303639471531, -0.045423660427331924, 0.004641770385205746, 0.0010492614237591624, -0.019309652969241142, 0.00840907171368599, 0.010002362541854382, 0.032815899699926376, 0.0037954174913465977, -0.004252167884260416, -0.027515780180692673, 0.021568506956100464, 0.0055728270672261715, 0.05291162431240082, 0.03610716387629509, -0.006723304744809866, 0.01669740304350853, -0.019576184451580048, -0.01605987921357155, -0.035078465938568115, -0.006396557204425335, -0.0005662873736582696, 0.010570657439529896, -0.04711119830608368, -0.07391189783811569, 0.04356364905834198, 0.021278878673911095, 0.01999586448073387, 0.02595674805343151, -0.01383267529308796, 0.01188051886856556, -0.02878117375075817, 0.03786872699856758, 0.05114372447133064, -0.06762979179620743, 0.009554014541208744, -0.02465485967695713, 0.014795217663049698, -0.019225982949137688, -0.01044382806867361, -0.02406635321676731, -0.008602469228208065, -0.0468984954059124, 0.007389779202640057, -0.08502066135406494, -0.023705558851361275, -0.03577734902501106, 0.02762582153081894, -0.03862999007105827, 0.019509829580783844, -0.019441688433289528, -0.0031932182610034943, -0.005608073435723782, -0.03555867448449135, 0.02354707196354866, -0.03812967613339424, -0.0016876530135050416, -0.0021416100207716227, -0.04137498140335083, -0.005378096830099821, -0.01983281783759594, 0.007467945106327534, 0.025300156325101852, -0.033625829964876175, -0.0038036515470594168, -0.01608346588909626, 0.013533879071474075, 0.03374844416975975, 0.03713017329573631, 0.00801788829267025, -0.022948775440454483, -0.044423628598451614, -0.015682974830269814, -0.04173756390810013, 0.04142429307103157, -0.03860708326101303, 0.0034699272364377975, 0.04709305614233017, 0.0516580231487751, 0.03786789998412132, 0.04536569491028786, -0.013515534810721874, -0.02729431353509426, 0.042085859924554825, -0.06436648219823837, -0.014110091142356396, -0.027256399393081665, -0.05573772266507149, 0.005387030076235533, 0.011233058758080006, 0.03217392787337303, -0.04359240457415581, 0.05915350839495659, -0.002982296049594879, 0.02755465731024742, 0.04168885201215744, -0.0193587988615036, 0.029645631089806557, -0.05545980855822563, 0.0011526277521625161, -0.07924439758062363, -0.014923100359737873, 0.021432071924209595, 0.01451585441827774, -0.017882488667964935, -0.01089494489133358, -0.03745309263467789, 0.05909893661737442, -0.07613919675350189, -0.019735068082809448, 0.044108301401138306, -0.025754857808351517, -0.012543128803372383, 0.021860668435692787, -0.05626945197582245, 0.046126239001750946, 0.02337978035211563, -0.043279774487018585, -0.0191119983792305, -0.024825310334563255, 0.052606116980314255, -0.0011614351533353329, 0.02708524465560913, -0.02531721629202366, 0.0015347772277891636, 0.08034184575080872, 0.0014433900360018015, 0.00794682651758194, 0.05805699899792671, -0.00030026983586139977, 0.032235730439424515, 0.024368125945329666, 0.016571620479226112, -0.007939317263662815, 0.015889426693320274, -0.005136469844728708, -0.07127340137958527, 0.04084429517388344, 0.005467476788908243, -0.027528459206223488, -0.035616032779216766, 0.06976521760225296, 0.019431669265031815, -0.029029687866568565, -0.03829208016395569, 0.018588144332170486, -0.055158279836177826, -0.0029103124979883432, -0.027043232694268227, -0.011380032636225224, -0.03891172260046005, 0.04929591715335846, -0.002797102089971304, 0.005556435324251652, 0.05602671205997467, -0.00843206699937582, -0.03169385343790054, -0.02518380619585514, 0.08236871659755707, 0.0536910742521286, 0.06347820162773132, 0.011098697781562805, 0.07575568556785583, -0.019456131383776665, -0.05057521536946297, 0.029426036402583122, 0.011842799372971058, -0.014040746726095676, -0.020548129454255104, 0.02948773466050625, 0.05767728015780449, -0.014139119535684586, 0.058758415281772614, -0.017400728538632393, -0.026713218539953232, 0.0025408058427274227, 0.0438263975083828, 0.02110372856259346, 0.0602143332362175, 0.01541651040315628, 0.003451717784628272, -0.027925856411457062, -0.058812085539102554, 0.047609955072402954, -0.03416988626122475, 0.0002711457491386682, 0.029617849737405777, -0.015166440047323704, 0.028743529692292213, -0.01655687391757965, 0.043969035148620605, 0.07642465829849243, -0.04911963269114494, 0.017700549215078354, -0.0059823389165103436, 0.027176743373274803, 0.004972510039806366, 0.014702331274747849, -0.02193262055516243, -0.014923815615475178, 0.006201981566846371, -0.04077708348631859, -0.027528245002031326, -0.019828148186206818, 0.0015814288053661585, 0.01973533444106579, -0.03269525244832039, -0.0019216951914131641, 0.03585411608219147, 0.0252879336476326, -0.026431027799844742, -0.058599721640348434, -0.025179054588079453, -0.03205997124314308, -0.06481730937957764, -0.012359685264527798, 0.03743673115968704, -0.010464794002473354, -0.030232656747102737, -0.019335757941007614, -0.04055129364132881, -0.018514711409807205, 0.03844313323497772, -0.04457693547010422, -0.01887010596692562, 0.0008878610678948462, 0.027207862585783005, 0.022519586607813835, 0.011505726724863052, 0.04918815940618515, -0.0025848832447081804, -0.014101461507380009, -0.015380912460386753, 0.015629203990101814, 0.020062055438756943, 0.009304252453148365, 0.0060979281552135944, -0.08917746692895889, 0.02806086651980877, 0.04195722937583923, -0.016368228942155838, -0.04538457468152046, 0.03460673615336418, 0.04828449338674545, 0.042283590883016586, 0.05046462640166283, -0.004262330010533333, -0.008458727039396763, -0.018884187564253807, -0.02198566310107708, -0.014905937016010284, 0.01883430778980255, 0.05291222035884857, -0.02859562076628208, 0.09159830212593079, 0.016684461385011673, -0.0065059051848948, -0.04032009094953537, -0.022586427628993988, 0.014329989440739155, -0.018012017011642456, -0.021834351122379303, -0.031182045117020607, -0.02815231867134571, -0.08311450481414795, -0.029993094503879547, 0.03057100996375084, -0.026902036741375923, -0.03894581273198128, 0.01994561403989792, 0.02220144122838974, -0.01995861530303955, 0.02924877218902111, -0.046399928629398346, 0.02893308363854885, -0.027537239715456963, -0.005514705087989569, 0.021774495020508766, -0.002745711710304022, -0.004147975705564022, 0.0020648660138249397, 0.0018841964192688465, -0.046654120087623596, 0.004303176421672106, -0.007189449388533831, 0.01405476126819849, 0.039192572236061096, -0.006103405728936195, -0.014795003458857536 ]
[ -0.08646364510059357, -0.007837289944291115, -0.014750184491276741, -0.0193362794816494, 0.021597396582365036, -0.013608459383249283, -0.031752053648233414, 0.023716961964964867, -0.005151208955794573, -0.025112222880125046, 0.007666217628866434, 0.0005931053310632706, 0.00581629341468215, 0.011109603568911552, 0.10681913048028946, 0.0005546446773223579, -0.008675615303218365, -0.055595897138118744, 0.005635725799947977, 0.03365227207541466, -0.00939273089170456, -0.030816253274679184, -0.0339275561273098, -0.005552769638597965, -0.012665159069001675, 0.01041601225733757, 0.02420547977089882, -0.04906090348958969, 0.019686102867126465, -0.1681092381477356, -0.004188504070043564, 0.015354438684880733, 0.07404627650976181, 0.01826995424926281, -0.011587440967559814, 0.07498346269130707, 0.029260721057653427, 0.012667694129049778, -0.016847848892211914, 0.036325786262750626, -0.004910963121801615, 0.01853174902498722, -0.055165261030197144, -0.040983494371175766, 0.04343409463763237, 0.0032151786144822836, 0.008576334454119205, -0.05737299472093582, -0.03210126608610153, 0.00882671307772398, -0.058365315198898315, -0.04704627767205238, -0.003793038660660386, -0.016302213072776794, -0.007633754517883062, 0.01510194968432188, 0.04282083734869957, 0.04576024413108826, -0.0023523850832134485, 0.0316290557384491, -0.005920830182731152, -0.0003982920607086271, -0.14144176244735718, 0.08024343848228455, 0.014930598437786102, 0.05331740528345108, -0.04797077924013138, -0.011405004188418388, 0.007369213737547398, 0.0865422785282135, -0.006570272613316774, -0.040773794054985046, -0.008010758087038994, 0.014400078915059566, 0.022318290546536446, 0.027213068678975105, -0.001999981701374054, 0.033497050404548645, 0.037372659891843796, -0.058677516877651215, -0.04801281541585922, -0.026179686188697815, -0.009050978347659111, -0.006123093422502279, -0.02375509776175022, 0.03281698003411293, -0.010117357596755028, 0.03336033225059509, 0.009925548918545246, 0.013923229649662971, 0.04176982864737511, 0.0061077638529241085, 0.022515058517456055, 0.004483818542212248, -0.0800851359963417, -0.0374777689576149, -0.014489663764834404, 0.032087258994579315, -0.052354343235492706, 0.48555293679237366, -0.02534889616072178, -0.01660236530005932, 0.08452708274126053, 0.035016998648643494, -0.017152972519397736, -0.003788572736084461, 0.022002188488841057, -0.06108415126800537, 0.039682406932115555, -0.021116022020578384, 0.014818293042480946, 0.005690788850188255, 0.06172643601894379, -0.032439906150102615, 0.010992665775120258, 0.05542878434062004, 0.027380118146538734, 0.023653818294405937, -0.00598567770794034, 0.020527027547359467, -0.001539932331070304, 0.00847219955176115, 0.019879624247550964, -0.016413649544119835, -0.04028082266449928, -0.04143950715661049, 0.015156042762100697, 0.046356987208127975, 0.043350253254175186, 0.0011686342768371105, 0.06846629083156586, -0.019231852144002914, -0.06671404838562012, 0.006300576496869326, -0.006109975278377533, -0.0026640226133167744, 0.031284358352422714, -0.03201724588871002, -0.015413185581564903, 0.04774206876754761, 0.039033181965351105, -0.002136008348315954, 0.01838245801627636, -0.037797000259160995, -0.043368104845285416, 0.11850624531507492, 0.001359971472993493, -0.02552652359008789, 0.0056404415518045425, 0.00934200081974268, -0.012106338515877724, 0.010811780579388142, -0.007428093813359737, -0.047189000993967056, 0.020709073171019554, 0.01105797104537487, 0.11080532521009445, -0.021214261651039124, -0.03968418389558792, -0.009062333032488823, -0.021617082878947258, -0.021166063845157623, -0.050981879234313965, -0.002584738889709115, 0.09728726744651794, -0.08734342455863953, -0.015682898461818695, 0.0015353666385635734, 0.018280252814292908, -0.09124713391065598, -0.002085666172206402, 0.011124525219202042, -0.012436720542609692, 0.019857417792081833, 0.06095016747713089, -0.0102384677156806, -0.043464191257953644, 0.017958909273147583, 0.04844386503100395, 0.029790857806801796, 0.028058940544724464, -0.004043486900627613, -0.03249330818653107, -0.01831871084868908, -0.03942421078681946, -0.048642344772815704, -0.02074599638581276, -0.03051546961069107, -0.002610682975500822, 0.014639610424637794, -0.015729870647192, -0.01761949434876442, -0.09181106835603714, 0.05615485832095146, -0.018662717193365097, -0.030772795900702477, 0.01853535883128643, -0.03918979689478874, -0.03951819986104965, -0.004995867144316435, -0.08539942651987076, 0.028585489839315414, -0.04080354422330856, 0.01768675446510315, -0.0556400865316391, 0.051942259073257446, 0.06058627739548683, -0.02912941202521324, 0.09922615438699722, 0.03614214062690735, -0.0417977012693882, -0.037603653967380524, 0.01786450482904911, 0.024885006248950958, 0.003824978368356824, -0.023515738546848297, -0.001253527239896357, 0.03150220960378647, -0.006898293271660805, 0.005726343020796776, 0.0014499311801046133, 0.01919182948768139, -0.012316586449742317, -0.3296681046485901, -0.022095931693911552, -0.009066645056009293, 0.009304284118115902, 0.003921162337064743, -0.04669863358139992, 0.031907085329294205, -0.028453567996621132, -0.010451797395944595, 0.017455803230404854, 0.08456491678953171, -0.0031480970792472363, 0.013025561347603798, -0.07698700577020645, 0.021426621824502945, 0.015125339850783348, -0.016043363139033318, -0.005549693945795298, -0.016989540308713913, -0.00022794806864112616, 0.029386356472969055, 0.021852584555745125, -0.014323923736810684, -0.060155220329761505, -0.025035042315721512, -0.05205953121185303, 0.1003229022026062, 0.020797764882445335, 0.0887051597237587, -0.034865956753492355, 0.03154816851019859, 0.0026079078670591116, 0.01456813607364893, -0.11399126797914505, 0.03646280989050865, -0.024528976529836655, 0.001687227631919086, -0.050447456538677216, 0.03292769193649292, -0.058290231972932816, -0.03300414979457855, 0.030727386474609375, -0.06426041573286057, -0.051428455859422684, -0.06461318582296371, 0.007157756015658379, -0.028890494257211685, -0.0453680083155632, -0.02612062729895115, 0.0634613037109375, 0.006558310706168413, -0.022139135748147964, 0.015071852132678032, -0.005581020377576351, -0.0475798174738884, -0.0229877308011055, -0.09859790652990341, 0.025822119787335396, -0.0013751017395406961, 0.010687294416129589, 0.02429960109293461, 0.07462247461080551, 0.007536671124398708, -0.057547759264707565, -0.006888779811561108, 0.011467200703918934, 0.006577604450285435, 0.012114987708628178, 0.05231548845767975, -0.012739833444356918, -0.011235595680773258, 0.06866954267024994, 0.008486751466989517, -0.001147099188528955, 0.0296205822378397, 0.02766907773911953, -0.004700158257037401, -0.009856116026639938, 0.007212269119918346, 0.006987919099628925, 0.012296316213905811, -0.026465293020009995, 0.014643527567386627, -0.025666218250989914, -0.0074380142614245415, 0.015162227675318718, 0.012492083013057709, -0.05960438773036003, 0.06766851246356964, 0.03475755825638771, -0.019256776198744774, 0.016703056171536446, -0.02358354814350605, -0.02076035365462303, 0.06443347036838531, -0.004485986195504665, -0.25506308674812317, 0.025330187752842903, 0.05210758373141289, 0.020848294720053673, -0.006687524728477001, 0.021321777254343033, 0.02193782478570938, -0.05505336448550224, 0.0018400718690827489, 0.008953935466706753, 0.06135080009698868, 0.007711631245911121, -0.011109305545687675, 0.0015573687851428986, 0.019824540242552757, 0.015671156346797943, 0.04448652267456055, -0.012946938164532185, 0.040297407656908035, 0.004276111721992493, -0.0006980228354223073, 0.011012964881956577, 0.14607112109661102, 0.008846938610076904, 0.04704628512263298, -0.007577701471745968, -0.020632585510611534, -0.014880700968205929, 0.07291687279939651, -0.0029256343841552734, -0.007487508002668619, -0.00020013023458886892, 0.028644656762480736, 0.0033657927997410297, 0.011866744607686996, -0.08512584865093231, -0.03563570976257324, 0.02723657339811325, 0.015370394103229046, 0.0266204085201025, 0.002628325019031763, -0.003800717182457447, -0.038443390280008316, -0.006664259824901819, 0.05790361389517784, 0.035879116505384445, 0.014735288918018341, -0.03509388864040375, -0.06094915792346001, 0.00016195721400436014, -0.022308586165308952, -0.047228701412677765, -0.004740310832858086, 0.00507447449490428, 0.012326867319643497, 0.09038937091827393, 0.01695932075381279, -0.035337984561920166, -0.013340800069272518, -0.007815133780241013, -0.022006483748555183, -0.016445884481072426, 0.09206809103488922, 0.04403937980532646, 0.021044498309493065 ]
[ -0.03246001899242401, -0.0009282554965466261, -0.0035517453216016293, 0.012169837951660156, 0.008871649391949177, 0.015474634245038033, 0.01260808203369379, -0.003995468374341726, 0.0028892625123262405, -0.007850199937820435, 0.019164076074957848, 0.019653085619211197, 0.027028383687138557, -0.02231053076684475, 0.013293714262545109, 0.00037822878221049905, 0.016283554956316948, -0.02241664193570614, 0.0069092512130737305, 0.01146609801799059, -0.00894283689558506, 0.002748586470261216, 0.006093534175306559, -0.0016016608569771051, -0.02384527027606964, -0.0225264523178339, -0.004179989453405142, -0.0350162498652935, 0.022282922640442848, -0.11288618296384811, -0.05447136238217354, -0.03742031753063202, -0.008999308571219444, -0.0030033274088054895, -0.021423185244202614, 0.00694820424541831, -0.009819298051297665, 0.010772733017802238, -0.018233954906463623, 0.010112387128174305, -0.038464147597551346, -0.0031321884598582983, 0.00921713002026081, 0.04740968346595764, 0.02163543552160263, -0.0105154262855649, -0.006458320654928684, -0.05895477905869484, -0.021756034344434738, -0.012636035680770874, -0.041866734623909, -0.030085336416959763, 0.028448013588786125, 0.004097945988178253, -0.004716460593044758, -0.011966620571911335, 0.0007808435475453734, 0.005425425246357918, 0.00923189427703619, 0.018814148381352425, 0.018258126452565193, -0.001995326718315482, -0.03686465322971344, -0.02204984799027443, -0.010210382752120495, -0.03771745786070824, -0.028758475556969643, 0.035175204277038574, -0.02346143126487732, 0.0006138243479654193, -0.012335369363427162, 0.024438174441456795, -0.011149403639137745, -0.0435677133500576, 0.040678758174180984, -0.016124358400702477, -0.019605344161391258, -0.02135239727795124, 0.036818891763687134, -0.019137244671583176, -0.033617570996284485, 0.019352072849869728, 0.04927242919802666, -0.009750906378030777, 0.010662834160029888, 0.007487527560442686, 0.025102926418185234, -0.011191393248736858, 0.009356696158647537, 0.015113722532987595, -0.010556766763329506, 0.023952828720211983, -0.022828131914138794, 0.014868185855448246, -0.10526137053966522, 0.0195909570902586, -0.010082433931529522, -0.019114281982183456, 0.006829420570284128, 0.8527576327323914, -0.02165401726961136, 0.004243118688464165, 0.04097682237625122, 0.007322195451706648, 0.005081407260149717, -0.004964716266840696, 0.0105604138225317, -0.023578407242894173, 0.04284273087978363, -0.02765023708343506, 0.022609667852520943, 0.02759445272386074, 0.00026143284048885107, 0.03556868061423302, -0.0002511240018066019, 0.04244131222367287, 0.013748648576438427, 0.028080208227038383, -0.026189809665083885, 0.04074879363179207, 0.018436497077345848, -0.009557783603668213, 0.01821770705282688, 0.02094285748898983, -0.001111698104068637, -0.16705322265625, 0.02099207416176796, -7.301605200651717e-33, 0.060972195118665695, -0.02887699380517006, 0.011626244522631168, -0.002760636853054166, 0.012050434947013855, -0.017757857218384743, 0.02187265269458294, -0.009242529049515724, -0.023327108472585678, -0.005791915114969015, -0.02076845057308674, 0.023692797869443893, 0.004926836583763361, -0.02730327658355236, 0.01479426957666874, -0.025583259761333466, -0.01950692944228649, 0.048352595418691635, 0.014842904172837734, 0.005462744738906622, 0.0626654401421547, 0.03314799442887306, -0.007264428772032261, -0.024680329486727715, 0.0005036589573137462, 0.03566371649503708, 0.016404086723923683, 0.024013789370656013, 0.014863247983157635, -0.029883677139878273, -0.020185621455311775, 0.005459009204059839, -0.03798246756196022, -0.034445133060216904, -0.03521537780761719, -0.03621363267302513, 0.006971693132072687, 0.006872278172522783, -0.014601968228816986, -0.06012527272105217, -0.0018272590823471546, 0.00038145415601320565, -0.02452719584107399, -0.055030081421136856, -0.0031434406992048025, 0.015044497326016426, 0.03338201344013214, 0.013441674411296844, -0.0011506114387884736, -0.023202236741781235, -0.03279297426342964, -0.004438579548150301, 0.027430713176727295, 0.001058801426552236, -0.004064267501235008, 0.008758642710745335, 0.018093744292855263, 0.03825047239661217, 0.023520251736044884, 0.036813199520111084, 0.008544103242456913, 0.014845525845885277, -0.017929935827851295, 0.03900865837931633, -0.028712036088109016, -0.02062133327126503, 0.0020166696049273014, -0.026752974838018417, 0.04561425745487213, -0.015804782509803772, -0.06585241854190826, 0.011733712628483772, -0.007168690674006939, -0.0015680900542065501, 0.00019352411618456244, -0.026304010301828384, 0.013418905436992645, 0.038720183074474335, -0.02144712768495083, 0.06226692721247673, 0.02672176994383335, -0.015132362022995949, -0.03275219351053238, -0.03506515547633171, -0.022830836474895477, 0.023209555074572563, -0.02317291498184204, -0.049261584877967834, -0.00698904087767005, 0.024008506909012794, 0.0028057973831892014, 0.04159170761704445, 0.0017784893279895186, 0.005063261836767197, -0.004249109420925379, 6.924585224092638e-33, 0.0024465948808938265, 0.002020590240135789, 0.001187713467516005, 0.003434977727010846, 0.06370517611503601, -0.014414791017770767, 0.013596965931355953, -0.003537634154781699, -0.046191826462745667, 0.002373917493969202, -0.013720566406846046, -0.0189848393201828, -0.025029411539435387, 0.022872567176818848, 0.05150609090924263, -0.024222394451498985, 0.013031795620918274, 0.026550842449069023, 0.014995594508945942, 0.009989737533032894, 0.029694076627492905, 0.021732572466135025, -0.003809186164289713, -0.009555456228554249, 0.033091649413108826, 0.053088825196027756, -0.00870691891759634, 0.04251916706562042, -0.0013174638152122498, 0.02240508608520031, 0.005470685660839081, -0.03269484266638756, 0.008472921326756477, 0.017313217744231224, -0.02799438312649727, -0.007433684077113867, -0.023972714319825172, 0.0023845748510211706, 0.00905565544962883, 0.021268654614686966, 0.03960325941443443, -0.008640271611511707, 0.011736583895981312, 0.05497323349118233, 0.029938513413071632, 0.025204462930560112, -0.0027419831603765488, -0.023064937442541122, -0.0051961252465844154, -0.013356928713619709, -0.004846553318202496, -0.007367247249931097, -0.02005680650472641, -0.020265666767954826, 0.002582977991551161, -0.021317947655916214, -0.02476225607097149, 0.0017378877382725477, -0.017110388725996017, 0.02066485397517681, -0.007346129976212978, -0.016966821625828743, -0.036867789924144745, 0.021869640797376633, -0.016653617843985558, -0.01322611328214407, -0.025183329358696938, 0.008379162289202213, -0.02308012545108795, 0.005640811752527952, -0.0031043533235788345, 0.026105502620339394, 0.016962796449661255, 0.03361230343580246, 0.002091021975502372, -0.007726130075752735, -0.01088158879429102, -0.008613238111138344, -0.026764826849102974, -0.0005599799333140254, -0.007777933031320572, -0.010722066275775433, 0.02156505174934864, -0.01042218692600727, 0.015869855880737305, 0.05303981155157089, -0.0017287555383518338, 0.035379450768232346, 0.0353495292365551, -0.03325792774558067, -0.010043313726782799, -0.022569440305233, 0.04147401824593544, 0.014709973707795143, -0.012549348175525665, -1.2932740212079352e-8, -0.014916502870619297, 0.011348548345267773, -0.0003559195320121944, 0.015494956634938717, 0.011858788318932056, 0.03495355695486069, -0.013671920634806156, 0.007679126691073179, -0.028484277427196503, 0.02095477283000946, 0.03442414104938507, -0.004755869973450899, -0.01928764022886753, 0.011169183067977428, 0.014687387272715569, -0.03359181433916092, -0.02599565126001835, 0.01843900978565216, 0.03330424055457115, 0.00004216755769448355, 0.0548163540661335, 0.02148527093231678, 0.007005294319242239, -0.006776774302124977, -0.033139877021312714, -0.025052042677998543, -0.022881919518113136, -0.07121842354536057, -0.03749915584921837, -0.03177783638238907, -0.00509979110211134, -0.030534517019987106, -0.01483162771910429, 0.03369656577706337, -0.0173364095389843, -0.026015372946858406, -0.02183164283633232, 0.006935966666787863, 0.017446881160140038, -0.0034884039778262377, -0.008683198131620884, -0.010594339109957218, 0.011210774071514606, -0.03733087703585625, -0.036774441599845886, 0.03144455328583717, -0.01400803867727518, -0.03634529933333397, 0.023389175534248352, -0.016777541488409042, 0.006044585723429918, -0.02994232065975666, 0.005859519820660353, 0.016378086060285568, 0.009000001475214958, 0.023715823888778687, -0.0059571354649960995, -0.01731814816594124, -0.0483325831592083, -0.006978153716772795, 0.006952931638807058, -0.00018579937750473619, -0.035262517631053925, -0.02699664793908596 ]
thoughtworks-university-coding-dojo-style
https://markhneedham.com/blog/2011/03/29/thoughtworks-university-coding-dojo-style
false
2011-03-17 06:52:37
Pair Presenting
[ "thoughtworks-university" ]
[ "ThoughtWorks University" ]
Over the last year or so I've had some opportunities to pair with a few different people on sessions/presentations that we've been giving. I much prefer doing this than presenting something by myself mainly because it's much more fun and seems to encourage more participation than when I do something alone. I feel that it's probably easier to pair present if you both have similar opinions on the subject matter and are comfortable with a similar style of delivery. For example http://twitter.com/#!/frankmt[Frankie] and I have run a couple of sessions at ThoughtWorks University and beforehand we've created a rough outline of how we expect the session to play out. Once we've started though both of us are quite comfortable with changing it while we're going if that will make the session better whereas others might prefer more to the pre planned structure. Having another person there can allow you to approach a topic in a way that is quite difficult to do alone. About a year ago I did a talk about http://skillsmatter.com/podcast/open-source-dot-net/mike-wagg-mark-needham-functional-and-oo-approaches-to-c-sharp-programming[Functional Programming in C#] with http://twitter.com/#!/Mikewagg[Mike Wagg] and we were able to play different roles to demonstrate certain points. He played the guy who's predominantly in favour of OO programming but is interested in learning about functional programming while I played the guy who loves functional programming and wants to use it everywhere. It seemed to work reasonably well. A variation on this which http://www.learninggeneralist.com/[Sumeet] and I tried is to have one person leading the session and the other recording any questions that need to be answered later on or create a mindmap of what's being covered in the session. One of the dangers of pair presenting is that you can end up just having a conversation with the other person rather than talking to the audience but I think this is something that can be overcome with practice. Preparation also becomes more difficult because you need to do at least some of it together so you both know what's going to happen in the session. I think that's outweighed by the other benefits I see from pairing though.
null
null
[ 0.0152813121676445, -0.01895897090435028, -0.0024161660112440586, 0.04638553783297539, 0.07297945767641068, 0.014716037549078465, 0.0371234305202961, 0.03363817557692528, 0.02268982119858265, -0.0360214002430439, -0.016590185463428497, 0.021080071106553078, -0.05038194730877876, 0.005619687959551811, -0.03870939090847969, 0.07056265324354172, 0.05290882661938667, -0.03176584839820862, 0.015150843188166618, 0.015980761498212814, 0.027252444997429848, 0.06079547852277756, 0.025296466425061226, 0.03473788872361183, 0.021058764308691025, 0.015839632600545883, 0.019557218998670578, 0.003987054340541363, -0.04503995180130005, -0.02183113619685173, 0.029933184385299683, 0.0005872796173207462, 0.013182236813008785, -0.022958364337682724, 0.03240611031651497, -0.022933846339583397, 0.017363058403134346, 0.03133172169327736, 0.013574591837823391, 0.028009144589304924, -0.06521221995353699, 0.049201056361198425, -0.002504181582480669, -0.011021548882126808, -0.0428163968026638, 0.00006925060006324202, -0.027969060465693474, -0.0034232442267239094, 0.01463349163532257, -0.009125258773565292, -0.09628105908632278, 0.03197938948869705, 0.02045448310673237, 0.02098061516880989, -0.020358853042125702, 0.03719598799943924, 0.035669613629579544, -0.06397391855716705, -0.0019566097762435675, -0.0421261340379715, -0.02637491188943386, 0.008284549228847027, 0.003989889286458492, 0.02352791093289852, 0.02223784103989601, -0.010856113396584988, -0.0028106439858675003, 0.04030008241534233, -0.04097151756286621, -0.005688720848411322, -0.015489555895328522, 0.017733577638864517, -0.017914719879627228, -0.04056926816701889, 0.015555116347968578, -0.027933916077017784, 0.01305402908474207, 0.04839055985212326, 0.0304089467972517, 0.03405354544520378, -0.006438276264816523, 0.030795661732554436, 0.017157195135951042, 0.03591699153184891, -0.012793040834367275, -0.043976373970508575, -0.0028521381318569183, -0.020054450258612633, -0.07309477776288986, 0.04748013988137245, 0.004164933227002621, -0.06702236831188202, 0.0048728515394032, 0.028214041143655777, -0.0019391088280826807, 0.040863167494535446, 0.043844182044267654, -0.019309328868985176, -0.015391860157251358, -0.00586695084348321, -0.0012403379660099745, -0.008174659684300423, -0.007687011267989874, 0.006454982794821262, -0.07107336074113846, 0.016091445460915565, -0.010595842264592648, -0.027213074266910553, -0.009378062561154366, 0.025296159088611603, -0.03950558602809906, 0.024698281660676003, 0.0038573567289859056, 0.016113286837935448, -0.07276219129562378, 0.056170810014009476, 0.007218324579298496, -0.03184901177883148, -0.018747152760624886, 0.0038175496738404036, 0.04004300385713577, 0.04170984402298927, -0.013634209521114826, 0.08244771510362625, -0.004797299858182669, 0.008629008196294308, -0.023066669702529907, 0.06283668428659439, -0.02401481382548809, -0.06563404947519302, -0.008147604763507843, 0.03201674297451973, -0.0005262558697722852, -0.007837926968932152, 0.0065794577822089195, -0.04050915315747261, 0.019138500094413757, 0.002822029637172818, 0.03216637670993805, 0.07060042023658752, -0.01312437653541565, -0.031181542202830315, 0.04061542823910713, 0.005819654557853937, 0.010994529351592064, -0.0150177963078022, -0.018567685037851334, -0.007910731248557568, -0.0335751548409462, 0.0061649722047150135, 0.008663300424814224, 0.022657884284853935, 0.018278837203979492, -0.05820991098880768, 0.025047268718481064, 0.09843504428863525, 0.025992857292294502, 0.006880887318402529, -0.01271731872111559, 0.013738290406763554, 0.03669847548007965, 0.009018968790769577, -0.00836033746600151, 0.0256047360599041, 0.015970909968018532, 0.006336288992315531, -0.012274985201656818, 0.03392959013581276, -0.013575251214206219, 0.0212723296135664, -0.06079992651939392, -0.01268052402883768, 0.04782867059111595, -0.04599767178297043, -0.04092678427696228, 0.042381398379802704, 0.0668412446975708, 0.021280556917190552, 0.04632149636745453, 0.004904626403003931, -0.07529576122760773, 0.009537644684314728, 0.011960321106016636, 0.009778625331819057, 0.017398560419678688, -0.020627396181225777, 0.04911094531416893, 0.03743483126163483, -0.012527688406407833, 0.05553244799375534, -0.06665725260972977, -0.08020500838756561, -0.029951415956020355, -0.016389377415180206, 0.0662427693605423, -0.014435917139053345, 0.009545065462589264, 0.06298547983169556, 0.019538111984729767, 0.0419628843665123, 0.055517833679914474, 0.0042566764168441296, 0.006832463666796684, -0.010443471372127533, -0.050521671772003174, 0.0666850209236145, 0.030149824917316437, -0.0020239753648638725, -0.050313550978899, -0.002041386906057596, -0.015486286953091621, -0.02089739963412285, 0.04813224449753761, -0.018451308831572533, 0.04119107127189636, 0.006900336127728224, 0.041812311857938766, -0.019842637702822685, 0.035762105137109756, -0.03215634077787399, 0.012129726819694042, 0.013970105908811092, -0.01873522438108921, 0.02419726923108101, -0.011971063911914825, 0.13516895473003387, 0.046107012778520584, -0.04754482954740524, -0.03303477540612221, 0.010602196678519249, 0.020641665905714035, -0.018287064507603645, 0.0019402919569984078, 0.0006966122891753912, 0.03149266168475151, 0.0007126724231056869, -0.06859699636697769, -0.027559751644730568, 0.024351021274924278, -0.04824867472052574, 0.008121008984744549, 0.06498357653617859, -0.032509367913007736, 0.07327653467655182, -0.011425240896642208, 0.0000013213785905463737, 0.00596222560852766, -0.015390576794743538, -0.03587327152490616, 0.0037821156438440084, 0.01172683946788311, -0.011477990075945854, 0.0568724125623703, -0.015939611941576004, -0.017314963042736053, -0.03141046687960625, -0.013037673197686672, -0.0040696426294744015, 0.05323423817753792, 0.043560076504945755, -0.011504780501127243, 0.07263808697462082, -0.03089459054172039, 0.02260245569050312, -0.015880372375249863, -0.05164658650755882, -0.030618613585829735, -0.02853119932115078, -0.0026570032350718975, 0.016193155199289322, 0.016244960948824883, -0.013955985195934772, 0.009017303586006165, 0.012178104370832443, -0.041387852281332016, -0.017564477398991585, 0.0221661739051342, -0.0031549129635095596, -0.018365802243351936, -0.0510624423623085, -0.013982478529214859, 0.039988767355680466, -0.03499005734920502, -0.01967551000416279, -0.010221730917692184, -0.05738912895321846, 0.01818149723112583, -0.06654999405145645, -0.05926652252674103, -0.008043612353503704, 0.03083740919828415, 0.05980824679136276, 0.020867969840765, 0.017033586278557777, 0.08486122637987137, 0.013942994177341461, 0.02414144016802311, -0.007411915343254805, -0.015500322915613651, 0.04227259010076523, -0.004909837152808905, -0.0028250613249838352, 0.03253333643078804, -0.0034811957739293575, -0.02385801263153553, -0.05310041457414627, 0.05919825658202171, -0.05058208480477333, -0.3120715320110321, 0.02348361350595951, 0.01546214334666729, -0.02444448135793209, 0.018338218331336975, -0.0366659015417099, 0.011848336085677147, -0.06125037372112274, -0.03419166058301926, 0.019876940175890923, -0.057282499969005585, -0.02668261155486107, -0.04823876917362213, 0.04593343287706375, 0.01718791574239731, 0.03667670115828514, 0.0040031494572758675, -0.03223158046603203, 0.022770658135414124, 0.05929182097315788, -0.01193518191576004, -0.04933185502886772, -0.009007354266941547, 0.043801359832286835, 0.03925737738609314, 0.046290867030620575, -0.09333733469247818, 0.02371090278029442, -0.047087412327528, -0.005911604501307011, 0.00039549879147671163, 0.006740331184118986, 0.009496672078967094, -0.025634555146098137, -0.023481225594878197, -0.018154790624976158, 0.05519791692495346, 0.007504338398575783, 0.004390697926282883, 0.005563439801335335, -0.028252743184566498, -0.04591407626867294, -0.011943135410547256, 0.024124791845679283, 0.06056755408644676, -0.002241959096863866, -0.07042063027620316, 0.007394667249172926, -0.036515023559331894, 0.06217864528298378, -0.0355532132089138, -0.049299176782369614, 0.012512550689280033, 0.03301335871219635, -0.000516129715833813, -0.027691999450325966, 0.0007295404211618006, -0.0022597159259021282, -0.03179122507572174, -0.03011888638138771, -0.02008281834423542, -0.036360811442136765, -0.013996652327477932, -0.05905180796980858, 0.013007640838623047, -0.06683580577373505, -0.060066286474466324, -0.012450323440134525, 0.07544747740030289, 0.030863521620631218, -0.025897352024912834, 0.0015983564080670476, -0.0008636090788058937, -0.09933272004127502, 0.0010492330184206367, 0.01863257773220539, -0.018942678347229958, -0.002565880538895726, 0.038560062646865845, 0.07174360752105713, -0.02875739149749279, -0.05344104394316673, 0.02110038697719574, -0.0008242176263593137, 0.06036795303225517, 0.006521990988403559, 0.03825387731194496, 0.0146156782284379, -0.028302587568759918, 0.008063233457505703, 0.05501079186797142, 0.01654154621064663, -0.01314790640026331, -0.00547624658793211, 0.02817118540406227, 0.029332207515835762, 0.03860458359122276, -0.016025710850954056, 0.011622506193816662, 0.012944813817739487, -0.003310037311166525, -0.04663804918527603, 0.007602536119520664, -0.009866602718830109, -0.022502077743411064, 0.003136587096378207, -0.05794936791062355, 0.022186510264873505, 0.046543460339307785, 0.013458618894219398, -0.012915157712996006, -0.021251825615763664, 0.010542713105678558, -0.030050454661250114, -0.023301027715206146, -0.020190445706248283, -0.004020277410745621, 0.04897685721516609, -0.018925746902823448, -0.017044801265001297, -0.0486273393034935, -0.011909916065633297, 0.00927640963345766, 0.0036280304193496704, -0.06650159507989883, -0.0051309093832969666, -0.022264910861849785, -0.031420569866895676, 0.0004794291453436017, 0.0288067813962698, -0.010768634267151356, 0.022565437480807304, 0.02581312693655491, -0.045237958431243896, 0.03442215174436569, -0.02434069663286209, -0.056857749819755554, -0.016861524432897568, -0.011348302476108074, -0.009531083516776562, 0.015050437301397324, 0.02396507002413273, -0.012210443615913391, 0.017448393628001213, 0.0279946718364954, 0.011780126951634884, -0.015429556369781494, -0.011143920943140984, 0.005933324806392193, 0.004890785086899996, 0.03314834088087082, -0.07137983292341232, -0.008931617252528667, -0.02648983709514141, -0.025455309078097343, -0.010056627914309502, 0.015768077224493027, -0.03004193864762783, -0.015349744819104671, -0.006462414283305407, 0.03317727521061897, -0.05483553931117058, -0.04860826954245567, -0.04383706673979759, 0.02695367857813835, 0.05576646700501442, -0.038548219949007034, 0.03023586794734001, -0.026994330808520317, -0.017169443890452385, 0.012116340920329094, 0.002049161121249199, -0.049357008188962936, -0.0018937364220619202, 0.039992813020944595, -0.008180633187294006, -0.001833756803534925, 0.002468331251293421, 0.059232622385025024, 0.006970291957259178, 0.014735427685081959, -0.027396656572818756, -0.0006100116297602654, 0.002132984809577465, 0.08093995600938797, 0.011337853036820889, -0.0018053230596706271, -0.012777796015143394, -0.012916428968310356, 0.004719170276075602, -0.04867132753133774, -0.009584039449691772, 0.010738249868154526, 0.0386212021112442, -0.0303924810141325, -0.0692712739109993, 0.05155251547694206, 0.011604751460254192, -0.006188266910612583, -0.0093140359967947, 0.006411723326891661, 0.00015266993432305753, -0.018667548894882202, 0.02555735968053341, 0.07396169006824493, -0.06527289003133774, 0.003547482192516327, -0.01437118835747242, -0.01910466141998768, 0.007532587740570307, -0.008309492841362953, -0.023981228470802307, -0.014397147111594677, -0.0244231428951025, 0.0030369567684829235, -0.061324261128902435, -0.032855987548828125, -0.00986493844538927, 0.017964664846658707, 0.024034086614847183, -0.012348699383437634, -0.03645683452486992, -0.03018542379140854, -0.02913418784737587, -0.042347777634859085, 0.00793942715972662, -0.058756254613399506, 0.0175468772649765, 0.011511754244565964, -0.06223173066973686, 0.008198253810405731, -0.04337691888213158, 0.026766125112771988, 0.02223506197333336, -0.016909969970583916, -0.003786262357607484, -0.05016335844993591, 0.018044037744402885, 0.014461942948400974, 0.03427605330944061, -0.0012195019517093897, -0.024547656998038292, -0.04396539553999901, -0.02127525396645069, -0.05664137378334999, 0.01266588643193245, -0.019334202632308006, -0.00403481163084507, 0.036307014524936676, 0.04089776426553726, 0.019878031685948372, 0.028496723622083664, -0.01004930678755045, -0.005190202035009861, 0.03878640756011009, -0.04606561362743378, -0.030871685594320297, -0.037754759192466736, -0.07121432572603226, -0.0046952031552791595, -0.005691140424460173, 0.017506157979369164, -0.045342352241277695, 0.020651917904615402, 0.021242961287498474, 0.02039691060781479, 0.04569968953728676, 0.002036389196291566, 0.03202524036169052, -0.04072790592908859, -0.005076153203845024, -0.07530318200588226, -0.00751399016007781, 0.029822390526533127, 0.010727331973612309, -0.03305073827505112, -0.003030771156772971, -0.02915121242403984, 0.053966622799634933, -0.07604885846376419, -0.003912886139005423, 0.026429856196045876, -0.007603862322866917, -0.01848515495657921, 0.009908724576234818, -0.07367152720689774, 0.012974768877029419, 0.011249621398746967, -0.03350413218140602, -0.024103766307234764, -0.010379632003605366, 0.0453030951321125, 0.013365122489631176, 0.033633626997470856, -0.019392043352127075, 0.005990204401314259, 0.07384684681892395, 0.008788134902715683, 0.008389811962842941, 0.07488878816366196, 0.004191863350570202, 0.03183681517839432, 0.028266696259379387, 0.00300541496835649, -0.008749316446483135, -0.0047026267275214195, -0.013856498524546623, -0.08724440634250641, 0.029601112008094788, 0.0054107592441141605, -0.03121114894747734, -0.0350935272872448, 0.04830378666520119, 0.01796579547226429, -0.033729393035173416, -0.05437380447983742, 0.02664286084473133, -0.056476205587387085, 0.01007741317152977, -0.013975217938423157, -0.005839645862579346, -0.047895368188619614, 0.03698243200778961, 0.008228628896176815, 0.005942963529378176, 0.05045580118894577, 0.015844369307160378, -0.03581509739160538, -0.023945989087224007, 0.08754713088274002, 0.0707922950387001, 0.08944864571094513, 0.030025890097022057, 0.07433672994375229, -0.035844337195158005, -0.04536383971571922, 0.0021934201940894127, 0.008567431010305882, -0.046371232718229294, -0.02798742614686489, 0.04008796811103821, 0.07632162421941757, -0.007905649952590466, 0.054555974900722504, -0.01497180387377739, -0.01639224961400032, 0.01429726928472519, 0.03657190874218941, 0.011835344135761261, 0.04454335197806358, 0.03571595251560211, 0.00196634978055954, -0.011776790022850037, -0.06777873635292053, 0.03683853894472122, -0.042738962918519974, -0.005448242649435997, 0.010598503053188324, -0.0019371483940631151, 0.03593112900853157, 0.03088667243719101, 0.030443651601672173, 0.06489136070013046, -0.03753556311130524, 0.01968756876885891, -0.003819630015641451, 0.01671827957034111, -0.004657499026507139, 0.0256222914904356, -0.0003879157011397183, -0.020457036793231964, 0.028497422114014626, -0.024005671963095665, -0.020015260204672813, -0.03208888694643974, -0.027965418994426727, 0.04064192622900009, -0.040798697620630264, 0.009818417951464653, 0.02129969373345375, 0.022166462615132332, -0.024826886132359505, -0.07466555386781693, -0.03386079892516136, -0.034637682139873505, -0.03763316199183464, -0.013762424699962139, 0.03128597512841225, -0.019488653168082237, -0.02839299850165844, -0.0006199400522746146, -0.022947747260332108, -0.00985921174287796, 0.05105943605303764, -0.06620626151561737, -0.05108393728733063, 0.018923994153738022, 0.0051938374526798725, 0.05199693515896797, 0.01260908879339695, 0.03387255221605301, -0.019761476665735245, -0.0024522270541638136, -0.023850301280617714, 0.02339237555861473, 0.01618088409304619, -0.011961433105170727, 0.0042439717799425125, -0.10010221600532532, 0.027494195848703384, 0.01830078288912773, 0.00007155576895456761, -0.05851773917675018, 0.012125929817557335, 0.04203224554657936, 0.022547269240021706, 0.04313185065984726, -0.018798375502228737, -0.004328200127929449, -0.050809793174266815, 0.007482461631298065, 0.0065900650806725025, 0.03397516906261444, 0.058977529406547546, -0.02620028331875801, 0.0846097469329834, 0.00634597335010767, -0.022089065983891487, -0.0442204549908638, -0.023214280605316162, 0.005784040782600641, 0.009906386025249958, -0.009811263531446457, -0.04204737767577171, -0.008194433525204659, -0.07508142292499542, -0.02437129244208336, 0.02215559035539627, -0.010721848346292973, -0.014411489479243755, 0.02790898084640503, 0.0297542717307806, -0.026946701109409332, 0.039385661482810974, -0.04357020929455757, 0.029407748952507973, -0.009822778403759003, 0.006238930858671665, 0.0007793020340614021, -0.0048016649670898914, -0.022633584216237068, -0.015767687931656837, 0.011922434903681278, -0.05088410899043083, -0.024703146889805794, -0.0046888720244169235, 0.02990744635462761, 0.04016754776239395, -0.001193900709040463, -0.011132893152534962 ]
[ -0.0667356625199318, 0.003265329170972109, -0.02366633340716362, -0.023767676204442978, 0.007099566515535116, -0.01729685813188553, 0.008218568749725819, 0.010344893671572208, 0.0055745248682796955, -0.055434100329875946, -0.030220111832022667, -0.0172424279153347, 0.029442623257637024, 0.003105949843302369, 0.10765329003334045, 0.005725219380110502, -0.007725602947175503, -0.07052571326494217, -0.01511064637452364, 0.053843170404434204, -0.017929594963788986, -0.049304716289043427, -0.05280664190649986, -0.033376142382621765, -0.004306652117520571, 0.028347015380859375, 0.0306252371519804, -0.0718289166688919, 0.034891046583652496, -0.1749926209449768, 0.003903196891769767, 0.03926659747958183, 0.0382067933678627, -0.015691237524151802, -0.02011241763830185, 0.07013548165559769, 0.028517454862594604, 0.011917775496840477, -0.03858350217342377, 0.02541366219520569, 0.008005333133041859, -0.003876157570630312, -0.02714603953063488, -0.04700001701712608, 0.030672116205096245, -0.002302922075614333, -0.007589265238493681, -0.05438166856765747, -0.022457391023635864, 0.02175796777009964, -0.02866671048104763, -0.05619592219591141, -0.025035133585333824, -0.023770203813910484, -0.017140477895736694, 0.059550557285547256, 0.027549592778086662, 0.034350164234638214, -0.03904174268245697, 0.05502922460436821, -0.010809103026986122, -0.00846146047115326, -0.1313561648130417, 0.10341134667396545, 0.020314769819378853, 0.051317911595106125, -0.045080509036779404, 0.0028914534486830235, 0.006722487974911928, 0.09182573109865189, 0.017871052026748657, -0.014508250169456005, -0.002425525803118944, 0.023561719805002213, 0.017403872683644295, -0.009391553699970245, -0.004467651713639498, 0.03697919845581055, 0.04502769559621811, -0.04141479730606079, -0.03098735399544239, -0.003245196770876646, -0.011592886410653591, -0.021793730556964874, -0.018867479637265205, 0.010009687393903732, 0.0017835688777267933, 0.02407517470419407, -0.007952420972287655, 0.009579666890203953, 0.018549706786870956, 0.005480184685438871, 0.012883160263299942, -0.014545462094247341, -0.0546451136469841, -0.015856536105275154, 0.02144331857562065, 0.007514817174524069, -0.06292890757322311, 0.43292883038520813, -0.03992435708642006, -0.012506981380283833, 0.11090090870857239, 0.038889169692993164, -0.030753057450056076, -0.02412046305835247, 0.02597958967089653, -0.07381493598222733, 0.033103737980127335, -0.02956201322376728, -0.010350829921662807, -0.007884113118052483, 0.03785545378923416, -0.03267400339245796, 0.010301557369530201, 0.0779961571097374, 0.05935477837920189, 0.027196258306503296, 0.0406838096678257, -0.03091508150100708, 0.012048361822962761, 0.0012799445539712906, 0.027841810137033463, 0.012928478419780731, -0.005186807364225388, -0.04586741328239441, 0.027758225798606873, 0.05646934360265732, 0.03304188698530197, -0.005930854473263025, 0.09109172970056534, -0.046946749091148376, -0.039583269506692886, -0.0010974140604957938, -0.021744245663285255, -0.008191360160708427, 0.026697300374507904, -0.02425173670053482, 0.023508764803409576, 0.060622360557317734, 0.05287586897611618, -0.021546799689531326, 0.028428375720977783, -0.021190045401453972, -0.016928687691688538, 0.14822636544704437, -0.014717292971909046, -0.02653462067246437, -0.02779179997742176, -0.014713451266288757, -0.0020350285340100527, 0.013863014988601208, -0.011961203068494797, -0.042315270751714706, 0.037809137254953384, -0.006524829659610987, 0.10642176866531372, -0.016284972429275513, -0.05952046811580658, 0.02028762921690941, -0.028042009100317955, -0.020866118371486664, -0.04050121456384659, 0.0155819496139884, 0.08998652547597885, -0.09470735490322113, -0.013393442146480083, -0.0013560529332607985, 0.037277113646268845, -0.08034033328294754, 0.0052768271416425705, 0.0017925887368619442, 0.010265612974762917, 0.00488674221560359, 0.05599147081375122, -0.023409761488437653, -0.05390889197587967, 0.0037462031468749046, 0.05598843842744827, 0.015029843896627426, 0.028977731242775917, 0.019065359607338905, -0.04322130233049393, -0.0026477864012122154, -0.04820404201745987, -0.07375270128250122, -0.020839443430304527, -0.019158149138092995, -0.018404362723231316, -0.005831211339682341, -0.00981219857931137, -0.02350788749754429, -0.07693628966808319, 0.08590316772460938, -0.037757642567157745, -0.02236403524875641, 0.0424109622836113, -0.04658449813723564, -0.06206740066409111, -0.0007249290938489139, -0.0709431916475296, 0.03122527524828911, -0.05045076087117195, 0.03617493808269501, -0.03379778936505318, 0.03647006303071976, 0.044633492827415466, -0.03217583894729614, 0.10067477822303772, 0.03879568725824356, -0.021451696753501892, -0.05776657536625862, 0.008024872280657291, 0.03131283074617386, -0.007455974351614714, -0.03252839297056198, 0.002378548961132765, 0.030391598120331764, -0.0007605907157994807, 0.041385650634765625, -0.011404999531805515, 0.013124898076057434, 0.021726833656430244, -0.34002965688705444, -0.008017322979867458, -0.010217474773526192, 0.0021171304397284985, 0.021575158461928368, -0.04857846349477768, 0.04123320430517197, -0.01758769527077675, -0.04232612997293472, 0.03170594945549965, 0.06643222272396088, 0.004332424607127905, 0.010156752541661263, -0.07950416952371597, -0.005242710467427969, 0.02353776805102825, -0.014425208792090416, -0.0009778301464393735, -0.001940966467373073, 0.008463248610496521, 0.00352261820808053, 0.01075880415737629, -0.0028111524879932404, -0.05475899204611778, 0.014762770384550095, -0.030247490853071213, 0.09048572182655334, 0.0211383868008852, 0.05204285681247711, -0.03179660812020302, 0.038307469338178635, 0.012755931355059147, 0.010763520374894142, -0.1411050409078598, 0.003259932855144143, 0.008745057508349419, 0.027963874861598015, -0.06408940255641937, 0.05157199501991272, -0.056142520159482956, -0.06583768874406815, 0.0054941074922680855, -0.034747038036584854, -0.05287521332502365, -0.08879882842302322, 0.006613638252019882, -0.03478752449154854, -0.030553529039025307, -0.030304694548249245, 0.0798165425658226, 0.012193216942250729, -0.02559874765574932, 0.004042111802846193, -0.007868185639381409, -0.048500142991542816, -0.027466002851724625, -0.09594190865755081, 0.003150452161207795, -0.01325598917901516, 0.010280586779117584, 0.004786008037626743, 0.06736765056848526, 0.019307762384414673, -0.06623763591051102, -0.00884702056646347, 0.01779695227742195, 0.015300584025681019, 0.005946388002485037, 0.055318646132946014, -0.0044226753525435925, -0.012068630196154118, 0.03623499348759651, -0.00030096984119154513, 0.015500756911933422, 0.019836589694023132, 0.010159233585000038, -0.018436558544635773, 0.029728276655077934, 0.010685068555176258, -0.005048160441219807, 0.029248669743537903, -0.021254034712910652, 0.022753488272428513, -0.01510371919721365, -0.0002017426013480872, -0.0037565636448562145, 0.02342432178556919, -0.02358534187078476, 0.042010631412267685, 0.005176402162760496, -0.026675725355744362, 0.015041781589388847, -0.0007088672136887908, -0.04447802156209946, 0.0691991075873375, -0.009409618563950062, -0.2671976685523987, 0.018788384273648262, 0.048996590077877045, 0.052661385387182236, -0.04039553552865982, 0.022512728348374367, 0.008213675580918789, -0.03692355379462242, -0.037310872226953506, -0.030853167176246643, 0.04062546417117119, 0.0007261672290042043, -0.011628914624452591, 0.017230525612831116, 0.04070363938808441, 0.03001484088599682, 0.04241175204515457, -0.009445837698876858, 0.00313606602139771, -0.017894769087433815, 0.016852879896759987, -0.0012472383677959442, 0.15335513651371002, 0.005639403127133846, 0.055480536073446274, 0.005764039233326912, 0.00294093182310462, 0.013536946848034859, 0.07989966124296188, -0.014607285149395466, -0.0017314502038061619, -0.014711392112076283, 0.027959425002336502, -0.012710793875157833, 0.023607702925801277, -0.06316805630922318, -0.024754785001277924, -0.0012253818567842245, 0.04918753355741501, 0.02606360986828804, 0.013547579757869244, -0.022899968549609184, -0.025784127414226532, 0.0051782443188130856, 0.06296443939208984, 0.03121238946914673, 0.034152768552303314, -0.02034556306898594, -0.06754962354898453, -0.014471067115664482, -0.02476743794977665, -0.03412953019142151, 0.022648250684142113, 0.015020003542304039, 0.01826292648911476, 0.06546610593795776, 0.02992497757077217, -0.01270214095711708, -0.0030450373888015747, 0.010573271661996841, -0.006877315696328878, -0.008914987556636333, 0.07959123700857162, 0.05071654170751572, 0.008668274618685246 ]
[ 0.002968273591250181, 0.017795853316783905, 0.011873399838805199, -0.011655881069600582, -0.024659961462020874, 0.025072092190384865, 0.016640765592455864, 0.01766595058143139, 0.005918286740779877, 0.005539574660360813, -0.0482543408870697, 0.013274972327053547, -0.015420787036418915, 0.003039658535271883, 0.039982181042432785, -0.02019687555730343, 0.008360826410353184, -0.038564879447221756, 0.036716967821121216, 0.031881242990493774, -0.015974711626768112, 0.0007541085360571742, -0.007932903245091438, -0.03189299255609512, 0.0019923304207623005, -0.007449219468981028, -0.018292797729372978, -0.007159981410950422, 0.038863956928253174, -0.12297137081623077, -0.03544081002473831, -0.01648028753697872, -0.007241239305585623, 0.006549179088324308, -0.020206624642014503, -0.005357746966183186, -0.00015786621952429414, 0.02793026715517044, 0.023706890642642975, -0.01453613955527544, -0.03815721347928047, 0.0005197825375944376, 0.002876382088288665, 0.010966965928673744, -0.002122531644999981, -0.005096507724374533, 0.01621188037097454, -0.056605592370033264, -0.02346866950392723, 0.0029218876734375954, -0.052772510796785355, 0.0038654394447803497, -0.015819145366549492, 0.027292853221297264, -0.0058048926293849945, 0.004031101241707802, -0.008143597282469273, -0.0232875756919384, -0.015294897370040417, 0.007342579308897257, -0.043998319655656815, -0.014923149719834328, -0.03281106427311897, -0.012746322900056839, -0.002492869971320033, -0.028312185779213905, 0.002166140591725707, 0.002910757204517722, -0.006521839182823896, 0.0021534524857997894, -0.026316866278648376, 0.017049431800842285, -0.020340479910373688, -0.036459725350141525, 0.017717787995934486, -0.015412413515150547, 0.017719052731990814, -0.019320381805300713, 0.027798350900411606, -0.03178231790661812, -0.02196192927658558, 0.03090621531009674, 0.004521050024777651, 0.00020690883684437722, 0.008002188056707382, -0.01745343580842018, 0.00464143930003047, 0.003928364720195532, -0.021887846291065216, -0.0032038113567978144, -0.062481775879859924, 0.048450861126184464, -0.005102780647575855, -0.0039854575879871845, -0.07581400871276855, 0.00445299968123436, -0.023472746834158897, 0.009003208950161934, 0.006640918552875519, 0.8725144863128662, -0.031870000064373016, 0.035911209881305695, 0.02914004772901535, -0.0168039258569479, -0.01326076127588749, 0.0008566887117922306, 0.018419144675135612, -0.009643114171922207, 0.0401364266872406, -0.036056529730558395, 0.011976445093750954, 0.004911827854812145, 0.016665983945131302, 0.016172204166650772, 0.030939331278204918, 0.015968769788742065, 0.030989302322268486, 0.017536820843815804, 0.005749457515776157, -0.015915514901280403, 0.012455585412681103, -0.015090424567461014, 0.010579417459666729, 0.025916336104273796, -0.0011780726490542293, -0.18317179381847382, 0.026165327057242393, -8.347031101555518e-33, 0.045051708817481995, -0.01030642632395029, 0.007978995330631733, -0.0017379072960466146, 0.007408830337226391, 0.02684107795357704, 0.037055645138025284, -0.012441456317901611, -0.040446437895298004, -0.01148866768926382, -0.010320320725440979, 0.0026479458902031183, 0.01282775029540062, -0.010252459906041622, 0.015719151124358177, -0.03303856775164604, -0.02296166494488716, 0.014290286228060722, -0.024750933051109314, 0.008209049701690674, 0.024154838174581528, 0.029971538111567497, 0.0029297685250639915, -0.0017125734593719244, -0.0033090831711888313, 0.025236371904611588, -0.0005447230068966746, 0.024533327668905258, 0.005395758897066116, -0.05149345472455025, -0.01506560668349266, 0.028620263561606407, -0.03184063360095024, -0.02613585814833641, 0.033294640481472015, -0.03297891467809677, -0.013280123472213745, 0.005858692806214094, 0.0015198740875348449, -0.03963647782802582, -0.04736805334687233, 0.02463977225124836, -0.03083650767803192, -0.008259708993136883, -0.0349271185696125, -0.00872673001140356, -0.004468346480280161, 0.03134118765592575, 0.020223965868353844, -0.023617224767804146, -0.018921436741948128, 0.023894036188721657, -0.027401935309171677, 0.011794212274253368, -0.034505292773246765, -0.000452644017059356, -0.007912509143352509, 0.011450370773673058, 0.006761576514691114, 0.031249135732650757, 0.006210401654243469, -0.009734892286360264, -0.022518793120980263, -0.004295554012060165, -0.01955379731953144, -0.019057665020227432, 0.001463697524741292, 0.0060769543051719666, 0.03945539519190788, -0.035271819680929184, -0.052884455770254135, 0.01784633845090866, -0.009435390122234821, -0.025067657232284546, 0.015379323624074459, -0.0006826877361163497, 0.014815552160143852, 0.022192873060703278, 0.011011779308319092, 0.04423395171761513, 0.02485971711575985, -0.0050275977700948715, 0.017362631857395172, -0.016271116212010384, -0.030916593968868256, -0.025284402072429657, 0.0185416080057621, -0.020980488508939743, -0.007363094948232174, 0.027063338086009026, 0.031865041702985764, 0.01931484043598175, 0.005913417786359787, 0.0031547145918011665, 0.000764056050684303, 8.034121117522349e-33, -0.000488011835841462, -0.005801052320748568, -0.028228221461176872, 0.0023698301520198584, 0.04439738392829895, 0.007048645056784153, 0.02251560613512993, -0.038761451840400696, -0.05303936451673508, 0.024079550057649612, 0.005943208932876587, -0.014611924067139626, -0.002669211011379957, 0.0339587926864624, 0.01238247100263834, -0.02298959158360958, 0.0052465652115643024, -0.021154627203941345, 0.025370176881551743, 0.008909606374800205, 0.021862421184778214, 0.012007877230644226, 0.00773907033726573, 0.003736395388841629, 0.021202554926276207, 0.04650641232728958, 0.0032453343737870455, 0.014704755507409573, -0.008621526882052422, 0.017464447766542435, -0.007212361320853233, 0.004296804312616587, 0.008716410025954247, -0.03071950562298298, 0.026841502636671066, 0.02339111641049385, -0.022791661322116852, -0.039553202688694, -0.0019305782625451684, -0.001999194733798504, 0.0129544073715806, -0.0014196548145264387, 0.0030213426798582077, 0.00816752202808857, 0.03241796791553497, 0.02672957256436348, -0.02063187025487423, 0.00630364241078496, -0.03013451024889946, 0.04141388088464737, -0.0023669234942644835, 0.016353705897927284, -0.027701331302523613, -0.05389384180307388, -0.0030342894606292248, -0.028270693495869637, -0.00013549243158195168, 0.003487994894385338, -0.004982732702046633, -0.0034309914335608482, 0.013791010715067387, 0.0031985014211386442, -0.004044299479573965, -0.00007270104833878577, 0.004680681508034468, 0.018318988382816315, -0.006558634340763092, 0.02502213604748249, -0.0007786183268763125, 0.023182157427072525, -0.01749170385301113, -0.018794622272253036, 0.03416525945067406, 0.015003298409283161, 0.034954823553562164, -0.009976479224860668, -0.018140703439712524, -0.010995246469974518, -0.022740136831998825, 0.025068312883377075, 0.00571154709905386, 0.010043464601039886, 0.023686973378062248, 0.03253896161913872, -0.011900161392986774, 0.052929025143384933, 0.013574525713920593, 0.03760216757655144, -0.042063795030117035, -0.008457272313535213, 0.0010132354218512774, 0.0017870637821033597, 0.014713509008288383, 0.007888277992606163, 0.004184242337942123, -1.397273585723724e-8, -0.04071083664894104, -0.0032500368542969227, -0.017398322001099586, -0.002296598395332694, -0.003865774953737855, -0.0027665758971124887, 0.00790282990783453, -0.008328495547175407, -0.032516781240701675, 0.014889681711792946, 0.02486925572156906, -0.018941931426525116, 0.011910810135304928, -0.0015604295767843723, 0.03659215196967125, -0.024333234876394272, -0.01738072745501995, -0.018804064020514488, 0.024834301322698593, 0.0006336270598694682, -0.008285488933324814, 0.03823033347725868, 0.0015794531209394336, 0.03216465935111046, -0.004205744713544846, 0.011020674370229244, 0.02551569975912571, -0.05937588959932327, -0.013215739279985428, 0.006579897366464138, 0.009048538282513618, -0.02348126284778118, -0.030125685036182404, 0.020630331709980965, -0.026102570816874504, -0.03642737492918968, -0.000873548211529851, 0.02348300814628601, -0.000010321900845156051, 0.009613880887627602, -0.027401266619563103, 0.00895446352660656, 0.00908154621720314, -0.02355283871293068, -0.0024248503614217043, 0.03361869603395462, -0.02568737603724003, -0.013311117887496948, -0.006996451411396265, -0.03166275471448898, 0.00991933885961771, -0.0003298759984318167, 0.015153205953538418, 0.017670566216111183, 0.03131455183029175, 0.02049229107797146, -0.01804232969880104, -0.005095798522233963, -0.0011376850306987762, -0.01205330342054367, 0.0001563048135722056, 0.03672994300723076, -0.03133680671453476, -0.02346070483326912 ]
pair-presenting
https://markhneedham.com/blog/2011/03/17/pair-presenting
false
2011-03-09 14:42:41
TWU: Session Preparation - Limited WIP
[ "thoughtworks-university" ]
[ "ThoughtWorks University" ]
I've spent a fair percentage of the last couple of weeks preparing sessions for ThoughtWorks University and one thing http://twitter.com/#!/frankmt[Frankie] has been trying to encourage is only preparing one at a time i.e. limited work in progress Normally I'd be completely in favour of that approach but it doesn't seem to work at all for me with this type of work. There seem to be a few parts to creating a session, including: * Plan out how you want the structure of the session to be * Write up any presentation aspects of it The first can pretty much be stream lined so that you're doing one of them at a time but I find the latter to be a much more creative process and I don't do that work in a linear way at all. I've noticed over the last couple of years that I prepare presentations in a very stop/start way. I really struggle to create them in one go. I'll create a rough outline and then add to it randomly after that. It seems to work reasonably well and I'll come up with ideas that improve the presentation at random different times when I'm not even working on the presentation. Presumably this is because I'm thinking about the presentation subconsciously which is one way of being creative (to a degree). I'm curious as to whether I could get a similar effect by stimulating creativity by using http://www.pomodorotechnique.com/[time as a constraint]. Something to try out at least...
null
null
[ 0.03924119845032692, 0.0014858528738841414, -0.003839437384158373, 0.04081185907125473, 0.07538821548223495, 0.00816988106817007, 0.025892071425914764, 0.04268964007496834, 0.00912189669907093, -0.024098724126815796, -0.022711727768182755, -0.009994572959840298, -0.03209502995014191, 0.024036969989538193, -0.0282969418913126, 0.07215824723243713, 0.045440949499607086, 0.0020916329231113195, -0.001314468216150999, 0.016653403639793396, 0.053808003664016724, 0.0734666958451271, 0.021856002509593964, 0.014687885530292988, 0.03700541704893112, -0.011139355599880219, 0.013680851086974144, -0.009917482733726501, -0.041892159730196, -0.02978593111038208, 0.031828440725803375, -0.020970594137907028, 0.01735992357134819, -0.02017991989850998, 0.0502052828669548, -0.027926452457904816, -0.008042332716286182, 0.033598750829696655, 0.011733350344002247, 0.0008481760160066187, -0.0806565061211586, 0.02858603559434414, -0.015604938380420208, -0.042460788041353226, -0.049921877682209015, -0.0076028164476156235, -0.009898939169943333, -0.0006633865996263921, 0.0040801167488098145, -0.005739481188356876, -0.08970660716295242, 0.058643076568841934, 0.03825801983475685, 0.008581184782087803, -0.01547456718981266, 0.04304089397192001, 0.011849941685795784, -0.06910140067338943, 0.016419200226664543, -0.03276810422539711, -0.0162678025662899, -0.0008043789421208203, -0.031104423105716705, 0.030922450125217438, 0.012342664413154125, -0.0451582670211792, 0.012180560268461704, 0.052290093153715134, -0.04546397179365158, -0.0033108387142419815, -0.019023800268769264, 0.012010511010885239, 0.018816493451595306, -0.013327063992619514, 0.010430761612951756, -0.03594382107257843, 0.03271835297346115, 0.05531211569905281, 0.02170708030462265, 0.031293123960494995, -0.023711133748292923, 0.009996972046792507, 0.020927056670188904, 0.041482143104076385, -0.03211203217506409, -0.043117523193359375, -0.0007557322969660163, -0.019549908116459846, -0.0454806312918663, 0.050321824848651886, 0.004968718159943819, -0.04880087822675705, 0.01171561237424612, 0.02739524282515049, -0.009291707538068295, 0.011067572981119156, 0.029061079025268555, 0.0016256056260317564, -0.024082690477371216, 0.0025317079853266478, 0.005144034046679735, -0.024411024525761604, -0.008284769020974636, 0.031067518517374992, -0.0789790078997612, 0.011855347082018852, 0.0011363968951627612, -0.021636467427015305, -0.019662123173475266, 0.013357937335968018, -0.042811233550310135, 0.022011829540133476, -0.00821114331483841, -0.0010440180776640773, -0.06989762932062149, 0.05157890543341637, 0.027174441143870354, -0.030516112223267555, -0.012293882668018341, 0.010317830368876457, 0.02578319050371647, 0.01995743438601494, -0.0016570950392633677, 0.07323205471038818, -0.015000932849943638, 0.010704203508794308, -0.03200995922088623, 0.051217108964920044, -0.03685535490512848, -0.06597960740327835, 0.012909973040223122, 0.047778934240341187, -0.007289553061127663, -0.010258801281452179, 0.009963859803974628, -0.040788434445858, 0.014062994159758091, -0.002749438863247633, 0.03832101449370384, 0.06370016187429428, -0.0077261109836399555, -0.03137951344251633, 0.009235075674951077, 0.027427449822425842, 0.02202155999839306, -0.009049372747540474, 0.002428616164252162, -0.021234704181551933, -0.041887689381837845, -0.013556319288909435, 0.015529760159552097, 0.00698438985273242, 0.01541674043983221, -0.04278678819537163, 0.01852506957948208, 0.09446141123771667, 0.038909606635570526, 0.021883124485611916, -0.003989247605204582, 0.013431611470878124, 0.021763673052191734, 0.03930949419736862, 0.02653675526380539, 0.042700089514255524, 0.020302996039390564, -0.010491269640624523, -0.0011475974461063743, 0.041040509939193726, -0.022483421489596367, -0.011251542717218399, -0.08296795934438705, -0.031057601794600487, 0.05368071049451828, -0.07453402876853943, -0.03158347308635712, 0.05173133686184883, 0.078257255256176, 0.04172974452376366, 0.04704279080033302, 0.01750129833817482, -0.07637273520231247, 0.010340463370084763, -0.000004605551112035755, 0.03434429317712784, 0.0258756335824728, -0.058987416326999664, 0.044982463121414185, 0.04553139954805374, -0.0068106334656476974, 0.06334086507558823, -0.07635124027729034, -0.08823537826538086, -0.018180882558226585, -0.01905614137649536, 0.036957692354917526, 0.002315970603376627, 0.020039480179548264, 0.06644285470247269, 0.005111682694405317, 0.03964019566774368, 0.05385972186923027, 0.008497927337884903, 0.013879930600523949, -0.0487249381840229, -0.042735505849123, 0.0631566196680069, 0.030918871983885765, -0.006308285519480705, -0.03664011135697365, 0.012136062607169151, -0.005903985816985369, -0.019013088196516037, 0.05758897587656975, -0.0010382281616330147, 0.020413339138031006, -0.000613028765656054, 0.05779115855693817, -0.020419657230377197, 0.03395037725567818, -0.02159295417368412, 0.018953634425997734, 0.013347864151000977, -0.018928537145256996, 0.013890605419874191, -0.013718882575631142, 0.11360767483711243, 0.024768630042672157, -0.04684355854988098, -0.03578603267669678, 0.028244854882359505, 0.004651691298931837, -0.031472522765398026, -0.009714454412460327, 0.01290201023221016, 0.010433346964418888, 0.01429396029561758, -0.04836655408143997, -0.02734641171991825, 0.036898061633110046, -0.06020873039960861, 0.014932665973901749, 0.06286222487688065, -0.02326083555817604, 0.08039369434118271, -0.017364270985126495, 0.027797196060419083, -0.036603350192308426, -0.011659370735287666, -0.05395736172795296, 0.03414487838745117, 0.006234458182007074, -0.004645157605409622, 0.03191165626049042, -0.012123319320380688, -0.029423004016280174, -0.023536553606390953, -0.03626539558172226, -0.000663517857901752, 0.0674566775560379, 0.04614945501089096, -0.02737724967300892, 0.07371573895215988, -0.018591485917568207, 0.052791062742471695, -0.008785439655184746, -0.044215355068445206, -0.026972221210598946, -0.03585302084684372, -0.014803914353251457, 0.027453461661934853, 0.036150991916656494, -0.008602569811046124, 0.008154784329235554, 0.0076039801351726055, -0.02093559503555298, -0.005105986259877682, 0.02669847011566162, -0.007646238896995783, -0.010491756722331047, -0.02894538827240467, -0.009569634683430195, 0.057136304676532745, -0.04204222932457924, -0.019216369837522507, 0.017314119264483452, -0.06662861257791519, 0.019155612215399742, -0.04495355859398842, -0.04190780967473984, -0.008063080720603466, -0.00513246888294816, 0.04731844738125801, 0.027489157393574715, 0.01798079162836075, 0.07150807976722717, 0.011844641529023647, 0.024335602298378944, -0.029065106064081192, -0.018289562314748764, 0.038930851966142654, -0.008884895592927933, -0.015344261191785336, 0.04547456279397011, 0.007919169962406158, -0.007554660551249981, -0.04154706373810768, 0.05257900059223175, -0.043333955109119415, -0.28782394528388977, 0.0236672293394804, 0.030245928093791008, -0.01645839959383011, 0.020050544291734695, -0.04599011316895485, 0.009107581339776516, -0.05895945429801941, -0.034588772803545, 0.0043496242724359035, -0.03237900137901306, -0.019511887803673744, -0.03672688826918602, 0.057434454560279846, 0.00496132904663682, 0.044246599078178406, 0.007465194445103407, -0.03122801147401333, 0.014398961327970028, 0.06388198584318161, -0.00003036142879864201, -0.05190158635377884, -0.031947746872901917, 0.05139611288905144, 0.06206703186035156, 0.061827827244997025, -0.07062353938817978, 0.042273763567209244, -0.06400305032730103, -0.0005448482697829604, 0.021979879587888718, -0.010305212810635567, 0.006372107192873955, -0.0014504381688311696, -0.004288763739168644, -0.015405450947582722, 0.07198228687047958, 0.001992565579712391, 0.0028774775564670563, 0.007374478969722986, -0.010314323008060455, -0.056483544409275055, -0.009800835512578487, 0.017620857805013657, 0.05444756895303726, 0.012646217830479145, -0.06820319592952728, -0.025199200958013535, -0.03996036946773529, 0.060547951608896255, -0.02119814231991768, -0.03989938646554947, -0.001003087149001658, 0.011683416552841663, 0.011199158616364002, -0.002017420483753085, -0.007058503571897745, -0.011863518506288528, -0.05487242341041565, -0.06064704805612564, -0.01973465271294117, -0.030114326626062393, -0.02328743413090706, -0.044487956911325455, 0.007279535289853811, -0.044752463698387146, -0.04471395164728165, 0.0034641895908862352, 0.08110154420137405, 0.014463407918810844, -0.0283419881016016, 0.002458773320540786, -0.015309091657400131, -0.09526106715202332, 0.005164021160453558, 0.01073406171053648, -0.025964681059122086, 0.0041826386004686356, 0.02264878898859024, 0.06473206728696823, -0.016443172469735146, -0.03529331460595131, 0.025347307324409485, 0.025049276649951935, 0.03269399702548981, 0.006631813477724791, 0.04935203865170479, 0.009700505062937737, -0.017408398911356926, 0.01318516954779625, 0.05944476276636124, 0.028389835730195045, -0.028370987623929977, -0.026386506855487823, 0.015566292218863964, 0.035270459949970245, 0.009071983397006989, -0.025829195976257324, 0.016747934743762016, 0.004649223294109106, 0.02211732603609562, -0.05593713000416756, 0.016340726986527443, -0.012131794355809689, -0.030055249109864235, -0.015776794403791428, -0.06310747563838959, 0.026980364695191383, 0.03365394473075867, 0.0185212641954422, -0.012616925872862339, -0.01830035261809826, 0.024571117013692856, -0.012407347559928894, -0.015181231312453747, -0.023919908329844475, -0.00003921756797353737, 0.0621119849383831, -0.03456994891166687, -0.01465856097638607, -0.0615478940308094, 0.021479269489645958, -0.024116575717926025, -0.026690246537327766, -0.045711275190114975, 0.00601067952811718, -0.003988151904195547, -0.030564431101083755, 0.004064729902893305, 0.029323173686861992, -0.028216760605573654, -0.02115594781935215, 0.03849734738469124, -0.02864091470837593, 0.03060077875852585, -0.035869792103767395, -0.070534847676754, -0.028925463557243347, -0.007017548196017742, 0.0027854687068611383, -0.008516404777765274, 0.03068910725414753, -0.013575869612395763, 0.008163215592503548, 0.05830786004662514, 0.021215876564383507, -0.007052148226648569, -0.03232545033097267, -0.002477500820532441, -0.001023417804390192, 0.0351051464676857, -0.04436861723661423, -0.009274211712181568, -0.04268296808004379, -0.021328896284103394, -0.003434141632169485, 0.0007779398583807051, -0.022905996069312096, 0.012656211853027344, 0.0008759066695347428, 0.01918029971420765, -0.05124836787581444, -0.056482695043087006, -0.025767775252461433, 0.011522955261170864, 0.048790343105793, -0.0240055900067091, 0.029941581189632416, -0.013076250441372395, -0.007284865248948336, 0.03668738901615143, -0.015339200384914875, -0.05964045971632004, 0.012421643361449242, 0.023321736603975296, -0.0051280660554766655, 0.01747134141623974, -0.007646835409104824, 0.05865132436156273, 0.0075931241735816, -0.00671567115932703, -0.03939865902066231, 0.008548262529075146, -0.00869452953338623, 0.05734163895249367, 0.020392827689647675, -0.01107579842209816, 0.008234404027462006, -0.029075514525175095, 0.0032142018899321556, -0.04349132999777794, -0.012189806438982487, 0.0074196080677211285, 0.017557376995682716, -0.03423828259110451, -0.06624707579612732, 0.06712347269058228, 0.013164127245545387, 0.004676084034144878, 0.01963980309665203, 0.01391019020229578, -0.017089970409870148, -0.03908641263842583, 0.018962841480970383, 0.059937167912721634, -0.07239383459091187, -0.004232891835272312, -0.018918605521321297, -0.0021883039735257626, 0.019006142392754555, -0.0034631246235221624, -0.010830683633685112, -0.008828450925648212, -0.0299996230751276, 0.010145800188183784, -0.060627151280641556, -0.024964584037661552, -0.05256038159132004, 0.043222565203905106, 0.016259027644991875, 0.027726013213396072, -0.03155289962887764, -0.0191472340375185, -0.010478581301867962, -0.03892156109213829, 0.008285538293421268, -0.04059148579835892, -0.020549563691020012, 0.003638289636000991, -0.05947233736515045, 0.019791727885603905, -0.027513550594449043, 0.015401468612253666, 0.02081846259534359, -0.027698328718543053, -0.02060718461871147, -0.017213350161910057, 0.008147571235895157, 0.016012204810976982, 0.024103129282593727, -0.00945703312754631, -0.019570093601942062, -0.04709669202566147, -0.0028266096487641335, -0.03586415573954582, 0.01970352604985237, -0.008938664570450783, 0.001362047391012311, 0.04640446975827217, 0.06610038876533508, 0.029877575114369392, 0.020797723904252052, -0.02471264638006687, -0.02339540794491768, 0.030706504359841347, -0.06286067515611649, -0.023208243772387505, -0.04201328754425049, -0.059769157320261, 0.023751305416226387, -0.004517312627285719, 0.029823333024978638, -0.04775493964552879, 0.01888875849545002, 0.005870369728654623, 0.01249245647341013, 0.05166647583246231, 0.01663241721689701, 0.019790491089224815, -0.05352635309100151, 0.002450797241181135, -0.08505883067846298, -0.028442006558179855, 0.027518615126609802, -0.00001214154781337129, -0.017804328352212906, -0.020713208243250847, -0.05444355309009552, 0.07098831981420517, -0.08124269545078278, -0.01821088418364525, 0.03515128046274185, -0.0209827721118927, -0.0019797368440777063, 0.03227051720023155, -0.07535386830568314, 0.01076123584061861, 0.005726004485040903, -0.046718332916498184, -0.008569777011871338, -0.008430280722677708, 0.058439724147319794, 0.007243160158395767, 0.006239903625100851, -0.0185310710221529, 0.00900355726480484, 0.07530615478754044, 0.009099689312279224, 0.005202723201364279, 0.04711180552840233, -0.008271344006061554, 0.03328421339392662, 0.04420255124568939, 0.020332638174295425, -0.007317123468965292, -0.023989669978618622, -0.016582820564508438, -0.06879420578479767, 0.04208187386393547, -0.009834691882133484, -0.014542330987751484, -0.044586263597011566, 0.055978238582611084, 0.007871902547776699, -0.04253522306680679, -0.060302164405584335, 0.03537668287754059, -0.0497661717236042, -0.017762014642357826, -0.008652002550661564, -0.004019054118543863, -0.03645450621843338, 0.03151749074459076, -0.008122405968606472, 0.008194630965590477, 0.06186568737030029, -0.011113304644823074, -0.029477758333086967, -0.01280982419848442, 0.07543216645717621, 0.07196208089590073, 0.0755903422832489, 0.0048256684094667435, 0.08405844122171402, -0.02358822152018547, -0.04644424840807915, 0.019018881022930145, -0.0028903239872306585, -0.020199507474899292, -0.05117300897836685, 0.04076249524950981, 0.07002732157707214, -0.012980914674699306, 0.06213664263486862, 0.004751728847622871, -0.024087436497211456, 0.00958052184432745, 0.03514875844120979, 0.0036131804808974266, 0.04666106775403023, 0.030672946944832802, -0.002162906341254711, -0.01605267822742462, -0.07941656559705734, 0.03086652234196663, -0.045935481786727905, -0.0159740187227726, 0.04304222762584686, -0.0069166929461061954, 0.028547456488013268, 0.019385995343327522, 0.011409401893615723, 0.07357598841190338, -0.022046690806746483, 0.020639393478631973, -0.00010500474309083074, 0.016134949401021004, 0.012568727135658264, 0.02575520984828472, 0.003375220112502575, -0.011084790341556072, 0.008862466551363468, -0.0360572449862957, -0.01061402726918459, -0.025777695700526237, -0.0065682316198945045, 0.0360223613679409, -0.03372827544808388, -0.004932181444019079, 0.03378580883145332, 0.0026008279528468847, -0.04261728376150131, -0.05662575364112854, -0.020956242457032204, -0.05285945534706116, -0.04368821159005165, 0.010226461105048656, 0.03551674634218216, -0.03874729573726654, -0.04047630354762077, -0.012599509209394455, -0.013616607524454594, -0.018009904772043228, 0.03894321992993355, -0.04492097347974777, -0.03505345433950424, 0.0035919032525271177, 0.00012920264271087945, 0.020560571923851967, -0.005615741014480591, 0.06307604908943176, 0.0082643898203969, 0.005302526988089085, -0.018098700791597366, 0.018973495811223984, 0.005755438469350338, -0.007207040674984455, 0.02803274616599083, -0.09692651778459549, 0.028779348358511925, 0.002453479217365384, -0.0041465479880571365, -0.05257944390177727, 0.02473747543990612, 0.04997030645608902, 0.026198996230959892, 0.048083748668432236, 0.0018504600739106536, 0.014541062526404858, -0.06510629504919052, -0.0018816929077729583, -0.010116825811564922, 0.014000116847455502, 0.05482753738760948, -0.02206832729279995, 0.06605865061283112, 0.013928283005952835, -0.026034239679574966, -0.04251823574304581, -0.02171390689909458, 0.01569739170372486, 0.002358083613216877, -0.006405365187674761, -0.022835208103060722, -0.043559715151786804, -0.0832509994506836, -0.03779750317335129, 0.036724694073200226, -0.02882411889731884, -0.024509333074092865, 0.02832411229610443, -0.0013142996467649937, -0.027859915047883987, 0.02548767253756523, -0.04683801531791687, 0.016174079850316048, -0.014439589343965054, -0.002102495636790991, 0.011354297399520874, -0.007951744832098484, 0.004144636914134026, -0.018185647204518318, 0.01978013478219509, -0.06726521998643875, -0.018609609454870224, -0.0017107995226979256, 0.007588457316160202, 0.03238255903124809, -0.003961495589464903, -0.024208370596170425 ]
[ -0.059734489768743515, -0.006825645454227924, 0.008922165259718895, -0.02170969918370247, 0.010371493175625801, 0.007123376242816448, -0.030872657895088196, 0.0034701034892350435, -0.0004816905129700899, -0.03012927807867527, -0.009473814629018307, -0.0028126342222094536, -0.019490573555231094, 0.01743220165371895, 0.0800185427069664, 0.016216961666941643, -0.007317759096622467, -0.083125539124012, 0.0006607415853068233, 0.03565152361989021, 0.021787093952298164, 0.00104774278588593, -0.059863921254873276, 0.0011204355396330357, 0.011269931681454182, 0.01319198403507471, 0.04406261071562767, -0.040717557072639465, 0.020099928602576256, -0.1800430417060852, 0.008799015544354916, -0.00015224571689032018, 0.023510558530688286, -0.01335553452372551, 0.015583931468427181, 0.04918261617422104, -0.0010146028362214565, 0.03674480319023132, -0.02612680196762085, 0.04053231328725815, 0.021623676642775536, 0.007864649407565594, -0.05035565793514252, -0.061719734221696854, 0.04836363345384598, 0.003327189479023218, -0.006240103859454393, -0.052677370607852936, 0.0014309203252196312, 0.028286851942539215, -0.05527788773179054, -0.04256536811590195, -0.03314308449625969, -0.03700796142220497, -0.038665127009153366, 0.05115353688597679, 0.02683345228433609, 0.044133733958005905, -0.007264727260917425, 0.024050302803516388, 0.011023598723113537, -0.00035454885801300406, -0.15836754441261292, 0.115432009100914, -0.0019287008326500654, 0.05007660761475563, -0.059300925582647324, 0.011408458463847637, 0.01278558187186718, 0.11338230967521667, -0.004182344302535057, -0.04697936773300171, 0.004790399223566055, 0.048103973269462585, 0.026532558724284172, -0.03353874012827873, -0.007074025925248861, 0.032402731478214264, 0.012748883105814457, -0.03428805246949196, -0.03263619542121887, -0.0005066093290224671, -0.010700496844947338, -0.018535824492573738, -0.03048776090145111, 0.003596995724365115, -0.013607644475996494, 0.036641355603933334, 0.01880766823887825, 0.02778351865708828, 0.045623183250427246, -0.016951771453022957, -0.023778334259986877, -0.009642280638217926, -0.08132771402597427, -0.05781364068388939, 0.001866710837930441, 0.024791141971945763, -0.04201822355389595, 0.4594806134700775, -0.0281771719455719, -0.012779174372553825, 0.10647192597389221, 0.027552323415875435, -0.03936177119612694, -0.00217321515083313, 0.02636881358921528, -0.0462305061519146, 0.003250743029639125, 0.0018613814609125257, -0.007987573742866516, -0.002640354447066784, 0.042417481541633606, -0.06122185289859772, 0.029625507071614265, 0.03112575225532055, 0.03913404792547226, 0.014626074582338333, -0.02219739556312561, -0.028612511232495308, 0.008173740468919277, 0.024285200983285904, 0.017690613865852356, -0.01029722485691309, -0.042856063693761826, -0.04503030702471733, 0.03093225508928299, 0.05665293708443642, 0.021630210801959038, -0.022847982123494148, 0.05885902792215347, -0.02271552011370659, -0.050858430564403534, 0.022662505507469177, -0.0020329314284026623, -0.00019280205015093088, 0.034208912402391434, -0.02557479962706566, 0.04505753517150879, 0.04333838075399399, 0.048174526542425156, 0.005432771053165197, 0.0014267537044361234, -0.01586572453379631, -0.00993980374187231, 0.13198791444301605, -0.01727382093667984, -0.01093357801437378, -0.014934709295630455, -0.025113550946116447, -0.010959215462207794, 0.013485473580658436, -0.010436933487653732, -0.05349152162671089, 0.04077993705868721, -0.01476275734603405, 0.09973999112844467, -0.0019490483682602644, -0.03956671804189682, 0.01208057813346386, -0.02819230780005455, -0.018020493909716606, -0.021944567561149597, 0.014164906926453114, 0.05140521004796028, -0.07483908534049988, -0.013237052597105503, -0.0068040043115615845, 0.024168649688363075, -0.10524965822696686, -0.030226992443203926, 0.017321517691016197, -0.03741990774869919, 0.01352984830737114, 0.08132489025592804, -0.017232056707143784, -0.051745183765888214, -0.0011641253950074315, 0.07524167001247406, 0.02705385535955429, 0.04979664832353592, 0.0014437310164794326, -0.02109130471944809, 0.014655101113021374, -0.05030493810772896, -0.09962569177150726, -0.015338058583438396, -0.02520924061536789, -0.012013386934995651, 0.0071539864875376225, -0.019369808956980705, -0.0312892310321331, -0.08631592243909836, 0.08842772990465164, -0.05795674026012421, -0.024147015064954758, 0.045708611607551575, -0.03532830998301506, -0.03174973279237747, -0.009242500178515911, -0.07803667336702347, 0.0015902790473774076, -0.04724294692277908, 0.03960004076361656, -0.026077402755618095, 0.05272688716650009, 0.07899826765060425, -0.03193855285644531, 0.10324233025312424, 0.05290341377258301, -0.06696627289056778, -0.044087208807468414, 0.03294108808040619, 0.005402794107794762, 0.0036440598778426647, 0.01358996145427227, 0.0013683147262781858, 0.016831353306770325, 0.01272139698266983, 0.006966832093894482, -0.0067358482629060745, -0.00200584065169096, -0.019455179572105408, -0.3173879086971283, -0.0016483053332194686, 0.007117957342416048, -0.011860955506563187, 0.052467409521341324, -0.03985955938696861, 0.039949845522642136, -0.005450681317597628, -0.011319182813167572, -0.002565648639574647, 0.02726411633193493, -0.004005701281130314, 0.026483014225959778, -0.0793982595205307, -0.004866098053753376, -0.015983520075678825, -0.054547641426324844, -0.010854661464691162, 0.007897472009062767, 0.019275160506367683, 0.004191718529909849, 0.0031137738842517138, -0.002158592687919736, -0.06261751055717468, -0.023608960211277008, -0.033390168100595474, 0.09291335940361023, 0.032343968749046326, 0.05451107397675514, -0.02779354900121689, 0.047520700842142105, 0.01121684443205595, -0.008678562939167023, -0.12602531909942627, -0.01001479011029005, -0.00914609245955944, 0.0031904252246022224, -0.022535763680934906, 0.02215460315346718, -0.046941906213760376, -0.013996190391480923, 0.03119722567498684, -0.04433252662420273, -0.03857334330677986, -0.09855857491493225, 0.025824615731835365, -0.025896262377500534, -0.01363662350922823, -0.021417897194623947, 0.07930435985326767, 0.028969192877411842, -0.013703817501664162, 0.006235434673726559, 0.007536082528531551, -0.036162782460451126, -0.0027127047069370747, -0.10083005577325821, 0.01020541600883007, -0.00224151904694736, -0.004004006274044514, 0.01789756678044796, 0.055040888488292694, 0.04755108430981636, -0.03603189438581467, -0.0364958792924881, 0.04561658948659897, 0.012141906656324863, -0.018515072762966156, 0.041763875633478165, -0.012910344637930393, -0.003326576901599765, 0.06940723210573196, 0.018941368907690048, -0.004354577977210283, 0.04239293187856674, 0.021933538839221, -0.012675884179770947, 0.04016099125146866, -0.007581485901027918, 0.01895766519010067, -0.020371656864881516, -0.03079892136156559, 0.007063903845846653, -0.026734523475170135, -0.023572377860546112, 0.03150888904929161, -0.017231609672307968, -0.05577784404158592, 0.06431055814027786, -0.0027166439685970545, -0.019284076988697052, 0.04791733995079994, -0.01816709153354168, -0.013589487411081791, 0.05247015506029129, -0.0016609624726697803, -0.24889586865901947, 0.03221827745437622, 0.07483360171318054, 0.058598216623067856, -0.026902712881565094, 0.023362981155514717, -0.007929335348308086, -0.02077282778918743, -0.005490116775035858, 0.01746152900159359, 0.025350339710712433, -0.0009605724480934441, -0.0344843827188015, 0.02621631883084774, 0.02458515763282776, -0.001408456126227975, 0.039969347417354584, -0.02288011461496353, 0.018899980932474136, -0.01187998428940773, 0.01420798059552908, -0.005763430614024401, 0.146588996052742, 0.009706166572868824, 0.025267481803894043, -0.02827947400510311, 0.003994406666606665, -0.00546055706217885, 0.07852783799171448, -0.01946079172194004, 0.0038005365058779716, -0.021490653976798058, -0.00414858665317297, 0.0007955714827403426, 0.03255428001284599, -0.08135166764259338, -0.0447595976293087, 0.03671051561832428, 0.02993498556315899, 0.008891400881111622, 0.020653383806347847, 0.003827558131888509, -0.043338049203157425, 0.03424876555800438, 0.04012402147054672, 0.03155120089650154, 0.00700289336964488, -0.014335878193378448, -0.0941663607954979, -0.0039549884386360645, -0.012129110284149647, -0.018908893689513206, 0.014689981006085873, 0.010799428448081017, 0.014754056930541992, 0.062404993921518326, 0.0405675508081913, 0.005345790646970272, 0.010248146019876003, 0.016108620911836624, -0.02185935340821743, -0.005854354240000248, 0.09293711185455322, 0.04509979486465454, 0.018785160034894943 ]
[ -0.01353548839688301, 0.0008242995827458799, 0.018723633140325546, 0.016629507765173912, 0.0041221268475055695, 0.02745463140308857, -0.01305459439754486, -0.0027893029619008303, 0.01253210473805666, -0.038520317524671555, -0.021015916019678116, 0.017180191352963448, -0.007278467994183302, 0.007314300164580345, -0.003014006419107318, -0.020142188295722008, 0.014890690334141254, -0.03545990213751793, 0.061292052268981934, 0.01754354126751423, 0.013096883893013, -0.004511096049100161, 0.011729535646736622, -0.012136335484683514, -0.009158694185316563, 0.005615809932351112, -0.014391262084245682, -0.004038941580802202, 0.05498377978801727, -0.12814246118068695, -0.034256674349308014, -0.014408707618713379, -0.011943272314965725, -0.026202967390418053, 0.0059995693154633045, 0.00043522054329514503, -0.037357281893491745, 0.04593057185411453, 0.03230961784720421, 0.020800840109586716, -0.00728930439800024, -0.010850422084331512, -0.0031380103901028633, 0.04740903154015541, 0.011541577987372875, -0.023243021219968796, 0.044909462332725525, -0.022193368524312973, -0.0451541468501091, 0.006163087207823992, -0.047268081456422806, -0.019687769934535027, 0.007928011938929558, 0.016655707731842995, 0.004376852884888649, -0.004870209842920303, 0.015890875831246376, 0.0017004117835313082, 0.0026224907487630844, -0.0032799560576677322, -0.017769137397408485, -0.016833968460559845, -0.04152143374085426, -0.029861006885766983, -0.0014049933524802327, 0.0012509510852396488, -0.03600539267063141, 0.05469617620110512, -0.020560257136821747, 0.0022569349966943264, -0.005518701858818531, 0.009251363575458527, -0.03218047693371773, -0.011289768852293491, 0.01583230309188366, -0.020332930609583855, -0.03527669608592987, -0.03966740518808365, -0.014969738200306892, 0.016359105706214905, -0.007698434870690107, 0.027813609689474106, 0.013230047188699245, -0.01212699431926012, -0.0006559101166203618, -0.0138084189966321, 0.014582189731299877, 0.026141691952943802, 0.008073132485151291, 0.00575094111263752, -0.03862440586090088, 0.028900526463985443, -0.031062757596373558, 0.028752092272043228, -0.083419568836689, -0.011055179871618748, -0.017307095229625702, -0.007635931018739939, 0.02128581516444683, 0.8460162878036499, -0.009782450273633003, 0.013414440676569939, 0.03338147699832916, 0.0020220407750457525, 0.003640417940914631, -0.013905343599617481, 0.014034171588718891, -0.005679754074662924, 0.009170075878500938, -0.015890005975961685, 0.009977531619369984, 0.026155291125178337, 0.00930015929043293, 0.01425685454159975, 0.041827015578746796, 0.02553405426442623, 0.011021031066775322, 0.027921942993998528, -0.0050769164226949215, 0.016593728214502335, 0.054577603936195374, 0.03181895613670349, 0.01946977525949478, 0.03187395632266998, -0.028365114703774452, -0.20471593737602234, -0.004829778335988522, -8.244389873577593e-33, 0.02482220157980919, -0.018602807074785233, 0.005977196153253317, 0.006621490232646465, -0.007367148995399475, -0.000664275954477489, 0.02963194064795971, -0.0013378537259995937, -0.02807229571044445, -0.013811816461384296, 0.015863467007875443, -0.019282745197415352, -0.004859104752540588, -0.003671413753181696, -0.0016153508331626654, -0.026664413511753082, -0.0157785527408123, 0.04945303127169609, -0.012191933579742908, 0.009346013888716698, 0.012520848773419857, 0.008564786985516548, -0.0029220881406217813, -0.0004567874129861593, -0.0009750369354151189, 0.029768191277980804, 0.001304845092818141, 0.03304172679781914, -0.02103079855442047, -0.05214587599039078, -0.037736110389232635, 0.03241744637489319, -0.016654642298817635, -0.042115408927202225, 0.007402337156236172, -0.03729192540049553, -0.013988158665597439, -0.00702637480571866, 0.00748765654861927, -0.04374336823821068, -0.052864715456962585, 0.020598554983735085, -0.016984617337584496, -0.022886451333761215, -0.0323401540517807, -0.0012334096245467663, 0.01203068532049656, 0.01980050653219223, 0.0001010553096421063, -0.0038400234188884497, -0.0077743218280375, -0.005164171103388071, -0.01883339323103428, 0.000020433641111594625, -0.00870191864669323, -0.019022494554519653, -0.007618965581059456, 0.039742350578308105, 0.02094469591975212, 0.01738126575946808, 0.007126424927264452, 0.004362359642982483, -0.04817945137619972, 0.02130223624408245, -0.03752210736274719, -0.0032675699330866337, -0.016838466748595238, 0.013171722181141376, 0.03911498188972473, 0.007055504247546196, -0.05902426689863205, 0.011560906656086445, -0.018644824624061584, -0.019048986956477165, 0.01883535273373127, -0.016090473160147667, -0.0020590079948306084, 0.0509505458176136, 0.0008648314978927374, 0.08166257292032242, 0.007735735271126032, -0.01335915271192789, 0.0031529644038528204, -0.03811236470937729, -0.022099699825048447, 0.014269695617258549, 0.040860019624233246, 0.006467945873737335, -0.03011699579656124, 0.024258678779006004, 0.03729844465851784, 0.018744412809610367, 0.025162817910313606, 0.01958666369318962, -0.03443988785147667, 8.429431786180222e-33, 0.011929706670343876, -0.00711345300078392, -0.024041596800088882, -0.01244357880204916, 0.015319331549108028, 0.008996786549687386, 0.007970011793076992, -0.03194946050643921, -0.054239802062511444, 0.019836999475955963, -0.004229151643812656, -0.02001076750457287, -0.03939669206738472, 0.024216165766119957, 0.0288932453840971, -0.03286159411072731, 0.02676941268146038, -0.009120889939367771, 0.014864839613437653, 0.022239718586206436, 0.008185346610844135, 0.009142051450908184, -0.01570945791900158, -0.02401239238679409, 0.01016246434301138, 0.06540787220001221, 0.0037676061037927866, 0.027212003245949745, -0.0014028411824256182, 0.02323989011347294, -0.0001978631189558655, -0.02688811719417572, -0.00021381328406278044, -0.004629178438335657, -0.012890118174254894, 0.02781391516327858, -0.036927349865436554, -0.013314525596797466, 0.025208735838532448, 0.006938008591532707, 0.016135450452566147, 0.007728143595159054, -0.0001667165051912889, 0.04038820415735245, 0.009290804155170918, 0.04169352725148201, -0.022651778534054756, -0.006681146565824747, -0.009661193005740643, 0.01187797449529171, -0.020342450588941574, 0.02427242510020733, -0.010920703411102295, -0.04249085113406181, 0.009990171529352665, -0.04913803189992905, -0.041248172521591187, -0.009175554849207401, -0.013370300643146038, 0.01143562514334917, -0.010129551403224468, 0.008868849836289883, -0.02417577989399433, -0.008830983191728592, -0.010040349327027798, -0.006453231908380985, -0.0218778345733881, 0.01708734594285488, 0.002966854255646467, 0.04437924548983574, 0.0156504325568676, 0.029116429388523102, 0.010889234021306038, 0.01687632128596306, 0.024693971499800682, -0.01453566737473011, -0.021201523020863533, 0.011077625676989555, -0.03410489112138748, 0.007397501729428768, 0.003194293472915888, 0.02224484086036682, -0.023110663518309593, -0.009240658953785896, 0.005543154198676348, 0.03548591211438179, -0.00855056568980217, 0.026897503063082695, -0.010468759573996067, -0.0063845193944871426, 0.00883808545768261, 0.00630448991432786, 0.027266135439276695, 0.03082304634153843, 0.023473577573895454, -1.3730174330817135e-8, -0.005369372200220823, -0.008140218444168568, -0.00782017782330513, -0.018411530181765556, -0.007722531445324421, 0.015290564857423306, -0.013280167244374752, 0.008043180219829082, -0.004317499231547117, 0.03435251861810684, 0.04971726983785629, -0.030095329508185387, 0.018393905833363533, 0.02405664324760437, -0.0024134228006005287, -0.06741800159215927, -0.002667471067979932, 0.00014808570267632604, 0.04695085063576698, -0.015198055654764175, 0.031406715512275696, 0.05492269620299339, -0.017132379114627838, -0.022959670051932335, 0.010081154294312, -0.00008478249219479039, 0.006972919218242168, -0.060911230742931366, -0.02781090699136257, -0.022311469539999962, 0.00347308162599802, -0.02933328039944172, -0.02506496198475361, 0.048542320728302, -0.019182486459612846, -0.03514300286769867, -0.02486121840775013, 0.012211872264742851, 0.001169519149698317, -0.0032049661967903376, 0.021567855030298233, -0.017103150486946106, 0.005864252801984549, -0.03580467775464058, -0.031899478286504745, 0.007709847763180733, -0.016487492248415947, -0.010354416444897652, 0.03391755744814873, -0.018432186916470528, 0.00748168071731925, -0.00495183328166604, 0.027412090450525284, 0.015941012650728226, 0.04464145004749298, 0.025598933920264244, 0.0129453269764781, 0.01624312624335289, -0.04546920955181122, -0.02715113013982773, 0.020006055012345314, 0.02744019404053688, -0.03969191387295723, -0.031843435019254684 ]
twu-session-preparation-limited-wip
https://markhneedham.com/blog/2011/03/09/twu-session-preparation-limited-wip
false
2011-03-30 20:34:32
ThoughtWorks University: The use of games
[ "thoughtworks-university" ]
[ "ThoughtWorks University" ]
When I attended ThoughtWorks University in August 2006 we spent quite a bit of time playing games which had been designed to help us to achieve various learning objectives. At the time I didn't think much about it but now being on the other side as a trainer I've started to doubt whether these types of sessions are as useful as I originally thought. I recently came across http://www.learninggeneralist.com/2010/08/think-workscapes-not-training.html[a blog post Sumeet wrote last year where he talks about effective e-learning environments] and I think his point still applies here: ____ The really effective elearning is where people actually practice real-world tasks, but we have little time for that post our fascination with card games and flashy animations. ____ == The Agile Lego Game I was pondering this a couple of weeks ago when we ran the http://agile2009.agilealliance.org/node/476/[agile lego game]. Interestingly the feedback that we got from the participants of this session was that they really enjoyed the games part of the sessions. My current thinking is that the feedback may have been more indicative of the fun that people had rather than the learning gained. The problem I see is that people do know it's a somewhat contrived situation and may therefore have difficulty relating it to a real life problem that they face later on. For example in the agile lego game</a> I acted as a customer with the instructions to be very picky/particular about what I actually wanted so that the team would communicate with me more frequently. The idea was to try and simulate a real life customer and to allow the participants to see the value of collaborating with the customer frequently. I found this part of the role really difficult as I knew how much I would hate to be on the other side facing someone acting like that. On the other hand we did encounter the same types of problems that can happen on real projects: * Making assumptions about what the customer wanted * Not speaking to the customer and just building something * Miscalculating how long it would take to build something and spending ages doing it * 'Committing' to way more points than could ever be done Despite seeing people learn those lessons and not committing the same mistakes in the next iteration I have noticed these same mistakes happening now that people are working on a real project. From what I've seen *it's not until they make these mistakes in a real environment that the learning really sinks in*. Having said that I wouldn't completely write off the use of games in learning environments. They certainly provide a really good way to get people to interact as a group as well as proving them a good opportunity to know each other better. The real learning happens when you're in a real environment though!
null
null
[ 0.02623962052166462, -0.007918479852378368, 0.001185957808047533, 0.04636330530047417, 0.09001905471086502, 0.021357303485274315, 0.00045733212027698755, 0.04979117587208748, 0.019024064764380455, -0.012169899418950081, -0.024969855323433876, 0.009438764303922653, -0.03200069069862366, 0.027333589270710945, -0.04884370416402817, 0.06600130349397659, 0.050199054181575775, 0.013013112358748913, -0.002294085221365094, 0.017746636644005775, 0.017966782674193382, 0.07906745374202728, 0.020880190655589104, 0.04227297008037567, 0.03214789181947708, 0.01481239777058363, 0.023562220856547356, 0.0070155952125787735, -0.056034088134765625, -0.007477659732103348, 0.0349322147667408, -0.0005113973165862262, 0.020018279552459717, 0.001202210783958435, 0.027029341086745262, -0.01434001699090004, -0.009857177734375, 0.051800426095724106, -0.0005593592068180442, -0.005839978810399771, -0.055810317397117615, 0.05059169977903366, -0.01396525464951992, -0.0013796848943457007, -0.044119950383901596, 0.018017712980508804, -0.03246012330055237, -0.011960377916693687, -0.003948155790567398, 0.007230790797621012, -0.059830181300640106, 0.033950112760066986, 0.011956504546105862, -0.014856547117233276, -0.020468520000576973, 0.03455083444714546, 0.011505132541060448, -0.07454370707273483, 0.004240384791046381, -0.05160063877701759, -0.008552758023142815, -0.0016469534020870924, -0.012088186107575893, 0.025426914915442467, 0.024802690371870995, -0.03213962912559509, 0.020630303770303726, 0.03538398817181587, -0.02462742291390896, 0.010579323396086693, -0.038646526634693146, 0.0057379622012376785, -0.005251324735581875, -0.03625914081931114, 0.004154899623245001, -0.06711643934249878, 0.014247034676373005, 0.05401714891195297, 0.023173965513706207, 0.024977989494800568, -0.022753283381462097, 0.026255223900079727, 0.03894435986876488, 0.02263474650681019, -0.018714427947998047, -0.052160780876874924, 0.020007409155368805, -0.032537851482629776, -0.06662391126155853, 0.06713743507862091, -0.0037828164640814066, -0.047698114067316055, 0.026085780933499336, 0.04058511555194855, -0.014852989464998245, 0.01835976541042328, 0.02198770083487034, -0.006798462942242622, -0.015673846006393433, -0.008834343403577805, -0.018706033006310463, -0.0032158163376152515, -0.00891396589577198, 0.0053538051433861256, -0.08625510334968567, 0.003914093133062124, 0.00970123615115881, -0.03255489841103554, -0.039305657148361206, 0.011666850186884403, -0.03616609051823616, 0.013381985016167164, -0.015367191284894943, 0.002673574723303318, -0.06846865266561508, 0.07397092133760452, 0.027735531330108643, -0.02811458334326744, -0.0474405437707901, -0.001552953151986003, 0.03382217884063721, -0.0046845185570418835, -0.014037257060408592, 0.0710456520318985, 0.023303760215640068, 0.009338275529444218, -0.03385923430323601, 0.05919235572218895, -0.0072085680440068245, -0.07021737843751907, 0.010055139660835266, 0.0503559373319149, -0.03989594429731369, 0.005467827897518873, 0.0106844212859869, -0.02661874145269394, 0.026486508548259735, -0.02985229901969433, 0.018561141565442085, 0.049139510840177536, -0.0010620373068377376, -0.015192029997706413, 0.01897580549120903, 0.023195618763566017, 0.017253929749131203, -0.02117278426885605, -0.0022330782376229763, -0.02137044072151184, -0.0323353111743927, -0.011112112551927567, 0.008714593015611172, -0.003158237086609006, 0.014241201803088188, -0.043865129351615906, 0.03726387023925781, 0.09128083288669586, 0.02662397362291813, -0.0049026901833713055, -0.026624519377946854, 0.029864177107810974, 0.038159698247909546, 0.009257441386580467, 0.010499928146600723, -0.0002244973584311083, 0.026585351675748825, -0.014724568463861942, -0.0019476793240755796, 0.019399503245949745, -0.02536308392882347, 0.002354634692892432, -0.07232743501663208, -0.038553111255168915, 0.03720351308584213, -0.048353634774684906, -0.04154675453901291, 0.04527191072702408, 0.06787227094173431, 0.05621204897761345, 0.027760453522205353, -0.006337512284517288, -0.07267124950885773, 0.014969393610954285, 0.01702592335641384, 0.030786734074354172, 0.04390169307589531, -0.03269495442509651, 0.04527222737669945, 0.007499785628169775, -0.012173301540315151, 0.06353175640106201, -0.07192808389663696, -0.08512990176677704, -0.01255583856254816, -0.011078223586082458, 0.0477464534342289, -0.049467939883470535, 0.013429855927824974, 0.056427597999572754, -0.0018961136229336262, 0.038266390562057495, 0.014584911987185478, 0.010435878299176693, 0.0032709790393710136, -0.0384596548974514, -0.03589148819446564, 0.05677841231226921, 0.03862178325653076, 0.009084999561309814, -0.042858801782131195, 0.009309363551437855, -0.011647847481071949, -0.02405448444187641, 0.05305550992488861, -0.0027198907919228077, 0.04065709188580513, 0.00014162890147417784, 0.06240476295351982, -0.012930406257510185, 0.048648636788129807, -0.0501808263361454, -0.011677265167236328, -0.008018857799470425, -0.020751146599650383, 0.006536166183650494, -0.009504162706434727, 0.1087874174118042, 0.036819394677877426, -0.05240620672702789, -0.043352168053388596, 0.02589871548116207, 0.0025671173352748156, -0.04852745682001114, 0.005476233549416065, -0.002053180942311883, 0.0230032317340374, 0.01180725172162056, -0.056174445897340775, -0.048491086810827255, 0.023984361439943314, -0.05500560998916626, -0.008683073334395885, 0.06764212250709534, -0.027122415602207184, 0.07675482332706451, 0.00340387225151062, 0.0010086983675137162, -0.010500425472855568, 0.010123683139681816, -0.06255332380533218, 0.013359718024730682, 0.02204105816781521, -0.023700635880231857, 0.055949050933122635, -0.0005119635025039315, -0.040820151567459106, -0.0374370701611042, -0.034782759845256805, -0.0008979362319223583, 0.05263008549809456, 0.0533791109919548, -0.014575885608792305, 0.0737195611000061, -0.01136851217597723, 0.0324140228331089, -0.004148703068494797, -0.04940243065357208, -0.03939777612686157, -0.045930203050374985, -0.015064701437950134, 0.025252172723412514, 0.026880864053964615, 0.009550136514008045, 0.03672119230031967, -0.0020286606159061193, -0.031996261328458786, 0.0010990421287715435, 0.024034645408391953, -0.0030793093610554934, -0.006225917488336563, -0.03683999180793762, -0.004789726808667183, 0.06168472021818161, -0.03546496108174324, -0.001028688158839941, 0.01800365559756756, -0.07821130007505417, 0.03878079354763031, -0.061564840376377106, -0.05920178070664406, -0.0008701483020558953, 0.01515266951173544, 0.049366552382707596, 0.0037144471425563097, 0.010374562814831734, 0.08033086359500885, 0.03137096017599106, 0.013663169927895069, 0.0010282425209879875, -0.009076821617782116, 0.04620350897312164, 0.0030649651307612658, -0.018107470124959946, 0.044712405651807785, 0.010387992486357689, 0.008215897716581821, -0.062116838991642, 0.05481261387467384, -0.054816488176584244, -0.2835504412651062, 0.02881697192788124, 0.01554726529866457, -0.014502107165753841, 0.021216437220573425, -0.03292329981923103, 0.019573360681533813, -0.0464029498398304, -0.02984766475856304, 0.02612365037202835, -0.037788718938827515, -0.026403846219182014, -0.017083654180169106, 0.0636739581823349, 0.020582132041454315, 0.035813041031360626, 0.03264717385172844, -0.036899466067552567, -0.005252304021269083, 0.052939463406801224, -0.009382876567542553, -0.06819655001163483, -0.024666860699653625, 0.06185155361890793, 0.05695158243179321, 0.06111089885234833, -0.0673673078417778, 0.01113930530846119, -0.06964429467916489, -0.005931168328970671, 0.027592230588197708, 0.007635385729372501, -0.008757012896239758, -0.012212594971060753, -0.0005899145035073161, -0.0012882968876510859, 0.036945827305316925, 0.01336213480681181, -0.011729388497769833, 0.007330500986427069, -0.014425782486796379, -0.0365668348968029, 0.008846509270370007, 0.03010156750679016, 0.06656522303819656, 0.009894364513456821, -0.0651819109916687, -0.01074249017983675, -0.03644305095076561, 0.07004953175783157, -0.01537629496306181, -0.026613229885697365, -0.011794251389801502, 0.04020889103412628, -0.028511308133602142, -0.01698296330869198, -0.0009935820708051324, -0.024447059258818626, -0.047616034746170044, -0.029637645930051804, -0.017422689124941826, -0.011557240970432758, -0.025834795087575912, -0.04362541809678078, -0.00695459172129631, -0.07208713889122009, -0.06562748551368713, 0.0004258199187461287, 0.05798636004328728, 0.02249017544090748, -0.046959467232227325, -0.01682424359023571, -0.01909157633781433, -0.10480432212352753, -0.006535971071571112, 0.020352495834231377, -0.022346822544932365, 0.013675755821168423, 0.033056728541851044, 0.04696625471115112, -0.021766837686300278, -0.05912947282195091, 0.031490862369537354, 0.01463270466774702, 0.019459746778011322, -0.0032464012037962675, 0.06851795315742493, 0.03313402459025383, -0.011994031257927418, 0.017303066328167915, 0.054439667612314224, 0.020542709156870842, -0.0443481020629406, -0.021413583308458328, 0.02519853599369526, 0.017077000811696053, 0.018975337967276573, -0.03189002722501755, 0.0044040498323738575, 0.03063248284161091, -0.016222655773162842, -0.05289676785469055, 0.011642138473689556, -0.008679864928126335, -0.0038703572936356068, -0.014005367644131184, -0.04444842413067818, 0.010831767693161964, 0.05584827810525894, 0.014183989726006985, 0.010173296555876732, -0.015830904245376587, 0.015694856643676758, -0.031769268214702606, -0.028349626809358597, -0.03229795768857002, 0.007754041813313961, 0.05955689772963524, -0.00499095069244504, -0.00444404873996973, -0.05408455803990364, 0.0171509999781847, -0.004587230272591114, -0.0002857078507076949, -0.053709663450717926, -0.00492100091651082, -0.010539685375988483, -0.0293281152844429, 0.0070749553851783276, 0.0102663179859519, -0.017010269686579704, 0.014677691273391247, 0.034693703055381775, -0.013938128016889095, 0.01946045458316803, -0.029985938221216202, -0.0880308449268341, -0.028911422938108444, -0.018835199996829033, -0.006139620207250118, -0.009715474210679531, 0.021420910954475403, 0.013511798344552517, 0.016718456521630287, 0.03160523623228073, 0.01818845421075821, 0.009186575189232826, 0.003350755199790001, 0.023244328796863556, 0.009865456260740757, 0.014333774335682392, -0.07489398121833801, 0.034473519772291183, -0.04154842346906662, -0.014455288648605347, -0.014543574303388596, 0.024094758555293083, -0.01440479513257742, -0.02766907960176468, -0.014190486632287502, 0.013922963291406631, -0.03848867118358612, -0.028896821662783623, -0.02909417450428009, 0.03676392883062363, 0.06848486512899399, 0.0010804780758917332, 0.00018638145411387086, -0.01999504491686821, -0.010331830941140652, 0.03243057429790497, -0.005660546477884054, -0.040045056492090225, -0.005775858648121357, 0.005080331116914749, -0.021126355975866318, 0.018385199829936028, -0.021197466179728508, 0.044273123145103455, -0.021885797381401062, -0.011762496083974838, -0.022375022992491722, 0.020643221214413643, -0.0005444149137474597, 0.04987308755517006, 0.03902066871523857, -0.001680349581874907, 0.0103293526917696, -0.02608254738152027, -0.014414004981517792, -0.03209419175982475, -0.011779283173382282, 0.009691569022834301, 0.022874653339385986, -0.04643123224377632, -0.06568902730941772, 0.05666397884488106, 0.00345797766931355, 0.011518326587975025, 0.016465673223137856, -0.006712627597153187, -0.015747498720884323, -0.01980035938322544, 0.019813716411590576, 0.06732584536075592, -0.06841891258955002, -0.0029466007836163044, -0.018701517954468727, 0.015679901465773582, -0.001335903536528349, -0.024183038622140884, -0.01868484728038311, -0.004188517574220896, -0.02954162284731865, -0.002881681313738227, -0.08373980969190598, -0.015551518648862839, -0.04226857051253319, 0.021765952929854393, 0.012556307949125767, -0.007387449499219656, -0.03285465016961098, -0.0463300459086895, -0.026243967935442924, -0.03811118006706238, 0.008901647292077541, -0.06676270812749863, -0.020880505442619324, 0.0128888925537467, -0.03294987231492996, -0.010974672622978687, -0.03160379081964493, 0.02032049372792244, 0.018056577071547508, -0.02415475808084011, 0.0024939971044659615, -0.02877853810787201, 0.023044385015964508, 0.011430704034864902, 0.023678183555603027, -0.017894821241497993, -0.021534867584705353, -0.04536829888820648, -0.005096069071441889, -0.03797240927815437, 0.016052989289164543, -0.021467963233590126, 0.0001869287807494402, 0.028808211907744408, 0.06616322696208954, 0.0255617406219244, 0.027370739728212357, -0.008853170089423656, -0.019651465117931366, 0.0507480762898922, -0.07581575959920883, -0.014411600306630135, -0.01719965972006321, -0.06322508305311203, -0.005190456751734018, 0.0065077547915279865, 0.026659933850169182, -0.05038071051239967, 0.04193772003054619, 0.002831303281709552, 0.03244299069046974, 0.04924655333161354, 0.016222519800066948, 0.017063261941075325, -0.048225369304418564, -0.004771793726831675, -0.08231399208307266, 0.010915352031588554, 0.03616569936275482, 0.0043717436492443085, -0.004989910870790482, 0.005510434973984957, -0.05599679797887802, 0.054463598877191544, -0.07726942002773285, -0.019516615197062492, 0.0523303858935833, -0.00992866326123476, -0.03260522335767746, 0.016923705115914345, -0.07102745026350021, 0.02725163660943508, 0.013936934061348438, -0.042865198105573654, -0.017347237095236778, -0.02861287072300911, 0.04148996248841286, 0.012026095762848854, 0.00663479370996356, -0.03907525911927223, -0.0006854821112938225, 0.08123867213726044, -0.012193072587251663, 0.006762382574379444, 0.06435434520244598, -0.008035595528781414, 0.04438681900501251, 0.04388648644089699, 0.01184613723307848, -0.0029959981329739094, 0.00005571578731178306, -0.002695347648113966, -0.05094543844461441, 0.042689356952905655, -0.009196450002491474, -0.049326565116643906, -0.047787126153707504, 0.05415322631597519, 0.015346361324191093, -0.017217250540852547, -0.046978481113910675, 0.017372295260429382, -0.053425829857587814, 0.00775926886126399, -0.004105978645384312, -0.007296481169760227, -0.061182886362075806, 0.04894031211733818, -0.005038673058152199, 0.02298586815595627, 0.06238081306219101, 0.004852551035583019, -0.036098018288612366, -0.006050752475857735, 0.08442315459251404, 0.06254970282316208, 0.06660028547048569, 0.022320959717035294, 0.08687273412942886, -0.012840459123253822, -0.04526124149560928, 0.027760816738009453, -0.004780228715389967, -0.017333662137389183, -0.021184805780649185, 0.03311021625995636, 0.04364144429564476, -0.007707752753049135, 0.045813534408807755, -0.027122987434267998, -0.0255021620541811, 0.03188515082001686, 0.05625905096530914, 0.0005801794468425214, 0.05060851573944092, 0.01165106799453497, 0.0008640947635285556, -0.021684637293219566, -0.05430500581860542, 0.013341688551008701, -0.04983081668615341, -0.018829496577382088, 0.030555013567209244, -0.017822599038481712, 0.03799823299050331, 0.029256615787744522, 0.0029912765603512526, 0.08902677148580551, -0.06289011985063553, 0.035573121160268784, -0.006966991815716028, 0.02071901597082615, 0.024091001600027084, 0.008268939331173897, 0.0017424587858840823, -0.007430628873407841, 0.00493079237639904, -0.021572789177298546, -0.02164890058338642, -0.015318209305405617, 0.0015831857454031706, 0.020881909877061844, -0.030402109026908875, 0.008463338017463684, 0.05078523978590965, 0.011375954374670982, -0.020301885902881622, -0.0551290437579155, -0.029187863692641258, -0.01759452000260353, -0.06624343991279602, 0.02310076542198658, 0.03210420906543732, -0.024163901805877686, -0.048520833253860474, -0.011586550623178482, -0.012204863131046295, -0.029139269143342972, 0.036446861922740936, -0.05176512151956558, -0.0345335453748703, -0.00025143229868263006, 0.015201499685645103, 0.038914281874895096, -0.0000041025414247997105, 0.05710256099700928, -0.0064650834538042545, -0.01629677601158619, -0.035199664533138275, 0.012346824631094933, 0.024421796202659607, -0.001951312879100442, 0.006206565070897341, -0.07618708163499832, 0.025490740314126015, 0.02812541089951992, -0.01759405992925167, -0.05225413292646408, 0.018856626003980637, 0.015418041497468948, 0.008687058463692665, 0.06992954015731812, -0.009337419643998146, -0.002331031486392021, -0.06021260470151901, -0.006093148607760668, -0.015687668696045876, 0.025828463956713676, 0.04491202533245087, -0.04235948622226715, 0.07478202879428864, 0.016855211928486824, -0.022324172779917717, -0.05454489216208458, -0.01796049252152443, 0.008736487478017807, -0.018502037972211838, -0.00288799568079412, -0.028536444529891014, -0.01765849068760872, -0.08437611162662506, -0.021541962400078773, 0.01637018844485283, -0.004394939169287682, -0.04586689546704292, 0.02356945164501667, 0.023364024236798286, 0.0052956040017306805, 0.019383596256375313, -0.0356365405023098, 0.044266581535339355, -0.010526062920689583, -0.0026869892608374357, 0.011917289346456528, 0.012170840054750443, -0.012265995144844055, 0.008292819373309612, 0.030553709715604782, -0.051738984882831573, 0.007513120304793119, -0.0010281734867021441, 0.0020588974002748728, 0.04615698754787445, 0.02173626236617565, -0.005368735175579786 ]
[ -0.08099861443042755, 0.01143350824713707, 0.0008149358909577131, -0.03049977868795395, 0.025790715590119362, -0.019442876800894737, -0.017485197633504868, 0.004553928039968014, -0.005104630254209042, -0.00781811773777008, -0.0002002993132919073, -0.016823450103402138, -0.011212595738470554, -0.00010133565228898078, 0.08273957669734955, -0.003828199580311775, -0.001901873853057623, -0.07599631696939468, 0.023416966199874878, 0.03813382610678673, -0.005961782298982143, -0.037363506853580475, -0.024485798552632332, -0.02809225022792816, -0.0012717344798147678, 0.021950937807559967, -0.006357335951179266, -0.0406772755086422, -0.003556079464033246, -0.15120956301689148, 0.022856827825307846, 0.022187380120158195, 0.047244779765605927, 0.017834791913628578, -0.003085281467065215, 0.07366883009672165, 0.023714615032076836, 0.03341560438275337, -0.03215886279940605, 0.028578972443938255, 0.009168166667222977, 0.013641503639519215, -0.049315523356199265, -0.04323919117450714, 0.0350959412753582, 0.007611715234816074, 0.002084028208628297, -0.06873442232608795, -0.02757873758673668, -0.002045411616563797, -0.02958083711564541, -0.041354935616254807, -0.008976912125945091, -0.033790141344070435, -0.008646533824503422, 0.033939722925424576, 0.02611510641872883, 0.05725588649511337, 0.0028828459326177835, 0.04480646178126335, 0.005934052634984255, -0.024480190128087997, -0.14682258665561676, 0.0971941202878952, 0.03442392498254776, 0.06275822222232819, -0.0540730357170105, 0.0017107863677665591, -0.007506608497351408, 0.07797636836767197, 0.006810864433646202, -0.021157145500183105, -0.0018885618774220347, 0.04403188079595566, 0.05143769457936287, 0.03605053946375847, -0.002227617660537362, 0.008237568661570549, 0.032338500022888184, -0.04925995692610741, -0.03769152611494064, -0.01221978385001421, -0.02050597406923771, -0.013843419961631298, -0.011162267997860909, 0.029131408780813217, -0.015354127623140812, 0.03604956343770027, 0.0445067435503006, 0.05238034576177597, 0.039792414754629135, 0.011485024355351925, 0.007716359570622444, -0.010717618279159069, -0.05264034494757652, -0.02993292734026909, -0.008056745864450932, 0.02405528537929058, -0.09059589356184006, 0.419328510761261, -0.02078547142446041, -0.008742189966142178, 0.07024902105331421, 0.03737486153841019, -0.015338252298533916, -0.005577831994742155, 0.012970258481800556, -0.05217545107007027, 0.022071177139878273, -0.021013233810663223, 0.002432263921946287, 0.006788704544305801, 0.057758305221796036, -0.025843871757388115, -0.015242611058056355, 0.06338771432638168, 0.014978475868701935, 0.007650764659047127, 0.009478298015892506, 0.011370738968253136, -0.012661676853895187, 0.02788757160305977, 0.018313420936465263, -0.025763828307390213, -0.02766086533665657, -0.05321136862039566, 0.027044739574193954, 0.059296634048223495, 0.02632763795554638, -0.022259844467043877, 0.03851223737001419, -0.062321633100509644, -0.07932879775762558, 0.017465433105826378, -0.0001796487340470776, 0.01358515303581953, 0.03915921971201897, -0.010180826298892498, 0.02034333534538746, 0.07404603064060211, 0.0227228831499815, 0.016765590757131577, 0.030491072684526443, -0.056138575077056885, -0.05726270377635956, 0.09715330600738525, 0.05668144300580025, -0.02779143676161766, -0.0027777969371527433, 0.00029937337967567146, -0.011776838451623917, 0.009013734757900238, 0.004159898031502962, -0.034491557627916336, 0.04907601326704025, -0.00506477290764451, 0.11491572111845016, 0.0069085597060620785, -0.07724244892597198, -0.01546170748770237, -0.02515638805925846, -0.04259616881608963, -0.04240605980157852, 0.04701569303870201, 0.08207806199789047, -0.08697083592414856, -0.029018446803092957, -0.011064328253269196, 0.01924768090248108, -0.07896928489208221, -0.017294710502028465, 0.024943474680185318, -0.02657579444348812, 0.0005049783503636718, 0.07941064238548279, -0.04459396004676819, -0.0667300894856453, 0.004382186569273472, 0.04857390746474266, 0.030633926391601562, 0.05867204815149307, 0.006976513657718897, -0.002024467336013913, -0.012250104919075966, -0.0487971268594265, -0.069249227643013, -0.018735693767666817, -0.023058030754327774, -0.014954959973692894, -0.00551597261801362, -0.0074364678002893925, -0.03740062192082405, -0.09089044481515884, 0.10533469915390015, -0.024000288918614388, -0.020849917083978653, 0.04087459295988083, -0.03892625495791435, -0.03318174183368683, -0.014568725600838661, -0.08746521919965744, 0.02028190717101097, -0.03740827366709709, 0.03459929674863815, -0.05783849209547043, 0.059348251670598984, 0.0547608844935894, -0.05688723549246788, 0.12095119804143906, 0.03313320502638817, -0.03917668014764786, -0.035529423505067825, 0.0012185066007077694, 0.02087666094303131, 0.009671308100223541, -0.0034443819895386696, 0.014642365276813507, 0.00901340413838625, -0.01357792504131794, 0.01208210363984108, -0.02267434634268284, 0.025447718799114227, -0.01617606356739998, -0.34193041920661926, -0.018239114433526993, -0.04295485466718674, 0.004566030111163855, 0.008189445361495018, -0.02807411178946495, 0.02897237241268158, -0.02866237238049507, -0.0017741823103278875, -0.005529451183974743, 0.08810103684663773, -0.026379279792308807, 0.02094358392059803, -0.07123412936925888, 0.017364708706736565, -0.009965798817574978, -0.058150261640548706, -0.021903248503804207, -0.026461778208613396, 0.012227822095155716, 0.011154834181070328, -0.0013944200472906232, -0.0006750151515007019, -0.05684985965490341, -0.013867257162928581, -0.045524969696998596, 0.12606045603752136, 0.011616934090852737, 0.0463685616850853, -0.04146285727620125, 0.031072022393345833, 0.028906159102916718, 0.023894524201750755, -0.11226964741945267, 0.02180030569434166, -0.030134117230772972, 0.03176746889948845, -0.042594220489263535, 0.012086103670299053, -0.0393330454826355, -0.07217167317867279, 0.02963327243924141, -0.06675739586353302, -0.04521714523434639, -0.08549162745475769, 0.012490330263972282, -0.038363780826330185, -0.003188143251463771, -0.025627395138144493, 0.08995461463928223, 0.010989085771143436, -0.010179197415709496, 0.0314294807612896, -0.0014682667097076774, -0.018535204231739044, -0.02819182351231575, -0.11212819069623947, 0.0516824908554554, 0.007284573279321194, 0.008606035262346268, 0.012457219883799553, 0.05445229634642601, 0.021265152841806412, -0.06015140563249588, 0.00790931936353445, 0.01450663898140192, 0.011685246601700783, 0.009749405086040497, 0.0380556620657444, -0.022140519693493843, -0.006177048664540052, 0.0751456618309021, 0.021097904071211815, -0.02660992741584778, 0.021138593554496765, 0.03015202283859253, -0.009153446182608604, 0.020205644890666008, 0.017465999349951744, 0.0012448282213881612, -0.005583499558269978, -0.00983070582151413, 0.003337130881845951, -0.008673577569425106, 0.0008917186642065644, 0.003231746843084693, -0.010312099941074848, -0.05069658160209656, 0.06405258178710938, 0.013503476977348328, -0.010810661129653454, 0.03521694988012314, -0.05193692445755005, -0.028494074940681458, 0.07841520011425018, 0.0004149539745412767, -0.248405322432518, 0.01995626464486122, 0.07168606668710709, 0.03992534056305885, -0.008720997720956802, 0.026892846450209618, 0.01308782771229744, -0.047477416694164276, 0.03175864368677139, 0.004972589667886496, 0.051031943410634995, -0.009088451974093914, -0.00877341628074646, -0.012699165381491184, 0.009180226363241673, -0.008416027761995792, 0.044586602598428726, -0.007007754873484373, 0.05836226046085358, -0.022970372810959816, 0.019083231687545776, 0.018359925597906113, 0.1434803456068039, 0.002838866086676717, 0.011225066147744656, -0.009955034591257572, -0.021282324567437172, -0.0002859820961020887, 0.06120169162750244, -0.00014307799574453384, -0.018199186772108078, 0.006851925048977137, 0.03384571895003319, 0.021539371460676193, 0.015945935621857643, -0.08641127496957779, -0.02184278890490532, 0.008068843744695187, 0.008534884080290794, 0.012543214485049248, 0.020758450031280518, -0.010241566225886345, -0.02262893319129944, 0.0180287454277277, 0.06414176523685455, 0.02432132698595524, 0.02419167198240757, -0.047200966626405716, -0.06525585800409317, -0.032676707953214645, -0.03132634609937668, -0.05436857044696808, 0.02394249476492405, -0.012462589889764786, 0.006681822240352631, 0.09001544862985611, 0.03761821612715721, -0.037611108273267746, -0.007479879539459944, -0.010987571440637112, -0.009430631063878536, 0.007437150459736586, 0.09843997657299042, 0.02662605606019497, 0.04802219569683075 ]
[ -0.008163980208337307, 0.04928925633430481, 0.025372019037604332, 0.0012947982177138329, 0.009770327247679234, -0.002852475270628929, -0.0003029494546353817, 0.027628716081380844, -0.013543305918574333, 0.011828955262899399, -0.012903284281492233, 0.006982239428907633, -0.001699165441095829, -0.004745898302644491, 0.046200696378946304, -0.026116954162716866, 0.026560001075267792, -0.005437097046524286, 0.0389929935336113, 0.03421161323785782, 0.014811220578849316, -0.013338414020836353, -0.02059609442949295, 0.015185835771262646, -0.029550500214099884, 0.0060976301319897175, -0.0096199382096529, 0.02523862011730671, 0.011104593984782696, -0.14421848952770233, -0.0060793086886405945, -0.018883412703871727, 0.00836280919611454, 0.013182510621845722, 0.021937048062682152, 0.012316126376390457, -0.0033865771256387234, -0.0177413672208786, -0.01655951328575611, -0.050990939140319824, -0.019176406785845757, 0.006921455264091492, 0.0059118387289345264, -0.009737792424857616, -0.005044776480644941, 0.008771969936788082, 0.0038198716938495636, -0.06758057326078415, -0.05299540236592293, 0.015549172647297382, -0.0469844751060009, -0.03431360796093941, 0.0011645761551335454, -0.004331952892243862, -0.0005078534013591707, -0.0038138730451464653, 0.04334612935781479, 0.016241980716586113, 0.027638982981443405, 0.0017656618729233742, 0.010373363271355629, -0.02054806426167488, -0.025360019877552986, -0.027613261714577675, -0.01545125525444746, -0.027266545221209526, 0.0007306876941584051, 0.01598643884062767, -0.03264288604259491, -0.0006142233614809811, 0.04362761229276657, 0.005939011927694082, -0.012322074733674526, -0.05614722520112991, 0.016117097809910774, -0.0031304864678531885, -0.0237897839397192, -0.027568381279706955, -0.0037710131146013737, 0.023021113127470016, -0.017640169709920883, 0.024449538439512253, -0.010076013393700123, -0.02786278910934925, 0.0036932742223143578, 0.021963471546769142, 0.003235540585592389, 0.017818016931414604, 0.009468276053667068, 0.009385143406689167, -0.013096600770950317, -0.0006977991433814168, -0.006259715184569359, 0.04085011035203934, -0.06907125562429428, -0.0011947910534217954, -0.027915170416235924, -0.03631321340799332, -0.012767128646373749, 0.8350327014923096, -0.02935042791068554, 0.04316697642207146, 0.03840911388397217, 0.024653220549225807, -0.003040693001821637, 0.0021777162328362465, 0.005420566536486149, 0.02294735424220562, 0.013049072585999966, -0.012987641617655754, 0.010361146181821823, 0.002293563215062022, 0.012243597768247128, 0.03169207274913788, 0.027011051774024963, 0.019056513905525208, 0.002640731167048216, 0.0014637330314144492, -0.01949988678097725, 0.033409543335437775, 0.07062821835279465, 0.029973551630973816, 0.05538683384656906, 0.03448507934808731, 0.018341287970542908, -0.21945630013942719, 0.0034504742361605167, -8.850883245148475e-33, 0.009782342240214348, -0.009873797185719013, 0.011057272553443909, 0.0028415434062480927, 0.02847173437476158, -0.01696348749101162, 0.054912593215703964, 0.012564638629555702, 0.015447089448571205, -0.02631065435707569, 0.007406329270452261, 0.0004195317451376468, 0.006840182468295097, 0.02957223914563656, 0.010378905571997166, -0.038236964493989944, -0.05061175674200058, 0.01950824074447155, -0.010735206305980682, 0.0625731572508812, 0.06305276602506638, -0.02176428586244583, -0.005645423661917448, 0.002087525324895978, -0.01435651071369648, 0.005826309788972139, -0.0005434511112980545, 0.037291307002305984, 0.022426826879382133, -0.03460615500807762, 0.007774014491587877, -0.015684306621551514, -0.037882089614868164, -0.006020232103765011, 0.06009124591946602, -0.020004086196422577, -0.025023136287927628, 0.013793093152344227, -0.02406392991542816, -0.02921886555850506, -0.016967464238405228, -0.013378528878092766, -0.0267101489007473, -0.017659775912761688, -0.017079804092645645, 0.004429496359080076, 0.03966045379638672, -0.011044622398912907, 0.009066721424460411, -0.011430313810706139, 0.018413690850138664, 0.006563238799571991, 0.003619672730565071, -0.01977032981812954, -0.007276869844645262, -0.025941435247659683, 0.004073700401932001, 0.014771586284041405, -0.015105964615941048, 0.0024336702190339565, 0.016482507809996605, -0.00568411685526371, -0.019004235044121742, 0.0049516730941832066, -0.02951274812221527, -0.004145181272178888, 0.03257002681493759, 0.004953162744641304, 0.036233335733413696, -0.04032975807785988, -0.03929324075579643, -0.011929594911634922, 0.016258830204606056, 0.0014297739835456014, -0.008505196310579777, -0.027030622586607933, -0.016852853819727898, 0.04898318275809288, -0.047490183264017105, 0.03593086823821068, 0.008561716414988041, -0.009583649225533009, -0.06300853192806244, -0.02045781910419464, 0.008275494910776615, -0.018717477098107338, 0.010546757839620113, -0.0013628567103296518, 0.0028321542777121067, 0.020792843773961067, 0.024506883695721626, -0.00844679307192564, -0.008445368148386478, 0.0002728495455812663, -0.006556055508553982, 8.744606800890632e-33, -0.01390447560697794, -0.020142365247011185, -0.031630124896764755, 0.011887245811522007, 0.03996233642101288, -0.01377261895686388, 0.016844982281327248, 0.021794630214571953, -0.06026944890618324, 0.015314048156142235, -0.0158142801374197, 0.01055963896214962, -0.04152119159698486, 0.03949794918298721, 0.024694053456187248, -0.024568937718868256, 0.0330350436270237, -0.030001837760210037, 0.0585678368806839, 0.006252817809581757, 0.02017916366457939, -0.006634022109210491, -0.022454924881458282, 0.0014567639445886016, 0.031122008338570595, 0.09475669264793396, -0.009535014629364014, 0.011986956000328064, 0.008196515031158924, -0.005472618620842695, -0.00665074959397316, -0.002005027374252677, 0.01718558557331562, 0.0002061479608528316, -0.008785956539213657, 0.016617143526673317, -0.01775433123111725, -0.00833784881979227, -0.01831742189824581, -0.038734134286642075, 0.007081897463649511, -0.010668827220797539, -0.00660907244309783, 0.01738809235394001, 0.017047768458724022, 0.01603497564792633, 0.000792111037299037, 0.002189317252486944, -0.01492235902696848, 0.036282431334257126, 0.006546303164213896, 0.024001503363251686, -0.01496362965553999, -0.05696724355220795, 0.017690246924757957, -0.04036281257867813, -0.014170014299452305, -0.009150183759629726, -0.01853061467409134, 0.005939928814768791, 0.006933630909770727, 0.009470805525779724, -0.006063608452677727, 0.012440364807844162, -0.019886966794729233, -0.01969607174396515, 0.008964871987700462, -0.011452766135334969, -0.02740097977221012, 0.006243275478482246, -0.014703089371323586, 0.06173427030444145, 0.006615272723138332, 0.02189013920724392, -0.0021115944255143404, -0.019994398579001427, -0.025883788242936134, 0.0009588182438164949, -0.029581677168607712, -0.009343529120087624, -0.006803870666772127, -0.0007378585287369788, 0.03320765867829323, 0.03209737688302994, -0.018193336203694344, 0.03527833893895149, -0.03913310170173645, 0.036055710166692734, -0.01847638562321663, -0.02219417504966259, 0.0069997115060687065, -0.012296766974031925, 0.016186395660042763, 0.01678561419248581, -0.01763675920665264, -1.3985663294135975e-8, -0.007319067604839802, 0.00024646392557770014, -0.01544026006013155, -0.023586047813296318, 0.0038835881277918816, 0.0003536469885148108, -0.02390419878065586, 0.02535642869770527, -0.020440787076950073, 0.009968912228941917, 0.06600282341241837, -0.024409061297774315, 0.0035011256113648415, 0.01563187688589096, 0.03438691794872284, -0.04065028205513954, -0.00677094329148531, -0.0088958740234375, 0.018425293266773224, 0.009454240091145039, 0.01156932394951582, 0.057585880160331726, -0.01183183491230011, 0.01816210336983204, -0.011094382964074612, -0.008225993253290653, -0.011865172535181046, -0.06921403855085373, 0.00201952806673944, -0.005965792573988438, 0.013072481378912926, -0.025833632797002792, 0.004514526110142469, 0.020037081092596054, -0.02609252743422985, -0.06538858264684677, 0.03910449147224426, 0.0020992399659007788, 0.007378863170742989, -0.014594711363315582, -0.024067822843790054, -0.0023280379828065634, 0.020384827628731728, -0.04086586460471153, -0.01515608374029398, 0.010953965596854687, -0.03765278309583664, -0.017966067418456078, 0.0028610089793801308, -0.030637316405773163, -0.030099615454673767, 0.010702623054385185, -0.012618159875273705, 0.02471497468650341, 0.02598419226706028, 0.022189585492014885, -0.0032398321200162172, -0.03856919705867767, -0.03291183337569237, -0.011420397087931633, 0.03310085088014603, 0.00897063035517931, -0.010770759545266628, 0.009870840236544609 ]
thoughtworks-university-the-use-of-games
https://markhneedham.com/blog/2011/03/30/thoughtworks-university-the-use-of-games
false
2011-03-30 19:17:57
ThoughtWorks University: A double loop learning example
[ "thoughtworks-university" ]
[ "ThoughtWorks University" ]
One of the most interesting things that I've been reading about recently is the idea of single and double loop learning which were defined by Chris Argyris and Donald Schon in their book 'http://en.wikipedia.org/wiki/Organizational_learning#CITEREFArgyrisSch.C3.B6n1978[Organizational Learning: A theory of action perspective]' in 1978. image::{{<siteurl>}}/uploads/2011/03/single-double-loop.jpg[Single double loop,477] I quite like the definitions that Mark Smith gives for these types of learning in http://www.infed.org/thinkers/argyris.htm[his article about Chris Argyris]: *Single Loop Learning* ____ Single-loop learning seems to be present when goals, values, frameworks and, to a significant extent, strategies are taken for granted. The emphasis is on '`techniques and making techniques more efficient`' (Usher and Bryant: 1989: 87) Any reflection is directed toward making the strategy more effective. ____ *Double Loop Learning* ____ Double-loop learning, in contrast, '`involves questioning the role of the framing and learning systems which underlie actual goals and strategies ____ I've found in a lot of 'agile' teams that I've worked on we do single loop learning pretty well but often struggle when it comes to double loop learning. For example while working in Pune I would often hear people justify the use of an "agile practice" with the phrase "we do it because it's agile" without necessarily reflecting on the benefit the practice was supposed to be providing. I was therefore quite pleased to see my colleague http://twitter.com/cepitchford[Claire] employing some double loop learning while questioning the value of the wrap up that we do at the end of each day of ThoughtWorks University. The wrap up is a 15 minute stand up where people share what they're learned during the day that might be useful for other people to know as well. Claire raised the point that it doesn't necessarily work well as a learning device because it's quite difficult to switch so quickly from working on the project to having to reflect on what you've learned. When we discussed the usefulness of the session as a group a couple of people pointed out that it works quite nicely as an end of day activity and helped create some closure on what they'd been working on. http://twitter.com/jimbarritt[Jim] also encouraged the group to stick with it for a bit longer as his experience from the previous university was that the wrap up sessions tended to get better as people got more used to the format. We decided to stick with it for the moment and it's been interesting to notice that the quality of the discussion does seem to have improved as the days have gone by. Despite that I thought it was really good that the group took the chance to reflect on whether something which had been pushed on them was actually useful rather than just going with it for 6 weeks and not getting much out of it.
null
null
[ 0.03311309218406677, 0.011855382472276688, -0.017762241885066032, 0.017852989956736565, 0.07276931405067444, 0.006533784791827202, 0.026965506374835968, 0.03371337056159973, 0.024505384266376495, -0.010003977455198765, -0.002248522359877825, -0.012600780464708805, -0.048624325543642044, 0.014766180887818336, -0.03440731018781662, 0.060608088970184326, 0.08039562404155731, -0.0168285109102726, -0.0030040189158171415, 0.023264123126864433, 0.019357608631253242, 0.09169668704271317, 0.04454287886619568, 0.030571773648262024, 0.04816397652029991, 0.010123208165168762, 0.020556820556521416, -0.021894091740250587, -0.049895551055669785, 0.0019904067739844322, 0.043774913996458054, 0.0024459438864141703, 0.018870925530791283, 0.024388238787651062, 0.024680057540535927, -0.005195793695747852, 0.008746367879211903, 0.004644838161766529, 0.01300495769828558, 0.004704208113253117, -0.054019637405872345, 0.03178795799612999, -0.019266387447714806, -0.0050775520503520966, -0.04391949996352196, 0.008719438686966896, -0.048835765570402145, 0.012482729740440845, -0.0018203931394964457, -0.007584845181554556, -0.06486041843891144, 0.023103391751646996, 0.010439729318022728, -0.028439132496714592, -0.02309330366551876, 0.055365584790706635, -0.005183331202715635, -0.06568451970815659, 0.012198503129184246, -0.05734670162200928, -0.023194115608930588, -0.0008987407200038433, -0.0031262063421308994, 0.03338862955570221, 0.05268847197294235, -0.044956184923648834, -0.0033440650440752506, 0.04321173205971718, -0.025682033970952034, 0.007223724387586117, -0.03020915389060974, 0.0343838669359684, -0.01660623401403427, 0.009010503068566322, -0.008984710089862347, -0.05332166701555252, 0.018193703144788742, 0.041964612901210785, 0.02266082912683487, 0.02123905159533024, -0.01174635998904705, 0.03852337598800659, 0.015698030591011047, 0.016459200531244278, 0.004735870752483606, -0.0511818565428257, 0.0051874867640435696, -0.021946782246232033, -0.08861758559942245, 0.07246077805757523, -0.011099637486040592, -0.06741710752248764, 0.011571384035050869, 0.05133644491434097, -0.0013672885252162814, 0.002403499325737357, 0.0304263848811388, 0.024912463501095772, -0.010149630717933178, -0.0364639088511467, -0.028684983029961586, -0.02507990039885044, 0.008822697214782238, 0.008010162971913815, -0.08912262320518494, -0.004044473171234131, -0.007342556957155466, -0.010714628733694553, -0.014021570794284344, 0.009632588364183903, -0.024721063673496246, 0.01799510046839714, -0.024433119222521782, 0.017665281891822815, -0.07069486379623413, 0.06210887432098389, 0.014002037234604359, -0.03168945014476776, -0.0100973816588521, 0.007386505138128996, 0.035392068326473236, 0.010396646335721016, -0.011713476851582527, 0.07232041656970978, -0.0035625880118459463, -0.0008927470189519227, -0.049777720123529434, 0.06797555834054947, -0.023823117837309837, -0.06336907297372818, -0.011049057357013226, 0.04179611802101135, -0.03236153721809387, -0.011263390071690083, -0.01548406295478344, -0.012690266594290733, 0.014797360636293888, 0.014698075130581856, 0.017681943252682686, 0.0813215970993042, 0.003821931779384613, -0.03461110219359398, 0.020652512088418007, 0.008327917195856571, 0.02316187135875225, -0.00992785207927227, -0.0030327732674777508, -0.0027825392317026854, -0.04606417939066887, -0.02625936269760132, 0.009905167855322361, 0.014486622996628284, 0.011057574301958084, -0.02571372501552105, 0.03958112373948097, 0.09631598740816116, 0.04247389733791351, 0.003744975198060274, -0.007570398971438408, 0.011868868954479694, 0.03744983300566673, 0.03073626570403576, 0.01076502911746502, 0.042331892997026443, 0.018564289435744286, -0.022919505834579468, -0.0067187026143074036, 0.031861886382102966, -0.017186997458338737, -0.009863649494946003, -0.06673350185155869, -0.04495096951723099, 0.04643651843070984, -0.049801118671894073, -0.03353874757885933, 0.03312158212065697, 0.0671815425157547, 0.02901420183479786, 0.018575314432382584, 0.005765687674283981, -0.08401895314455032, 0.03518139570951462, 0.010740003548562527, 0.014959009364247322, 0.038975462317466736, -0.025830313563346863, 0.06751170754432678, 0.043904732912778854, 0.01338483951985836, 0.0473993644118309, -0.0671992301940918, -0.09617961198091507, -0.03540654852986336, -0.014618746004998684, 0.055765289813280106, -0.04381820186972618, 0.023298777639865875, 0.0686609074473381, 0.0061249397695064545, 0.054210301488637924, 0.028103604912757874, 0.002170913852751255, 0.008639447391033173, -0.023315638303756714, -0.026378143578767776, 0.0702606812119484, 0.039060078561306, -0.012812127359211445, -0.04494643211364746, 0.008225166238844395, -0.012251589447259903, -0.013932257890701294, 0.0336373969912529, 0.0018248267006129026, 0.03570122271776199, 0.029285987839102745, 0.049612436443567276, -0.0105863893404603, 0.03355882316827774, -0.04364893585443497, -0.005744588561356068, -0.00882504228502512, -0.03399684280157089, 0.01675582490861416, 0.00639358488842845, 0.10428280383348465, 0.060613032430410385, -0.05210195854306221, -0.05767511576414108, 0.031069377437233925, 0.026359103620052338, -0.0522727370262146, -0.0065359813161194324, -0.0019077941542491317, 0.005625602323561907, 0.006388948764652014, -0.052734438329935074, -0.026570921763777733, 0.026650361716747284, -0.052488233894109726, 0.0050841146148741245, 0.051989562809467316, -0.03674205020070076, 0.08747866749763489, 0.005491867195814848, -0.02080129273235798, -0.004466051701456308, 0.0216323621571064, -0.06333039700984955, -0.0016046811360865831, 0.004271653946489096, -0.01507946290075779, 0.0346161313354969, -0.0364537239074707, -0.03584236651659012, -0.04639279097318649, -0.02855990082025528, -0.009438113309442997, 0.0587313175201416, 0.053142428398132324, -0.027901334688067436, 0.06820228695869446, 0.003677984932437539, 0.025170478969812393, 0.013259089551866055, -0.03707149252295494, -0.0440804623067379, -0.036107536405324936, 0.017060916870832443, 0.0050094942562282085, 0.012707637622952461, 0.01922781579196453, 0.021484874188899994, 0.008110049180686474, -0.017958655953407288, -0.008377454243600368, 0.02923133783042431, 0.01891528069972992, -0.031325507909059525, -0.03666110709309578, -0.017252830788493156, 0.05321190878748894, -0.02534731850028038, -0.014888875186443329, 0.0050965407863259315, -0.08334112912416458, 0.034924861043691635, -0.06540563702583313, -0.05976343899965286, -0.006178047973662615, 0.01607866957783699, 0.06253990530967712, 0.0207104180008173, -0.005629261489957571, 0.041923996061086655, 0.034396663308143616, 0.01672363094985485, 0.011428989470005035, 0.0005121400463394821, 0.035969436168670654, 0.0010723723098635674, -0.025179559364914894, 0.04740836098790169, 0.0023398185148835182, 0.01389359962195158, -0.049449920654296875, 0.0643189549446106, -0.04093434661626816, -0.2727293372154236, 0.015032690949738026, 0.007821151986718178, -0.032657355070114136, 0.016102664172649384, -0.03451772779226303, -0.000486856879433617, -0.05441076308488846, -0.02328638732433319, 0.007552926894277334, -0.04204685986042023, -0.032432425767183304, -0.018442118540406227, 0.05608257278800011, -0.0006293109036050737, 0.039055150002241135, 0.025349529460072517, -0.0256191473454237, 0.004850241355597973, 0.07095504552125931, 0.0013834151905030012, -0.07295030355453491, -0.03403067961335182, 0.08286535739898682, 0.028188485652208328, 0.05803040787577629, -0.10047082602977753, 0.02501843497157097, -0.06351141631603241, 0.0034216628409922123, 0.008902301080524921, 0.003678632900118828, -0.009460008703172207, -0.0152242761105299, 0.0007436914020217955, -0.006417149677872658, 0.04135333374142647, -0.004285265691578388, -0.0011236147256568074, 0.021083248779177666, -0.0313236303627491, -0.056255679577589035, 0.022014902904629707, 0.03581821545958519, 0.061043303459882736, 0.016830401495099068, -0.06847123056650162, -0.017756134271621704, -0.038182131946086884, 0.07201369106769562, -0.05049435421824455, -0.013209803029894829, 0.006099864840507507, 0.017049066722393036, -0.01488233357667923, -0.024429263547062874, -0.012208162806928158, -0.01854965277016163, -0.031135184690356255, -0.022119682282209396, -0.019317902624607086, -0.03210052102804184, -0.030846362933516502, -0.07105746865272522, -0.0005839837831445038, -0.07233584672212601, -0.07279384136199951, 0.0039466554298996925, 0.061439692974090576, 0.018776629120111465, -0.033885933458805084, 0.021279679611325264, -0.031220730394124985, -0.1003764197230339, -0.010548271238803864, -0.004452768247574568, -0.013856450095772743, -0.005402351729571819, 0.04409249499440193, 0.06606829166412354, -0.0378718264400959, -0.06561194360256195, 0.027428090572357178, 0.020057030022144318, 0.04266762360930443, -0.008547571487724781, 0.051756225526332855, 0.014067110605537891, -0.022413820028305054, 0.0227273590862751, 0.06279803067445755, 0.03091372922062874, -0.0338534377515316, -0.018172014504671097, 0.02158917859196663, 0.007327246945351362, 0.011455479077994823, -0.015738511458039284, 0.01764700375497341, 0.025664430111646652, -0.019942596554756165, -0.043953098356723785, 0.012974819168448448, -0.021983178332448006, -0.0319581963121891, -0.01987561024725437, -0.049008697271347046, 0.02161485143005848, 0.05188259854912758, 0.01605856977403164, 0.006032581441104412, -0.00739843025803566, 0.01842357963323593, -0.020679596811532974, -0.03340410441160202, -0.03002459928393364, -0.004152023699134588, 0.03865726292133331, -0.008077128790318966, -0.008002601563930511, -0.04844237118959427, 0.008957156911492348, -0.01906524784862995, 0.001584356650710106, -0.0657261312007904, -0.029811672866344452, -0.007629716768860817, -0.03109690546989441, -0.0039168959483504295, 0.014679504558444023, -0.010593309998512268, 0.025441503152251244, 0.031097788363695145, -0.0322120226919651, 0.016798323020339012, -0.031665921211242676, -0.06774488091468811, -0.029421603307127953, -0.012100274674594402, 0.009983417578041553, -0.013765254057943821, 0.03855384513735771, 0.02213943935930729, 0.01442747376859188, 0.025204192847013474, 0.02898055501282215, 0.009569205343723297, -0.016604017466306686, 0.019192487001419067, 0.010360009968280792, 0.03320543095469475, -0.04727479815483093, 0.0020496100187301636, -0.036142498254776, 0.005126541014760733, -0.01139643881469965, 0.019133012741804123, -0.02255610190331936, -0.01654457300901413, -0.01610354520380497, 0.013752982020378113, -0.046328525990247726, -0.029932506382465363, -0.016373902559280396, 0.017102746292948723, 0.06529748439788818, -0.010379783809185028, 0.00685292249545455, -0.012258179485797882, -0.02042022906243801, 0.030787579715251923, -0.02142312005162239, -0.029172923415899277, -0.0012214945163577795, -0.00602605240419507, -0.0026173654478043318, 0.021351203322410583, -0.009602384641766548, 0.03727301210165024, -0.004807839635759592, 0.007882269099354744, -0.02272886037826538, 0.006235925946384668, -0.0028236915823072195, 0.03160370513796806, 0.02586885169148445, -0.02021891437470913, -0.0017432661261409521, -0.03018181212246418, -0.015503027476370335, -0.03359895944595337, -0.01117676217108965, -0.0030656412709504366, 0.02088013105094433, -0.051488328725099564, -0.06538043171167374, 0.037470556795597076, 0.012014605104923248, 0.018284741789102554, 0.025988435372710228, -0.021914392709732056, 0.01239684596657753, -0.0014008779544383287, 0.02663593180477619, 0.062230709940195084, -0.06489730626344681, -0.01101351622492075, -0.015196084976196289, 0.002363436156883836, 0.007295797113329172, -0.021910307928919792, -0.03982614725828171, 0.0045448304153978825, -0.02951865643262863, 0.013504824601113796, -0.06326434761285782, -0.01188634242862463, -0.0407538004219532, 0.010892248712480068, 0.005968265235424042, 0.009209915064275265, -0.02288862317800522, -0.023936282843351364, -0.028473258018493652, -0.03423915058374405, 0.005819244775921106, -0.053274042904376984, -0.005203138571232557, 0.027059661224484444, -0.02243327721953392, -0.021158970892429352, -0.023175256326794624, 0.016698477789759636, 0.031189244240522385, -0.03373601287603378, -0.0006707481225021183, -0.028898030519485474, 0.03803759068250656, -0.004371673800051212, 0.02310406230390072, -0.013942073099315166, -0.016186850145459175, -0.029664576053619385, -0.000040410021028947085, -0.032842203974723816, 0.012805908918380737, -0.008145187050104141, -0.01598561368882656, 0.036976270377635956, 0.07644804567098618, 0.01988484524190426, 0.02883518859744072, 0.0036949969362467527, -0.014262720942497253, 0.05644713714718819, -0.05348050221800804, -0.02943463809788227, -0.043751977384090424, -0.05493319779634476, 0.005465119611471891, 0.008821235969662666, 0.030399655923247337, -0.0575961172580719, 0.03928804770112038, 0.009574485011398792, 0.044086262583732605, 0.03524269163608551, 0.010218126699328423, 0.03774312511086464, -0.05787620693445206, 0.004088562913239002, -0.0722878947854042, -0.02255159243941307, 0.024034561589360237, 0.014039861969649792, -0.005314464680850506, -0.012011120095849037, -0.0342792384326458, 0.03790924698114395, -0.08739323168992996, -0.010960139334201813, 0.047967907041311264, -0.00215313327498734, -0.006409977562725544, 0.015993675217032433, -0.06685323268175125, 0.024430206045508385, 0.02147202007472515, -0.04417681694030762, -0.0172169990837574, -0.03213716298341751, 0.0393984280526638, 0.0067425076849758625, 0.0035502153914421797, -0.02811480313539505, 0.007397852372378111, 0.07844492793083191, 0.018451595678925514, -0.009568053297698498, 0.04781632870435715, -0.002452888060361147, 0.042126696556806564, 0.01765742152929306, 0.019977089017629623, -0.02143051289021969, 0.002570074051618576, -0.006059334613382816, -0.05078906565904617, 0.04305501654744148, -0.004046028945595026, -0.0244012251496315, -0.03442087769508362, 0.05722511187195778, 0.019083157181739807, -0.02304864674806595, -0.05084332078695297, -0.003381528193131089, -0.04303257167339325, -0.0073267812840640545, 0.011177766136825085, -0.008292877115309238, -0.05588791146874428, 0.05227693170309067, -0.02184298448264599, 0.022873759269714355, 0.05108315497636795, -0.0056096031330525875, -0.031425803899765015, -0.016449742019176483, 0.10133980959653854, 0.05575431510806084, 0.06364560127258301, 0.009014813229441643, 0.09462422877550125, -0.017848843708634377, -0.0637282282114029, 0.02021871507167816, -0.019605722278356552, -0.01500418595969677, -0.03937464952468872, 0.040376342833042145, 0.04283266142010689, 0.002622804371640086, 0.0548999197781086, -0.03102838806807995, -0.03143488988280296, 0.014714128337800503, 0.04535950720310211, 0.010374734178185463, 0.0567687563598156, 0.01832755096256733, 0.01868501864373684, -0.02236739546060562, -0.06617583334445953, 0.04228593409061432, -0.03072669543325901, -0.00015401089331135154, 0.04649445787072182, -0.00027297547785565257, 0.024640440940856934, 0.029842106625437737, 0.029604583978652954, 0.08824985474348068, -0.052104782313108444, 0.021364262327551842, -0.007255278527736664, 0.02328546904027462, -0.007961365394294262, -0.0038711049128323793, -0.003617009846493602, -0.018610315397381783, 0.017451804131269455, -0.029208550229668617, -0.020366741344332695, -0.0032180259004235268, -0.0031874962151050568, 0.04643843322992325, -0.028181690722703934, 0.026556346565485, 0.030710825696587563, 0.008143957704305649, -0.02460591495037079, -0.05556189641356468, -0.036602530628442764, -0.03228924423456192, -0.04399463161826134, 0.0032862755469977856, 0.04372527450323105, -0.013879531063139439, -0.0406244732439518, -0.010477273724973202, -0.007596918847411871, -0.03200262039899826, 0.034430745989084244, -0.03538226708769798, -0.0366007499396801, -0.014905909076333046, 0.037343088537454605, 0.05537676438689232, 0.006945687811821699, 0.04984312504529953, -0.009290664456784725, -0.004396458622068167, -0.023580210283398628, 0.003584966529160738, 0.028433196246623993, -0.0020291751716285944, -0.002462621545419097, -0.0832187756896019, 0.008382958360016346, 0.03052087500691414, -0.03635196015238762, -0.06833091378211975, 0.026103900745511055, 0.009781643748283386, -0.004816887900233269, 0.03584540635347366, -0.017911724746227264, -0.011815561912953854, -0.06336919963359833, -0.032241903245449066, -0.0018806741572916508, 0.0012063070898875594, 0.04125135764479637, -0.04508380591869354, 0.06796613335609436, 0.01744428277015686, 0.014897092245519161, -0.05902155861258507, -0.013801256194710732, 0.007687866687774658, -0.0053655290976166725, -0.016448264941573143, -0.038159698247909546, -0.021855702623724937, -0.09811893105506897, -0.04022325947880745, 0.030247842893004417, -0.007387664169073105, -0.03074089251458645, 0.018215252086520195, 0.031114771962165833, -0.011268911883234978, 0.01760088838636875, -0.029476726427674294, 0.02594957873225212, -0.0267025176435709, -0.003251909278333187, 0.021654319018125534, 0.01917954720556736, -0.02003426104784012, 0.03785748779773712, 0.01698467507958412, -0.02475285716354847, 0.012482313439249992, -0.009445905685424805, 0.04706472530961037, 0.04883575439453125, -0.006396327167749405, -0.0028681247495114803 ]
[ -0.08120846748352051, -0.00038350679096765816, -0.02143283188343048, -0.027763651683926582, 0.044803597033023834, -0.01809733547270298, -0.0058797793462872505, 0.005738972220569849, -0.007550339214503765, -0.024199919775128365, 0.006505165249109268, -0.017706066370010376, -0.002500814152881503, -0.01328257005661726, 0.08656643331050873, 0.005145409610122442, -0.010202388279139996, -0.07285698503255844, 0.03668144717812538, 0.016717340797185898, 0.003011372871696949, -0.04077717289328575, -0.039593786001205444, -0.00037008378421887755, 0.015159018337726593, 0.016771391034126282, 0.02484268881380558, -0.047524407505989075, 0.01824895292520523, -0.17467381060123444, 0.011563822627067566, 0.03624805808067322, 0.045864298939704895, -0.016094043850898743, -0.017959218472242355, 0.07709471881389618, 0.008026967756450176, 0.03754827380180359, -0.014185680076479912, 0.04456852748990059, 0.015709396451711655, 0.008371658623218536, -0.04640163108706474, -0.02882355824112892, 0.0023038832005113363, 0.02367422543466091, -0.0034937409218400717, -0.06119809299707413, -0.03025125153362751, -0.00319364620372653, -0.0426969937980175, -0.046879157423973083, -0.015609519556164742, -0.014375128783285618, -0.011043619364500046, 0.03825004771351814, 0.022548910230398178, 0.06680195778608322, -0.0271210465580225, 0.039608217775821686, 0.00904615968465805, -0.019504012539982796, -0.15647289156913757, 0.06139034032821655, 0.028278643265366554, 0.06127370893955231, -0.053119856864213943, 0.019874168559908867, -0.013378793373703957, 0.09057236462831497, 0.02552803047001362, -0.036000654101371765, 0.0041730511002242565, 0.022060280665755272, 0.047543104737997055, 0.037578169256448746, -0.004719968885183334, 0.010751324705779552, 0.021637363359332085, -0.044714510440826416, -0.008579328656196594, -0.004796109162271023, -0.020532816648483276, -0.028231453150510788, -0.0247079748660326, 0.02441980503499508, -0.025003844872117043, 0.01677650585770607, 0.046305879950523376, 0.021405618637800217, 0.03907959908246994, 0.02307126298546791, 0.0131434490904212, -0.017953498288989067, -0.06228230521082878, -0.02229905314743519, -0.0018583830678835511, 0.021513082087039948, -0.06132558360695839, 0.4370846450328827, -0.013746211305260658, 0.010805928148329258, 0.10257931798696518, 0.027871200814843178, -0.014225417748093605, -0.011165312491357327, 0.00972161814570427, -0.053187448531389236, 0.047068264335393906, -0.027447020635008812, 0.0395297110080719, 0.032493412494659424, 0.05044667795300484, -0.042819567024707794, -0.007914651185274124, 0.04215047508478165, 0.013638936914503574, 0.015908747911453247, 0.0041712988168001175, 0.00019080917991232127, -0.02036733366549015, 0.0032217041589319706, 0.04567713662981987, 0.006537212524563074, -0.0456705316901207, -0.05142229050397873, 0.01667158491909504, 0.06707070022821426, 0.03658181428909302, -0.01866348646581173, 0.07062344253063202, -0.054365064948797226, -0.05972615256905556, -0.0027196919545531273, -0.010502978228032589, 0.0015407215105369687, 0.045931439846754074, -0.028529195114970207, 0.0005664663040079176, 0.06250641494989395, 0.013947095721960068, 0.018801899626851082, 0.038601912558078766, -0.05036202445626259, -0.06536897271871567, 0.15395742654800415, 0.04102615267038345, -0.02773088961839676, -0.011039618402719498, -0.02667536959052086, -0.001834730850532651, 0.00854492373764515, 0.018065299838781357, -0.04247024282813072, 0.030920686200261116, 0.005659469868987799, 0.09645053744316101, -0.002472155960276723, -0.055353157222270966, -0.0200931578874588, -0.04642494395375252, -0.02796962298452854, -0.06691207736730576, 0.04185006767511368, 0.09911909699440002, -0.09609681367874146, -0.011335388757288456, -0.012287519872188568, 0.01396692730486393, -0.08227073401212692, -0.0004882460052613169, 0.012127924710512161, -0.009425591677427292, 0.006872586905956268, 0.07134545594453812, -0.02154572680592537, -0.05682554841041565, -0.000012707550013146829, 0.049060624092817307, 0.006435810122638941, 0.05294983834028244, -0.000862414890434593, -0.022248022258281708, -0.0036497116088867188, -0.01982748508453369, -0.03479674831032753, -0.037382178008556366, -0.034830134361982346, -0.026463856920599937, 0.006603695917874575, -0.01352902315557003, -0.0003649003629107028, -0.07530932128429413, 0.09079907089471817, -0.04262197017669678, -0.03383724018931389, 0.02808494120836258, -0.019954532384872437, -0.05351695418357849, -0.0021405606530606747, -0.09205518662929535, 0.03188619390130043, -0.03955540060997009, 0.023939508944749832, -0.04792674258351326, 0.03514257073402405, 0.04440804198384285, -0.03176027908921242, 0.0912475511431694, 0.051068730652332306, -0.014096175320446491, -0.044304292649030685, 0.015484411269426346, 0.02686852216720581, 0.017237860709428787, -0.020341968163847923, -0.0016354931285604835, 0.03157225251197815, -0.023485062643885612, 0.01069428026676178, -0.006432865746319294, 0.023719238117337227, -0.030764132738113403, -0.3433355689048767, -0.037915609776973724, -0.020425334572792053, 0.007087337784469128, 0.013074556365609169, -0.019064385443925858, 0.027816668152809143, -0.012675536796450615, -0.02370385453104973, -0.010002830065786839, 0.06131824851036072, -0.005710471887141466, -0.007838811725378036, -0.09301798045635223, 0.00053107098210603, 0.011886837892234325, -0.03657682240009308, -0.01947423443198204, -0.04230136424303055, -0.002496774075552821, 0.03240036219358444, 0.01898978278040886, -0.006631518714129925, -0.05569213628768921, -0.004436332732439041, -0.05027799680829048, 0.09089396893978119, -0.008201858960092068, 0.07887177914381027, -0.016364481300115585, 0.0303986594080925, 0.009953276254236698, 0.0219697505235672, -0.09784655272960663, 0.018443111330270767, -0.02567978762090206, 0.027505699545145035, -0.04436245560646057, 0.025095615535974503, -0.040475066751241684, -0.053459785878658295, 0.0172800961881876, -0.07588522136211395, -0.03107188642024994, -0.08059407770633698, 0.01125580258667469, -0.03488099202513695, -0.024300266057252884, -0.018891524523496628, 0.07050918787717819, 0.008528300561010838, -0.00224866671487689, 0.025063708424568176, -0.007244123611599207, -0.027639707550406456, -0.01574612967669964, -0.10176363587379456, 0.04654102399945259, -0.020686950534582138, -0.017853708937764168, 0.010079113766551018, 0.04324137046933174, 0.028434723615646362, -0.041738361120224, 0.022386835888028145, 0.000435644353274256, 0.010780252516269684, 0.016619618982076645, 0.03983825072646141, -0.02676980011165142, -0.007654320448637009, 0.08149302750825882, 0.02275221236050129, -0.032802704721689224, 0.023601844906806946, 0.01435945276170969, -0.025123100727796555, -0.003966757096350193, -0.000279593892628327, -0.009568559937179089, 0.031353648751974106, -0.02561682090163231, 0.00764784449711442, -0.004511631093919277, -0.008839967660605907, -0.002106220694258809, -0.0023264780174940825, -0.0654158964753151, 0.04919685795903206, 0.019187310710549355, 0.0006253268802538514, -0.0008819011854939163, -0.02423490397632122, -0.04166596382856369, 0.0935111939907074, 0.0008566905744373798, -0.24831409752368927, 0.022800639271736145, 0.06301020085811615, 0.023564588278532028, -0.003679754212498665, 0.06739097088575363, 0.012654932215809822, -0.06327801942825317, 0.025110797956585884, 0.01690004952251911, 0.028410654515028, 0.004145495593547821, 0.022622596472501755, 0.006811054423451424, 0.01642502285540104, -0.000363485305570066, 0.06650502979755402, -0.017342230305075645, 0.05679429695010185, -0.012171221897006035, 0.01725185103714466, 0.026446770876646042, 0.13283254206180573, -0.0009554799180477858, 0.030587434768676758, 0.008024151436984539, -0.028533387929201126, 0.0068186125718057156, 0.0657169297337532, -0.007071733009070158, 0.01937183178961277, -0.0033505356404930353, 0.0317283496260643, -0.000681526493281126, 0.012180091813206673, -0.05413642153143883, -0.02915164828300476, 0.02138080820441246, 0.007658044807612896, 0.02515922486782074, 0.030923662707209587, -0.014858685433864594, -0.025635698810219765, 0.02221180871129036, 0.07323382049798965, 0.004172413609921932, 0.013580739498138428, -0.07539048790931702, -0.07028577476739883, -0.018815699964761734, -0.035838935524225235, -0.03315485641360283, 0.019353747367858887, -0.010857012122869492, 0.011020268313586712, 0.07367650419473648, 0.05024687573313713, -0.034974027425050735, -0.019832052290439606, -0.027319710701704025, -0.014234413392841816, -0.019003095105290413, 0.08604036271572113, 0.04801199212670326, 0.04890166223049164 ]
[ -0.020299358293414116, -0.0018137547885999084, 0.007167700212448835, -0.004899040330201387, -0.03326618671417236, -0.012691187672317028, 0.009229394607245922, 0.004390231333673, -0.0072299581952393055, 0.014879168942570686, 0.041304126381874084, 0.0544264018535614, -0.001625686651095748, -0.02059011161327362, 0.03655548393726349, 0.011017678305506706, -0.04713577404618263, 0.006076564081013203, 0.049381744116544724, -0.023421231657266617, -0.004360031336545944, -0.04547056555747986, 0.031838033348321915, 0.005197802092880011, -0.021934738382697105, 0.015477857552468777, -0.03237124904990196, 0.0003990341501776129, 0.011849649250507355, -0.13363906741142273, 0.009353096596896648, -0.027541369199752808, -0.002177663380280137, -0.0017189171630889177, 0.003532476956024766, 0.000042704148654593155, 0.02763301320374012, 0.0328214056789875, -0.00428337138146162, 0.005933301988989115, -0.00860435888171196, -0.0025895193684846163, 0.007995987311005592, -0.0323486402630806, -0.0012088866205886006, -0.006577968597412109, -0.013445373624563217, -0.013442198745906353, -0.006439294200390577, -0.003872163128107786, -0.01768481358885765, -0.009691855870187283, -0.010469266213476658, -0.0037150487769395113, 0.06155921891331673, 0.008777818642556667, -0.02640102617442608, 0.03176625818014145, 0.005009448621422052, -0.02392391860485077, 0.01884688064455986, -0.005875836126506329, -0.07809363305568695, 0.00774226663634181, 0.007689116057008505, -0.008496727794408798, -0.04349735379219055, 0.01596684567630291, -0.02474883571267128, 0.00854119099676609, 0.006223892793059349, -0.008560817688703537, -0.004276053514331579, -0.07595016807317734, 0.03228982537984848, -0.017123598605394363, -0.013304500840604305, -0.0059088608250021935, 0.026966754347085953, -0.006013512145727873, -0.025851987302303314, 0.016155250370502472, 0.012046280317008495, -0.056732989847660065, 0.02310805954039097, -0.01400250755250454, 0.012228180654346943, -0.017741667106747627, 0.029367564246058464, 0.000008308100404974539, 0.001660808571614325, 0.01192199531942606, -0.012482904829084873, 0.026973068714141846, -0.10456185042858124, 0.019376356154680252, -0.023862523958086967, 0.01968575455248356, -0.029207177460193634, 0.8079867362976074, 0.020485207438468933, 0.004754491616040468, 0.06629923731088638, 0.004626383539289236, 0.00043026244384236634, -0.024204300716519356, 0.011344516649842262, -0.028000881895422935, 0.04166572913527489, -0.06589243561029434, 0.03569775074720383, 0.048277903348207474, 0.02807007171213627, 0.03599270060658455, 0.03258326277136803, 0.017597611993551254, 0.017242800444364548, 0.031403057277202606, -0.008287077769637108, 0.0032681641168892384, -0.04118820279836655, 0.01516394317150116, 0.0533786304295063, 0.008286213502287865, -0.007966957055032253, -0.21154558658599854, -0.04997265338897705, -7.863325461767717e-33, 0.01505912933498621, 0.046604324132204056, 0.031134309247136116, -0.024840792641043663, -0.013049767352640629, -0.029232345521450043, 0.013226100243628025, 0.005221822299063206, -0.021092845126986504, -0.001969739096239209, 0.019716469570994377, -0.014496777206659317, 0.011039196513593197, 0.028428271412849426, 0.003268058178946376, -0.04885215684771538, 0.011495262384414673, 0.030971208587288857, 0.04811251908540726, 0.0256084892898798, 0.002338432939723134, 0.017865687608718872, 0.011351186782121658, 0.003312060609459877, 0.01930033043026924, -0.025847826153039932, 0.020930442959070206, 0.013779169879853725, 0.014811442233622074, -0.013866687193512917, -0.034594643861055374, 0.039668310433626175, -0.016446184366941452, -0.00741252675652504, 0.007421424146741629, -0.03562043234705925, -0.01088273897767067, 0.02344389259815216, 0.008699140511453152, 0.005940903443843126, -0.053070347756147385, -0.015048788860440254, 0.021599696949124336, -0.04796367138624191, -0.009193048812448978, -0.012302239425480366, -0.003949407022446394, 0.009909134358167648, 0.017714977264404297, -0.019575737416744232, -0.018688226118683815, -0.015855854377150536, 0.0015828631585463881, -0.008963829837739468, -0.017373409122228622, 0.027147065848112106, -0.005173419136554003, 0.012822223827242851, -0.00870842020958662, 0.06860781461000443, 0.0368395559489727, 0.008758924901485443, -0.035488374531269073, 0.0039041016716510057, -0.027307773008942604, -0.014237790368497372, 0.043700914829969406, -0.008228243328630924, 0.049994077533483505, -0.01572905294597149, -0.05734490975737572, 0.021793300285935402, 0.0033083914313465357, -0.036841899156570435, 0.025307996198534966, -0.04378987103700638, 0.024135570973157883, 0.019510675221681595, 0.01114160381257534, 0.05232162028551102, -0.01089501939713955, -0.041315268725156784, 0.002574819140136242, -0.06684567034244537, -0.024202313274145126, 0.006254261825233698, 0.012478132732212543, -0.02704581618309021, -0.013475467450916767, 0.0546298623085022, 0.018733356148004532, 0.03292839601635933, -0.008749215863645077, -0.005912936292588711, 0.0008830410079099238, 7.18777620518984e-33, 0.03518981486558914, -0.023529203608632088, -0.023866616189479828, -0.004192262887954712, 0.05806279182434082, 0.0074922931380569935, 0.008580389432609081, -0.03553333505988121, -0.08878356218338013, -0.028403861448168755, 0.013583606109023094, -0.008380993269383907, -0.02685057558119297, 0.06743984669446945, 0.06888850033283234, -0.031213752925395966, 0.03513844683766365, 0.031790610402822495, 0.022879399359226227, 0.014404742047190666, -0.0015704826219007373, -0.020352331921458244, 0.0010825474746525288, 0.013772974722087383, 0.03929358348250389, 0.04248197004199028, -0.004197849426418543, -0.0031815606635063887, 0.013944951817393303, 0.05815427750349045, -0.021228237077593803, -0.026592763140797615, 0.007229892536997795, 0.008861066773533821, -0.008979623205959797, 0.012608475051820278, -0.021738052368164062, -0.026919201016426086, 0.003710830816999078, 0.003285712096840143, 0.016572369262576103, 0.02283468097448349, -0.052913177758455276, 0.03085598722100258, 0.02568132057785988, 0.0029217489063739777, 0.028596043586730957, 0.013167900033295155, -0.04671088233590126, -0.02668411284685135, -0.026837538927793503, 0.001981983659788966, -0.026722552254796028, -0.004916014149785042, -0.01691408082842827, -0.03942914307117462, -0.009846167638897896, -0.020276989787817, -0.009730205871164799, -0.02143198437988758, 0.0015336275100708008, 0.002679716795682907, -0.06530158966779709, -0.009060580283403397, 0.0019185271812602878, -0.007107945159077644, -0.01410257164388895, -0.0280610304325819, -0.04905955120921135, 0.007925519719719887, -0.0073438589461147785, 0.004972623195499182, 0.00800304114818573, 0.006778253708034754, 0.014517596922814846, 0.02667231671512127, -0.034459538757801056, -0.01316513866186142, -0.019259585067629814, 0.012055892497301102, -0.014826266095042229, -0.007546323351562023, 0.0019035178702324629, 0.012097630649805069, -0.020960187539458275, 0.02333563007414341, 0.002539561130106449, 0.030895305797457695, -0.01725855842232704, -0.03840675577521324, 0.011345557868480682, -0.011364304460585117, -0.017322449013590813, 0.041388578712940216, -0.016178371384739876, -1.3290583744662854e-8, -0.041976578533649445, 0.010168205015361309, -0.01268291287124157, 0.02546856366097927, 0.025427386164665222, -0.004929174203425646, -0.02723563276231289, -0.01892768032848835, -0.006445677485316992, 0.00756685808300972, -0.015142284333705902, 0.0025517840404063463, -0.01811627671122551, -0.010081453248858452, 0.022191528230905533, -0.026179717853665352, -0.027259977534413338, 0.03980391472578049, 0.007555101998150349, 0.012641791254281998, 0.0555248036980629, 0.03813175857067108, -0.004622883629053831, 0.009473144076764584, -0.015160297974944115, -0.002597053535282612, -0.032978467643260956, -0.05828460678458214, 0.011909106746315956, -0.0031454931013286114, 0.017231404781341553, -0.05814792960882187, -0.012397409416735172, 0.018500996753573418, -0.0001792617840692401, -0.05335323140025139, 0.010341450572013855, 0.003289182437583804, 0.03471481055021286, 0.007075558882206678, -0.033699192106723785, 0.005236933007836342, 0.03519219532608986, -0.024694398045539856, -0.013221537694334984, 0.024831149727106094, -0.026594923809170723, -0.026387084275484085, -0.007579775992780924, -0.023197393864393234, -0.007858284749090672, 0.014887177385389805, 0.05490290746092796, 0.049656208604574203, 0.029191289097070694, 0.045985203236341476, -0.011074353940784931, -0.008572219870984554, -0.06497108191251755, 0.008973476476967335, 0.0012227438855916262, 0.019398091360926628, -0.05337989330291748, -0.01209808886051178 ]
thoughtworks-university-a-double-loop-learning-example
https://markhneedham.com/blog/2011/03/30/thoughtworks-university-a-double-loop-learning-example
false
2011-03-06 04:19:01
Coding: Reflection vs Action mode
[ "coding" ]
[ "Coding" ]
It recently struck me while preparing some ThoughtWorks University sessions that there appear to be two modes that I spend my time switching between while coding: * *Action mode* - we're focused on getting things done, making things happen * *Reflective mode* - we're a bit more detached and looking at things from a higher level I spent the majority of 2008 and 2009 in reflective mode on the systems I was working on which can be seen by scanning through a lot of the blog posts that I wrote during that time. I'm sure would have been times when I was action mode but I was far more interested in how something was being built and whether that could be done more successfully. In 2010/2011 I became much more interested in building stuff and spent more time thinking about that rather than how to refactor code or design it in a more functional way for example. I'm now coming to the conclusion that both of these mentalities are useful at different times and I need to be more aware of when I've been spending too long in one or the other. == Examples of the two modes When http://www.markhneedham.com/blog/category/pair-programming/[pairing programming] these modes describe the role of the driver/navigator reasonably well. While driving we're head down focusing on building the required functionality whereas the navigator focuses more on quality of what's being written, whether we can do that better, whether we're going to cause ourselves big problems down the line and so on. When we're learning something new we'll mostly be in action mode to start with - we want to see something working so that we get some feedback that we're getting somewhere. After a while when we're a bit more comfortable with the language/tool/technique we'll probably step back and reflect on how it's going. I think you can be in these two mindsets in non coding situations too. For example I've recently become much more vocal in trying to get teams to use approaches that I've seen work before whereas previously I was happier to sit back and watch how things panned out and learn from that. == Are the modes this clear cut? While writing this post I've started to wonder whether the way we use these two modes are actually this clearcut and whether I'm only aware of the 'obvious' switches between the two when in fact there are many more switches. I'll keep observing...
null
null
[ 0.030741533264517784, -0.01273891981691122, -0.0021444002632051706, 0.01676241308450699, 0.07898098230361938, 0.018228985369205475, 0.020376859232783318, 0.035258740186691284, 0.01766597293317318, -0.039076466113328934, -0.024256978183984756, 0.0005180120933800936, -0.043155375868082047, -0.008339967578649521, -0.013325145468115807, 0.07080592960119247, 0.05946161970496178, -0.017097175121307373, 0.03342053294181824, 0.012984718196094036, 0.017923934385180473, 0.0844445526599884, 0.02417706698179245, 0.03276888653635979, 0.048320624977350235, 0.004797592759132385, 0.022739393636584282, -0.016964662820100784, -0.05065956711769104, -0.0036844639107584953, 0.050057586282491684, 0.018141552805900574, 0.01872103102505207, 0.01056565809994936, 0.03167028725147247, -0.02915058471262455, -0.018581297248601913, 0.03639834746718407, 0.016546886414289474, 0.014528474770486355, -0.07364863157272339, 0.035598255693912506, 0.0027542386669665575, -0.0090289656072855, -0.02817867137491703, 0.01543717086315155, -0.04553650692105293, 0.00036839107633568347, -0.0005360714276321232, -0.012300064787268639, -0.05382729321718216, 0.027099771425127983, -0.00636803125962615, 0.004808821249753237, -0.004990982357412577, 0.057939253747463226, 0.046236518770456314, -0.053407493978738785, -0.0022993239108473063, -0.03849046304821968, 0.007582533173263073, -0.01565980538725853, 0.005090143997222185, 0.03516232594847679, 0.020846743136644363, -0.023394117131829262, 0.005284251179546118, 0.03278559073805809, -0.02319112792611122, 0.004119989462196827, -0.00909888930618763, 0.008977326564490795, -0.017585108056664467, -0.02474011480808258, -0.005999232642352581, -0.029554447159171104, 0.02358296886086464, 0.06344636529684067, -0.0004050982533954084, 0.015263792127370834, -0.021313268691301346, 0.023356549441814423, 0.00026798926410265267, 0.033830076456069946, -0.005852182395756245, -0.04798416793346405, 0.01821530982851982, -0.0068115368485450745, -0.04299704357981682, 0.05582311376929283, 0.02254198119044304, -0.05888386443257332, 0.028454860672354698, 0.0439007468521595, 0.007517616264522076, 0.023298997431993484, 0.011842949315905571, 0.012555989436805248, -0.011912447400391102, -0.013704066164791584, -0.006430520210415125, -0.00334791443310678, 0.01578560471534729, -0.0001555408671265468, -0.07572591304779053, -0.0026052906177937984, -0.03014121763408184, -0.014586079865694046, 0.0016626870492473245, 0.028245098888874054, -0.03346274420619011, 0.010132844559848309, -0.021021045744419098, 0.0191599503159523, -0.0723114013671875, 0.06836051493883133, 0.003074583364650607, -0.03436664864420891, -0.014699145220220089, 0.002290812786668539, 0.04451381787657738, 0.0296920333057642, -0.019285714253783226, 0.08168671280145645, 0.008244382217526436, 0.01535921823233366, -0.046178292483091354, 0.05168435722589493, -0.02865898609161377, -0.07345304638147354, -0.011415342800319195, 0.033045444637537, -0.037950653582811356, -0.023411167785525322, -0.003256359836086631, -0.0190952867269516, 0.02107054367661476, 0.01379315834492445, 0.015397952869534492, 0.06057243049144745, -0.007237153593450785, -0.05541668459773064, 0.029994992539286613, -0.00623540161177516, 0.02002001740038395, 0.000675281451549381, -0.006254830397665501, -0.012648981995880604, -0.043738484382629395, -0.012919299304485321, 0.002063154010102153, 0.009061533957719803, 0.013676670379936695, -0.037483979016542435, 0.03468893840909004, 0.09258192032575607, 0.015154605731368065, 0.02750510908663273, -0.0008022740948945284, 0.02154887281358242, 0.043907806277275085, 0.003439192892983556, 0.01108009833842516, 0.025389758870005608, 0.023205770179629326, -0.0015208537224680185, -0.006686001550406218, 0.021798713132739067, 0.005113792140036821, 0.014306915923953056, -0.06735250353813171, -0.048723675310611725, 0.06385520100593567, -0.05669518932700157, -0.018979225307703018, 0.04502847418189049, 0.08964793384075165, 0.025620469823479652, 0.030041204765439034, -0.014157956466078758, -0.07578951865434647, 0.013424581848084927, -0.00391145097091794, 0.006533759646117687, 0.03400688245892525, -0.026159249246120453, 0.04985765367746353, 0.030319448560476303, -0.009636272676289082, 0.03607833757996559, -0.0690111294388771, -0.10050634294748306, -0.016603557392954826, -0.0186732430011034, 0.04902902990579605, -0.026669872924685478, 0.006031101569533348, 0.0828559398651123, -0.0003398197877686471, 0.05236762762069702, 0.022798744961619377, 0.002158996183425188, 0.017633434385061264, -0.020274866372346878, -0.025163589045405388, 0.061289314180612564, 0.05518946424126625, 0.001829204149544239, -0.04372837767004967, 0.019357817247509956, 0.00033359898952767253, -0.026211541146039963, 0.036641620099544525, 0.002700503682717681, 0.051704488694667816, 0.004327633883804083, 0.06703188270330429, -0.030539896339178085, 0.0515858493745327, -0.0511789433658123, -0.00240266602486372, -0.007628162857145071, -0.03135004639625549, 0.009523038752377033, 0.0005911344778724015, 0.10235290974378586, 0.046966347843408585, -0.06857392191886902, -0.04781964048743248, 0.024845346808433533, 0.0141012417152524, -0.049647148698568344, 0.00529950438067317, -0.002204900374636054, 0.02449476532638073, 0.007691896986216307, -0.05709148570895195, -0.03228713199496269, 0.013259811326861382, -0.0589786060154438, 0.011265059933066368, 0.0690392255783081, -0.03125883266329765, 0.05528036877512932, -0.028427980840206146, -0.018075792118906975, 0.005541149061173201, 0.0002851794706657529, -0.03572145849466324, 0.01721842586994171, 0.018173586577177048, -0.015551473014056683, 0.06104341521859169, -0.034468285739421844, -0.03243299946188927, -0.036336749792099, -0.014636131934821606, -0.010963658802211285, 0.04335135966539383, 0.04709920659661293, -0.014198800548911095, 0.07162027806043625, -0.002840249566361308, 0.027579890564084053, -0.010288075543940067, -0.05269541218876839, -0.03898640349507332, -0.03137490153312683, 0.002638536738231778, 0.02976837195456028, -0.0009173124562948942, 0.019690820947289467, 0.03428244590759277, 0.007228619419038296, -0.015079304575920105, -0.014982052147388458, 0.050649769604206085, 0.015252131037414074, -0.013658943586051464, -0.026228243485093117, -0.010504007339477539, 0.04983316361904144, -0.033040933310985565, -0.03580842912197113, 0.00702747842296958, -0.05732903629541397, 0.063089519739151, -0.06594804674386978, -0.05129172280430794, 0.004957498051226139, 0.027918020263314247, 0.04786724969744682, -0.010128360241651535, 0.02252301201224327, 0.08994750678539276, 0.0013787630014121532, 0.021521132439374924, -0.001407756470143795, -0.02088642306625843, 0.038824331015348434, 0.01655534654855728, -0.006443290039896965, 0.04668843001127243, -0.01051476038992405, -0.00593252619728446, -0.044952359050512314, 0.04588207229971886, -0.024749495089054108, -0.2971792221069336, 0.01760544255375862, 0.0059530469588935375, -0.03952735289931297, 0.01905914582312107, -0.025399811565876007, 0.009498386643826962, -0.056272029876708984, -0.016142893582582474, 0.003676500404253602, -0.03878962621092796, -0.047132160514593124, -0.0334530733525753, 0.0712420716881752, -0.008431484922766685, 0.038516223430633545, 0.008143866434693336, -0.04928481951355934, -0.00785707589238882, 0.04932791739702225, -0.010655578225851059, -0.07255172729492188, -0.004645544104278088, 0.031314168125391006, 0.033015117049217224, 0.040669139474630356, -0.10700702667236328, 0.04149867966771126, -0.046379655599594116, -0.002812191378325224, 0.0005709336837753654, 0.0254831425845623, 0.0021392779890447855, -0.010588806122541428, 0.002835865132510662, -0.02003839798271656, 0.058408137410879135, 0.002292228862643242, 0.008705584332346916, 0.019708408042788506, -0.023987721651792526, -0.027010677382349968, -0.00217322981916368, 0.019428586587309837, 0.06859192252159119, 0.012553390115499496, -0.06793246418237686, -0.005074384622275829, -0.032180946320295334, 0.08978559821844101, -0.027128638699650764, -0.03117048740386963, -0.005089537240564823, 0.038295503705739975, -0.0036190329119563103, -0.036742694675922394, 0.01601075753569603, -0.024393640458583832, -0.02090214192867279, -0.04402618110179901, -0.01878022402524948, -0.031727083027362823, -0.0023952878545969725, -0.07434757798910141, 0.025779886171221733, -0.06235387921333313, -0.06987316906452179, -0.002426701597869396, 0.0708576887845993, 0.025465186685323715, -0.050036538392305374, 0.016485732048749924, -0.012759397737681866, -0.11551233381032944, -0.0004032659053336829, -0.0001514342293376103, -0.018451586365699768, -0.02124808542430401, 0.020936980843544006, 0.03279688209295273, -0.034804727882146835, -0.05169730260968208, 0.025549378246068954, 0.01527623925358057, 0.03017585352063179, -0.008191962726414204, 0.05600569024682045, 0.005462875124067068, -0.014714247547090054, 0.01550708431750536, 0.06463780254125595, -0.003880149917677045, -0.03767161816358566, -0.026782488450407982, 0.028068477287888527, 0.0041167293675243855, 0.011467395350337029, -0.028921298682689667, 0.004444554913789034, 0.020973073318600655, -0.004698650445789099, -0.059579379856586456, 0.015248849987983704, 0.003798222169280052, 0.0016888085519894958, -0.003976340405642986, -0.06014081463217735, 0.01920679211616516, 0.06167316436767578, 0.03755887970328331, -0.005910452455282211, -0.02652306854724884, -0.01301313005387783, -0.03193249925971031, -0.02381974831223488, -0.01875501684844494, 0.023325849324464798, 0.03266819193959236, -0.014517941512167454, 0.00337225547991693, -0.0634414404630661, 0.005838325247168541, -0.005703601986169815, 0.018378162756562233, -0.06285160779953003, -0.02537207305431366, -0.032811760902404785, -0.035831209272146225, 0.009172243997454643, 0.03322052210569382, -0.021396363154053688, 0.012464651837944984, 0.0239375252276659, -0.034859657287597656, 0.014625560492277145, -0.028939517214894295, -0.0573803149163723, -0.018142621964216232, -0.01984109729528427, -0.016485927626490593, -0.014197804033756256, 0.021478192880749702, 0.021165071055293083, -0.005005998536944389, 0.041729580610990524, -0.0029112498741596937, 0.016793321818113327, -0.007760870736092329, 0.015462313778698444, 0.017174623906612396, 0.01914021372795105, -0.07287783175706863, -0.003166172420606017, -0.04624250903725624, -0.02505081333220005, -0.02724630944430828, 0.01332173403352499, -0.037694260478019714, -0.03550371155142784, -0.003494143718853593, 0.03577566519379616, -0.0423540435731411, -0.0447550043463707, -0.03712737560272217, 0.039372678846120834, 0.059636615216732025, -0.010735509917140007, 0.020315177738666534, -0.010019282810389996, -0.02152586169540882, 0.0017653412651270628, -0.0024436970707029104, -0.0532718151807785, -0.0049866847693920135, 0.014326169155538082, -0.00709259370341897, -0.009503020904958248, -0.021030938252806664, 0.04623465985059738, 0.00884261541068554, 0.005898098926991224, -0.03435030207037926, -0.00024600382312200963, -0.002219410613179207, 0.059579163789749146, 0.00796445831656456, 0.003987740259617567, -0.000029537757654907182, -0.014116126112639904, -0.02730887569487095, -0.03866388276219368, 0.01732192561030388, -0.0049550640396773815, 0.010529658757150173, -0.04229867458343506, -0.0656045526266098, 0.04626847803592682, 0.0393294058740139, 0.023089691996574402, 0.013094237074255943, 0.0020261856261640787, 0.0023665756452828646, -0.008114920929074287, 0.03369997441768646, 0.06974978744983673, -0.05860569328069687, 0.015154574997723103, -0.010758995078504086, -0.004535730462521315, -0.006377206649631262, -0.012983782216906548, -0.04765200987458229, -0.008160085417330265, -0.03250942751765251, -0.009203528054058552, -0.06225531920790672, -0.039076898247003555, -0.01195645984262228, 0.010272490791976452, -0.00018715180340223014, -0.017206119373440742, -0.014017393812537193, -0.005291251931339502, -0.0179701317101717, -0.032223038375377655, 0.007932646200060844, -0.055700648576021194, 0.024379344657063484, 0.021232040598988533, -0.03796715661883354, 0.007534482516348362, -0.025994306430220604, 0.0339960977435112, 0.020735809579491615, -0.03169260546565056, -0.03401956334710121, -0.03593692556023598, 0.003096840577200055, 0.00826207920908928, 0.038522280752658844, -0.005161786451935768, -0.010178775526583195, -0.049741581082344055, -0.01910977251827717, -0.04018096625804901, 0.02195192128419876, -0.039430368691682816, -0.005634949076920748, 0.020682986825704575, 0.06350544840097427, 0.008794915862381458, 0.042353179305791855, -0.004676243755966425, -0.009981613606214523, 0.04875808209180832, -0.06221083924174309, -0.032835040241479874, -0.03056551329791546, -0.06634248793125153, -0.003159913932904601, 0.01043630950152874, 0.02760124020278454, -0.04780132696032524, 0.03300085291266441, 0.014913848601281643, 0.04159209132194519, 0.03422197699546814, -0.016802819445729256, 0.021470334380865097, -0.05437169969081879, 0.021243561059236526, -0.08197414129972458, 0.007549404166638851, 0.02761039510369301, 0.011460372246801853, -0.022029688581824303, 0.002916172845289111, -0.04528914764523506, 0.06291846930980682, -0.07134617120027542, -0.02172231115400791, 0.03581402078270912, 0.0004779054143000394, -0.0057131825014948845, 0.014027209021151066, -0.06965117156505585, 0.040444839745759964, 0.02195737138390541, -0.03709178417921066, -0.02485186792910099, -0.02693154290318489, 0.05076410621404648, 0.0006409705965779722, 0.041542671620845795, -0.03522982820868492, -0.0017382233636453748, 0.0788317322731018, 0.004585425369441509, -0.005373568739742041, 0.050900254398584366, 0.00005622652679448947, 0.05107074975967407, 0.033804621547460556, 0.0196260754019022, -0.015944501385092735, 0.005342405289411545, -0.00018853627261705697, -0.06106247007846832, 0.03288346529006958, 0.022912710905075073, -0.03536904975771904, -0.03861694782972336, 0.0627705529332161, 0.03541092574596405, -0.02529175765812397, -0.04516890272498131, 0.024897376075387, -0.0745445042848587, -0.010127468034625053, -0.01304990891367197, -0.00254147220402956, -0.036607272922992706, 0.04111270606517792, -0.012937930412590504, 0.003699507564306259, 0.06365576386451721, -0.00939077790826559, -0.028279563412070274, -0.029254630208015442, 0.09708593785762787, 0.06066320091485977, 0.07220302522182465, 0.007380486000329256, 0.06220833957195282, -0.027753548696637154, -0.030467785894870758, 0.03577635437250137, -0.008628005161881447, -0.014500623568892479, -0.020299356430768967, 0.03856528177857399, 0.06066880747675896, 0.011509079486131668, 0.05930348113179207, -0.03037419728934765, -0.015933575108647346, 0.004727937281131744, 0.035532210022211075, 0.006544729694724083, 0.05632944032549858, 0.029886381700634956, 0.008826347067952156, -0.02031959593296051, -0.04102720692753792, 0.018337830901145935, -0.05466219037771225, -0.011655575595796108, 0.031776756048202515, -0.010100079700350761, 0.017534032464027405, 0.008249148726463318, 0.02995283529162407, 0.08624149113893509, -0.035480350255966187, 0.016330750659108162, -0.019030606374144554, 0.049890242516994476, -0.006275839637964964, -0.005087107419967651, -0.025305747985839844, -0.0245517585426569, 0.02828453853726387, -0.025220103561878204, -0.022317104041576385, -0.022401267662644386, -0.017921434715390205, 0.03552429750561714, -0.028133152052760124, 0.002143499441444874, 0.023191189393401146, 0.022902242839336395, -0.03004918061196804, -0.06822939962148666, -0.04578623175621033, -0.03441828489303589, -0.04169774800539017, -0.020657628774642944, 0.027637315914034843, -0.0036859039682894945, -0.031703755259513855, -0.021188659593462944, -0.0210866779088974, -0.023710399866104126, 0.052069585770368576, -0.05395345017313957, -0.021349294111132622, 0.014116219244897366, 0.026787659153342247, 0.041670411825180054, 0.012623433955013752, 0.0544712208211422, -0.005335428286343813, -0.012552165426313877, -0.02624407410621643, -0.008430583402514458, 0.024153687059879303, 0.006111034192144871, 0.00973199587315321, -0.07428522408008575, 0.029970698058605194, 0.02136891521513462, 0.014548618346452713, -0.06803267449140549, 0.027309900149703026, 0.004409530200064182, 0.002635820070281625, 0.06348897516727448, -0.03895270451903343, 0.02270815707743168, -0.021609386429190636, 0.01669161394238472, -0.0006808599573560059, 0.021867861971259117, 0.04196437448263168, -0.028576785698533058, 0.07567233592271805, -0.008970451541244984, -0.0015932387905195355, -0.02634228579699993, -0.012866241857409477, -0.009607640095055103, -0.0068985833786427975, -0.022683441638946533, -0.035408202558755875, -0.03564310446381569, -0.07813785970211029, -0.026649929583072662, 0.02215561829507351, -0.007585511077195406, -0.03174474090337753, 0.019175784662365913, 0.029694538563489914, -0.04186765104532242, 0.018726909533143044, -0.04856370389461517, 0.017698554322123528, -0.015785595402121544, 0.0018510555382817984, 0.02462361566722393, 0.006635667290538549, -0.01271692756563425, -0.0023316817823797464, 0.01787443272769451, -0.025958092883229256, 0.002154985908418894, -0.016089754179120064, 0.0011584131279960275, 0.04173324629664421, 0.004277662839740515, -0.01690676249563694 ]
[ -0.09904509037733078, -0.008955887518823147, -0.010687295347452164, -0.040815580636262894, 0.01160973310470581, 0.0021763804834336042, -0.01288012508302927, 0.016685526818037033, 0.01283834595233202, -0.024387748911976814, -0.020212754607200623, -0.0050529781728982925, -0.024395981803536415, 0.008588048629462719, 0.09807953983545303, 0.016476942226290703, -0.016178054735064507, -0.06785096973180771, 0.028285546228289604, 0.004323732107877731, 0.027519632130861282, -0.03135472163558006, -0.04218196123838425, -0.028652919456362724, 0.0119737908244133, 0.049302056431770325, 0.0193372443318367, -0.0335380844771862, 0.02946692891418934, -0.1868310570716858, -0.003173171542584896, 0.020492499694228172, 0.06541503965854645, -0.03160252794623375, -0.016511118039488792, 0.05308131128549576, 0.0059818546287715435, 0.029796510934829712, -0.01668388769030571, 0.049027640372514725, 0.014102228917181492, 0.010445250198245049, -0.039817679673433304, -0.03186119720339775, 0.013847609981894493, -0.0036699436604976654, 0.0063042291440069675, -0.04222302883863449, -0.015993395820260048, -0.00018903457385022193, -0.06743817031383514, -0.043648477643728256, -0.02734784409403801, -0.020034831017255783, -0.0017707174411043525, 0.030820297077298164, 0.022247307002544403, 0.08848337829113007, -0.014417530968785286, 0.0189752746373415, 0.022454669699072838, -0.02335069514811039, -0.12974664568901062, 0.07519955188035965, 0.06297963857650757, 0.06081720441579819, -0.04753296077251434, -0.02338252402842045, 0.001940663903951645, 0.09266701340675354, -0.010294606909155846, -0.030273310840129852, -0.03587757423520088, 0.040197767317295074, 0.03335224464535713, -0.015486483462154865, -0.011581788770854473, 0.030333813279867172, 0.026244064792990685, -0.06680507212877274, -0.006816623266786337, -0.011747756972908974, -0.006908676121383905, -0.0028309114277362823, -0.02873951382935047, 0.014142291620373726, -0.034679386764764786, 0.033828772604465485, 0.03016706369817257, 0.009789476171135902, 0.02423597313463688, -0.018047383055090904, 0.030802953988313675, 0.0005912722554057837, -0.08669968694448471, -0.0153731070458889, 0.017981691285967827, 0.019739054143428802, -0.03385089710354805, 0.45533761382102966, -0.043950632214546204, -0.048572640866041183, 0.09121254086494446, 0.04349818080663681, -0.009829211048781872, 0.0004941414226777852, 0.008660776540637016, -0.04639574885368347, 0.01699211820960045, -0.03454215079545975, 0.014778031036257744, 0.010544023476541042, 0.07689238339662552, -0.0312529094517231, 0.013459790498018265, 0.03555869311094284, 0.012873038649559021, 0.027596456930041313, 0.038665398955345154, -0.0163317508995533, -0.009814298711717129, 0.011712263338267803, 0.015765244141221046, -0.02025553584098816, -0.031987663358449936, -0.04363691806793213, 0.02453737147152424, 0.06961163133382797, 0.015149194747209549, -0.007943320088088512, 0.06469216197729111, -0.030250879004597664, -0.030151965096592903, 0.0017385829705744982, -0.0026836826000362635, 0.003873246954753995, 0.03333133086562157, -0.024557149037718773, 0.007359662558883429, 0.047448109835386276, 0.00711543345823884, 0.005173861049115658, 0.04159996658563614, -0.03761233761906624, -0.02618875727057457, 0.11659861356019974, 0.004587695933878422, -0.04578559845685959, -0.01046687550842762, -0.02451378107070923, 0.004122106358408928, 0.04423309862613678, 0.0004161799733992666, -0.05523311719298363, 0.020032860338687897, 0.01007611770182848, 0.09259171038866043, -0.015284229069948196, -0.05425725504755974, -0.008414649404585361, -0.028044193983078003, -0.015248875133693218, -0.06875302642583847, 0.026798132807016373, 0.06303083896636963, -0.07576688379049301, -0.0035590108018368483, -0.005543860606849194, 0.030650198459625244, -0.051454853266477585, -0.005324231926351786, 0.011873923242092133, -0.017774546518921852, -0.0027814533095806837, 0.061187613755464554, -0.027844633907079697, -0.06408890336751938, 0.023569617420434952, 0.05136854574084282, 0.017088230699300766, 0.04214641451835632, 0.006079306360334158, -0.03101777657866478, 0.003517525503411889, -0.029656272381544113, -0.07935047894716263, -0.036089371889829636, -0.004470746498554945, -0.033655475825071335, -0.014251843094825745, -0.01362170185893774, -0.029063871130347252, -0.07241325825452805, 0.09115768224000931, -0.04006842151284218, -0.021223340183496475, 0.05201944336295128, -0.015012229792773724, -0.036222197115421295, -0.02251175418496132, -0.031775474548339844, 0.019415244460105896, -0.035293299704790115, 0.025214843451976776, -0.08375273644924164, 0.03127237781882286, 0.03937657177448273, -0.03317452594637871, 0.0912080928683281, 0.05714001879096031, -0.04571319371461868, -0.028339484706521034, 0.035293035209178925, 0.011406771838665009, 0.00285553140565753, -0.0540943369269371, -0.011049113236367702, 0.0285546462982893, -0.023198403418064117, 0.02140560746192932, -0.04292197525501251, 0.009711398743093014, -0.012756011448800564, -0.3234189748764038, -0.03395811468362808, -0.010568540543317795, 0.008521917276084423, 0.012898294255137444, -0.05647549033164978, 0.012415533885359764, -0.012945619411766529, -0.020938241854310036, -0.0026825079694390297, 0.06976023316383362, -0.0013675095979124308, -0.013871192000806332, -0.07973305881023407, -0.0018104322953149676, -0.0007866747910156846, -0.02451246604323387, -0.025985172018408775, -0.05215840041637421, 0.023739172145724297, 0.010161069221794605, -0.0024607309605926275, -0.0159640833735466, -0.07744001597166061, -0.011892515234649181, -0.059244487434625626, 0.09930559992790222, -0.0073193395510315895, 0.10603126138448715, -0.009263163432478905, 0.03181133046746254, 0.0033295932225883007, 0.03411927819252014, -0.12267464399337769, 0.021477676928043365, -0.017745474353432655, 0.020153502002358437, -0.036228157579898834, 0.029501967132091522, -0.03437192738056183, -0.051290642470121384, 0.001632650033570826, -0.06717135012149811, -0.02039697952568531, -0.06586606055498123, -0.00636965362355113, -0.027374770492315292, -0.03437264636158943, -0.03252844512462616, 0.06467965990304947, 0.031310781836509705, -0.023720500990748405, 0.005378077272325754, -0.021846933290362358, -0.026667751371860504, -0.0402163565158844, -0.08510439842939377, 0.017880119383335114, 0.0060614049434661865, -0.0016827863873913884, 0.02668752521276474, 0.07147742807865143, 0.011299596168100834, -0.06379273533821106, 0.005282530095428228, 0.026368511840701103, 0.0056957523338496685, -0.009154453873634338, 0.04250113666057587, -0.009888991713523865, -0.013593488372862339, 0.0931628867983818, 0.015692410990595818, -0.03850134089589119, 0.02948388084769249, 0.027478830888867378, -0.018634160980582237, 0.05301111564040184, 0.01069551520049572, -0.017086558043956757, 0.031167976558208466, -0.01814081147313118, 0.024207239970564842, -0.022928304970264435, -0.0029199491254985332, 0.0050957053899765015, 0.00535205565392971, -0.04845188558101654, 0.06792034208774567, 0.012856769375503063, -0.025526586920022964, 0.003675309009850025, -0.014086100272834301, -0.06859305500984192, 0.09442733973264694, 0.0063029564917087555, -0.23595143854618073, 0.012336833402514458, 0.07890072464942932, 0.051932442933321, -0.02039828523993492, 0.04084721952676773, 0.04008730873465538, -0.06051547825336456, -0.0024329733569175005, -0.005296729039400816, 0.01100223883986473, 0.014062228612601757, 0.01248809415847063, 0.025417596101760864, 0.04956212267279625, 0.00026836968027055264, 0.060104552656412125, -0.01851094700396061, 0.020920677110552788, -0.008670502342283726, 0.01935194805264473, 0.019895397126674652, 0.15269231796264648, -0.01095943059772253, 0.06116154044866562, 0.011631290428340435, -0.0032076744828373194, 0.010092481039464474, 0.08326775580644608, 0.009089578874409199, 0.00024801012477837503, -0.010016628541052341, 0.05368385836482048, -0.008152658119797707, 0.018652670085430145, -0.07363196462392807, -0.016584130004048347, 0.026877865195274353, 0.032995644956827164, 0.02333277091383934, 0.023964926600456238, 0.01850356161594391, -0.02484074980020523, 0.014216862618923187, 0.07110071927309036, 0.022348934784531593, 0.01078998576849699, -0.0393664687871933, -0.054013319313526154, -0.01682794652879238, -0.04058167710900307, -0.024921782314777374, 0.0024114816915243864, 0.0006727861473336816, 0.011361652985215187, 0.06183093786239624, 0.024677149951457977, -0.025346895679831505, -0.024521758779883385, 0.01676667295396328, 0.0026955304201692343, -0.00199615815654397, 0.11077234894037247, 0.017481306567788124, 0.025783494114875793 ]
[ -0.00630289176478982, -0.021957334131002426, 0.03442925214767456, 0.030286680907011032, -0.016777822747826576, -0.007801624946296215, 0.009876632131636143, -0.017386620864272118, -0.005815919488668442, 0.007888616062700748, -0.008913276717066765, 0.026510128751397133, -0.007051514927297831, 0.0031759915873408318, 0.03736354783177376, 0.0010809218510985374, 0.0012848697369918227, -0.02274344302713871, 0.0343012772500515, 0.04082278907299042, 0.00818716175854206, 0.004719767719507217, -0.024745633825659752, -0.016287118196487427, -0.010652272030711174, 0.01028637308627367, -0.015788858756422997, -0.018154524266719818, 0.03868446126580238, -0.1343574821949005, -0.02019410952925682, -0.0023321793414652348, -0.014984157867729664, -0.007802409585565329, -0.011957711540162563, -0.02437957003712654, 0.021210914477705956, -0.00019123525999020785, 0.00859909225255251, -0.050497137010097504, -0.025795400142669678, -0.015164435841143131, 0.008138628676533699, 0.014479333534836769, 0.0032321596518158913, 0.0005306625389494002, 0.0315902978181839, -0.07793952524662018, -0.021336888894438744, -0.03410278260707855, -0.026944642886519432, -0.015106044709682465, -0.006895176135003567, -0.014015278778970242, 0.018130408599972725, -0.01609865576028824, 0.013670350424945354, 0.006437355186790228, -0.010511168278753757, -0.011095249094069004, 0.00035478148492984474, -0.026806417852640152, -0.07990476489067078, -0.03720305114984512, -0.014304177835583687, 0.008530421182513237, -0.017134064808487892, -0.009986702352762222, -0.015767274424433708, -0.0006220568902790546, -0.007055504713207483, 0.00009301933459937572, -0.001579395029693842, -0.05398249626159668, 0.03792286291718483, -0.014412102289497852, -0.013830190524458885, -0.026293553411960602, -0.005009285639971495, -0.030215786769986153, -0.015895823016762733, 0.04738074168562889, -0.0019307046895846725, 0.02961610071361065, 0.023898867890238762, -0.020449496805667877, 0.005356753244996071, -0.004265473689883947, 0.01784457266330719, 0.01726132445037365, -0.009505041874945164, 0.027337078005075455, -0.00579499639570713, 0.013454183004796505, -0.08661230653524399, -0.01333730760961771, 0.001069749821908772, 0.0010392345720902085, 0.009942954406142235, 0.8682162761688232, 0.00002419645170448348, 0.03402582183480263, 0.033568061888217926, 0.005984107963740826, -0.0024260706268250942, 0.03009742684662342, 0.021168598905205727, -0.002668078290298581, -0.007183280307799578, -0.029358454048633575, 0.00964392814785242, 0.016457529738545418, 0.010391640476882458, 0.013110343366861343, 0.02403533086180687, 0.026859620586037636, 0.012536777183413506, -0.0032460002694278955, 0.0009803138673305511, 0.01875506527721882, 0.0229718629270792, -0.0007845383370295167, 0.02536238171160221, 0.02490536868572235, 0.022116398438811302, -0.17829884588718414, 0.017393020913004875, -8.208438113541663e-33, 0.06435906141996384, 0.01064204890280962, -0.01617547869682312, 0.00417203176766634, 0.01437482237815857, 0.004912912845611572, 0.04154197871685028, 0.019254270941019058, -0.01390321459621191, -0.030141115188598633, -0.002590870950371027, -0.004893230274319649, -0.004363758023828268, -0.007843809202313423, 0.03073049522936344, -0.03418397158384323, 0.001802082289941609, 0.034984949976205826, -0.013800992630422115, 0.0003067667712457478, 0.0310133695602417, 0.031970687210559845, -0.004395900759845972, -0.004553244449198246, 0.026766125112771988, 0.008355394005775452, -0.003069228958338499, 0.012251585721969604, -0.01814437285065651, -0.038666971027851105, -0.021242443472146988, 0.029274778440594673, -0.02745937369763851, 0.0026402538642287254, -0.020965786650776863, -0.009021596983075142, -0.017383651807904243, 0.008538272231817245, -0.0053580403327941895, -0.03482938930392265, -0.026617810130119324, 0.007775321137160063, -0.04589168727397919, -0.019286002963781357, -0.0194601621478796, -0.020521285012364388, 0.001612384570762515, 0.024775944650173187, 0.0077544571831822395, 0.004253328777849674, 0.009407286532223225, 0.0014443431282415986, 0.0016601484967395663, -0.0038589192554354668, -0.02288598008453846, 0.010576966218650341, 0.007246588356792927, 0.019708780571818352, -0.006873777601867914, 0.024542387574911118, 0.00912588369101286, 0.0046019419096410275, -0.021584652364253998, 0.04107126593589783, -0.020712822675704956, 0.011429368518292904, 0.0043981256894767284, 0.022135982289910316, 0.02949250489473343, -0.01449475809931755, -0.06021934002637863, -0.010509425774216652, -0.003795114578679204, -0.017631646245718002, 0.03439466655254364, -0.009712928906083107, -0.023754002526402473, -0.02384483441710472, -0.024933526292443275, 0.05748184025287628, 0.006994814146310091, 0.008446567691862583, -0.02332068420946598, -0.043584004044532776, -0.0028348066844046116, -0.0004076794721186161, 0.022308379411697388, -0.0030510115902870893, -0.0257001630961895, 0.030375421047210693, 0.0005970560596324503, 0.008138357661664486, 0.014128262177109718, -0.002379859099164605, -0.010366328060626984, 7.938022250290719e-33, 0.0022350919898599386, -0.03284221515059471, -0.006094733253121376, 0.004572241101413965, -0.0014604394091293216, -0.005963183008134365, 0.025790490210056305, -0.009157532826066017, -0.04962429776787758, 0.02940438874065876, -0.009903894737362862, 0.0006750152679160237, -0.0025363017339259386, 0.03386382386088371, 0.019937757402658463, -0.02593720518052578, 0.014470051974058151, -0.016383420675992966, 0.02497803419828415, -0.00827318336814642, 0.01675785891711712, 0.004781701602041721, 0.01142832264304161, 0.012895378284156322, 0.009465417824685574, 0.0238860622048378, -0.006487091071903706, 0.030120989307761192, 0.014185648411512375, -0.0030565212946385145, -0.0005758405313827097, -0.018552696332335472, 0.034694962203502655, -0.017521871253848076, 0.00824852753430605, 0.04043150693178177, -0.03251570463180542, -0.012112067081034184, -0.025079170241951942, 0.0002346920664422214, 0.027730660513043404, -0.015549733303487301, -0.00014519892283715308, 0.01680813729763031, 0.02946232259273529, -0.020616574212908745, -0.0017923008417710662, 0.007443841081112623, -0.021019427105784416, 0.011453024111688137, 0.03237403929233551, -0.0019214489730075002, 0.0034542225766927004, -0.01626168005168438, -0.0166277177631855, -0.017449168488383293, -0.014240042306482792, 0.00845038890838623, -0.01589376851916313, 0.025985339656472206, 0.019100161269307137, 0.024272508919239044, -0.026159318163990974, -0.002296882215887308, -0.00298235472291708, -0.029970649629831314, 0.012196865864098072, 0.0008839006186462939, -0.010329154320061207, -0.0029232099186629057, -0.009000422433018684, 0.0010684244334697723, -0.006640294566750526, 0.03539660573005676, 0.01691703498363495, -0.03911652788519859, -0.011702751740813255, -0.0028327913023531437, -0.030943963676691055, 0.011658509261906147, 0.022805344313383102, -0.0038271495141088963, 0.029152344912290573, 0.034139059484004974, -0.021407628431916237, 0.06236998364329338, -0.021038968116044998, 0.04144721105694771, -0.008164932020008564, -0.015011562034487724, -0.00957897212356329, -0.01843789778649807, -0.001696706167422235, 0.020537378266453743, -0.021921927109360695, -1.3774982043912587e-8, -0.013629056513309479, 0.016271280124783516, -0.009202506393194199, 0.02332703396677971, -0.008799020200967789, 0.002356402575969696, -0.010901832021772861, -0.013607747852802277, -0.03914843872189522, 0.01242658868432045, 0.04357081651687622, -0.048232629895210266, -0.009242339059710503, 0.01277155801653862, 0.04095982015132904, -0.03719416633248329, 0.005826086271554232, -0.008980289101600647, 0.020576111972332, 0.002715587615966797, 0.027040919288992882, 0.012517435476183891, -0.029652440920472145, 0.01862507499754429, 0.007424201816320419, -0.016739102080464363, -0.009221055544912815, -0.07306627184152603, -0.011380596086382866, 0.016780221834778786, 0.016278252005577087, -0.025054533034563065, -0.02243105135858059, 0.03161121904850006, -0.021654468029737473, -0.03226125240325928, 0.028213098645210266, 0.015667205676436424, 0.03447863459587097, -0.002011840231716633, -0.008172491565346718, -0.000906486704479903, 0.002784835174679756, -0.023577552288770676, -0.027873307466506958, 0.02393769472837448, -0.026952864602208138, -0.026062093675136566, 0.008376937359571457, -0.030614733695983887, 0.02063865400850773, -0.004846720956265926, 0.023961542174220085, 0.035726118832826614, -0.00010570121230557561, 0.03696451336145401, 0.017765402793884277, 0.0014955262886360288, -0.02427016757428646, -0.014072305522859097, 0.04613707959651947, 0.04122970253229141, -0.029736807569861412, -0.025724852457642555 ]
coding-reflection-vs-action-mode
https://markhneedham.com/blog/2011/03/06/coding-reflection-vs-action-mode
false
2011-03-06 08:37:11
Kano Model: Some ThoughtWorks examples
[ "kano-model", "product-development-2" ]
[ "Product Development" ]
My colleague Jason Yip http://twitter.com/jchyip/status/43144563472343040[recently linked] to the http://en.wikipedia.org/wiki/Kano_model[Kano Model] and although it's a theory about product development the definition of what counts as a product seems like it can be quite broad. The best explanation of the model that I've come across so far is http://www.agile-ux.com/tag/kano-model/[a post by Jean Claude Grosjean] which http://twitter.com/#!/frankmt[Frankie] linked me to. Grosjean describes the three types of requirements like so: == Must Have ("Basic needs") These are not always expressed but they are obvious to the customer and must be met...[they] are *not a source of satisfaction but can cause major disappointment*. == Performance needs ("Linear") The need is expressed and customer satisfaction is *proportional to the level of performance (and quality) of what is implemented*. == Delighters ("Exciters") These requirements are not necessarily expressed. Sometimes they're unconscious. This is the happy surprise that can make a difference but if they are not there then there won't be any dissatisfaction or frustration because they're not expected. *Exciters are the key to innovation*. image::{{<siteurl>}}/uploads/2011/03/kano.jpg[Kano,257] To work out which category a requirement fits in Grosjean suggests we ask the following two questions: * *Functional question*: "How would you feel if the product had feature X ?" * *Dysfunctional question*: "How would you feel if the product didn't have feature X ?" I was thinking about this idea with respect to scenarios inside an organisation. I'm http://en.wikipedia.org/wiki/Anaphylaxis[anaphylactic allergic] to dairy products, eggs, nuts and seafood so my general expectation if I go to any event arranged by ThoughtWorks is that I'll have to work out for myself what I'll be able to eat. However, when I first started working at ThoughtWorks UK in 2006 we had an office manager called Vicki Mott who didn't leave me to fend for myself. She would call me up or email me before every event she organised, check what I was allowed to eat and then make sure there was something I could eat at the venue. I never expected anyone to do that so it was certainly a delighter for me. In this case the 'product' is more a 'service' being provided by another member of an organisation but I feel that the same theory applies. http://www.uie.com/articles/kano_model[Jared Spool] explains that what were previously exciters will move to performance needs and then eventually basic needs as time goes on: ____ One of the predictions that the Kano Model makes is that once customers become accustomed to excitement generator features, those features are not as delightful. The features initially become part of the performance payoff and then eventually migrate to basic expectations. ____ An interesting example that I can think of which seems to fit this is the way some aspects of travel are dealt with in ThoughtWorks Australia. In Australia if you are travelling anywhere for ThoughWorks then there will be a driver to drop you to and pick you up from the airport. When I first saw this it was a delighter for me because I'd never seen anything like it but now it's become expected which leads to disappointment because we don't tend to do that in the other countries. Of course it's still important that other basic/performance needs are met otherwise the delighters aren't able to have the same impact but I hadn't previously thought that much about viewing a service as a product.
null
null
[ 0.021320905536413193, 0.01269021350890398, 0.0010795933194458485, 0.03219078108668327, 0.06137460842728615, 0.031097570434212685, 0.008461660705506802, 0.04223707690834999, 0.030766543000936508, 0.005278389435261488, -0.008493509143590927, 0.00506781367585063, -0.05223629251122475, 0.03440263122320175, -0.04712557792663574, 0.07156039774417877, 0.07192293554544449, 0.026587871834635735, 0.020791396498680115, 0.029287954792380333, 0.01692180149257183, 0.0771491602063179, 0.03563818708062172, 0.02280028723180294, 0.05567074194550514, 0.0030467777978628874, 0.007586933672428131, 0.0011081667616963387, -0.05326719209551811, -0.009163561277091503, 0.023116599768400192, 0.028789779171347618, 0.005722404923290014, -0.025283971801400185, 0.01990293338894844, 0.016963377594947815, -0.008525571785867214, 0.011216721497476101, -0.008404949679970741, 0.00299463071860373, -0.06527118384838104, 0.04805757477879524, -0.010863794013857841, 0.009178869426250458, -0.03794052451848984, 0.012777524068951607, -0.04719112068414688, 0.00488354591652751, -0.010097178630530834, -0.006751146633177996, -0.07047919929027557, 0.031241102144122124, -0.0226046834141016, 0.007079135160893202, -0.011812664568424225, 0.043193280696868896, 0.006583123933523893, -0.057743944227695465, 0.00794125720858574, -0.06772080808877945, 0.008798239752650261, -0.0036369264125823975, 0.007880641147494316, 0.01674710214138031, 0.022470390424132347, -0.005124790593981743, -0.005466088652610779, 0.044437188655138016, -0.047161445021629333, 0.002452434506267309, -0.03615174442529678, -0.003446002025157213, 0.0016063544899225235, -0.013576585799455643, 0.021639732643961906, -0.05453937128186226, -0.009093327447772026, 0.05347220227122307, 0.004184961784631014, 0.046221066266298294, -0.037796687334775925, -0.009441022761166096, 0.01415999885648489, 0.01815616898238659, -0.041943952441215515, -0.03899530693888664, -0.004240482579916716, -0.025898896157741547, -0.042848195880651474, 0.08561635762453079, -0.0009358131792396307, -0.045925311744213104, 0.017399434000253677, 0.022414378821849823, -0.01833220198750496, 0.015638602897524834, 0.022673996165394783, -0.023854143917560577, -0.03906074911355972, -0.02995879575610161, -0.023701252415776253, -0.017304059118032455, -0.012598209083080292, 0.005918592214584351, -0.09103211015462875, -0.024287886917591095, -0.012551017105579376, 0.00248439097777009, 0.0029516934882849455, 0.005019905976951122, -0.041911911219358444, 0.021472115069627762, -0.02540011517703533, 0.019691163673996925, -0.07140804827213287, 0.06926829367876053, 0.01370801031589508, -0.025097981095314026, 0.006022046785801649, 0.005217788740992546, 0.05674228072166443, -0.012742978520691395, -0.03852798417210579, 0.07314653694629669, -0.005259758327156305, 0.030850809067487717, -0.05878760293126106, 0.04560602456331253, -0.011692788451910019, -0.05938811972737312, 0.012854698114097118, 0.05826514959335327, -0.04871462285518646, -0.005993924103677273, 0.004514116793870926, -0.02837473340332508, 0.018498091027140617, -0.019219577312469482, 0.047267232090234756, 0.035418856889009476, -0.0038254198152571917, -0.028103264048695564, -0.006909545045346022, 0.013099061325192451, 0.05067628249526024, -0.008564726449549198, 0.011538934893906116, -0.03867321461439133, -0.050185371190309525, -0.03894743323326111, 0.0080412020906806, 0.014530719257891178, 0.02264009416103363, -0.023669451475143433, 0.03350218012928963, 0.06252115219831467, 0.03603341802954674, -0.022857792675495148, 0.008323521353304386, 0.020963886752724648, 0.043597955256700516, 0.026648404076695442, 0.03267763555049896, 0.03737849369645119, 0.0035273265093564987, -0.010752933099865913, -0.0030735379550606012, 0.05689698085188866, 0.002941279439255595, -0.03584990277886391, -0.05632099136710167, -0.06449196487665176, 0.03908005729317665, -0.05028063431382179, -0.015251296572387218, 0.057821083813905716, 0.08780749887228012, 0.039358463138341904, 0.04646972194314003, 0.027566218748688698, -0.07726360857486725, 0.054062046110630035, 0.001467510242946446, 0.01389659196138382, 0.03814517334103584, -0.023221703246235847, 0.056840963661670685, 0.031109267845749855, -0.018335659056901932, 0.04767021909356117, -0.07608793675899506, -0.08154798299074173, -0.026179125532507896, -0.024910878390073776, 0.0405985489487648, -0.05056926608085632, 0.007300779223442078, 0.09458477050065994, -0.0026617562398314476, 0.03401663526892662, 0.0076646762900054455, 0.02353043481707573, 0.002026903908699751, -0.05904803425073624, -0.05116553232073784, 0.07561633735895157, 0.025220828130841255, -0.003552962327376008, -0.048505231738090515, 0.0195050910115242, -0.01723475754261017, -0.015658872202038765, 0.04064696282148361, -0.057568494230508804, 0.05114002525806427, 0.00997687503695488, 0.07562141120433807, -0.013037357479333878, 0.03681149706244469, -0.04618747532367706, 0.01591509021818638, 0.024790791794657707, -0.021458663046360016, 0.023488223552703857, 0.011896166950464249, 0.1160077452659607, 0.07067009806632996, -0.02540939301252365, -0.06214907765388489, 0.05099380761384964, 0.038715969771146774, -0.04606062173843384, 0.007353455759584904, -0.002844886388629675, -0.011419025249779224, 0.00395195884630084, -0.044980548322200775, -0.02475646696984768, 0.019151559099555016, -0.04469895362854004, 0.0026358459144830704, 0.0726156160235405, -0.02708880975842476, 0.05707140639424324, -0.016658734530210495, 0.004954568576067686, -0.02212703414261341, 0.004431173205375671, -0.062288299202919006, 0.011357484385371208, 0.002818034728989005, 0.00862203724682331, 0.05441506579518318, -0.0032254639081656933, -0.012673691846430302, -0.02637176401913166, -0.03697516396641731, 0.036784421652555466, 0.07119261473417282, 0.06812994182109833, -0.009804224595427513, 0.03085789643228054, -0.014845158904790878, 0.03058767132461071, -0.023757603019475937, -0.03180564567446709, -0.035701680928468704, -0.030327685177326202, -0.01919281668961048, 0.04599227383732796, 0.03761305660009384, -0.010834170505404472, -0.009991166181862354, 0.0005451945471577346, 0.016198737546801567, 0.02339656464755535, 0.021542595699429512, 0.01954629458487034, -0.00905375275760889, -0.015161188319325447, -0.0030569930095225573, 0.06398679316043854, -0.018518595024943352, -0.026236388832330704, 0.02368095889687538, -0.09621446579694748, 0.021919669583439827, -0.08037872612476349, -0.04669928178191185, 0.00028443129849620163, 0.0006105406791903079, 0.03636084869503975, 0.018893582746386528, 0.003529106732457876, 0.03983542323112488, 0.0019261204870417714, 0.0025368621572852135, 0.021071143448352814, -0.006695946212857962, 0.0346614308655262, 0.006371695548295975, 0.005111150909215212, 0.04811585694551468, -0.00851544737815857, 0.026251880452036858, -0.052607811987400055, 0.06837731599807739, -0.03995313122868538, -0.2885512113571167, 0.01925923116505146, 0.02757127769291401, -0.022538062185049057, 0.008514538407325745, -0.029734019190073013, 0.016278421506285667, -0.03061303123831749, -0.014969157986342907, 0.014093204401433468, -0.025699399411678314, -0.03321896493434906, -0.024110326543450356, 0.04086590185761452, 0.009923304431140423, 0.006630949676036835, 0.011170527897775173, -0.03345225378870964, 0.0010967430425807834, 0.045914314687252045, -0.013612561859190464, -0.058346398174762726, -0.03826265409588814, 0.06226915121078491, 0.043345857411623, 0.04502444714307785, -0.08419989794492722, 0.029241645708680153, -0.05298294126987457, 0.0016194357303902507, -0.00036036086385138333, -0.003576246788725257, -0.030354412272572517, -0.002417451236397028, 0.0017013500910252333, -0.009212714619934559, 0.027327001094818115, 0.003950873389840126, 0.005625072866678238, 0.005773639306426048, -0.025300050154328346, -0.03174488618969917, 0.009416771121323109, 0.015285500325262547, 0.06945567578077316, 0.019808558747172356, -0.08576024323701859, -0.008203718811273575, -0.04310273751616478, 0.07104462385177612, -0.008240544237196445, -0.03327225521206856, -0.026328187435865402, 0.02765500731766224, 0.014234230853617191, 0.0055913464166224, -0.008164709433913231, 0.00032843564986251295, -0.050735246390104294, -0.03952113911509514, -0.026913808658719063, -0.03388433903455734, -0.03752982243895531, -0.024588575586676598, -0.015551594085991383, -0.048854485154151917, -0.05963709577918053, 0.004578361287713051, 0.07952786237001419, -0.014999407343566418, -0.048305414617061615, -0.00028744322480633855, -0.02902182564139366, -0.11452030390501022, 0.001663853763602674, -0.021042952314019203, -0.027669386938214302, 0.015408606268465519, 0.028919704258441925, 0.0420241504907608, -0.021819790825247765, -0.07567320019006729, 0.02672147937119007, 0.01664556935429573, 0.01810678467154503, -0.023321781307458878, 0.045098926872015, 0.019064318388700485, -0.016299162060022354, 0.020308412611484528, 0.05441053584218025, 0.005298534408211708, -0.0352523997426033, -0.0237214807420969, 0.0178468469530344, -0.0030772981699556112, 0.0029637531843036413, -0.010998417623341084, -0.008897907100617886, 0.019517969340085983, -0.0064429547637701035, -0.06191788241267204, 0.006826271302998066, -0.021937960758805275, -0.0016451227711513638, -0.008884446695446968, -0.050185736268758774, -0.005653045140206814, 0.034730371087789536, 0.00781039334833622, 0.011679531075060368, -0.050367359071969986, -0.003429033560678363, -0.04797561466693878, -0.03715004771947861, -0.020710349082946777, 0.002223461866378784, 0.06409114599227905, -0.017799803987145424, 0.00007683239527978003, -0.03191265091300011, 0.020290402695536613, -0.023378293961286545, -0.03157350793480873, -0.0494830459356308, 0.020193014293909073, -0.0005948179168626666, -0.02338137850165367, 0.0010212468914687634, -0.002827565185725689, -0.023929331451654434, 0.018955186009407043, 0.01406958606094122, -0.0377880334854126, 0.016581067815423012, -0.008673311211168766, -0.08073719590902328, -0.034363143146038055, -0.0035258394200354815, -0.020100239664316177, -0.004115856718271971, 0.01142805814743042, 0.00549779599532485, -0.004013711120933294, 0.034305498003959656, 0.0307924784719944, 0.04065543785691261, 0.008940151892602444, 0.025112805888056755, 0.029833512380719185, 0.020018137991428375, -0.03958049416542053, -0.020903101190924644, -0.027128614485263824, -0.014505832456052303, -0.016355855390429497, 0.04300333186984062, -0.015193771570920944, -0.02588876523077488, -0.030254926532506943, 0.003911066334694624, -0.049460239708423615, -0.03429191932082176, -0.007267877459526062, 0.011000395752489567, 0.04756936430931091, -0.010370423085987568, 0.003225645050406456, -0.0012238264316692948, 0.01390915084630251, 0.02303805947303772, -0.012174605391919613, -0.029755931347608566, 0.012352021411061287, 0.004670547787100077, -0.003436196595430374, 0.008781330659985542, 0.0017366339452564716, 0.053414568305015564, 0.006260738242417574, -0.0016258549876511097, -0.04714337736368179, 0.007348123472183943, -0.008359947241842747, 0.03615838289260864, 0.03335421904921532, -0.004421696532517672, -0.01538282074034214, -0.008826624602079391, -0.01769198477268219, -0.05274304375052452, -0.005419340915977955, -0.004468762781471014, 0.014126612804830074, -0.0350298173725605, -0.06244369223713875, 0.06816481053829193, 0.005886545870453119, 0.013710889033973217, 0.01938643865287304, -0.02033820003271103, -0.00514733511954546, -0.03515097498893738, 0.03928200528025627, 0.06479700654745102, -0.06461848318576813, 0.010521846823394299, -0.005729304160922766, 0.0012840870767831802, 0.023908421397209167, -0.013082532212138176, -0.04105821251869202, -0.011648764833807945, -0.020409556105732918, 0.013878975063562393, -0.07881448417901993, -0.015940850600600243, -0.029907651245594025, 0.02896968647837639, 0.011222275905311108, -0.007545097731053829, -0.030504630878567696, -0.030696263536810875, 0.0010293558007106185, -0.02921256795525551, 0.019111281260848045, -0.03023618273437023, 0.010657585225999355, 0.01977994479238987, -0.044558219611644745, -0.014975730329751968, -0.020335683599114418, -0.001150135649368167, 0.03921288251876831, -0.036915529519319534, 0.0026572132483124733, -0.03706157207489014, 0.0009703063406050205, 0.009507628157734871, 0.024496255442500114, -0.010235064662992954, -0.006047054659575224, -0.03822959214448929, 0.008356863632798195, -0.035430680960416794, 0.027115652337670326, 0.00003243306127842516, -0.022020846605300903, 0.03942243382334709, 0.05996058136224747, 0.020428994670510292, 0.02131754532456398, -0.005848276894539595, 0.002083458472043276, 0.04386145621538162, -0.061101458966732025, -0.03498685359954834, -0.012747424654662609, -0.04995341971516609, 0.020733332261443138, 0.017583969980478287, 0.04310581460595131, -0.018709983676671982, 0.03416316583752632, 0.024556048214435577, 0.048401229083538055, 0.02471562661230564, 0.028998475521802902, 0.020438630133867264, -0.04217451065778732, 0.0027531611267477274, -0.07119888067245483, -0.010317430831491947, 0.051152486354112625, 0.01946713589131832, 0.0055391741916537285, -0.0179051011800766, -0.05334599316120148, 0.03863399475812912, -0.05963689088821411, -0.010677730664610863, 0.03796908259391785, 0.015190042555332184, -0.010187344625592232, 0.024050313979387283, -0.0680537223815918, 0.016031447798013687, 0.0062187789008021355, -0.044708941131830215, -0.018704431131482124, -0.015064910054206848, 0.07433713227510452, 0.006080076564103365, 0.011664514429867268, -0.0443778894841671, -0.01421795878559351, 0.08103351294994354, 0.009294123388826847, -0.011219830252230167, 0.05557848513126373, -0.006884974893182516, 0.02724483609199524, 0.02341305837035179, 0.035039789974689484, -0.00332615221850574, 0.024442214518785477, -0.03064429573714733, -0.07079096138477325, 0.04666544124484062, 0.014642229303717613, -0.01958008110523224, -0.06264035403728485, 0.053296808153390884, 0.03183848783373833, -0.024211302399635315, -0.03796738013625145, -0.0034831659868359566, -0.052942339330911636, -0.004657376557588577, -0.001927913399413228, -0.015514833852648735, -0.08453664928674698, 0.03923667222261429, 0.003944944124668837, 0.02404361590743065, 0.05993422120809555, -0.0009273336618207395, -0.0017593177035450935, 0.00653786351904273, 0.09728687256574631, 0.07454513013362885, 0.07838431000709534, 0.030382545664906502, 0.06542575359344482, -0.0162255447357893, -0.03301595523953438, -0.012856991961598396, -0.006888458970934153, -0.026266051456332207, -0.01470576599240303, 0.016461191698908806, 0.038221847265958786, -0.011273597367107868, 0.05914803221821785, -0.011539929546415806, -0.024124901741743088, 0.003540986217558384, 0.01404104009270668, 0.015779275447130203, 0.07735326141119003, -0.002827561693266034, 0.01388176716864109, -0.0027245627716183662, -0.04367072507739067, 0.00833478569984436, -0.039766062051057816, -0.014314945787191391, 0.03706901893019676, -0.01845463179051876, 0.038527876138687134, 0.008204749785363674, 0.03351730480790138, 0.09179984778165817, -0.05889376997947693, 0.04311780259013176, 0.012072861194610596, -0.008868064731359482, -0.02169145457446575, 0.006887276191264391, 0.00990054477006197, -0.02001575566828251, -0.02892340160906315, -0.015773288905620575, -0.017400825396180153, 0.0031433384865522385, -0.009207620285451412, 0.03674963116645813, -0.02054310217499733, 0.0022665802389383316, 0.05111430585384369, -0.005287897307425737, -0.021057959645986557, -0.05393824726343155, -0.02656002715229988, -0.04182066023349762, -0.06484159827232361, -0.02993810549378395, 0.021555641666054726, -0.013467369601130486, -0.026982935145497322, -0.010107881389558315, -0.00319025875069201, -0.027247292920947075, 0.048370279371738434, -0.04749522730708122, -0.01208524964749813, 0.01634948141872883, -0.004164120648056269, -0.0035587118472903967, -0.004667817614972591, 0.06558740139007568, 0.032976601272821426, -0.0014356301398947835, -0.019244825467467308, 0.02503109909594059, 0.02635318785905838, 0.007406272925436497, 0.030344421043992043, -0.06912017613649368, 0.005865674465894699, 0.010788936167955399, -0.0563867948949337, -0.06583990156650543, 0.018025165423750877, 0.019881397485733032, 0.0069837081246078014, 0.0230307225137949, -0.006026931572705507, 0.013271653093397617, -0.0653294026851654, -0.01725149340927601, -0.018671270459890366, 0.0055235158652067184, 0.030971918255090714, -0.01810387708246708, 0.08150263130664825, 0.03965529054403305, -0.021458614617586136, -0.02965911664068699, -0.005706461612135172, -0.019653061404824257, 0.007641878444701433, -0.017872359603643417, -0.023447832092642784, -0.029949767515063286, -0.09042589366436005, -0.02029847912490368, 0.013550104573369026, -0.029633883386850357, -0.03365786746144295, 0.03468109294772148, 0.004503469914197922, -0.0060256486758589745, 0.03548682481050491, -0.03222048282623291, 0.02925715781748295, -0.012375843711197376, -0.02087981626391411, -0.008740333840250969, 0.02403225749731064, -0.009823206812143326, -0.013080070726573467, 0.014604523777961731, -0.03931717947125435, -0.006146558094769716, -0.029418110847473145, 0.02312919683754444, 0.03306914120912552, 0.007844689302146435, -0.01335806492716074 ]
[ -0.08934803307056427, -0.0012384180445224047, 0.01397146936506033, -0.004274676088243723, 0.006631755735725164, -0.03395199403166771, 0.031018033623695374, 0.02784244529902935, -0.03136475011706352, -0.01145267579704523, -0.0020697463769465685, -0.03604374825954437, -0.0042935945093631744, -0.0010176121722906828, 0.08905332535505295, -0.024000704288482666, 0.03277672827243805, -0.0976729542016983, -0.0057205455377697945, 0.01440864522010088, 0.028925461694598198, -0.047254227101802826, -0.05404865741729736, 0.004204381722956896, 0.01085901353508234, -0.008080230094492435, 0.022965144366025925, -0.0009934140834957361, 0.027691084891557693, -0.18646422028541565, -0.013966748490929604, 0.00273582199588418, 0.06862135976552963, -0.007710510399192572, -0.001499841921031475, 0.08721595257520676, 0.013538241386413574, -0.006809642072767019, -0.014292350970208645, 0.025204425677657127, -0.005290945991873741, 0.010188525542616844, -0.04173062741756439, -0.040242258459329605, 0.04993508756160736, 0.004570967052131891, 0.0047949329018592834, -0.028002819046378136, -0.03264017403125763, 0.009741638787090778, 0.003294964786618948, -0.04414688050746918, -0.016202544793486595, -0.012883328832685947, 0.013455819338560104, 0.046152397990226746, 0.028996141627430916, 0.03931247070431709, 0.013806351460516453, 0.004691812209784985, 0.027041809633374214, -0.01934809423983097, -0.1345253586769104, 0.09382659196853638, 0.011239509098231792, 0.05562007427215576, -0.07151453197002411, -0.040937405079603195, -0.058022838085889816, 0.09747117757797241, 0.027293648570775986, -0.0259274709969759, -0.015548387542366982, 0.02685050666332245, -0.0005372064188122749, 0.0006309763994067907, 0.017643200233578682, 0.01591767556965351, 0.011012745089828968, -0.018425146117806435, 0.007348694838583469, 0.02461337298154831, -0.03971283882856369, -0.014702953398227692, -0.025046251714229584, 0.010486859828233719, 0.012213570065796375, 0.022811582311987877, 0.03161393478512764, 0.040559712797403336, 0.027384065091609955, 0.017587952315807343, 0.02271396294236183, -0.011516435071825981, -0.0649094358086586, -0.025221798568964005, -0.03529460355639458, -0.011316249147057533, -0.05446338653564453, 0.4475845992565155, 0.00948121678084135, -0.025006946176290512, 0.0894833579659462, 0.0020836959592998028, -0.005569871515035629, 0.008949536830186844, -0.017807843163609505, -0.04016425833106041, 0.03496091440320015, -0.024897251278162003, 0.008050048723816872, 0.03572569042444229, 0.02461545355618, -0.04797119274735451, 0.00033798045478761196, 0.017533347010612488, -0.014398915693163872, 0.006583580281585455, 0.047639161348342896, 0.003127336734905839, -0.01676511950790882, 0.03534383699297905, 0.02493373490869999, 0.0019589525181800127, -0.05028577521443367, -0.043584588915109634, 0.04620189592242241, 0.034389931708574295, 0.017301738262176514, 0.0022046107333153486, 0.041177332401275635, -0.06905528903007507, -0.07103918492794037, 0.014424042776226997, 0.002813701517879963, -0.00811733864247799, 0.04712619632482529, -0.008273257873952389, -0.02421141043305397, 0.06181938573718071, 0.037774138152599335, 0.0005079575930722058, 0.039872560650110245, -0.03480939939618111, -0.03401060774922371, 0.13234393298625946, 0.03076634183526039, -0.024722078815102577, -0.01645750366151333, -0.008870814926922321, 0.0017714651767164469, 0.03576493635773659, -0.006755300331860781, -0.05108751729130745, 0.0376170314848423, 0.009685758501291275, 0.03416619077324867, -0.02847171388566494, -0.08120822161436081, -0.007282379548996687, 0.020930306985974312, -0.03433770313858986, -0.06293143332004547, -0.0005230690585449338, 0.03953869640827179, -0.11991086602210999, -0.011255132965743542, 0.028607523068785667, 0.030444417148828506, -0.05218323692679405, -0.0027649328112602234, 0.03762095794081688, -0.05630074068903923, -0.005179801490157843, 0.060774024575948715, -0.005938864313066006, -0.035470422357320786, 0.041596367955207825, -0.001256823423318565, -0.005882186349481344, 0.031884148716926575, 0.014901433140039444, -0.019420050084590912, -0.007119026500731707, -0.005662533454596996, -0.0805809274315834, -0.01787635311484337, 0.0025627203285694122, -0.022665290161967278, -0.00952313095331192, 0.002472021384164691, -0.04578617587685585, -0.052762098610401154, 0.11896566301584244, -0.018971797078847885, -0.027744358405470848, -0.021947693079710007, 0.004957801662385464, 0.00035182363353669643, -0.026388591155409813, -0.06761520355939865, 0.0360480435192585, -0.031510692089796066, 0.018865302205085754, -0.05704420059919357, 0.07890157401561737, 0.04723447561264038, -0.028636910021305084, 0.07874545454978943, 0.02407613955438137, -0.05738333985209465, -0.017086416482925415, 0.013424609787762165, 0.05039844661951065, 0.00841913465410471, 0.009268666617572308, 0.010749162174761295, 0.01865600422024727, 0.004199478775262833, 0.026885705068707466, -0.001304684323258698, 0.014334890991449356, -0.01629064418375492, -0.36190879344940186, 0.00020026434503961354, -0.03961959481239319, 0.013149231672286987, 0.008849099278450012, -0.021197114139795303, 0.0018898624693974853, -0.027200384065508842, -0.015117231756448746, 0.005154264625161886, 0.06701810657978058, -0.01844382844865322, 0.005337710026651621, -0.06903582811355591, 0.02632462978363037, 0.020974798128008842, -0.023722104728221893, -0.05642012134194374, -0.03784292936325073, -0.01813189685344696, 0.006861390545964241, 0.030734075233340263, -0.015074885450303555, -0.03447310999035835, 0.002782197203487158, -0.05023137480020523, 0.08794225752353668, 0.0004996810457669199, 0.04832211136817932, -0.07651510834693909, 0.029886513948440552, 0.01800709404051304, -0.002863899804651737, -0.06735210865736008, 0.038184668868780136, -0.043253131210803986, -0.03581031784415245, -0.03495005890727043, -0.005298287142068148, -0.04275394603610039, -0.062085580080747604, 0.021159954369068146, -0.06418316066265106, -0.005839706864207983, -0.05248991772532463, -0.0029736007563769817, -0.014758716337382793, 0.025501130148768425, -0.029936490580439568, 0.0759916678071022, 0.00294872815720737, 0.0246234443038702, 0.03338250517845154, 0.010221675038337708, -0.0048763444647192955, -0.03665272518992424, -0.10638188570737839, 0.026820017024874687, 0.003376157721504569, 0.023548932746052742, 0.02461116760969162, 0.052836548537015915, 0.02383982576429844, -0.03622876852750778, -0.04107873514294624, 0.005911088548600674, 0.013277396559715271, -0.005075407214462757, 0.04841442406177521, -0.02602313831448555, 0.006665548775345087, 0.09900020807981491, -0.019171712920069695, -0.007998828776180744, 0.05652347952127457, -0.0010495660826563835, -0.021251656115055084, -0.012035170570015907, 0.01681056059896946, -0.003863872028887272, 0.01352384127676487, -0.01644287258386612, 0.002061620121821761, -0.001987937605008483, -0.0018987240036949515, 0.05295950546860695, -0.0009786608861759305, -0.05657268315553665, 0.03328562527894974, 0.01419773418456316, -0.012311751022934914, 0.011700947768986225, 0.0007091860170476139, -0.07179171591997147, 0.10550214350223541, -0.003394136670976877, -0.24812468886375427, 0.021843504160642624, 0.06005498394370079, 0.072977714240551, -0.014721040613949299, 0.03850613534450531, -0.014295079745352268, -0.06563342362642288, -0.0000823147565824911, 0.011255542747676373, 0.03805423155426979, 0.03250525891780853, 0.003141258144751191, -0.009765949100255966, 0.03649135306477547, 0.0006141630583442748, 0.058992449194192886, -0.0204524714499712, 0.06495463848114014, -0.018685854971408844, 0.02428373694419861, -0.010075049474835396, 0.1593303382396698, 0.0003889805229846388, -0.004066255409270525, -0.012781822122633457, 0.005196386016905308, -0.001752191106788814, 0.027397118508815765, 0.018848702311515808, 0.01464075781404972, 0.014240967109799385, 0.055961016565561295, 0.008010916411876678, 0.02311706356704235, -0.08279852569103241, -0.03504180163145065, 0.014487911947071552, 0.01105458103120327, 0.01807301864027977, 0.006452026776969433, -0.019875163212418556, -0.02622869238257408, 0.01343556772917509, 0.08223189413547516, -0.006136585492640734, -0.016336984932422638, -0.052220962941646576, -0.06964730471372604, -0.025477971881628036, -0.017516732215881348, -0.037668146193027496, 0.008532658219337463, 0.024884512647986412, 0.044531941413879395, 0.038605835288763046, 0.02792850136756897, -0.022294558584690094, -0.004660345613956451, 0.029585693031549454, -0.02248269133269787, -0.016584720462560654, 0.08581530302762985, 0.04765176400542259, 0.02271280437707901 ]
[ 0.026275325566530228, -0.0080158906057477, 0.021332787349820137, 0.0042717247270047665, 0.009557520970702171, 0.02212441712617874, 0.016002679243683815, 0.05133920535445213, 0.011563095264136791, -0.020648831501603127, 0.03319422900676727, 0.031512197107076645, 0.0007560536032542586, -0.0075407181866467, 0.025995271280407906, -0.014197971671819687, 0.04669230803847313, -0.030192285776138306, -0.008431559428572655, 0.017584484070539474, 0.014379181899130344, 0.008877038024365902, -0.02173612266778946, -0.0013530199648812413, -0.03974148631095886, 0.0022663436830043793, 0.01036921702325344, -0.019637344405055046, 0.02303016558289528, -0.12956397235393524, -0.026991363614797592, -0.014564565382897854, 0.010771920904517174, 0.007244879379868507, 0.02606136165559292, -0.02047150768339634, 0.021457171067595482, -0.03005114570260048, 0.007899302989244461, -0.027858145534992218, 0.009052989073097706, -0.041715193539857864, -0.034142665565013885, 0.01170086208730936, 0.031279318034648895, -0.00791486818343401, 0.005015960894525051, -0.02045539766550064, -0.021273480728268623, -0.027003860101103783, -0.05227643996477127, -0.008937543258070946, -0.01687871292233467, -0.02140624448657036, -0.0005363425007089972, -0.00948733277618885, -0.006575152277946472, -0.018275871872901917, 0.01590730994939804, -0.009359883144497871, -0.008789226412773132, -0.01762220822274685, -0.022786878049373627, 0.006401236169040203, -0.00990335550159216, -0.02424589917063713, -0.025368008762598038, 0.01829320192337036, -0.046996187418699265, 0.00006238940841285512, 0.0006849522469565272, -0.006198621354997158, -0.02015971764922142, -0.03036808781325817, 0.016318952664732933, 0.0032951049506664276, 0.034604109823703766, -0.03588920459151268, 0.024499736726284027, 0.004178563132882118, -0.0576176643371582, 0.04802321642637253, 0.01785161904990673, -0.007479678839445114, -0.017061660066246986, 0.0041018323972821236, 0.013750902377068996, -0.029808472841978073, 0.01157380174845457, -0.002946559339761734, -0.01675485074520111, -0.03394417464733124, -0.007586125750094652, -0.02740752324461937, -0.09252148866653442, -0.013965371064841747, 0.011222471483051777, -0.028323831036686897, -0.005901568103581667, 0.8668380975723267, -0.023285619914531708, 0.01959925889968872, 0.04198392108082771, 0.0114442752674222, -0.007543821353465319, 0.00517687713727355, -0.006584576331079006, -0.00045843288535252213, 0.0378740169107914, -0.018832648172974586, -0.03824302554130554, -0.006367792375385761, 0.026237038895487785, 0.018311118707060814, 0.0037700471002608538, 0.002632747171446681, 0.017024004831910133, -0.023160377517342567, 0.016423502936959267, 0.029081199318170547, 0.03566353768110275, 0.005701558198779821, 0.016716932877898216, 0.013646234758198261, -0.010896504856646061, -0.1594671905040741, -0.0035243004094809294, -7.71135828677738e-33, 0.00029810660635121167, 0.0038298550061881542, 0.025608394294977188, 0.010722765699028969, 0.03902667388319969, -0.000746863370295614, 0.012031197547912598, -0.013295041397213936, -0.018530795350670815, 0.00044283430906943977, -0.03430676460266113, 0.01274933572858572, -0.028309499844908714, -0.015001537278294563, 0.03626314178109169, 0.02300204522907734, -0.011864078231155872, 0.04515949636697769, 0.012194465845823288, 0.020340213552117348, 0.02962653711438179, 0.002861912827938795, 0.0004003705980721861, 0.0009327197331003845, -0.016505790874361992, 0.04384671524167061, 0.007673470303416252, 0.0020165734458714724, -0.0062371245585381985, -0.04263514652848244, 0.012397532351315022, 0.02369644120335579, 0.006293444894254208, -0.020127976313233376, -0.03119596280157566, -0.035402629524469376, -0.04067026823759079, 0.006686400156468153, -0.010748090222477913, -0.03690827637910843, -0.016122901812195778, 0.016082849353551865, -0.05211511626839638, 0.01817108690738678, -0.01786225661635399, -0.01344175636768341, 0.02378600649535656, 0.018302153795957565, 0.007627338636666536, -0.00879665743559599, 0.007696830201894045, -0.0020685233175754547, 0.039260972291231155, 0.012554515153169632, -0.0056624580174684525, -0.0015000748680904508, -0.008436699397861958, -0.04133913293480873, 0.035430435091257095, -0.002139803720638156, -0.01633789949119091, -0.002589303767308593, -0.012131708674132824, -0.0018212121212854981, -0.011683760210871696, 0.004263195674866438, 0.012088910676538944, -0.021374210715293884, 0.010734968818724155, 0.01061369851231575, -0.04591257497668266, -0.014034365303814411, -0.01044081524014473, -0.018286151811480522, -0.008127091452479362, -0.028816694393754005, -0.013382045552134514, 0.02989104390144348, -0.018033301457762718, 0.03822126239538193, 0.02343495562672615, 0.017796428874135017, -0.008774126879870892, -0.02704349346458912, -0.0012367116287350655, 0.011624489910900593, -0.0017807469703257084, -0.0091581791639328, -0.006731605157256126, 0.04864194244146347, 0.01762518845498562, 0.024375231936573982, -0.009665259160101414, -0.0009415436070412397, 0.011466441676020622, 7.58154403751226e-33, 0.001502852770499885, -0.01916302554309368, -0.01998324505984783, 0.004963037557899952, 0.03868303820490837, -0.03337051346898079, -0.0034732737112790346, -0.00006089868111303076, -0.02751684933900833, 0.013787583447992802, -0.014252511784434319, -0.021362992003560066, -0.01153357420116663, 0.03829881548881531, 0.021879220381379128, 0.00807715393602848, 0.029952766373753548, -0.018377596512436867, 0.023400435224175453, -0.0015458291163668036, 0.006917790975421667, 0.014610390178859234, -0.0057775950990617275, 0.02008737064898014, -0.00360747124068439, 0.07552886754274368, -0.026158344000577927, 0.028714293614029884, -0.004678450524806976, -0.03701486438512802, 0.0027406185399740934, -0.014518619515001774, 0.011664275079965591, 0.004496411886066198, -0.025310015305876732, 0.009248715825378895, -0.043542712926864624, 0.004016954451799393, 0.028646476566791534, 0.00004687559703597799, 0.035892996937036514, -0.002670085057616234, 0.010509387589991093, 0.04653346911072731, -0.0008222173782996833, -0.00341764185577631, 0.043153971433639526, -0.06596241891384125, 0.008026733063161373, -0.007984093390405178, 0.013539259321987629, -0.010308250784873962, 0.006022041663527489, 0.020233118906617165, -0.005801972001791, 0.01499824970960617, -0.013556072488427162, 0.00942657794803381, -0.012825789861381054, -0.004915539175271988, -0.002572827972471714, 0.004136921837925911, 0.010039692744612694, 0.006533368024975061, -0.005041252821683884, -0.01492993999272585, 0.011463000439107418, -0.026036910712718964, -0.015397162176668644, -0.04041733592748642, -0.047757189720869064, 0.027597742155194283, 0.0121574392542243, 0.047820501029491425, -0.014601482078433037, -0.03208708018064499, -0.0429510772228241, -0.008672785945236683, -0.00470105791464448, -0.018445713445544243, -0.0013445665827021003, -0.012160306796431541, 0.00389435444958508, 0.013619563542306423, 0.008754788897931576, 0.02939945086836815, -0.01100757997483015, 0.03712945431470871, 0.01767442375421524, -0.009204335510730743, -0.009685431607067585, -0.006376068573445082, -0.014434820972383022, 0.02663136087357998, 0.022357527166604996, -1.3596777925783954e-8, 0.0031999903731048107, -0.007516772486269474, 0.006974655669182539, 0.008551246486604214, 0.005808888003230095, -0.010175712406635284, -0.00886882096529007, -0.01734805852174759, -0.026438282802700996, 0.007383246440440416, 0.04642500728368759, 0.025480590760707855, -0.02556789666414261, 0.01857379637658596, 0.035651031881570816, -0.05848903954029083, 0.006078907288610935, 0.02312559075653553, 0.020804673433303833, 0.004147197585552931, 0.024310065433382988, 0.07923851907253265, 0.018762512132525444, -0.019665153697133064, 0.022393813356757164, -0.014620584435760975, 0.0028207257855683565, -0.08179369568824768, 0.0015634088777005672, -0.01858791895210743, 0.021360330283641815, -0.032581448554992676, -0.014386880211532116, 0.02327894978225231, -0.011555010452866554, -0.0432305745780468, -0.018696000799536705, 0.021659260615706444, -0.011399822309613228, -0.021843696013092995, -0.014701465144753456, 0.037875641137361526, -0.010014890693128109, -0.01637854613363743, -0.028175022453069687, 0.017560873180627823, -0.009449845179915428, -0.023760659620165825, 0.004606225527822971, -0.01010314654558897, -0.004817223642021418, -0.007615386042743921, 0.01109481230378151, 0.022627495229244232, -0.025337878614664078, -0.01567874290049076, 0.02675689570605755, -0.0242133978754282, -0.03175054490566254, -0.01865275390446186, 0.02659660018980503, 0.006165190599858761, -0.0012229190906509757, -0.021130630746483803 ]
kano-model-some-thoughtworks-examples
https://markhneedham.com/blog/2011/03/06/kano-model-some-thoughtworks-examples
false
2011-03-24 21:58:31
Java: Faking System.in
[ "java" ]
[ "Java" ]
We ran a http://www.markhneedham.com/blog/2011/03/22/thoughtworks-university-a-refactoring-dojo/[refactoring dojo] a couple of days ago at ThoughtWorks University and in preparation I wrote some system level tests around https://github.com/mneedham/biblioteca/blob/master/src/main/Program.java[the coding problem] that we were going to use during the session. It's a command line application which is called through the main method of 'Program' and since there's no dependency injection we need to be able to set System.in and System.out in order to do any testing. My initial thinking was that it should be possible to fake System.in with the following code: [source,java] ---- String input = "1\n9\n"; System.setIn(new ByteArrayInputStream(input.getBytes())); ---- This works fine when I just want to simulate one value being passed to System.in but it doesn't work so well if I want to simulate passing more than one value because we had a BufferedReader being created each time we loop. [source,java] ---- ... while(true) { ... InputStreamReader inputStream = new InputStreamReader(System.in); BufferedReader reader = new BufferedReader(inputStream); ... } ---- This means that the second time System.in gets read it is empty. http://jimbarritt.com/non-random/[Jim] and I paired on the problem for a bit and came to the conclusion that we'd need to 'stub' the 'read' method of 'InputStream' if we wanted to be able to control exactly what was being returned by System.in. We eventually ended up with the following https://github.com/mneedham/biblioteca/blob/master/src/test/StubbedInputStream.java[StubbedInputStream]: [source,java] ---- class StubbedInputStream extends InputStream { private Queue<String> input; public StubbedInputStream(Queue<String> input) { this.input = input; } @Override public int read(byte[] bytes, int i, int i1) throws IOException { if(input.isEmpty()) { return -1; } int byteLocation = 0; for(byte b : input.remove().getBytes()) { bytes[byteLocation] = b; byteLocation++; } bytes[byteLocation] = "\n".getBytes()[0]; return byteLocation + 1; } public static InputStreamBuilder stubInputStream() { return new InputStreamBuilder(); } ... } ---- Which can be constructed using the https://github.com/mneedham/biblioteca/blob/master/src/test/InputStreamBuilder.java[following DSL]: [source,java] ---- System.setIn(stubInputStream().toReturn("1").then("9").atSomePoint()); ---- The code we wrote is on https://github.com/mneedham/biblioteca/tree/master/src[github] - I'm not sure that it covers every possible scenario that you might come up with but it does pass the tests that I've managed to come up with!
null
null
[ -0.007193828467279673, -0.01339233573526144, -0.05077632516622543, 0.0403866246342659, 0.08495271950960159, 0.003455726895481348, 0.03964988514780998, 0.0428716242313385, 0.013467369601130486, -0.026581937447190285, 0.02107427828013897, -0.011145065538585186, -0.07428701967000961, 0.017142413184046745, -0.056678857654333115, 0.06394384801387787, 0.08388016372919083, -0.029401687905192375, 0.03340650349855423, 0.00034766667522490025, -0.016641689464449883, 0.056294266134500504, -0.0010370422387495637, 0.033791203051805496, 0.03223573416471481, 0.019726615399122238, 0.015756240114569664, -0.006919059436768293, -0.04218403249979019, -0.016584347933530807, 0.05123581364750862, 0.0020129126496613026, 0.014000252820551395, -0.019207783043384552, 0.0071199252270162106, -0.011773914098739624, -0.03624725341796875, 0.03296808525919914, -0.012453456409275532, 0.03789922222495079, -0.06931181252002716, 0.018168509006500244, 0.0023983698338270187, 0.0015919804573059082, -0.053860414773225784, -0.0008852468454279006, -0.022893836721777916, 0.0027094529941678047, -0.021809833124279976, -0.010987664572894573, -0.07622642070055008, 0.038689546287059784, -0.04303869605064392, 0.00651377672329545, 0.02334444224834442, 0.035566236823797226, 0.040976088494062424, -0.05739395692944527, 0.04365745559334755, -0.06422732025384903, 0.014011927880346775, -0.013796806335449219, -0.0019883441273123026, 0.028070321306586266, -0.0028006474021822214, -0.05096879601478577, 0.014106713235378265, 0.04253168776631355, -0.030926493927836418, -0.01767541468143463, -0.002640374470502138, 0.012508245185017586, -0.02094903029501438, -0.017703555524349213, 0.029848210513591766, -0.06440877914428711, -0.00900542177259922, 0.059874437749385834, 0.015776338055729866, 0.023906372487545013, -0.02759731188416481, 0.011483018286526203, 0.02279118075966835, 0.002908306661993265, 0.017748381942510605, -0.04832209274172783, -0.029731808230280876, -0.013277984224259853, -0.03461587801575661, 0.040727950632572174, 0.021276142448186874, -0.02980170026421547, -0.010731247253715992, 0.03444347158074379, -0.02385460026562214, 0.008927945047616959, -0.00389289204031229, -0.013631517998874187, 0.002918949583545327, -0.010578596964478493, -0.029729360714554787, 0.018773898482322693, 0.043874748051166534, 0.03282304108142853, -0.07084092497825623, -0.009160836227238178, -0.00932746659964323, -0.0352294035255909, 0.011825074441730976, 0.00029920157976448536, -0.023469172418117523, 0.025739122182130814, -0.016605660319328308, 0.00490821385756135, -0.09063597023487091, 0.049150336533784866, 0.0011813726741820574, -0.02074667625129223, -0.02070542424917221, 0.06386809796094894, 0.04119071364402771, 0.01933152973651886, 0.006888681091368198, 0.07851994037628174, 0.014713102951645851, 0.00374907860532403, -0.02439003251492977, 0.030001722276210785, -0.017481321468949318, -0.06265214085578918, 0.009834031574428082, 0.03545451536774635, 0.02698422223329544, 0.010058004409074783, -0.0021869607735425234, 0.0009752744226716459, 0.009629551321268082, -0.004702968057245016, 0.03140939772129059, 0.0474969856441021, -0.03608677163720131, -0.03527606651186943, 0.02480175346136093, -0.026447732001543045, -0.009450331330299377, 0.024021603167057037, 0.013417893089354038, -0.026426469907164574, -0.012778272852301598, 0.053341690450906754, 0.0172833651304245, 0.053924694657325745, 0.06169292703270912, -0.036155879497528076, 0.010391858406364918, 0.08096586912870407, -0.002751338994130492, 0.02574089914560318, -0.02296670526266098, 0.04437790811061859, 0.031709130853414536, 0.04434679448604584, 0.0017066837754100561, 0.03331061452627182, 0.015569073148071766, -0.005143802613019943, -0.0000933541523409076, 0.01786268688738346, -0.017806703224778175, -0.01596749573945999, -0.056062616407871246, -0.07405010610818863, 0.04072994366288185, -0.045101605355739594, -0.014711176976561546, -0.011663259007036686, 0.06491570174694061, 0.010892126709222794, 0.06227464973926544, 0.008252225816249847, -0.07085591554641724, 0.02784872241318226, -0.0004356600984465331, 0.0299419853836298, 0.01681966707110405, 0.008124717511236668, 0.06247808784246445, 0.06375975906848907, -0.02673112042248249, 0.012878221459686756, -0.06644487380981445, -0.08086525648832321, -0.058768488466739655, 0.011344748549163342, 0.04666755348443985, -0.032145023345947266, -0.018442558124661446, 0.07237311452627182, 0.03913375735282898, 0.018921000882983208, 0.03518370911478996, -0.02636473812162876, 0.009368104860186577, -0.0310751311480999, -0.04546163231134415, 0.024202745407819748, 0.040333956480026245, -0.016809063032269478, -0.026327550411224365, 0.01223701797425747, -0.026914717629551888, 0.011964898556470871, 0.0067519135773181915, -0.02492888830602169, 0.04755067452788353, 0.024099988862872124, 0.00210200366564095, -0.04600630700588226, 0.06856900453567505, -0.059769339859485626, 0.022039681673049927, -0.0008683808846399188, -0.004554416052997112, 0.0019584328401833773, -0.00448096776381135, 0.12022167444229126, 0.04677047207951546, -0.019906392320990562, -0.05194483697414398, 0.017083458602428436, 0.004743166267871857, -0.05948798358440399, -0.021129177883267403, -0.0008698023739270866, -0.012015522457659245, 0.00976514257490635, -0.04393257945775986, -0.02563314326107502, 0.010345883667469025, -0.030446017161011696, 0.005604179576039314, 0.0691450834274292, -0.02517923153936863, 0.046990767121315, 0.0166116114705801, -0.040854811668395996, -0.0030221305787563324, -0.02099752612411976, -0.04531914368271828, -0.009158261120319366, 0.0328892320394516, -0.009081981144845486, 0.04893225431442261, -0.053411394357681274, -0.009951719082891941, -0.010103978216648102, -0.04923098534345627, 0.0017467578873038292, 0.0398387536406517, 0.06687958538532257, -0.03551679104566574, 0.04402054846286774, 0.0006440408760681748, 0.006830345373600721, -0.024738630279898643, -0.04048239812254906, -0.002537815598770976, 0.011943412944674492, -0.0010688717011362314, 0.03232831507921219, 0.011549805290997028, 0.016502661630511284, 0.01632891409099102, -0.0012387456372380257, -0.02233215793967247, -0.0019219599198549986, 0.04679466784000397, 0.004811285994946957, -0.006674365606158972, -0.03573562949895859, -0.02838919125497341, 0.03189989924430847, -0.059336788952350616, -0.041402921080589294, 0.03410924971103668, -0.09338966757059097, 0.040567655116319656, -0.05707201734185219, -0.06141572445631027, 0.00850725919008255, 0.015638843178749084, 0.05551812797784805, -0.0048600612208247185, 0.016606660559773445, 0.07346236705780029, 0.01843208074569702, 0.015018926002085209, 0.004219088703393936, 0.023330818861722946, 0.024126878008246422, 0.0014996003592386842, -0.0007242207648232579, 0.03214339166879654, 0.01385266799479723, -0.003259912831708789, -0.04429292678833008, 0.041651651263237, -0.023340797051787376, -0.2766292989253998, 0.04835457727313042, -0.0067638433538377285, -0.046372734010219574, 0.06210576370358467, -0.01811232604086399, 0.030918210744857788, -0.06114537641406059, -0.02534949593245983, 0.05590374395251274, -0.024785980582237244, -0.03689304739236832, -0.022338267415761948, 0.06361328810453415, -0.007014438044279814, -0.003508675144985318, 0.011046525090932846, -0.040868811309337616, 0.03971479833126068, 0.05077720806002617, 0.00014590412320103496, -0.06568083167076111, 0.010782621800899506, 0.06051577255129814, 0.03403652459383011, 0.06500522047281265, -0.07903804630041122, 0.05517641082406044, -0.00874337088316679, -0.004255309235304594, 0.006236119661480188, -0.027645720168948174, -0.012173476628959179, -0.024230988696217537, -0.032007694244384766, 0.0014456548960879445, 0.016313835978507996, 0.03162886202335358, 0.01160704717040062, 0.02391238324344158, -0.05120505020022392, -0.0591798759996891, -0.024716103449463844, -0.026104461401700974, 0.057478856295347214, -0.009334801696240902, -0.053245820105075836, -0.006621898617595434, -0.031201330944895744, 0.08691690862178802, -0.06461025029420853, -0.03063676320016384, -0.012280099093914032, 0.032202355563640594, 0.00332761462777853, -0.026137039065361023, -0.011832302436232567, -0.010248822160065174, -0.019546102732419968, -0.04116251692175865, -0.0043363310396671295, -0.029064107686281204, -0.034609757363796234, -0.04017910733819008, 0.0007260105921886861, -0.09599178284406662, -0.04342591390013695, -0.010425975546240807, 0.08036946505308151, 0.03504791483283043, -0.021978028118610382, -0.0005164634203538299, 0.0008286923402920365, -0.1217452809214592, 0.019573397934436798, -0.01656157895922661, -0.026272138580679893, -0.023675277829170227, 0.002597021171823144, 0.027098333463072777, -0.053310826420784, -0.02404838614165783, 0.034425463527441025, 0.003954130224883556, 0.03857849910855293, -0.028434239327907562, 0.025248153135180473, 0.0038933076430112123, -0.012646647170186043, -0.02041008323431015, 0.07946570962667465, -0.0022822341416031122, -0.014740465208888054, -0.07410091906785965, 0.03168947622179985, 0.06322141736745834, 0.020400162786245346, 0.020799940451979637, 0.018891602754592896, 0.014894340187311172, 0.0625736340880394, -0.025393599644303322, 0.02809007652103901, -0.0464463010430336, 0.022366315126419067, -0.029543086886405945, -0.07375162094831467, 0.03771595656871796, -0.006532427854835987, 0.02131112664937973, -0.03127448633313179, -0.04002901166677475, 0.012488646432757378, -0.052121203392744064, -0.028939947485923767, -0.001534939743578434, 0.005508283618837595, 0.029227804392576218, -0.02831987291574478, -0.015929289162158966, -0.045894671231508255, 0.03870195522904396, 0.02285403199493885, -0.034125179052352905, -0.03919034078717232, -0.058235906064510345, -0.044350963085889816, 0.004420516546815634, 0.012913419865071774, -0.0026832018047571182, -0.008951768279075623, 0.03635004162788391, 0.014590766280889511, -0.012894725427031517, 0.005611825734376907, -0.029912389814853668, -0.011006085202097893, -0.037132252007722855, -0.003107356606051326, 0.015971969813108444, -0.011370965279638767, -0.017719293013215065, 0.018548889085650444, 0.006495706737041473, 0.014598056674003601, -0.013452012091875076, 0.044266100972890854, 0.01066241879016161, -0.006568376440554857, -0.00775026623159647, 0.0030659392941743135, -0.09637267887592316, 0.005525355692952871, -0.04314766451716423, -0.047740716487169266, 0.01263626478612423, 0.02216658554971218, -0.001171502866782248, -0.019458375871181488, -0.03126612305641174, 0.024866262450814247, -0.059182651340961456, -0.011621120385825634, 0.009542508982121944, -0.02728240191936493, 0.06971286982297897, -0.02395159937441349, 0.038963716477155685, -0.016052301973104477, -0.042829111218452454, -0.0011347957188263535, -0.00306523684412241, -0.027310073375701904, 0.03862915188074112, 0.03178906813263893, 0.01795237325131893, 0.020434070378541946, 0.00970914214849472, 0.03282548487186432, 0.02124733105301857, 0.007175135426223278, -0.02594796009361744, 0.011786682531237602, 0.011846647597849369, 0.05358472093939781, 0.011644979938864708, 0.007895668968558311, -0.006998362485319376, -0.03624479100108147, -0.02627583220601082, -0.04938351362943649, -0.01905788667500019, -0.0012517201248556376, 0.025423603132367134, -0.035542454570531845, -0.06986383348703384, 0.0384649783372879, 0.03181483969092369, 0.01581801101565361, 0.02181498520076275, 0.00351804425008595, 0.014874201267957687, -0.01466894056648016, 0.029374634847044945, 0.04831371456384659, -0.06824924796819687, -0.002761975396424532, 0.0013461794005706906, 0.02321099489927292, 0.015104814432561398, -0.011913617141544819, -0.0307824295014143, -0.008547157049179077, -0.03295741230249405, -0.023248285055160522, -0.03959719091653824, -0.024208111688494682, -0.048245951533317566, 0.03445373848080635, -0.000542745809070766, -0.030876779928803444, 0.0070450580678880215, 0.0008978588157333434, -0.03773803263902664, -0.02341245859861374, 0.005449218209832907, -0.040460240095853806, -0.008425043895840645, 0.024874091148376465, -0.016235683113336563, 0.020524093881249428, -0.00975426472723484, 0.03794486075639725, 0.02908848039805889, -0.024877989664673805, -0.04005161672830582, -0.021863069385290146, 0.010774468071758747, 0.023097937926650047, 0.030828433111310005, 0.006402721628546715, -0.014822478406131268, -0.01942872814834118, -0.004165753722190857, -0.021567435935139656, 0.007694190833717585, -0.028379399329423904, 0.006877270992845297, 0.021921345964074135, 0.053441595286130905, 0.030612174421548843, 0.055197104811668396, 0.012164482846856117, -0.00987145584076643, 0.07800742238759995, -0.0570097416639328, -0.043471574783325195, -0.029525799676775932, -0.05570617690682411, 0.022995615378022194, 0.011641805991530418, 0.04241533949971199, -0.04734420031309128, 0.049749843776226044, 0.03803573176264763, -0.02012205682694912, 0.03887707740068436, -0.005275945644825697, 0.03834626451134682, -0.02157599851489067, 0.003166352631524205, -0.08188237249851227, -0.0024009605403989553, 0.04715344309806824, 0.02734156884253025, -0.0013492300640791655, -0.03837447986006737, -0.027618443593382835, 0.025858541950583458, -0.0574444942176342, -0.0034625567495822906, 0.043355755507946014, -0.03693506121635437, -0.026197975501418114, 0.016733432188630104, -0.07306225597858429, 0.02866576984524727, 0.02090824954211712, -0.022693609818816185, -0.037977639585733414, -0.03197917714715004, 0.04934366047382355, 0.03089074045419693, 0.0036422149278223515, -0.026186160743236542, 0.004735936876386404, 0.05473103001713753, -0.0012789350003004074, 0.013657388277351856, 0.04213860258460045, -0.0035922727547585964, 0.029497122392058372, 0.04675744101405144, -0.005731397308409214, 0.00686615752056241, 0.0068638743832707405, -0.016997233033180237, -0.049374792724847794, 0.006141806021332741, 0.01931220106780529, -0.036351993680000305, -0.03369135409593582, 0.05605928599834442, 0.020870383828878403, -0.05268315225839615, -0.0491163544356823, 0.01805512048304081, -0.014688977971673012, -0.035751450806856155, -0.033682167530059814, 0.007357869762927294, -0.03765258193016052, 0.04773024097084999, 0.0036328728310763836, -0.0013566554989665747, 0.05533123016357422, 0.009968122467398643, -0.03270671144127846, -0.02070176601409912, 0.07903183996677399, 0.07789159566164017, 0.021958868950605392, 0.015349120832979679, 0.05137038975954056, -0.030054081231355667, -0.037135589867830276, 0.02578391507267952, -0.029583672061562538, -0.027823250740766525, -0.019427038729190826, -0.013143354095518589, 0.08511822670698166, -0.0007933032466098666, 0.0744028314948082, -0.02416430599987507, 0.007706001866608858, 0.01611338183283806, 0.08009606599807739, -0.010562162846326828, 0.02688559517264366, 0.011822360567748547, -0.005211814772337675, -0.002439396223053336, -0.049379635602235794, 0.02721455506980419, -0.04006974771618843, -0.0026168692857027054, 0.02685614302754402, 0.016781048849225044, -0.00532482611015439, 0.00448226323351264, 0.02213825099170208, 0.04159698262810707, -0.014312018640339375, 0.005884440150111914, 0.00016954731836449355, 0.02434404566884041, 0.026967868208885193, -0.0038728483486920595, -0.016258612275123596, -0.03914184123277664, 0.0020679738372564316, -0.027338078245520592, 0.003655772190541029, -0.0009013568051159382, -0.01036443654447794, 0.017089204862713814, -0.021027909591794014, 0.0332757942378521, 0.018795881420373917, 0.022421684116125107, -0.04979738965630531, -0.06796377897262573, -0.05347764864563942, -0.03752237185835838, -0.0353085994720459, -0.009680613875389099, 0.02117733843624592, -0.01321189384907484, -0.03253569081425667, -0.023900695145130157, -0.03800126910209656, -0.04762784019112587, 0.04373617097735405, -0.03389368951320648, -0.030461067333817482, 0.016172220930457115, 0.022292666137218475, 0.013249115087091923, 0.029215434566140175, 0.052941326051950455, -0.01613106206059456, -0.005509836133569479, -0.03312285616993904, -0.006002489943057299, 0.05457482486963272, 0.011425724253058434, 0.003172303317114711, -0.08508896827697754, 0.024943770840764046, 0.03348052129149437, 0.009402790106832981, -0.047671426087617874, 0.015668613836169243, 0.04488242790102959, -0.008823391981422901, 0.04618654027581215, -0.019961394369602203, -0.00899626687169075, -0.010017027147114277, -0.014627117663621902, 0.01824149116873741, 0.0035274627152830362, 0.06947271525859833, -0.017538338899612427, 0.07077771425247192, 0.07173830270767212, -0.007279605604708195, -0.03523532673716545, -0.011627109721302986, 0.0033702123910188675, -0.010031980462372303, -0.02027849480509758, -0.027896009385585785, -0.03534305840730667, -0.07291369140148163, -0.013398215174674988, 0.022177623584866524, -0.013953432440757751, -0.02913191169500351, 0.00920767430216074, 0.035482339560985565, -0.03468191251158714, 0.0012624390656128526, -0.021221136674284935, 0.037265293300151825, -0.03070400282740593, -0.029356688261032104, 0.008600561879575253, 0.0024936553090810776, -0.003906974568963051, 0.001954231411218643, 0.0027018380351364613, -0.017687100917100906, -0.012385320849716663, 0.019517317414283752, 0.04102594032883644, 0.06040795147418976, -0.0018743156688287854, -0.025899816304445267 ]
[ -0.10550227016210556, -0.007867195643484592, -0.052582986652851105, -0.060078464448451996, 0.018871452659368515, -0.052990179508924484, 0.010510302148759365, 0.019699327647686005, 0.006364435888826847, -0.024955933913588524, -0.0004211064660921693, -0.031304262578487396, -0.00425666244700551, 0.0005458121886476874, 0.08948387950658798, -0.026568204164505005, -0.022721754387021065, -0.0446004793047905, -0.0026583950966596603, 0.024339893832802773, 0.033401139080524445, -0.015012755990028381, -0.050721392035484314, -0.059174567461013794, 0.008254249580204487, 0.03565797954797745, 0.06166418269276619, -0.05023050308227539, -0.008990739472210407, -0.20089486241340637, 0.022038079798221588, -0.02522938884794712, 0.009515466168522835, -0.029494386166334152, -0.027844766154885292, 0.03446933999657631, 0.02432849630713463, 0.003642295952886343, -0.023983843624591827, 0.03241700306534767, -0.0029715863056480885, 0.03631000965833664, -0.05009457468986511, -0.009339703246951103, 0.014224003069102764, -0.006562966387718916, -0.002984503284096718, -0.043525055050849915, 0.017846595495939255, 0.004654343705624342, -0.07519104331731796, 0.013045107945799828, 0.017804741859436035, -0.032597653567790985, -0.014298542402684689, -0.03228095918893814, 0.052749257534742355, 0.061541490256786346, 0.0030591627582907677, -0.007756546139717102, -0.006258520297706127, -0.018258774653077126, -0.13102658092975616, 0.07919299602508545, 0.03272940590977669, 0.03907867148518562, 0.01667041704058647, -0.021416690200567245, 0.03072734922170639, 0.07773183286190033, 0.00005150076322024688, -0.0009619735064916313, -0.04153117537498474, 0.06310980021953583, 0.01664530672132969, -0.0435853973031044, 0.0050226547755301, 0.046048007905483246, 0.04466864839196205, -0.025039002299308777, -0.07011213153600693, -0.046855486929416656, 0.022083228453993797, -0.0015851405914872885, -0.05310841277241707, 0.018469301983714104, -0.008857703767716885, 0.049073852598667145, 0.0200473815202713, 0.011308323591947556, 0.03215101733803749, -0.00392951862886548, 0.050139229744672775, 0.01124320924282074, -0.08320818841457367, 0.027557164430618286, -0.024951575323939323, 0.02998347580432892, -0.025331879034638405, 0.42524421215057373, -0.02300327457487583, -0.03511618450284004, 0.03363490849733353, 0.03078635409474373, 0.019027378410100937, 0.006787332706153393, 0.0029450170695781708, -0.03197435662150383, -0.003856234485283494, -0.021594928577542305, 0.014507967978715897, -0.028869234025478363, 0.062222085893154144, -0.03696262463927269, -0.0057510389015078545, 0.04001308232545853, 0.035517141222953796, 0.005581203382462263, -0.0378507561981678, 0.016714967787265778, -0.01045963354408741, 0.010474933311343193, 0.01745547167956829, 0.014264125376939774, 0.02171342633664608, -0.04998129978775978, 0.013947177678346634, 0.052339036017656326, 0.016720574349164963, -0.005070080049335957, 0.053591176867485046, -0.06686574965715408, -0.07827933132648468, -0.007371685933321714, 0.014821858145296574, 0.04213210195302963, 0.02933613955974579, -0.02838471345603466, 0.010645506903529167, 0.02892174758017063, 0.008413312025368214, -0.00911746360361576, 0.024814113974571228, -0.038889169692993164, -0.059774890542030334, 0.08296433091163635, 0.014234079979360104, -0.020542409271001816, -0.023512883111834526, -0.042429547756910324, -0.01088099367916584, 0.038443032652139664, -0.02552732639014721, -0.06896529346704483, 0.009516381658613682, 0.017690258100628853, 0.06365513801574707, 0.0003031888627447188, -0.02439471334218979, -0.024280410259962082, -0.03458559885621071, 0.003576748538762331, -0.058313339948654175, 0.037204958498477936, 0.06215020641684532, -0.0554194375872612, -0.03385300189256668, 0.015019177459180355, 0.02467496320605278, -0.04581679776310921, -0.019586481153964996, 0.018683994188904762, -0.03482826426625252, -0.02280925028026104, 0.03932608291506767, -0.023296773433685303, -0.010176243260502815, 0.029636548832058907, 0.030154462903738022, 0.0388268381357193, 0.019396444782614708, 0.020568663254380226, -0.04871352016925812, 0.004803634248673916, -0.008034889586269855, -0.08555112034082413, -0.06221979111433029, -0.003387926146388054, -0.03481217473745346, 0.0003854052920360118, -0.04721697419881821, -0.022031353786587715, -0.09433402121067047, 0.08601716160774231, -0.0011706260265782475, -0.0371331088244915, 0.00714890006929636, -0.0031893360428512096, -0.005644126329571009, -0.022879041731357574, 0.01864425279200077, 0.05500684306025505, -0.02812790684401989, 0.028365278616547585, -0.04620321840047836, 0.040233511477708817, 0.025405097752809525, -0.03541870415210724, 0.05338504910469055, 0.03644833341240883, -0.051601819694042206, -0.02808031626045704, 0.010443546809256077, 0.02252216823399067, -0.03975604102015495, -0.03639303892850876, -0.021363617852330208, 0.014192204922437668, 0.03655552864074707, -0.0027351058088243008, -0.04038136079907417, -0.028050905093550682, -0.0030679928604513407, -0.3497151732444763, -0.019237060099840164, -0.0035368127282708883, -0.01627916842699051, 0.03149018436670303, -0.0380081832408905, 0.026143878698349, -0.029872136190533638, -0.008143825456500053, -0.02222101390361786, 0.07304087281227112, -0.005919099785387516, 0.008349671959877014, -0.08069553971290588, 0.02134544774889946, 0.019018806517124176, -0.04825444519519806, -0.04362470656633377, -0.04275381937623024, 0.010722266510128975, 0.009833651594817638, 0.019133973866701126, -0.0021729199215769768, -0.04657880589365959, 0.004158308729529381, -0.025259457528591156, 0.0919966772198677, -0.004761228337883949, 0.115663081407547, -0.03431111201643944, 0.047395430505275726, 0.010388650000095367, 0.009012462571263313, -0.10295139998197556, -0.010051778517663479, -0.024072185158729553, -0.04309174045920372, 0.010843957774341106, 0.06305359303951263, 0.0013011388946324587, -0.036352984607219696, 0.009644116275012493, -0.06798113882541656, -0.0553554967045784, -0.009559703059494495, 0.0019761843141168356, -0.0075073945336043835, -0.05068717524409294, 0.01093316450715065, 0.05437297001481056, -0.015304754488170147, -0.024437474086880684, -0.013222580775618553, 0.012639934197068214, 0.010640562511980534, -0.03273472189903259, -0.06029793620109558, 0.02003515511751175, 0.01805504411458969, 0.011559784412384033, 0.03261180967092514, 0.080915167927742, 0.016554193571209908, -0.052071891725063324, 0.004151603672653437, 0.02472059242427349, -0.0002127114130416885, 0.007608819752931595, 0.08034630119800568, -0.044477660208940506, -0.00797509029507637, 0.1084379330277443, 0.007478995248675346, 0.02963312156498432, 0.0462263822555542, 0.05540316924452782, 0.003307990962639451, -0.021904174238443375, -0.0059900968335568905, 0.003881851676851511, 0.003813235554844141, 0.009592419490218163, 0.04329958185553551, -0.01833878643810749, -0.015995752066373825, 0.042152274399995804, -0.02414311096072197, -0.004557488951832056, 0.06381157785654068, 0.001737111364491284, -0.04017609357833862, -0.008646804839372635, -0.024899093434214592, -0.05577625334262848, 0.04311330243945122, -0.022117823362350464, -0.2584112882614136, 0.019671648740768433, 0.030803004279732704, 0.05840734764933586, -0.014370908960700035, 0.02134241908788681, 0.04691872373223305, -0.06796490401029587, -0.020654603838920593, 0.043448593467473984, 0.0337202325463295, 0.007838227786123753, 0.00498419301584363, 0.008088894188404083, 0.05873459577560425, 0.03267475962638855, 0.03889434039592743, 0.012679864652454853, 0.04911062866449356, -0.034399792551994324, -0.005295134615153074, 0.0004949526628479362, 0.1652669757604599, -0.001537640462629497, 0.0297094639390707, 0.045599281787872314, 0.02196696028113365, 0.02370230108499527, 0.09762749820947647, 0.03393758833408356, 0.003929527010768652, 0.0035427482798695564, 0.0701027512550354, -0.011868167668581009, 0.03819403797388077, -0.0885789543390274, -0.03089589811861515, 0.029694296419620514, 0.029286179691553116, 0.01713537983596325, -0.02255033701658249, 0.025577062740921974, -0.028329627588391304, 0.004052828531712294, 0.08679014444351196, 0.012096961960196495, -0.006138048600405455, -0.04376944899559021, -0.03111199289560318, 0.008058966137468815, -0.02195695973932743, -0.01734965294599533, 0.022618219256401062, -0.012898019514977932, 0.025195321068167686, 0.07654917985200882, 0.0032020879443734884, -0.02799760177731514, -0.038755692541599274, 0.020560432225465775, 0.008029338903725147, -0.012255118228495121, 0.15445229411125183, 0.015636632218956947, 0.020686406642198563 ]
[ -0.02453087456524372, 0.010774784721434116, -0.02726290188729763, -0.04315899312496185, -0.018354177474975586, 0.011552775278687477, 0.006966182496398687, 0.054612286388874054, -0.011400002986192703, -0.029462523758411407, -0.03995589166879654, 0.009872885420918465, 0.028638921678066254, -0.01695677638053894, 0.012316681444644928, -0.059804752469062805, 0.0035242794547230005, -0.0003028813225682825, 0.028528057038784027, -0.020071178674697876, 0.004861081019043922, 0.028369344770908356, 0.017440160736441612, -0.03179274871945381, -0.010700943879783154, 0.021958818659186363, 0.00034456606954336166, -0.03862864524126053, 0.0010768590727820992, -0.14165519177913666, -0.012166549451649189, -0.022746475413441658, -0.006771526299417019, -0.03608144074678421, -0.021289333701133728, 0.0034446287900209427, 0.03196877986192703, 0.03149282559752464, 0.0017617036355659366, -0.008631161414086819, -0.0013048398541286588, -0.009567384608089924, -0.004395726602524519, 0.019293267279863358, 0.010243508964776993, -0.01860637590289116, -0.0010415837168693542, -0.03873097151517868, -0.011798742227256298, 0.00016226082516368479, -0.055535200983285904, -0.026199229061603546, 0.016301585361361504, 0.028042590245604515, 0.035675037652254105, -0.03861178085207939, -0.0038192656356841326, 0.005549679044634104, -0.01686817966401577, -0.016291070729494095, -0.014546209946274757, 0.015370894223451614, -0.025978008285164833, -0.010834787972271442, -0.0023493561893701553, -0.022349290549755096, 0.01647966541349888, 0.028635580092668533, 0.024833552539348602, -0.017502499744296074, -0.011482445523142815, 0.027152810245752335, -0.01161552406847477, 0.0007319821743294597, -0.034504495561122894, -0.006051130127161741, -0.0005768185947090387, 0.012465205043554306, 0.03636466711759567, -0.01070935558527708, -0.010569627396762371, 0.003357171779498458, -0.010757608339190483, 0.0038483478128910065, -0.017464255914092064, 0.024425815790891647, -0.011095148511230946, -0.003944666590541601, 0.02783401496708393, 0.027333253994584084, -0.01955387182533741, 0.019954612478613853, 0.006820946466177702, 0.011944550089538097, -0.08629778772592545, 0.012496784329414368, -0.014928185380995274, -0.018066247925162315, 0.009388466365635395, 0.8505823612213135, -0.009403358213603497, 0.04427273944020271, 0.06885331124067307, 0.0049765221774578094, 0.03176649287343025, -0.005307737272232771, -0.016885191202163696, -0.012682157568633556, 0.05305393040180206, -0.07275503873825073, 0.025514598935842514, -0.00586981326341629, 0.03365107625722885, 0.03616621717810631, 0.0006170100532472134, 0.00928379874676466, 0.04245857894420624, -0.0046895937994122505, -0.0030414166394621134, 0.013388346880674362, 0.013813624158501625, -0.006466960068792105, 0.02119387313723564, 0.021844375878572464, 0.0003294085036031902, -0.15249419212341309, 0.021832479164004326, -8.070337363787214e-33, 0.04299718141555786, -0.057841356843709946, 0.04140501841902733, 0.012744467705488205, -0.00800187699496746, 0.010173313319683075, 0.04565289616584778, 0.03655945137143135, 0.0010379970772191882, -0.06490660458803177, 0.0035140023101121187, -0.049690477550029755, 0.025997713208198547, -0.01709717884659767, -0.0005418087239377201, -0.007889586500823498, -0.01402611006051302, 0.03301910310983658, 0.004215308930724859, 0.039481207728385925, 0.03644632548093796, 0.05158877745270729, -0.012810292653739452, -0.017445603385567665, -0.017735878005623817, 0.01737852394580841, 0.02470344305038452, 0.00925766583532095, 0.006560755427926779, -0.039546139538288116, 0.019977839663624763, 0.013421351090073586, -0.029937878251075745, -0.020391419529914856, 0.02784084714949131, -0.04053245857357979, 0.0005050436593592167, 0.009569461457431316, -0.029424691572785378, -0.05913815274834633, -0.0462951585650444, -0.01246168464422226, -0.009479783475399017, 0.01995650865137577, 0.0012218427145853639, -0.055347949266433716, -0.013303684070706367, -0.009243412874639034, 0.020505093038082123, 0.022672139108181, -0.002966169500723481, 0.02361660823225975, 0.01715424656867981, -0.010839829221367836, -0.025004496797919273, 0.009623809717595577, 0.017091792076826096, 0.0397142730653286, -0.01109266746789217, 0.04833424463868141, -0.0091056814417243, 0.0003938939480576664, -0.03276988863945007, 0.022964324802160263, -0.004819166846573353, -0.0018670664867386222, -0.003427561605349183, -0.04383624345064163, 0.02709008939564228, 0.022109217941761017, -0.036939721554517746, -0.020625267177820206, -0.013798313215374947, -0.0160417091101408, 0.0025037811137735844, 0.0056824530474841595, -0.002816998865455389, -0.003132226411253214, -0.032786037772893906, 0.007097558118402958, 0.02760516107082367, -0.005630610045045614, -0.00018882713629864156, -0.008559368550777435, -0.0035231432411819696, 0.012400656938552856, 0.0065910289995372295, -0.031307533383369446, 0.01625520922243595, 0.008331243880093098, 0.03837636485695839, 0.045437041670084, -0.012234278954565525, -0.004712207708507776, -0.015719695016741753, 8.152273728143343e-33, 0.014672638848423958, 0.006774426903575659, -0.02781466394662857, 0.015818504616618156, 0.03790174797177315, 0.0008809545543044806, 0.03304033726453781, 0.023818930611014366, -0.03715110197663307, 0.001533416099846363, -0.045194219797849655, 0.026037171483039856, -0.002158957999199629, 0.03463831916451454, 0.06709106266498566, -0.0174116063863039, 0.026988619938492775, -0.02035009115934372, 0.0074260663241147995, -0.008390707895159721, 0.015242049470543861, 0.002014042343944311, 0.04386947304010391, 0.006886329967528582, 0.030518773943185806, 0.029454758390784264, -0.03944980353116989, 0.04026485234498978, -0.004037902690470219, 0.01032079104334116, 0.008252469822764397, -0.011312571354210377, -0.021522371098399162, -0.03549298644065857, -0.014185751788318157, 0.002561585744842887, -0.002912200288847089, 0.011375929228961468, 0.025677744299173355, 0.010465137660503387, 0.014958412386476994, -0.03265507519245148, -0.00009500979649601504, 0.018110066652297974, 0.017847944051027298, 0.025776460766792297, -0.008040564134716988, -0.0032123280689120293, -0.016200730577111244, 0.013595856726169586, -0.007473096251487732, 0.004423083271831274, 0.013720803894102573, 0.0027612955309450626, 0.04022487252950668, -0.022802861407399178, -0.030917707830667496, 0.03926302492618561, 0.0032569332979619503, 0.011983866803348064, 0.019312873482704163, -0.02684037759900093, -0.028940262272953987, 0.016977258026599884, -0.025112560018897057, -0.008705112151801586, 0.005353450309485197, -0.013843885622918606, -0.021251510828733444, -0.00757313147187233, 0.00019361238810233772, -0.0031288284808397293, 0.0033265454694628716, 0.04807288199663162, 0.034735292196273804, -0.03592577949166298, -0.016935743391513824, -0.02261151373386383, -0.034043144434690475, 0.022129638120532036, 0.015629472211003304, 0.008301286026835442, -0.005631724838167429, 0.006974758114665747, 0.02913828194141388, 0.013981821946799755, -0.013957874849438667, -0.011595933698117733, -0.005800159182399511, -0.03498700633645058, -0.006719818338751793, 0.011608293280005455, -0.01751568727195263, -0.0015697302296757698, 0.022366827353835106, -1.3270710752522064e-8, 0.021204352378845215, -0.0234488844871521, -0.01334183756262064, 0.02593632973730564, 0.028554365038871765, 0.016791608184576035, -0.057591866701841354, -0.02181410603225231, -0.019116831943392754, 0.00264304643496871, 0.027608195319771767, -0.01577061228454113, 0.018872255459427834, 0.016201293095946312, 0.018124336376786232, -0.044193945825099945, -0.004937916528433561, -0.02565242536365986, 0.006652746815234423, 0.0030418247915804386, 0.03986329212784767, 0.015250928699970245, -0.0156994741410017, 0.013718636706471443, -0.015980705618858337, 0.0025665638968348503, 0.04447432979941368, -0.06292594969272614, 0.01882108673453331, -0.010770854540169239, 0.008453776128590107, -0.02635406143963337, 0.0013780436711385846, 0.003075137734413147, -0.023156438022851944, -0.015399448573589325, -0.013335692696273327, 0.04279861971735954, 0.025982674211263657, 0.006407450884580612, -0.030505038797855377, -0.012240579351782799, 0.010682988911867142, -0.019512973725795746, -0.007860147394239902, -0.016392670571804047, -0.007964419201016426, 0.041165679693222046, 0.00296386843547225, -0.02656368911266327, -0.009681026451289654, 0.014001038856804371, 0.007948622107505798, -0.004337985999882221, 0.010886185802519321, -0.011422055773437023, 0.018893267959356308, -0.054557185620069504, -0.03596746176481247, 0.011004730127751827, 0.06369606405496597, 0.0031898650340735912, -0.03734704107046127, -0.025826286524534225 ]
java-faking-system-in
https://markhneedham.com/blog/2011/03/24/java-faking-system-in
false
2011-03-23 18:45:59
ThoughtWorks University: Brain dumping
[ "thoughtworks-university" ]
[ "ThoughtWorks University" ]
One of the things that I'm learning while working at ThoughtWorks University is to bite my tongue a bit to allow people to learn in their own way. I noticed this particularly yesterday in a refactoring session we were doing. For about 10-15 minutes in the middle of the session we'd managed to get the code into a state where it didn't compile and we couldn't run the tests. The 'natural' inclination in that situation for me would be to step in and impart some 'wisdom' about the importance of taking small steps while refactoring. Instead we kept on going for another 10 minutes or so until one of the guys pointed out that the code hadn't compiled and nor had our system test been run for quite a while. With some prodding from http://twitter.com/frankmt[Frankie] the pair at the keyboard made some temporary changes to the application so that it'd compile and then completed the rest of the refactoring in a more incremental fashion. Of course the other side of the coin is to ensure that I do actually give some input when it's useful. The key here seems to be to ensure only to give enough input for the situation. I've learnt quite a lot about some topics and with the amount of stories I've picked up and the analogies/metaphors I've picked up *it can easily become a brain dump if you're not careful*. From my own experience this style of receiving information isn't particularly easy to digest, especially if you don't have any context to link the stories to. The other danger with telling stories is that one story can often trigger another trainer to tell their own story and before you know it 30 minutes has gone by and the original point has long been lost!
null
null
[ 0.026405204087495804, -0.00555955246090889, -0.014476041309535503, 0.04360983148217201, 0.08595477044582367, 0.035108163952827454, 0.03845707327127457, 0.036304961889982224, 0.016358496621251106, -0.019418522715568542, -0.028905509039759636, 0.005252361763268709, -0.05303085595369339, 0.0028427510987967253, -0.02826276794075966, 0.07052851468324661, 0.056930139660835266, -0.010292049497365952, 0.03284773975610733, 0.013122816570103168, 0.024663863703608513, 0.06731291115283966, 0.019375313073396683, 0.02671366184949875, 0.021519800648093224, 0.01066670287400484, -0.004614237695932388, -0.010307303629815578, -0.05937613546848297, -0.0039400807581841946, 0.04502292349934578, -0.013294796459376812, 0.02403397485613823, -0.014159487560391426, 0.015657654032111168, -0.01813962310552597, -0.009846726432442665, 0.0380820594727993, 0.014227267354726791, 0.01832067035138607, -0.06625880300998688, 0.042579811066389084, -0.00047206252929754555, -0.005608008708804846, -0.04359988495707512, -0.0036985615734010935, -0.037815142422914505, -0.0024864652659744024, -0.007892212830483913, -0.015632977709174156, -0.07784626632928848, 0.040477629750967026, 0.02883538417518139, -0.010992358438670635, -0.012766399420797825, 0.06185588240623474, 0.04257168620824814, -0.08012179285287857, 0.009902183897793293, -0.025614799931645393, -0.015596611425280571, -0.006018280982971191, 0.0060527389869093895, 0.03909049928188324, 0.019222375005483627, -0.03760616108775139, 0.008628606796264648, 0.03575468435883522, -0.04718999192118645, 0.009978115558624268, 0.0071851941756904125, 0.02747715264558792, -0.038960617035627365, -0.018567172810435295, -0.004941998049616814, -0.03790163993835449, 0.016966795548796654, 0.07896260917186737, 0.02734082192182541, 0.04060051590204239, -0.03619171679019928, 0.023514600470662117, 0.02080462872982025, 0.022643625736236572, 0.0032824326772242785, -0.04606419801712036, -0.015157296322286129, -0.019210394471883774, -0.057170722633600235, 0.038827769458293915, 0.01291241217404604, -0.05842093005776405, 0.01903994381427765, 0.030208300799131393, 0.012829125858843327, 0.0380440428853035, 0.02251821756362915, 0.01032857783138752, -0.015065115876495838, -0.0047553665935993195, -0.031691353768110275, -0.02879381738603115, -0.004098423290997744, 0.023969417437911034, -0.07681980729103088, 0.0083770165219903, -0.023566683754324913, -0.02621903456747532, 0.0028175259940326214, 0.009181274101138115, -0.024768047034740448, 0.019045855849981308, -0.02245403826236725, 0.011777146719396114, -0.08099129796028137, 0.05229872092604637, 0.002147822408005595, -0.033440954983234406, -0.031106023117899895, -0.01212984323501587, 0.046951308846473694, 0.034947607666254044, 0.007475868333131075, 0.08687140792608261, -0.0009087818907573819, 0.014408542774617672, -0.03508836776018143, 0.04858391731977463, -0.014642545022070408, -0.0590825192630291, -0.0021048118360340595, 0.04297364130616188, -0.022985314950346947, -0.016370685771107674, 0.010782776400446892, -0.008850553072988987, -0.0006680273218080401, 0.008824140764772892, 0.016984807327389717, 0.047377459704875946, 0.008464944548904896, -0.03289548307657242, 0.021841220557689667, 0.011712770909070969, 0.0002777797926682979, 0.0028791725635528564, -0.009397570975124836, -0.009115070104598999, -0.026330064982175827, -0.022342314943671227, -0.0005240982864052057, 0.02682078257203102, 0.011038760654628277, -0.039077311754226685, 0.04587695375084877, 0.08140137791633606, -0.005081910640001297, -0.00559318158775568, -0.012469065375626087, 0.039267223328351974, 0.025589212775230408, 0.04057899862527847, -0.004474389832466841, 0.018956637009978294, 0.020821588113904, -0.013813741505146027, -0.010925126262009144, 0.023692455142736435, -0.01333798561245203, 0.009748971089720726, -0.06060405075550079, -0.02508789673447609, 0.06229059025645256, -0.06579667329788208, -0.03991430997848511, 0.036993272602558136, 0.07841139286756516, 0.027993669733405113, 0.021715598180890083, -0.011720423586666584, -0.06824297457933426, 0.02127707004547119, -0.0023735552094876766, 0.024906735867261887, 0.009858434088528156, -0.0334940031170845, 0.05527456849813461, 0.01827538013458252, 0.0013823090121150017, 0.024108493700623512, -0.07088024169206619, -0.09159989655017853, -0.019067851826548576, -0.018455233424901962, 0.0570097491145134, -0.01535855047404766, 0.019810009747743607, 0.06815718114376068, 0.009980599395930767, 0.05368097871541977, 0.048042114824056625, 0.0010772454552352428, -0.002678323769941926, -0.05006717890501022, -0.02303299680352211, 0.04876257851719856, 0.03765928000211716, -0.02886873297393322, -0.06928764283657074, 0.011655875481665134, -0.023649560287594795, -0.011175102554261684, 0.05857253447175026, -0.009580690413713455, 0.02306908369064331, 0.021985121071338654, 0.04474014788866043, -0.03928981348872185, 0.05025383085012436, -0.04950465261936188, 0.001936531625688076, 0.014462337829172611, -0.004813834093511105, -0.004092910792678595, -0.002424170495942235, 0.10178451240062714, 0.05636625736951828, -0.051004812121391296, -0.039599522948265076, -0.000461787887616083, -0.005802209489047527, -0.07248549908399582, -0.016891278326511383, -0.02161070518195629, 0.01638287864625454, -0.006949768401682377, -0.06587551534175873, -0.03291204199194908, 0.03842996060848236, -0.04885495454072952, 0.009241027757525444, 0.07379348576068878, -0.028522683307528496, 0.0519346259534359, 0.012191593647003174, -0.007105323486030102, -0.00905786082148552, -0.014583952724933624, -0.044011227786540985, 0.03291178494691849, 0.02540828473865986, -0.014324977993965149, 0.05003303661942482, -0.025807546451687813, -0.047562357038259506, -0.03125082701444626, -0.03966180607676506, -0.01404481753706932, 0.031506650149822235, 0.08112131059169769, -0.0024774912744760513, 0.06900177150964737, 0.0006459060241468251, 0.03367352485656738, 0.014026882126927376, -0.04202893748879433, -0.022173184901475906, -0.03727944940328598, 0.01118865329772234, 0.03610525280237198, 0.0028167066629976034, 0.006908538285642862, 0.02154044434428215, -0.0007618703530170023, -0.02563871257007122, -0.02369779534637928, 0.028526145964860916, -0.013531227596104145, -0.02333701215684414, -0.03118363581597805, -0.037010759115219116, 0.05483001470565796, -0.05841653421521187, -0.020139213651418686, 0.016620784997940063, -0.05400240048766136, 0.04723995178937912, -0.05075177922844887, -0.0632990226149559, 0.008533007465302944, 0.01534807588905096, 0.0414365716278553, -0.007491748780012131, 0.02107073739171028, 0.0850207582116127, 0.002916453406214714, 0.023500852286815643, -0.03289759159088135, -0.000754206848796457, 0.038803454488515854, 0.006093296222388744, 0.009854249656200409, 0.0219284575432539, 0.02125641703605652, -0.002256255131214857, -0.0354267880320549, 0.03233500197529793, -0.025467075407505035, -0.29763320088386536, 0.031447771936655045, 0.005657603032886982, -0.03774528577923775, 0.02110166661441326, -0.028635986149311066, 0.01807798631489277, -0.0394698791205883, -0.026036184281110764, 0.029454305768013, -0.042348463088274, -0.044848352670669556, -0.03224395960569382, 0.06611229479312897, -0.013252323493361473, 0.030825389549136162, 0.003513290314003825, -0.04948160797357559, 0.0014424188993871212, 0.060326337814331055, -0.006168724969029427, -0.056542810052633286, -0.004714423790574074, 0.045635782182216644, 0.04885546490550041, 0.05219703167676926, -0.09786374121904373, 0.03439444676041603, -0.053527094423770905, -0.004976981785148382, -0.00027483346639201045, 0.002581750974059105, -0.00013178012159187347, -0.026203665882349014, -0.02242320030927658, -0.008057966828346252, 0.03171388432383537, 0.00937858410179615, 0.005971887614578009, 0.004118512850254774, -0.008029698394238949, -0.04901130124926567, -0.009499616920948029, 0.012980537489056587, 0.05711473524570465, -0.009559668600559235, -0.09011965245008469, -0.02241797000169754, -0.02326238341629505, 0.0747944787144661, -0.0407259501516819, -0.045054517686367035, -0.00705284858122468, 0.04478612542152405, 0.012408015318214893, -0.030943039804697037, 0.0017333473078906536, -0.025150062516331673, -0.03864910453557968, -0.04054519534111023, -0.011852341704070568, -0.03395741060376167, -0.009237130172550678, -0.06423674523830414, 0.016134174540638924, -0.06490128487348557, -0.04540363699197769, -0.0009252857998944819, 0.07234469801187515, 0.03236639127135277, -0.036975324153900146, 0.029772713780403137, 0.0032394384033977985, -0.10683659464120865, -0.0055529470555484295, -0.0007820663158781826, -0.03078838437795639, -0.005597188603132963, 0.02779785357415676, 0.051898643374443054, -0.0326816588640213, -0.05213764309883118, 0.030566031113266945, -0.004615395329892635, 0.03023490495979786, -0.011814512312412262, 0.030630001798272133, 0.007327085826545954, -0.0170466136187315, 0.030102698132395744, 0.06315256655216217, 0.017158299684524536, -0.04264822602272034, -0.03082941845059395, 0.024278493598103523, 0.0193425752222538, 0.03026394173502922, -0.00823434628546238, 0.00851586926728487, 0.02393057569861412, 0.0041968850418925285, -0.050004638731479645, 0.032969847321510315, -0.026209235191345215, -0.005828533787280321, -0.004408226348459721, -0.06653293967247009, 0.007196388207376003, 0.035814493894577026, 0.03511183336377144, -0.01782897114753723, -0.028530659154057503, -0.0029377462342381477, -0.031848009675741196, -0.03689166530966759, -0.004401578567922115, 0.019020885229110718, 0.020975710824131966, -0.019407102838158607, -0.0027544882614165545, -0.05086201801896095, 0.010612747631967068, -0.003688828321173787, 0.007135164923965931, -0.048110056668519974, -0.02543286234140396, -0.005474872887134552, -0.023358261212706566, 0.01560844387859106, 0.022830795496702194, -0.017291657626628876, 0.006151094101369381, 0.01120823249220848, -0.02257891185581684, 0.011368788778781891, -0.03418842703104019, -0.039595335721969604, -0.026155969128012657, -0.009523437358438969, 0.0005421603564172983, -0.015829594805836678, 0.05176849663257599, -0.0006652090232819319, 0.006179328076541424, 0.04488629102706909, 0.008295664563775063, 0.029050923883914948, -0.029390908777713776, 0.003705254988744855, -0.0005241829203441739, 0.013337349519133568, -0.08692058175802231, 0.01933448389172554, -0.06145124509930611, -0.026967395097017288, -0.007948044687509537, 0.026743942871689796, -0.024325061589479446, -0.01853819005191326, 0.013894927687942982, 0.005713408812880516, -0.05462360009551048, -0.04039108380675316, -0.02543175406754017, 0.015527809038758278, 0.04450257867574692, -0.027937667444348335, 0.026594124734401703, -0.005825575441122055, -0.011242207139730453, 0.007036352995783091, 0.033047642558813095, -0.05863753706216812, -0.0005510737537406385, 0.04573965445160866, -0.007281223777681589, -0.0026054438203573227, -0.007411994971334934, 0.04716199263930321, 0.014878656715154648, -0.005576390773057938, -0.02819848246872425, 0.013424200005829334, 0.023950543254613876, 0.059025127440690994, 0.008866377174854279, 0.019859077408909798, 0.005007427651435137, -0.032944463193416595, -0.012138311751186848, -0.03849092498421669, -0.008659610524773598, 0.021221823990345, 0.02560875006020069, -0.04004138708114624, -0.06860959529876709, 0.05374091491103172, 0.04004506394267082, 0.025335127487778664, 0.017589394003152847, 0.0067351278848946095, -0.003168433206155896, -0.022160552442073822, 0.030523430556058884, 0.062295299023389816, -0.06120586022734642, 0.0038741319440305233, -0.010417794808745384, 0.015312271192669868, 0.0004869832773692906, -0.009685982018709183, -0.039060499519109726, -0.028780004009604454, -0.04297097399830818, -0.005120691377669573, -0.0579833947122097, -0.02233927510678768, -0.016959497705101967, 0.016976315528154373, -0.005777927581220865, -0.018874378874897957, -0.025817863643169403, -0.012433962896466255, -0.009560608305037022, -0.018367379903793335, 0.0055397143587470055, -0.04473298415541649, 0.015300395898520947, 0.0015372593188658357, -0.03711739927530289, 0.0031781778670847416, -0.025490818545222282, 0.03577476367354393, 0.02829749509692192, -0.011953822337090969, -0.03215395286679268, -0.032109830528497696, 0.015543724410235882, 0.016624383628368378, 0.020757708698511124, 0.004800012335181236, -0.026693709194660187, -0.046748723834753036, -0.00319925625808537, -0.03259610757231712, 0.02465755119919777, -0.03333788365125656, -0.012149757705628872, 0.029299339279532433, 0.043529052287340164, 0.03990030661225319, 0.06708690524101257, -0.006088081747293472, -0.016404306516051292, 0.052801430225372314, -0.07021542638540268, -0.029555371031165123, -0.030198628082871437, -0.054676126688718796, 0.014411905780434608, 0.013382190838456154, 0.030089985579252243, -0.0405050627887249, 0.044147469103336334, 0.005800951737910509, 0.028598656877875328, 0.04440953955054283, -0.005993804894387722, 0.04254543408751488, -0.0396648570895195, -0.002501043025404215, -0.07962892949581146, -0.007249097805470228, 0.04863828048110008, -0.017727281898260117, -0.013701649382710457, -0.022125164046883583, -0.026078935712575912, 0.04885755479335785, -0.057505831122398376, -0.0081032020971179, 0.04899103194475174, -0.01061716116964817, -0.0009486673516221344, 0.015358042903244495, -0.06533795595169067, 0.030874496325850487, 0.02507840096950531, -0.03775790333747864, -0.014638813212513924, -0.03748437762260437, 0.0649653747677803, 0.00653024110943079, 0.04216526076197624, -0.032827649265527725, -0.016788190230727196, 0.05634744092822075, 0.011515490710735321, 0.015632126480340958, 0.056354958564043045, -0.005127434153109789, 0.029951972886919975, 0.05392469838261604, 0.004654146730899811, -0.008773627690970898, 0.020873796194791794, -0.013428976759314537, -0.06609435379505157, 0.02285594493150711, 0.004771359730511904, -0.028770048171281815, -0.03254728019237518, 0.0678263008594513, 0.025076067075133324, -0.021316438913345337, -0.05102558061480522, 0.026141682639718056, -0.0774448961019516, -0.0037130643613636494, -0.019048869609832764, -0.019263120368123055, -0.05725698545575142, 0.03899214044213295, 0.011343163438141346, -0.00808384083211422, 0.06367534399032593, -0.0006089357193559408, -0.029911715537309647, -0.03432086110115051, 0.07671646773815155, 0.06139490380883217, 0.0770665854215622, 0.011091558262705803, 0.051505155861377716, -0.028447065502405167, -0.04017161205410957, 0.033886685967445374, 0.009995116852223873, -0.024022502824664116, -0.03236488625407219, 0.02992807701230049, 0.053405456244945526, -0.015114796347916126, 0.0548999160528183, -0.03159383311867714, 0.0009995304280892015, 0.010455436073243618, 0.05069604143500328, 0.015269634313881397, 0.07145471125841141, 0.012411106377840042, -0.00541840773075819, -0.013881590217351913, -0.05662580206990242, 0.027147876098752022, -0.06129118800163269, -0.0038794532883912325, 0.03335031494498253, -0.013174718245863914, 0.03062828630208969, 0.020322324708104134, 0.033026959747076035, 0.08144143968820572, -0.04707116261124611, 0.021695494651794434, 0.005859334487468004, 0.047725364565849304, 0.003831336973235011, 0.026469113305211067, -0.022491879761219025, -0.0206670630723238, 0.021810049191117287, -0.032113950699567795, -0.01969233714044094, -0.024833152070641518, -0.018614942207932472, 0.044024620205163956, -0.030301248654723167, -0.004250324331223965, 0.037099648267030716, 0.011811534874141216, -0.025034725666046143, -0.07711881399154663, -0.03327528014779091, -0.03737888112664223, -0.03972015529870987, -0.021746188402175903, 0.01386693213135004, -0.0010476241586729884, -0.030924886465072632, -0.003912826534360647, -0.05061981454491615, -0.024208074435591698, 0.035686299204826355, -0.05026382952928543, -0.027266237884759903, 0.0031985396053642035, 0.006448729429394007, 0.02264970727264881, 0.024303171783685684, 0.040318120270967484, -0.002490284387022257, -0.001970162382349372, -0.01767648570239544, 0.015514180064201355, 0.03102339804172516, 0.002695895964279771, -0.001699907472357154, -0.09933462738990784, 0.025020351633429527, 0.020359240472316742, 0.011518829502165318, -0.0517144538462162, 0.04450079798698425, 0.010408016853034496, 0.011859309859573841, 0.05911645665764809, -0.023633470758795738, 0.019194331020116806, -0.02253381535410881, -0.003131717909127474, 0.003168100491166115, 0.031971536576747894, 0.05022532120347023, -0.028766755014657974, 0.08762617409229279, 0.00656515546143055, -0.00866459310054779, -0.03954250365495682, -0.022870568558573723, 0.012173260562121868, 0.0016146478010341525, -0.013307744637131691, -0.02765076793730259, -0.02115975320339203, -0.06387050449848175, -0.008645707741379738, 0.01638096757233143, -0.016529913991689682, -0.038434866815805435, 0.03228318691253662, 0.021462982520461082, -0.04215165972709656, 0.04500636085867882, -0.050633180886507034, 0.039509352296590805, -0.018220117315649986, -0.012547142803668976, 0.011029734276235104, -0.02012360468506813, 0.008310210891067982, 0.003781216451898217, 0.016705971211194992, -0.04520674794912338, -0.005119859706610441, 0.017260927706956863, 0.023228071630001068, 0.024408023804426193, -0.009682596661150455, -0.008129959926009178 ]
[ -0.08987721055746078, -0.009327123872935772, -0.010197099298238754, -0.032906241714954376, 0.029070554301142693, -0.04344000294804573, -0.017081307247281075, 0.039360642433166504, -0.012901026755571365, -0.0409262590110302, -0.0037965383380651474, -0.014548118226230145, 0.005637363996356726, -0.004575621802359819, 0.08691404014825821, 0.020586472004652023, -0.007925910875201225, -0.07861171662807465, 0.0317477285861969, 0.021868934854865074, 0.004585784859955311, -0.019094649702310562, -0.043824613094329834, -0.0024678315967321396, 0.005226728040724993, 0.03297887742519379, 0.03905198350548744, -0.03669599071145058, 0.008412817493081093, -0.18204046785831451, -0.005683428607881069, 0.028613518923521042, 0.03917878493666649, 0.004320135340094566, 0.024697337299585342, 0.06185063347220421, -0.006323384121060371, 0.031079187989234924, -0.005320942960679531, 0.04135393351316452, 0.015057851560413837, 0.019102897495031357, -0.05985155329108238, -0.043480440974235535, 0.03685339540243149, 0.0009001819416880608, 0.009170654229819775, -0.05534155294299126, -0.002968474291265011, 0.0025656730867922306, -0.06976284086704254, -0.03967903181910515, -0.017457935959100723, -0.029555177316069603, -0.018888894468545914, 0.03259585425257683, 0.04940785840153694, 0.06712854653596878, 0.006267736665904522, 0.016524428501725197, 0.0023016799241304398, -0.02732165716588497, -0.12868261337280273, 0.08305768668651581, 0.05765416845679283, 0.0557025782763958, -0.029224717989563942, -0.02827032096683979, 0.002510393038392067, 0.10398659110069275, -0.006840110290795565, -0.030397929251194, -0.023972148075699806, 0.05083857849240303, 0.014067145064473152, 0.011132215149700642, 0.010942880064249039, 0.02371917851269245, 0.020422546193003654, -0.0586651936173439, -0.03820925951004028, -0.017066024243831635, -0.004477868787944317, -0.012705293484032154, -0.03061378374695778, 0.015729181468486786, -0.012699137441813946, 0.0661940723657608, 0.04649081826210022, 0.01832541637122631, 0.0625789612531662, -0.016786891967058182, 0.028575165197253227, -0.00003556030787876807, -0.07376456260681152, -0.03378303349018097, -0.0009506805799901485, 0.031625811010599136, -0.060972910374403, 0.44833216071128845, -0.024800753220915794, -0.027387024834752083, 0.10236501693725586, 0.034248605370521545, -0.02723272517323494, 0.014779956080019474, 0.021357310935854912, -0.042759571224451065, 0.0075460015796124935, -0.0376996211707592, 0.020644040778279305, 0.018364420160651207, 0.06837683916091919, -0.038947589695453644, 0.03180253133177757, 0.03838115185499191, 0.02608238160610199, 0.0015727909049019217, -0.01313035748898983, -0.004743034485727549, -0.007159440312534571, 0.009023101069033146, 0.018638160079717636, -0.014381814748048782, -0.02644815854728222, -0.04383520409464836, 0.01448007021099329, 0.04973101243376732, 0.003379875561222434, -0.0033366696443408728, 0.05730181187391281, -0.05904145538806915, -0.04910919815301895, 0.00901342649012804, 0.004044456407427788, 0.009485995396971703, 0.029302477836608887, -0.016484903171658516, 0.013853572309017181, 0.043949417769908905, 0.008298656903207302, -0.0015045901527628303, 0.0049816034734249115, -0.0009758913656696677, -0.059820178896188736, 0.1107335314154625, 0.011386659927666187, -0.011689137667417526, -0.012794134207069874, -0.031012503430247307, -0.0020160318817943335, 0.01581219583749771, -0.011987872421741486, -0.05279708653688431, 0.05292876809835434, -0.008777359500527382, 0.11239136010408401, -0.010130710899829865, -0.042187485843896866, 0.0057029034942388535, -0.01675584353506565, -0.024269331246614456, -0.06221219524741173, 0.007072200067341328, 0.07626807689666748, -0.0710451602935791, -0.005689086392521858, -0.0055776904337108135, 0.03857119753956795, -0.06486310809850693, -0.001324172131717205, 0.025983085855841637, -0.0061803353019058704, -0.016007976606488228, 0.03901997581124306, -0.03215920552611351, -0.022246133536100388, 0.024512186646461487, 0.05751314386725426, 0.02739676460623741, 0.03550458699464798, 0.00926302932202816, -0.022718889638781548, 0.013269202783703804, -0.01641012728214264, -0.09246367961168289, -0.03508871793746948, -0.003940841183066368, -0.02731175348162651, 0.0012606452219188213, -0.028918886557221413, -0.03178347274661064, -0.09615442901849747, 0.07664129883050919, -0.04693429917097092, -0.03607521578669548, 0.03161526098847389, -0.02182910032570362, -0.025192687287926674, -0.0266153234988451, -0.0467110276222229, 0.02158329263329506, -0.03490113839507103, 0.031106824055314064, -0.0684446394443512, 0.06600424647331238, 0.039830487221479416, -0.04164539650082588, 0.10588115453720093, 0.05220315605401993, -0.0444801039993763, -0.04125510901212692, 0.041320834308862686, 0.007977251894772053, 0.015382117591798306, -0.025519035756587982, -0.0023406739346683025, 0.01769220270216465, 0.007022573612630367, 0.008991550654172897, -0.0098827900364995, -0.006342224311083555, -0.02035801112651825, -0.3316505551338196, -0.03973979502916336, -0.01963292807340622, -0.0025443462654948235, 0.020463936030864716, -0.04329168424010277, 0.03090246394276619, -0.028352273628115654, -0.0185236856341362, -0.003955519758164883, 0.05167539790272713, -0.02289254404604435, 0.02219080552458763, -0.08435173332691193, 0.007886672392487526, -0.009213895536959171, -0.020414190366864204, 0.005351160187274218, -0.041710685938596725, -0.004649413749575615, -0.005005881190299988, -0.014436162076890469, -0.010613691061735153, -0.07951118797063828, -0.011868961155414581, -0.05101161077618599, 0.10792815685272217, 0.007207287475466728, 0.09560666978359222, -0.036050040274858475, 0.03403086215257645, -0.0005490988260135055, 0.04202203080058098, -0.11455847322940826, 0.0180765762925148, -0.009639687836170197, -0.0044246576726436615, -0.01783621497452259, 0.011486126109957695, -0.0440656840801239, -0.03272474929690361, 0.008498771116137505, -0.07203445583581924, -0.03574187681078911, -0.07895422726869583, 0.00774923013523221, -0.03393339365720749, -0.04329828917980194, -0.04093477129936218, 0.08154405653476715, 0.013971960172057152, -0.0040862103924155235, 0.01163470558822155, 0.00944844912737608, -0.007746716029942036, -0.02756207250058651, -0.08719511330127716, 0.03548126667737961, 0.014947478659451008, -0.014174848794937134, 0.03121781349182129, 0.07297167927026749, 0.034281324595212936, -0.06168264523148537, -0.006546122021973133, 0.01419269572943449, -0.0038095791824162006, 0.0000024855960418790346, 0.04255160316824913, -0.009430062025785446, -0.014813770540058613, 0.11485200375318527, 0.005693911109119654, -0.015518338419497013, 0.010909386910498142, 0.030716681852936745, -0.0057311332784593105, 0.013702422380447388, 0.01434869971126318, -0.01985023356974125, 0.004649732261896133, -0.026145603507757187, 0.018166210502386093, -0.026476070284843445, -0.006301789078861475, 0.035090379416942596, -0.01285546738654375, -0.0581754706799984, 0.07256435602903366, 0.02901066280901432, -0.02791525050997734, 0.01732349954545498, -0.0140644246712327, -0.04487567022442818, 0.08248593658208847, -0.004758786875754595, -0.23882751166820526, 0.0087112532928586, 0.07311148941516876, 0.04557347670197487, -0.007523280568420887, 0.028086084872484207, 0.023197997361421585, -0.038559574633836746, 0.011446457356214523, 0.01485560555011034, 0.02334652654826641, 0.010094727389514446, -0.019964080303907394, -0.015796689316630363, 0.03694736957550049, 0.006460594013333321, 0.04762480780482292, -0.011245288886129856, 0.026981204748153687, -0.01399244461208582, -0.0072781541384756565, 0.005321449134498835, 0.14006869494915009, 0.009064961224794388, 0.02835221216082573, -0.003900251816958189, -0.005825813394039869, 0.02336643822491169, 0.0902288481593132, -0.001339453156106174, -0.0022228399757295847, -0.015326918102800846, 0.028169963508844376, 0.012590724043548107, 0.01558476872742176, -0.07809970527887344, -0.03831049054861069, 0.03569489344954491, 0.04253045842051506, 0.022314317524433136, 0.021701227873563766, -0.003682247828692198, -0.03116648830473423, 0.01663896068930626, 0.04851274564862251, 0.025909893214702606, 0.008400363847613335, -0.05822687968611717, -0.07047786563634872, -0.0010330422082915902, -0.028611797839403152, -0.031579043716192245, 0.01778637245297432, 0.005032548680901527, 0.013255659490823746, 0.07343389838933945, 0.014700694009661674, -0.024857766926288605, -0.003792658681049943, -0.0031475480645895004, -0.020858433097600937, -0.02272642031311989, 0.12938976287841797, 0.017385629937052727, 0.018880004063248634 ]
[ -0.016266128048300743, 0.004120639059692621, 0.007474849466234446, 0.023037677630782127, 0.006528077181428671, 0.018081875517964363, -0.018535228446125984, 0.016458526253700256, 0.013505219481885433, -0.011714722961187363, -0.012896302156150341, 0.021203739568591118, -0.0026004216633737087, -0.006366864778101444, 0.010909127071499825, -0.009952012449502945, -0.006401749327778816, -0.02739117480814457, 0.03216275945305824, -0.00191530492156744, 0.00601570401340723, 0.008024141192436218, 0.000932861992623657, 0.013883525505661964, -0.014579162001609802, 0.0067763240076601505, -0.00538785383105278, -0.029816418886184692, 0.022601643577218056, -0.13691523671150208, -0.03168373182415962, -0.004677319899201393, -0.005354373250156641, -0.010884520597755909, -0.003134222701191902, 0.007605797611176968, 0.022168021649122238, 0.04032564163208008, 0.012888805009424686, -0.008444034494459629, -0.02546725794672966, -0.0077691455371677876, 0.006276350934058428, 0.029422229155898094, 0.010298802517354488, -0.01324146706610918, 0.02241179533302784, -0.04209296777844429, -0.040448013693094254, -0.015097662806510925, -0.04938051104545593, 0.0025117534678429365, -0.019268402829766273, 0.003250065492466092, -0.005140576045960188, -0.01567469723522663, 0.031935468316078186, -0.004592126701027155, -0.0005932275671511889, -0.012023800984025002, -0.010531635954976082, -0.013616634532809258, -0.05548834055662155, -0.022201161831617355, -0.022923845797777176, -0.010989973321557045, -0.0011868664296343923, 0.03045249916613102, -0.00009925110498443246, -0.0010673741344362497, -0.005108239594846964, 0.011374004185199738, -0.005189080722630024, -0.03229061886668205, -0.011453548446297646, 0.014983308501541615, -0.007667002268135548, -0.04186949133872986, 0.02391868270933628, -0.005105483811348677, -0.02945883758366108, 0.033378683030605316, 0.029619066044688225, -0.01798543706536293, 0.01733238808810711, 0.008715745992958546, 0.007622744422405958, 0.008575689978897572, 0.011400102637708187, 0.013835554011166096, 0.0035029640421271324, -0.005851199850440025, -0.017258116975426674, 0.022501211613416672, -0.07976361364126205, 0.007941379211843014, -0.03105674311518669, -0.0033172438852488995, -0.011005646549165249, 0.8753584623336792, 0.008767632767558098, 0.04566623643040657, 0.031448252499103546, 0.002783433999866247, 0.02311643771827221, -0.0010195348877459764, 0.017291560769081116, -0.008505789563059807, 0.018683744594454765, -0.01606380008161068, 0.021072695031762123, 0.01767699606716633, 0.022515075281262398, 0.017500396817922592, 0.033769406378269196, 0.04403713345527649, 0.001921780058182776, -0.022749999538064003, -0.02055083028972149, 0.023558365181088448, 0.033758744597435, 0.02213308960199356, 0.002510074758902192, 0.03830037638545036, 0.00773471686989069, -0.16851289570331573, 0.01320385467261076, -7.888874831482839e-33, 0.044534072279930115, -0.0007550266454927623, -0.004138512536883354, 0.015618547797203064, -0.016236569732427597, -0.006079092156141996, 0.02702893689274788, 0.01090946700423956, -0.008256027474999428, -0.013127206824719906, -0.013391268439590931, -0.013499199412763119, -0.006775834131985903, -0.03160097450017929, 0.021597273647785187, -0.004956649616360664, -0.023769794031977654, 0.033245332539081573, -0.0007837745943106711, 0.02893506921827793, 0.03300740197300911, 0.0185001902282238, -0.0222680252045393, -0.001006784033961594, 0.0077788084745407104, 0.007111767772585154, 0.007726727984845638, 0.03551729395985603, -0.0023161706048995256, -0.046869244426488876, -0.012156154960393906, 0.023152107372879982, -0.03324029594659805, -0.02103111892938614, 0.022270536050200462, -0.04194129258394241, -0.001445535570383072, 0.0034273897763341665, 0.012089552357792854, -0.01443338394165039, -0.022727379575371742, -0.004034620709717274, -0.05301867425441742, -0.013563103042542934, 0.026620930060744286, -0.008041861467063427, -0.01440922636538744, 0.010156849399209023, -0.0114652244374156, -0.047015830874443054, 0.003485331777483225, 0.02230149321258068, 0.003885231912136078, -0.012031466700136662, 0.0021382763516157866, 0.019461648538708687, 0.01583799719810486, 0.014522876590490341, 0.02654355578124523, 0.051343224942684174, 0.030885012820363045, 0.006749393884092569, -0.0388854555785656, 0.03954874724149704, -0.0209958478808403, -0.011411628685891628, -0.015962015837430954, 0.012023133225739002, 0.011322569102048874, -0.002030852949246764, -0.04444253444671631, -0.009507647715508938, -0.008273744955658913, -0.003936269320547581, 0.01511591300368309, -0.014939765445888042, -0.011048529297113419, 0.0063141994178295135, -0.03649163618683815, 0.032674696296453476, 0.01552022248506546, -0.01918078027665615, -0.03650887683033943, -0.05067237466573715, 0.0012632336001843214, -0.005566292908042669, -0.0033291082363575697, -0.039764970541000366, -0.0003849461500067264, -0.0002094150404445827, 0.02473902702331543, -0.01016990840435028, -0.0025285223964601755, -0.0020042939577251673, -0.01662890985608101, 7.970765645432874e-33, 0.0052361516281962395, -0.029045553877949715, -0.01165985781699419, 0.00657700514420867, -0.0022456087172031403, -0.006635288707911968, 0.017819376662373543, 0.006673150695860386, -0.043125905096530914, 0.02346949279308319, -0.015646180137991905, -0.014298067428171635, -0.007692475337535143, 0.01421188935637474, 0.021839087828993797, -0.004446422215551138, 0.020019592717289925, -0.009498092345893383, 0.01756572537124157, 0.003418304957449436, 0.005070528946816921, 0.004304067697376013, 0.0007457248866558075, -0.012512807734310627, 0.0028855837881565094, 0.06389781087636948, -0.021836206316947937, 0.02947181835770607, 0.010404854081571102, 0.001970757497474551, -0.01257992535829544, -0.033091772347688675, 0.01290038600564003, -0.0021761623211205006, -0.03690751641988754, 0.02365005575120449, -0.01296411082148552, -0.01708410121500492, 0.009380875155329704, -0.002549142576754093, 0.029743408784270287, 0.0014303728239610791, -0.003173988778144121, 0.04126327484846115, -0.0019837557338178158, 0.022684646770358086, -0.01753189042210579, -0.023759324103593826, 0.010232657194137573, -0.025574756786227226, -0.004478511866182089, -0.005456962622702122, 0.01675580069422722, -0.0007170194876380265, -0.01041585486382246, -0.031101681292057037, -0.032114602625370026, -0.000660636113025248, -0.004488846752792597, 0.03016122244298458, -0.003035594243556261, 0.020921725779771805, -0.029110368341207504, -0.01269038487225771, -0.022481918334960938, -0.02169971913099289, -0.01706691086292267, 0.017802581191062927, -0.007100434508174658, 0.02022954449057579, -0.007224551867693663, 0.039298802614212036, 0.0008415297488681972, 0.040966279804706573, 0.03816757723689079, 0.0017023369437083602, -0.01785372570157051, -0.0001158485101768747, -0.037999916821718216, 0.01092930044978857, 0.021099412813782692, -0.012121737003326416, -0.0031379773281514645, 0.006728325970470905, -0.004298325628042221, 0.028765123337507248, 0.0007687973557040095, 0.05566878616809845, 0.006319109350442886, -0.030395323410630226, -0.012252745218575, 0.002458168426528573, 0.019812818616628647, 0.019516535103321075, 0.005313154775649309, -1.3784714703035661e-8, -0.013205191120505333, -0.012094228528439999, -0.003644802840426564, 0.0297065582126379, 0.011413421481847763, 0.015865951776504517, -0.01643241010606289, 0.015198108740150928, -0.021150268614292145, 0.032399486750364304, 0.03646789863705635, -0.019739530980587006, -0.012184455059468746, -0.007395588792860508, 0.013809938915073872, -0.054659903049468994, -0.023292316123843193, -0.0131909791380167, 0.03802373260259628, 0.007467930670827627, 0.027117298915982246, 0.05696690082550049, -0.01668364368379116, 0.018481088802218437, -0.005869267042726278, 0.00011887650907738134, -0.0014169033383950591, -0.08113165199756622, -0.026769833639264107, 0.011815321631729603, 0.0004712739319074899, -0.03187159076333046, -0.014063900336623192, 0.02190759964287281, -0.016414782032370567, -0.029922815039753914, 0.02594069391489029, 0.02685735933482647, 0.012300009839236736, -0.01273465994745493, -0.021527910605072975, -0.022652262821793556, -0.007056236732751131, -0.036022037267684937, -0.01069603767246008, -0.014435074292123318, -0.03631740063428879, -0.039275288581848145, 0.010427553206682205, -0.01870308816432953, 0.014913494698703289, -0.0029687813948839903, 0.024647463113069534, 0.038121383637189865, 0.008095643483102322, 0.018663765862584114, -0.012503117322921753, -0.007203760556876659, -0.05642933025956154, -0.008467435836791992, 0.016103703528642654, 0.02138151228427887, -0.016568098217248917, -0.033618297427892685 ]
twu-brain-dumping
https://markhneedham.com/blog/2011/03/23/twu-brain-dumping
false
2011-03-15 01:11:37
TWU: Fishbowl
[ "communication", "thoughtworks-university", "fishbowl" ]
[ "ThoughtWorks University" ]
As part of a session on http://www.thoughtworks.com/values-and-culture[ThoughtWorks values] at ThoughtWorks Univesity we held a http://en.wikipedia.org/wiki/Fishbowl_(conversation)[fishbowl] to discuss the trade offs we often have to make between the values when confronted with real life situations. ____ A fishbowl conversation is a form of dialog that can be used when discussing topics within large groups. Four to five chairs are arranged in an inner circle. This is the fishbowl. The remaining chairs are arranged outside the fishbowl. A few participants are selected to fill the fishbowl, while the rest of the group sit on the chairs outside the fishbowl. One chair is left empty Any member of the audience can, at any time, occupy the empty chair and join the fishbowl. When this happens, an existing member of the fishbowl must voluntarily leave the fishbowl and free a chair. The discussion continues with participants frequently entering and leaving the fishbowl. ____ image:http://lisacrispin.com/wordpress/wp-content/uploads/2010/06/FishbowlBetter-300x225.jpg[] We tried a slight variation on this in that we had the people not currently in the fishbowl stand around the outside of fishbowl rather than sitting down in an attempt to encourage participation. The overall feedback that we got from the session was that it was enjoyable to take part in although it was clear that people weren't rotating into and out from the fishbowl as frequently as I've seen before. The tone of the discussion was also relatively agreeable and there weren't any big disagreements between people where they got really fired up in defending their view. http://www.learninggeneralist.com/[Sumeet] pointed out afterwards that the *fishbowl is often more effective in facilitating discussion around a topic which people are really passionate about* and have strong opinions on. Since we had only introduced the ThoughtWorks values about 20 minutes earlier this wouldn't fit into that category. Interestingly although the trainers had strong opinions on certain topics it was difficult to create a discussion because the grads mostly didn't have examples to disagree with those points so the discussion became more theoretical/hypothetical. I do like this format though so we'll have to try it again with some other topics or perhaps the same one in a few weeks time to see how it works out.
null
null
[ 0.006228846963495016, -0.013470393605530262, -0.01284865103662014, 0.042605724185705185, 0.05947234481573105, 0.021855773404240608, 0.028976015746593475, 0.04965975508093834, 0.025304576382040977, -0.013914641924202442, -0.017304694280028343, 0.0029008362907916307, -0.059316109865903854, 0.02102566324174404, -0.025774888694286346, 0.06676136702299118, 0.05377707630395889, 0.015256721526384354, -0.005827062297612429, 0.0027677868492901325, 0.03151237592101097, 0.05921344831585884, 0.026187244802713394, 0.023505253717303276, 0.0713510662317276, 0.021942060440778732, 0.040860868990421295, 0.012149443849921227, -0.01745452731847763, -0.003435382852330804, 0.02542220801115036, 0.018482612445950508, -0.00013114347530063242, -0.0022164322435855865, 0.04130297899246216, -0.046250998973846436, 0.009126109071075916, 0.027106260880827904, 0.017686374485492706, 0.027037927880883217, -0.0760635957121849, 0.054051320999860764, -0.017170554026961327, 0.0026677707210183144, -0.04130452498793602, 0.010787607170641422, -0.02954012341797352, 0.009434414096176624, -0.013025596737861633, 0.002186853438615799, -0.08862144500017166, 0.025951821357011795, 0.007243883330374956, 0.02949172630906105, -0.00960623100399971, 0.029542146250605583, 0.012750430032610893, -0.0649418756365776, 0.010652541182935238, -0.04814564064145088, -0.026462851092219353, 0.01325109601020813, 0.006028319243341684, 0.011469134129583836, 0.014653320424258709, -0.022021735087037086, 0.002213023602962494, 0.029487362131476402, -0.04116644337773323, 0.007800052408128977, -0.03256118297576904, 0.007211057003587484, -0.022425947710871696, -0.011443221010267735, 0.011602470651268959, -0.05483721196651459, -0.0018010925268754363, 0.08149711042642593, 0.03338690847158432, 0.030185308307409286, -0.0181476641446352, 0.01163576915860176, 0.021178923547267914, 0.03784892335534096, -0.026465756818652153, -0.0573112778365612, 0.025896159932017326, -0.025839589536190033, -0.06852320581674576, 0.0583946630358696, -0.0006853564991615713, -0.03824710473418236, 0.00030475715175271034, 0.023505009710788727, 0.00474060233682394, 0.02935476042330265, 0.04443097487092018, -0.022827569395303726, -0.004727474879473448, -0.021757986396551132, -0.02987816371023655, -0.02798600308597088, 0.008533862419426441, 0.02547639049589634, -0.0752652958035469, 0.00654615880921483, 0.001795631949789822, -0.012318959459662437, -0.0036858960520476103, 0.014167195186018944, -0.04183600842952728, 0.03937806561589241, 0.005569878499954939, 0.015378808602690697, -0.07539747655391693, 0.04616914689540863, 0.027340730652213097, -0.038190241903066635, -0.01843126490712166, 0.010962089523673058, 0.003917223773896694, 0.007103170733898878, -0.03220595046877861, 0.07171616703271866, -0.01317761279642582, 0.00547848641872406, -0.015724768862128258, 0.05620628967881203, -0.01100978720933199, -0.07106674462556839, 0.006064660847187042, 0.03847142681479454, -0.014363494701683521, 0.006252834107726812, -0.012073992751538754, -0.028849896043539047, 0.04681719094514847, -0.02856900729238987, 0.061742376536130905, 0.04501664638519287, -0.006345383357256651, -0.05577611178159714, 0.017487695440649986, 0.010975883342325687, 0.009893937967717648, -0.022763391956686974, 0.00719681940972805, -0.011754095554351807, -0.023690711706876755, -0.04043998941779137, 0.008722514845430851, -0.005213660188019276, 0.03817782551050186, -0.0500650554895401, 0.0243066418915987, 0.060974542051553726, 0.048274096101522446, -0.0020130828488618135, -0.013705669902265072, 0.04895700514316559, 0.020337138324975967, 0.036099873483181, 0.014227351173758507, 0.039347391575574875, 0.04321769252419472, -0.01719028502702713, -0.019259734079241753, 0.021940985694527626, -0.017858481034636497, 0.023154491558670998, -0.04052692651748657, -0.02514699101448059, 0.03256876394152641, -0.03357551246881485, -0.004848490934818983, 0.03967740014195442, 0.06247076019644737, 0.04216549172997475, 0.025939838960766792, -0.0030820106621831656, -0.07309544086456299, 0.009381881915032864, 0.00384533335454762, 0.036202508956193924, 0.025580696761608124, -0.027103465050458908, 0.0489334873855114, 0.04108380898833275, -0.02141546458005905, 0.05735305696725845, -0.06537383794784546, -0.0869482234120369, -0.0487976111471653, 0.008690176531672478, 0.07035597413778305, -0.04703756794333458, 0.016623876988887787, 0.04175393283367157, 0.0356304757297039, 0.03555908054113388, 0.021165063604712486, 0.012890663929283619, 0.005597660318017006, -0.02096199057996273, -0.06795015186071396, 0.06114808842539787, 0.025393841788172722, 0.006360755767673254, -0.0442490354180336, -0.001180650433525443, -0.041374221444129944, -0.002917985897511244, 0.026960331946611404, -0.017935123294591904, 0.014622168615460396, -0.02198202721774578, 0.06936333328485489, -0.0054814983159303665, 0.024072766304016113, -0.03935500606894493, 0.005383052863180637, -0.0018474585376679897, -0.010933220386505127, -0.008317236788570881, -0.021429050713777542, 0.11432931572198868, 0.04414741322398186, -0.023186609148979187, -0.05983796715736389, 0.035139214247465134, 0.017274005338549614, -0.019198374822735786, -0.016139715909957886, 0.0068398043513298035, 0.028202064335346222, -0.0048566944897174835, -0.06754785031080246, -0.043572548776865005, 0.049921486526727676, -0.04907304793596268, 0.006158262025564909, 0.048943616449832916, -0.020439516752958298, 0.05380459874868393, -0.0056334324181079865, -0.0030202886555343866, -0.015435885637998581, -0.01255579013377428, -0.052735984325408936, 0.011796567589044571, 0.007378460373729467, -0.020017225295305252, 0.052311692386865616, -0.008984899148344994, 0.005864506121724844, -0.016700629144906998, -0.012806565500795841, 0.017439862713217735, 0.05362860858440399, 0.044973019510507584, -0.0020858875941485167, 0.07837312668561935, -0.015279444865882397, 0.007213061209768057, -0.0124867744743824, -0.030566997826099396, -0.03309675306081772, -0.019843559712171555, 0.006335337646305561, 0.014790043234825134, 0.038685329258441925, -0.0038051276933401823, 0.005782178603112698, 0.025853661820292473, -0.030443508177995682, 0.004142280202358961, 0.02593953348696232, -0.017379868775606155, 0.006556798238307238, -0.037911463528871536, -0.012239155359566212, 0.05018677935004234, -0.036860886961221695, -0.011999194510281086, 0.02523392252624035, -0.07817719876766205, 0.040087874978780746, -0.03816695883870125, -0.03994739428162575, -0.00806399341672659, 0.03544444590806961, 0.037429749965667725, 0.04267221316695213, -0.002238484565168619, 0.06392362713813782, 0.0002371944283368066, 0.024243071675300598, 0.007486177142709494, -0.013248566538095474, 0.05590851604938507, -0.023999150842428207, -0.0042582363821566105, 0.03869931399822235, 0.002513342769816518, 0.019224299117922783, -0.05759168416261673, 0.04489010199904442, -0.04533833637833595, -0.29220661520957947, 0.03141390532255173, 0.018833590671420097, -0.020740512758493423, 0.03502194210886955, -0.04077970236539841, 0.02933511883020401, -0.0647619366645813, -0.019089801236987114, 0.04285003989934921, -0.036853861063718796, -0.050119511783123016, -0.012609048746526241, 0.05337696522474289, 0.010842469520866871, 0.017018364742398262, 0.031082021072506905, -0.043901991099119186, 0.009708981029689312, 0.03493403270840645, -0.002256970154121518, -0.0631011575460434, -0.01299235224723816, 0.05137092247605324, 0.03305903822183609, 0.07335206121206284, -0.0512382797896862, 0.038366109132766724, -0.050534438341856, -0.006389416754245758, 0.003096041502431035, -0.0055414908565580845, -0.001904177013784647, -0.02355979196727276, 0.006435056682676077, -0.014815601520240307, 0.05643860623240471, -0.004989118780940771, -0.0054204403422772884, 0.008205629885196686, -0.02533539943397045, -0.05640915036201477, 0.01717689260840416, 0.016102897003293037, 0.07666491717100143, 0.028476325795054436, -0.05330058932304382, -0.026653535664081573, -0.050126928836107254, 0.0744207352399826, -0.020528871566057205, -0.02177937515079975, 0.010240674018859863, 0.04036453366279602, -0.003207842353731394, 0.0017269945237785578, -0.02169024758040905, -0.03236396238207817, -0.05353754758834839, -0.0436880849301815, -0.020298393443226814, -0.015880724415183067, -0.04644560441374779, -0.0464877188205719, -0.04176246374845505, -0.07670292258262634, -0.06880456209182739, 0.024296127259731293, 0.058474693447351456, -0.002961895428597927, -0.044813740998506546, -0.005788358394056559, -0.015790587291121483, -0.0936245247721672, 0.0037225759588181973, 0.006366999354213476, -0.030182652175426483, 0.01288614422082901, 0.021112846210598946, 0.06586911529302597, -0.015516435727477074, -0.05895942077040672, 0.019099386408925056, -0.0029920199885964394, 0.0199755746871233, -0.01977463811635971, 0.03303913399577141, 0.01555886771529913, -0.037296075373888016, 0.006008139345794916, 0.06341490149497986, 0.018255388364195824, -0.053153399378061295, -0.02314632758498192, 0.022435428574681282, 0.06792091578245163, -0.006791034247726202, -0.031761474907398224, 0.0052192797884345055, 0.052027106285095215, 0.024909861385822296, -0.04420145973563194, 0.002442580182105303, -0.007008142303675413, -0.04674177244305611, 0.004557082895189524, -0.05768115445971489, 0.025202671065926552, 0.04026539996266365, -0.00017044993001036346, 0.008701574988663197, -0.014841228723526001, 0.03745272755622864, -0.020798711106181145, -0.025424204766750336, -0.018658330664038658, -0.01254879217594862, 0.04969785362482071, 0.013887162320315838, -0.00940606091171503, -0.019734619185328484, 0.016268234699964523, -0.008147739805281162, -0.04002493619918823, -0.06816846877336502, -0.01987134851515293, -0.004646607208997011, -0.03253460302948952, -0.03947494179010391, 0.01164337620139122, -0.003335596527904272, -0.0016567157581448555, 0.038064830005168915, -0.03784811124205589, 0.02346147783100605, -0.03458942845463753, -0.0667673647403717, -0.029568875208497047, -0.0015701389638707042, 0.01355919148772955, -0.0050848182290792465, -0.013186018913984299, -0.010744696483016014, 0.0173830334097147, 0.050223998725414276, 0.024437371641397476, -0.008370984345674515, -0.027824776247143745, 0.01810959354043007, 0.031381092965602875, -0.0006970939575694501, -0.07121139019727707, 0.01443492155522108, -0.020104004070162773, -0.01553380023688078, -0.014560159295797348, 0.011385705322027206, -0.009862801991403103, -0.025466643273830414, -0.025824278593063354, -0.009436989203095436, -0.050245217978954315, -0.05641087144613266, -0.031017499044537544, 0.022692415863275528, 0.053771644830703735, -0.03355899080634117, 0.030342672020196915, 0.009861182421445847, -0.017494143918156624, 0.035185880959033966, 0.027593255043029785, -0.038060612976551056, 0.012235102243721485, 0.016022371128201485, -0.019557133316993713, 0.011412435211241245, 0.009349384345114231, 0.03639182075858116, -0.0020797790493816137, 0.016336102038621902, -0.029725417494773865, 0.03159813955426216, 0.0052347443997859955, 0.06406116485595703, 0.04235789179801941, -0.015840977430343628, 0.008538847789168358, -0.0261885654181242, -0.006450773682445288, -0.04245876148343086, -0.015711596235632896, -0.0007505916873924434, 0.027439774945378304, -0.039849814027547836, -0.06615182012319565, 0.055666983127593994, -0.030929874628782272, 0.01063624955713749, 0.0021995152346789837, 0.023866448551416397, 0.0001692421647021547, -0.03102707490324974, 0.034009866416454315, 0.041416823863983154, -0.07587987184524536, 0.021066905930638313, -0.010746533051133156, 0.002718336181715131, 0.029397480189800262, -0.022278262302279472, -0.04883364215493202, 0.00947511661797762, -0.03172983229160309, 0.010034628212451935, -0.07251520454883575, -0.028837088495492935, -0.0493779256939888, 0.005729250144213438, -0.007851500064134598, 0.03967085853219032, -0.043222274631261826, -0.020858468487858772, -0.020700477063655853, -0.06035124510526657, 0.0249311700463295, -0.04709947109222412, -0.009122323244810104, 0.015057935379445553, -0.03445623815059662, -0.016212845221161842, -0.01829364523291588, 0.013492145575582981, 0.02325977385044098, -0.02635255455970764, 0.004910183604806662, -0.03371410071849823, -0.015492213889956474, -0.011870846152305603, 0.054988689720630646, -0.026082877069711685, -0.0350663848221302, -0.03840307146310806, -0.02042177878320217, -0.0617685467004776, 0.01864660158753395, -0.024761037901043892, 0.01771576516330242, 0.03321882709860802, 0.04509322717785835, -0.0014860836090520024, 0.003918190486729145, 0.004463094286620617, -0.01022167969495058, 0.02744680643081665, -0.05223017930984497, -0.03291814401745796, -0.027956999838352203, -0.0423075295984745, 0.0035080164670944214, -0.0007121266098693013, 0.021173087880015373, -0.06402961164712906, 0.05303886905312538, 0.016568902879953384, 0.025627899914979935, 0.06509522348642349, 0.018892094492912292, 0.019975487142801285, -0.030243059620261192, -0.015597159042954445, -0.07971583306789398, -0.028220904991030693, 0.00285204965621233, -0.014508383348584175, -0.00419758353382349, -0.017899585887789726, -0.05968494340777397, 0.08018293976783752, -0.06841724365949631, -0.00991478655487299, 0.024729574099183083, -0.025118516758084297, -0.0085990522056818, 0.025903910398483276, -0.07725957781076431, 0.004324670415371656, 0.013958464376628399, -0.0483580119907856, -0.012637568637728691, -0.02407095953822136, 0.05131206288933754, -0.011358130723237991, 0.03749799728393555, -0.039343759417533875, -0.01083372626453638, 0.08748377114534378, 0.009648771956562996, 0.002505137352272868, 0.05732607841491699, -0.0009573725401423872, 0.02077990025281906, 0.03622780367732048, -0.007085164077579975, 0.008974257856607437, -0.0046287719160318375, -0.007447294425219297, -0.07408981770277023, 0.038461148738861084, 0.004343820735812187, 0.006506326608359814, -0.040483709424734116, 0.05129944533109665, 0.018823370337486267, -0.012704694643616676, -0.03745458647608757, 0.015127338469028473, -0.02928903140127659, 0.0013885966036468744, -0.007428721059113741, -0.016103778034448624, -0.03633137792348862, 0.04489896073937416, -0.012636666186153889, 0.014502287842333317, 0.05959666147828102, -0.004597053397446871, -0.04016665741801262, -0.009826315566897392, 0.09511874616146088, 0.073676198720932, 0.07649396359920502, 0.015765296295285225, 0.05718986317515373, -0.018176423385739326, -0.06393852829933167, 0.003678954439237714, 0.008537488989531994, -0.03720034286379814, -0.009657747112214565, 0.03878737986087799, 0.042423829436302185, -0.017452996224164963, 0.05329843983054161, -0.002754255896434188, -0.012815503403544426, -0.005202100146561861, 0.0446116141974926, 0.028432510793209076, 0.06281346082687378, 0.016973719000816345, 0.0031514624133706093, -0.004625008441507816, -0.07673494517803192, 0.04070313274860382, -0.025096673518419266, -0.0314604751765728, 0.027256475761532784, -0.022410772740840912, 0.051768895238637924, 0.02295273169875145, 0.06000976637005806, 0.07127264142036438, -0.04301304370164871, 0.01605919748544693, 0.004662543535232544, -0.006269950419664383, 0.010355880483984947, 0.01758633740246296, 0.01907404512166977, 0.005664967466145754, -0.002447988372296095, -0.027681563049554825, -0.028188712894916534, -0.0314406119287014, -0.011558559723198414, 0.02437925711274147, -0.0462646521627903, 0.02924313209950924, 0.03700597584247589, 0.018755940720438957, -0.0410236157476902, -0.06254856288433075, -0.04194188863039017, -0.04826385900378227, -0.03720715641975403, -0.0060144453309476376, 0.031411174684762955, -0.0018834894290193915, -0.05818282067775726, -0.00844609271734953, -0.02878420799970627, -0.013729264959692955, 0.04842671751976013, -0.04109976440668106, -0.0006004497990943491, 0.010819713585078716, 0.02588244155049324, 0.012231885455548763, -0.01870906725525856, 0.03896570950746536, 0.010008426383137703, 0.007590040564537048, -0.0010858896421268582, 0.04589879512786865, 0.029943224042654037, -0.0006751050823368132, -0.018095320090651512, -0.0872206836938858, 0.008831186220049858, 0.030634278431534767, -0.01723990961909294, -0.055547505617141724, 0.024523917585611343, 0.008203837089240551, 0.0010385105852037668, 0.06853931397199631, 0.002981496974825859, -0.010463951155543327, -0.05067643150687218, -0.013353430666029453, -0.025894273072481155, -0.011224253103137016, 0.05194282904267311, -0.03106722980737686, 0.06186830252408981, 0.03245175629854202, -0.038301482796669006, -0.05704253911972046, -0.018242476508021355, -0.0050291637890040874, 0.015059991739690304, -0.02057964913547039, -0.02124500647187233, -0.014861545525491238, -0.07168357819318771, -0.012692669406533241, 0.035780709236860275, -0.000550242664758116, -0.011492675170302391, 0.022196752950549126, 0.020771469920873642, -0.03495201840996742, 0.01910504885017872, -0.045371830463409424, 0.01856202259659767, -0.00674988329410553, 0.009644806385040283, -0.014854611828923225, 0.023664377629756927, 0.005663332529366016, -0.018570879474282265, 0.025218665599822998, -0.03311573714017868, 0.0009080945746973157, -0.0010958790080621839, 0.01791355013847351, 0.054718777537345886, -0.007855183444917202, -0.031327515840530396 ]
[ -0.045604150742292404, -0.013436159119009972, -0.032333530485630035, -0.01596745103597641, 0.027327053248882294, -0.018674734979867935, -0.005096538923680782, 0.05482153221964836, 0.0022303243167698383, -0.005206084810197353, -0.019601862877607346, -0.01566748134791851, 0.012260994873940945, -0.0058604353107512, 0.07469911128282547, 0.0013922754442319274, 0.020276585593819618, -0.05609075725078583, -0.027744485065340996, 0.03584146872162819, 0.002766184275969863, -0.04845966026186943, -0.012765672989189625, -0.005820241756737232, -0.0005469300667755306, 0.006669293623417616, 0.0035808596294373274, -0.040296781808137894, 0.019242502748966217, -0.16924446821212769, 0.019378021359443665, 0.007586385123431683, 0.030048251152038574, -0.00016005546785891056, -0.0110209034755826, 0.047120071947574615, 0.02061464823782444, -0.006339582614600658, 0.007691685575991869, 0.06284541636705399, 0.018708061426877975, 0.030588392168283463, -0.03586326539516449, -0.0015358102973550558, 0.02006755955517292, 0.020288752391934395, -0.003292410634458065, -0.03183022886514664, -0.03733633831143379, 0.016989275813102722, -0.059416186064481735, -0.03691266477108002, -0.02294820174574852, -0.025129228830337524, -0.021150030195713043, 0.031217200681567192, 0.01843087188899517, 0.038108691573143005, 0.0013342718593776226, 0.00856885313987732, 0.05267471447587013, -0.021057099103927612, -0.16322225332260132, 0.1207050159573555, 0.0016309742350131273, 0.07371585071086884, -0.04098651930689812, 0.014404121786355972, -0.01741298846900463, 0.0331391878426075, 0.027104848995804787, -0.011729277670383453, 0.03659871965646744, 0.002945158863440156, 0.0547812320291996, -0.00101582077331841, -0.0006633184384554625, 0.03343869373202324, 0.030317995697259903, -0.029101187363266945, -0.02965548448264599, 0.02228306606411934, -0.028728608042001724, -0.018689069896936417, -0.008747008629143238, 0.004121545702219009, -0.012563560158014297, 0.028184551745653152, -0.014296323992311954, 0.01801861636340618, 0.027905384078621864, 0.0009119273163378239, 0.010350559838116169, -0.02004263736307621, -0.08181609958410263, -0.014785668812692165, -0.020068762823939323, 0.006732890382409096, -0.05607709661126137, 0.4517548680305481, -0.03757268562912941, 0.021161455661058426, 0.05953338369727135, 0.006996853742748499, -0.004736244212836027, -0.02141963317990303, -0.029132576659321785, -0.07225244492292404, 0.012541166506707668, 0.0012193572474643588, 0.025241175666451454, -0.008291112259030342, 0.08018270134925842, -0.019535290077328682, 0.01653621532022953, 0.028698058798909187, 0.07208599895238876, -0.007426541298627853, 0.006018863990902901, -0.015927040949463844, -0.05398208647966385, 0.0012012169463559985, 0.028952857479453087, 0.003913922235369682, 0.01814397983253002, -0.040053609758615494, 0.04219447076320648, 0.05657873675227165, 0.06844855099916458, -0.010425174608826637, 0.07249493896961212, -0.06787905097007751, -0.02265837788581848, -0.002631495939567685, 0.012671229429543018, -0.0046989452093839645, 0.04952842369675636, -0.01734069176018238, 0.029295234009623528, 0.052112095057964325, 0.026030655950307846, -0.04365894943475723, -0.006083712913095951, -0.02827763371169567, -0.04497452452778816, 0.13739876449108124, 0.01797732710838318, -0.04632112383842468, -0.012392554432153702, 0.005409890320152044, -0.008112858980894089, 0.019245142117142677, -0.016460413113236427, -0.056277643889188766, 0.01422570738941431, 0.014402876608073711, 0.05282735824584961, 0.0020311325788497925, -0.044339727610349655, -0.027531946077942848, 0.007979415357112885, -0.015188482590019703, -0.05836799368262291, 0.011665450409054756, 0.08275246620178223, -0.09220694750547409, -0.02027878165245056, -0.02925819158554077, -0.011457584798336029, -0.06742478162050247, -0.0014421582454815507, 0.0034806029871106148, -0.014875455759465694, 0.030596071854233742, 0.07313305139541626, 0.003996772691607475, -0.04210635647177696, 0.03222938999533653, 0.0384053997695446, 0.004233742598444223, 0.04518195614218712, 0.015330452471971512, -0.06772560626268387, 0.0034437060821801424, -0.052881840616464615, -0.058132220059633255, -0.07497680187225342, -0.05537036806344986, -0.014349124394357204, 0.017857922241091728, 0.006659845821559429, -0.05220014974474907, -0.08319101482629776, 0.0943421944975853, -0.04549761116504669, -0.033471353352069855, 0.02654767595231533, -0.025708677247166634, -0.03325585648417473, 0.02185358852148056, -0.07941033691167831, 0.00513849500566721, -0.053748719394207, 0.03391428291797638, -0.01704259403049946, 0.05927610024809837, 0.0660252720117569, -0.03704087808728218, 0.11224691569805145, 0.03299986943602562, -0.01339848805218935, -0.01205275859683752, -0.034948285669088364, 0.04249512404203415, 0.023664722219109535, -0.04305288940668106, 0.04055225849151611, -0.014638355933129787, -0.007731607183814049, 0.010416935198009014, -0.006724161561578512, -0.04297899454832077, -0.014346262440085411, -0.3587750494480133, -0.037220798432826996, -0.03746291249990463, 0.009944800287485123, 0.03555803745985031, -0.05012783035635948, 0.022353164851665497, -0.02503361366689205, -0.02170291543006897, 0.07647623121738434, 0.0243189949542284, -0.016738485544919968, 0.0001368254015687853, -0.07346414029598236, 0.03240601345896721, 0.044719669967889786, -0.033472418785095215, -0.0017797049367800355, -0.045538194477558136, 0.022237924858927727, 0.014513171277940273, 0.03234997019171715, -0.026782236993312836, -0.05259683355689049, 0.013297311961650848, -0.04414929077029228, 0.1070960983633995, 0.05999612808227539, 0.031056364998221397, -0.01593146286904812, 0.024009158834815025, 0.0187255647033453, -0.01788792945444584, -0.10678137838840485, 0.0129863815382123, -0.01635310798883438, -0.00080189696745947, -0.05274113267660141, 0.008610277436673641, -0.021166708320379257, -0.03384827449917793, 0.04949073866009712, -0.06907249987125397, -0.061390914022922516, -0.060970455408096313, 0.012343400157988071, -0.01571229100227356, -0.015490076504647732, -0.02648288384079933, 0.06172787398099899, 0.016392160207033157, -0.024396009743213654, 0.021782880648970604, 0.0280498918145895, -0.030569983646273613, -0.009994897991418839, -0.08444201946258545, 0.007191278971731663, -0.03986816480755806, -0.006883915513753891, 0.012042401358485222, 0.08367207646369934, 0.03785199671983719, -0.06843502819538116, -0.016632476821541786, 0.03686370700597763, -0.0033810546156018972, 0.011829228140413761, 0.030613679438829422, -0.002652381779626012, -0.019416363909840584, 0.06754086911678314, 0.0022094666492193937, 0.0065668243914842606, 0.0379074402153492, 0.06279630213975906, -0.018042584881186485, 0.01622971147298813, 0.019500091671943665, -0.005399924702942371, 0.033078357577323914, 0.002438803669065237, 0.013844269327819347, -0.02844487503170967, -0.012461879290640354, 0.01835579052567482, -0.02400071918964386, -0.04738520830869675, 0.08872862160205841, 0.000765975855756551, 0.019553013145923615, 0.033000051975250244, -0.04295184463262558, -0.04103473201394081, 0.037983544170856476, -0.00559021532535553, -0.25626635551452637, 0.04764707759022713, 0.07040970772504807, 0.020395981147885323, -0.012206963263452053, 0.05510423704981804, 0.010423858650028706, -0.025489168241620064, -0.011313086375594139, 0.021170273423194885, 0.03554871305823326, 0.03963690623641014, 0.006888499483466148, -0.004182258155196905, 0.026731636375188828, -0.00856084655970335, 0.034492556005716324, -0.009908296167850494, 0.003204548731446266, 0.006819847971200943, 0.0066717504523694515, -0.007444698363542557, 0.12807217240333557, 0.002258207416161895, 0.01777571626007557, -0.022641858085989952, -0.0004029515548609197, -0.007688955869525671, 0.018929356709122658, 0.008724800311028957, 0.0059857736341655254, -0.013631834648549557, 0.022319380193948746, -0.03985302895307541, 0.04539256915450096, -0.0771855041384697, -0.03403835371136665, -0.022582802921533585, 0.030333098024129868, -0.012018965557217598, 0.008406615816056728, 0.019602037966251373, -0.03931538015604019, 0.043595582246780396, 0.054135505110025406, 0.027922216802835464, 0.03413943573832512, -0.036324627697467804, -0.0289717148989439, 0.004127170890569687, -0.030954299494624138, -0.02763514406979084, 0.014866731129586697, 0.005322837736457586, 0.0005856771604157984, 0.03631387650966644, 0.04223497584462166, -0.02445445954799652, 0.013824780471622944, -0.011562077328562737, -0.034393198788166046, -0.030183253809809685, 0.09095010161399841, 0.019751382991671562, 0.05750338360667229 ]
[ 0.005431984085589647, 0.034531764686107635, -0.013074090704321861, -0.012740242294967175, -0.016388624906539917, 0.019546417519450188, -0.0174019206315279, 0.000460174836916849, 0.030806999653577805, -0.041061773896217346, -0.03053479827940464, -0.03217805176973343, 0.00313315587118268, 0.017928563058376312, -0.0065051838755607605, -0.006927848793566227, 0.006346104666590691, -0.043439023196697235, -0.002654479583725333, 0.009751473553478718, -0.047270599752664566, 0.017386650666594505, -0.0252480860799551, -0.004877815023064613, 0.016037212684750557, 0.033877648413181305, -0.005777751561254263, 0.01527619268745184, 0.020261619240045547, -0.0965440571308136, 0.002977656666189432, -0.013160414062440395, 0.015035009011626244, -0.034177061170339584, -0.055736642330884933, -0.01310114748775959, 0.011268327943980694, 0.018702490255236626, 0.009501684457063675, 0.05035119503736496, -0.013225821778178215, 0.009832320734858513, -0.008223786018788815, 0.013479510322213173, -0.029956914484500885, -0.010117859579622746, -0.03763396292924881, -0.050223272293806076, -0.02265086956322193, 0.013719094917178154, -0.05000310391187668, -0.01274109911173582, -0.019944578409194946, 0.012604855932295322, 0.04079918935894966, 0.015358265489339828, -0.03160674124956131, -0.03707968816161156, 0.02175128273665905, -0.06037503108382225, 0.024225419387221336, 0.008886879310011864, -0.017130998894572258, 0.004300357308238745, -0.0441373772919178, 0.04884243756532669, -0.02736756019294262, -0.011612260714173317, -0.03636286407709122, -0.020694049075245857, -0.027080023661255836, -0.0005505082663148642, 0.00942260306328535, -0.024211755022406578, -0.004770452156662941, 0.007044053170830011, 0.0013243609573692083, -0.02883809618651867, 0.03403431922197342, 0.01877579092979431, -0.04001719132065773, 0.010373753495514393, -0.031701695173978806, 0.013537499122321606, 0.031420931220054626, 0.008679316379129887, 0.012135053984820843, -0.008529008366167545, -0.04652152583003044, -0.01096253003925085, -0.029316872358322144, 0.02620302513241768, -0.017475124448537827, -0.03210322558879852, -0.06893105059862137, 0.003636115463450551, -0.034027986228466034, 0.02173195593059063, -0.02092980407178402, 0.7920562624931335, -0.006133032031357288, 0.021551713347434998, 0.015299197286367416, -0.026966312900185585, -0.0232534222304821, 0.018685435876250267, -0.004846235271543264, 0.010138953104615211, 0.030576063320040703, -0.07244822382926941, 0.002952864160761237, 0.023900849744677544, 0.02751169539988041, 0.019950125366449356, -0.0024145750794559717, 0.07224944978952408, -0.02065644972026348, -0.03246399387717247, 0.019734961912035942, 0.007875475101172924, 0.02316961996257305, -0.008573274128139019, 0.055408917367458344, 0.037104394286870956, 0.0006463307072408497, -0.16329841315746307, -0.012180282734334469, -6.233924987634942e-33, 0.023701336234807968, -0.08395351469516754, 0.010569040663540363, 0.01382623054087162, 0.06210824102163315, -0.05298474058508873, 0.018469298258423805, 0.027738556265830994, 0.04787291958928108, -0.02473694272339344, 0.04105605557560921, 0.014600054360926151, -0.0045959861017763615, -0.04594796523451805, 0.06658384203910828, -0.02503976598381996, -0.01350077148526907, -0.005707330070436001, -0.03692087158560753, 0.009259902872145176, 0.022911250591278076, 0.027213813737034798, -0.010033058002591133, -0.001474934397265315, -0.041292205452919006, 0.02344076707959175, 0.01818780228495598, -0.03316926211118698, 0.0009821834973990917, -0.015376336872577667, -0.00931792426854372, -0.007390094455331564, -0.0042914897203445435, -0.028821025043725967, 0.02459769882261753, -0.03729135915637016, 0.01782320626080036, 0.04041197523474693, -0.031971525400877, 0.005799839273095131, -0.018484119325876236, -0.017368903383612633, -0.00591402780264616, 0.028801685199141502, -0.017493383958935738, -0.04437890648841858, 0.04168535768985748, 0.042770467698574066, 0.0012165328953415155, 0.037057653069496155, 0.0023456315975636244, 0.05082273110747337, 0.018921656534075737, 0.014979062601923943, -0.03695008158683777, -0.011718998663127422, -0.022005917504429817, 0.022168558090925217, -0.057485394179821014, -0.028444809839129448, -0.057012397795915604, 0.007852685637772083, -0.03265773132443428, 0.031116310507059097, -0.01913926750421524, 0.04301542416214943, -0.018073009327054024, -0.042676687240600586, 0.02869071438908577, -0.009696180932223797, 0.003325129160657525, 0.054149363189935684, -0.015058026649057865, -0.020342828705906868, -0.02912241965532303, -0.014813411980867386, 0.021677788347005844, 0.0075118825770914555, -0.008681143634021282, 0.01753077283501625, -0.0028413250111043453, 0.023348577320575714, 0.019835658371448517, -0.03189472854137421, -0.04373079165816307, -0.029169004410505295, 0.07814228534698486, -0.024990001693367958, -0.012124120257794857, 0.06630536913871765, -0.0022372878156602383, 0.035972192883491516, 0.010493355803191662, -0.032550059258937836, 0.04402235895395279, 6.575692623296829e-33, 0.003694373881444335, -0.011050543747842312, -0.06512007862329483, -0.023466315120458603, 0.02783050574362278, -0.01012881938368082, 0.06134229153394699, 0.000880290986970067, 0.004612123128026724, -0.03426270931959152, -0.03246532753109932, 0.0528191439807415, -0.012555473484098911, 0.06574439257383347, 0.04644787684082985, -0.03164815157651901, 0.016012117266654968, -0.03027523122727871, 0.022632386535406113, -0.016012920066714287, 0.0727141872048378, -0.00899871438741684, 0.016088727861642838, 0.03065420314669609, 0.047786545008420944, 0.07298679649829865, 0.0037057006265968084, 0.00544497836381197, -0.028975170105695724, 0.0019016277510672808, -0.009245761670172215, 0.02192850410938263, 0.016942430287599564, 0.015186621807515621, -0.07037531584501266, 0.03770941123366356, -0.004315141588449478, 0.02399665117263794, -0.05229027569293976, 0.0016519149066880345, 0.03474141284823418, -0.0017791036516427994, -0.009264695458114147, 0.045748598873615265, -0.030169140547513962, 0.04470060393214226, 0.007876494899392128, -0.005750211421400309, -0.012391840107738972, 0.0069815004244446754, -0.011546878144145012, 0.030747679993510246, 0.046897806227207184, -0.026584014296531677, 0.02363555133342743, -0.0012893191305920482, 0.004197436850517988, -0.032046250998973846, 0.00047131659812293947, -0.0036386288702487946, -0.025158410891890526, 0.03584487736225128, -0.022995689883828163, -0.03049486316740513, 0.005195820238441229, 0.02840925008058548, -0.020910901948809624, -0.016835184767842293, -0.016399260610342026, 0.0017590939532965422, -0.02362474985420704, -0.017671559005975723, -0.01412430964410305, 0.0492793433368206, 0.018663210794329643, -0.022362522780895233, -0.031215958297252655, 0.001551009132526815, 0.0034768041223287582, -0.005184031557291746, 0.028814811259508133, 0.013389288447797298, 0.0032979645766317844, -0.0707162618637085, -0.0027886631432920694, -0.014554372988641262, -0.01783791370689869, 0.020290980115532875, -0.018189987167716026, 0.004370734561234713, -0.0033614877611398697, 0.01243558432906866, -0.02436308190226555, -0.03444092348217964, 0.06835673004388809, -1.2201740950956719e-8, 0.016637930646538734, 0.007665608078241348, -0.03609820827841759, 0.061252132058143616, 0.014466991648077965, -0.04429303854703903, -0.04444178566336632, -0.012878760695457458, 0.0061821299605071545, -0.018258176743984222, 0.05444203317165375, 0.020199360325932503, -0.000515971623826772, 0.02509870007634163, 0.00954778864979744, -0.011569070629775524, -0.0000174014967342373, -0.04062141105532646, 0.018215548247098923, -0.039045993238687515, 0.0027992192190140486, 0.004977494012564421, -0.01542265061289072, -0.00863614957779646, -0.02362038381397724, -0.014695080928504467, 0.015008475631475449, -0.03620104864239693, 0.001969229197129607, 0.04578514024615288, 0.01066666841506958, -0.021068742498755455, -0.06764516234397888, 0.042984601110219955, 0.013162590563297272, -0.007818262092769146, -0.0596122182905674, 0.01171495858579874, 0.004505209159106016, -0.010064362548291683, -0.06208346411585808, 0.0328955352306366, -0.028729546815156937, -0.02684311382472515, -0.0043260385282337666, 0.0232327152043581, -0.010615675710141659, 0.01744261384010315, 0.05484858155250549, -0.02361641637980938, -0.009653094224631786, -0.0058497535064816475, 0.013891376554965973, 0.038968488574028015, -0.017491333186626434, 0.0580422542989254, 0.06656963378190994, -0.01001761481165886, -0.038910795003175735, -0.04036538302898407, 0.015464434400200844, 0.0691390186548233, 0.009416790679097176, 0.0017837618943303823 ]
twu-fishbowl
https://markhneedham.com/blog/2011/03/15/twu-fishbowl
false
2011-03-13 13:39:54
Use of language: Intuitive
[ "communication" ]
[ "Communication" ]
http://www.learninggeneralist.com/[Sumeet] and I were recently discussing the difference between the use of Google Groups for internal communication compared to the http://www.jivesoftware.com/[Jive platform] which we're now moving to and I suggested that I found the former more intuitive to use. Sumeet suggested that the word 'intuitive' is quite overloaded and later pointed me to http://docs.moodle.org/en/Usability[an article on the Moodle website] which advocates the same thing: ____ Intuitive is a word you should avoid in discussions of usability as its meaning is often confused. It is generally accepted that a large part of usability is based on familiarity and experience. Using 'intuitive' as a short-hand for something that is familiar often gives the impression that if something is 'intuitive' then it is so regardless of prior learning or experience and therefore equally true for everyone. ____ While the article is technically correct, from my experience it's very difficult to get people to change the language that they use and to tell them to not use certain words is likely to provoke a defensive reaction. I've found it more useful to look beneath the language used to work out exactly what is meant by the word since that's what you're really interested in. In my case the use of the word 'intuitive' means that the way Google Groups works is *exactly the same as other mailing lists that I've used previously*. Therefore when we moved to using Google Groups internally about 15 months ago it was really easy for me to understand how to use it. The steps are pretty much: * Search for mailing list I'm interested in * Subscribe to mailing list * Messages on that mailing list come to my inbox * Job done! With Jive the 'algorithm' has to be a bit different because you're initially met with a new feed which contains absolutely everything that people have posted. It's conceptually the same as being met with the twitter stream for every single person using twitter. The only difference I can really see between twitter and Jive is that twitter doesn't default to having every single item on your stream, you have to build it up yourself. That was pretty similar to the metaphor being used by the Facebook news feed which I was already familiar with and could therefore get the hang of very quickly. On the other hand I've found it more difficult to work out how to reduce the noise on Jive so that it would only contain information I'm interested in. It would probably be possible to find some documentation that would explain what I need to do but I like it better when I can work out how to use something myself without external help. Maybe it'll just take me a bit longer to work out how to use Jive and then it'll be as intuitive to me as Google Groups and twitter are. For further reading, Jared Spool has an interesting article where he goes into much more detail than I have about http://www.uie.com/articles/design_intuitive/[what makes a design seem to be intuitive].
null
null
[ 0.029857421293854713, 0.00861379224807024, 0.030954435467720032, 0.0331970639526844, 0.07364706695079803, 0.009753375314176083, 0.032574281096458435, 0.05893130972981453, 0.024256829172372818, -0.02065497636795044, -0.003170808544382453, -0.005144381895661354, -0.05159609764814377, 0.00992264598608017, -0.02242656610906124, 0.07432817667722702, 0.05828513205051422, 0.014961209148168564, -0.003425170900300145, 0.014722497202455997, 0.02067972905933857, 0.0554361529648304, 0.02140074223279953, 0.02161654643714428, 0.038900017738342285, 0.011508144438266754, 0.006416041404008865, -0.009084459394216537, -0.0518718883395195, -0.03271465003490448, 0.048630472272634506, 0.006398338358849287, 0.01390954852104187, 0.012483148835599422, 0.014862150885164738, -0.016536330804228783, -0.005703422240912914, 0.015506090596318245, 0.0018136237049475312, 0.013476863503456116, -0.06730308383703232, 0.05212580785155296, -0.014639291912317276, 0.0007192259072326124, -0.039141327142715454, 0.014667510986328125, -0.051353808492422104, 0.011167607270181179, -0.002079698024317622, 0.007885828614234924, -0.0841558501124382, 0.04660780727863312, 0.013199619948863983, 0.01528725866228342, -0.025180388242006302, 0.050020184367895126, 0.014656830579042435, -0.06465889513492584, 0.006779219023883343, -0.03085685521364212, -0.00018464718596078455, 0.0240236334502697, 0.008105660788714886, 0.01087153423577547, 0.018793100491166115, -0.03620409965515137, -0.0014928452437743545, 0.04671553149819374, -0.048650458455085754, -0.009599900804460049, -0.015727726742625237, 0.028254402801394463, 0.007298341952264309, -0.019634118303656578, 0.0036949939094483852, -0.05889711529016495, -0.013589213602244854, 0.06560540944337845, 0.022057708352804184, 0.032182905822992325, -0.027259277179837227, 0.017466537654399872, 0.014471475034952164, 0.021423134952783585, -0.0233982615172863, -0.04430948197841644, -0.004171769134700298, -0.011202283203601837, -0.06010905280709267, 0.08002334833145142, -0.003618643619120121, -0.07099027186632156, 0.05034768953919411, 0.025120064616203308, -0.0007318180869333446, 0.0038323889020830393, 0.03381415456533432, -0.015217583626508713, -0.010039540007710457, -0.02663547359406948, -0.05204737186431885, -0.03831047937273979, 0.0019354675896465778, 0.018987225368618965, -0.08382821083068848, -0.011497952975332737, -0.030441202223300934, 0.001851645647548139, 0.021427994593977928, -0.012798672541975975, -0.03200971335172653, 0.038821231573820114, -0.019934287294745445, 0.007141573820263147, -0.057090651243925095, 0.06934374570846558, 0.014831497333943844, -0.014960367232561111, 0.008115765638649464, 0.007431455422192812, 0.07059544324874878, 0.031048694625496864, -0.009673980996012688, 0.07539387047290802, 0.010994834825396538, 0.011410565115511417, -0.03322920948266983, 0.04184678941965103, -0.02826332300901413, -0.04694034904241562, -0.002217496745288372, 0.04380958527326584, 0.0011764997616410255, 0.009337193332612514, -0.008288186974823475, -0.031020760536193848, 0.017421560361981392, -0.0031588247511535883, 0.04271645471453667, 0.04153032228350639, 0.004006544128060341, -0.047872431576251984, -0.01693233847618103, 0.022662706673145294, 0.03240031376481056, -0.010590622201561928, 0.010863174684345722, -0.00773020600900054, -0.04303675517439842, -0.04213769733905792, 0.016003385186195374, -0.0010167463915422559, 0.019207188859581947, -0.030251625925302505, 0.017636114731431007, 0.08179643005132675, 0.04794145002961159, -0.005950725171715021, 0.0036202960181981325, 0.02679375372827053, 0.025873824954032898, 0.035405151546001434, 0.0158379003405571, 0.010898220352828503, 0.016921762377023697, -0.017650453373789787, -0.013235138729214668, 0.05822687968611717, 0.005827758461236954, 0.019810790196061134, -0.04024996981024742, -0.061418354511260986, 0.05022796615958214, -0.04020748659968376, -0.025642264634370804, 0.05051824077963829, 0.062332604080438614, 0.02936031110584736, 0.06284141540527344, 0.002504275878891349, -0.07692737132310867, 0.03587774559855461, 0.02827073633670807, 0.0287180095911026, 0.014668341726064682, -0.023408349603414536, 0.06192248314619064, 0.016761837527155876, 0.023190103471279144, 0.033396586775779724, -0.06833311915397644, -0.07201466709375381, -0.020384039729833603, 0.00766259478405118, 0.061604198068380356, -0.03550024330615997, 0.035316102206707, 0.10068319737911224, 0.02973678894340992, 0.03714565560221672, 0.027285270392894745, 0.009452697820961475, 0.009007022716104984, -0.04545510560274124, -0.03783874586224556, 0.049513157457113266, 0.03281870484352112, -0.02019217610359192, -0.0418446846306324, 0.00961468368768692, -0.02361716702580452, -0.021971845999360085, 0.04493318498134613, -0.010441802442073822, 0.030323371291160583, 0.016288958489894867, 0.06955361366271973, -0.0029681113082915545, 0.04543047025799751, -0.03412040323019028, 0.01521076075732708, -0.0066142999567091465, 0.00937274843454361, 0.008918194100260735, -0.0007980699883773923, 0.11379650235176086, 0.054832618683576584, -0.029960831627249718, -0.054001856595277786, 0.01726597361266613, 0.027485357597470284, -0.035723865032196045, 0.015031899325549603, -0.010263384319841862, -0.013282899744808674, -0.008350870572030544, -0.06637943536043167, -0.0468888096511364, 0.02416778914630413, -0.045657359063625336, -0.010334047488868237, 0.05598978325724602, -0.025608157739043236, 0.06480710953474045, -0.0256905909627676, 0.001109704258851707, -0.03350406885147095, -0.027012070640921593, -0.03221700340509415, 0.016201503574848175, 0.01048723328858614, -0.00045695414883084595, 0.04633162170648575, -0.016476642340421677, -0.009643195196986198, -0.022622795775532722, -0.03992558643221855, 0.02506915107369423, 0.05366853252053261, 0.06928146630525589, -0.007380136754363775, 0.07627224922180176, -0.008856215514242649, 0.03356381878256798, 0.006739955395460129, -0.050504256039857864, -0.03876683861017227, -0.03393217921257019, -0.01558668538928032, 0.027379479259252548, 0.02917848341166973, -0.0013278430560603738, 0.001252434798516333, 0.01551075465977192, 0.00015471667575184256, 0.007495426107198, 0.020642641931772232, -0.014266418293118477, -0.00048452921328134835, -0.025852272287011147, -0.03541284427046776, 0.05970187485218048, -0.018294373527169228, -0.024476848542690277, -0.012575346976518631, -0.07233542203903198, 0.03866824507713318, -0.06792465597391129, -0.041069358587265015, 0.009471269324421883, 0.016052376478910446, 0.02713833935558796, 0.023096246644854546, -0.0006578215397894382, 0.05564778298139572, -0.0014556976966559887, 0.009840327315032482, -0.004253593273460865, -0.021345749497413635, 0.039784617722034454, -0.00027595635037869215, 0.0030117600690573454, 0.05583567172288895, -0.0047332169488072395, -0.009388363920152187, -0.07042153179645538, 0.04189661890268326, -0.03326960280537605, -0.29666709899902344, 0.035088516771793365, 0.02708604373037815, -0.04084189981222153, -0.008859648369252682, -0.025253769010305405, 0.015259092673659325, -0.048712149262428284, -0.014632985927164555, 0.02595866657793522, -0.03151173144578934, -0.02488205023109913, -0.02445402927696705, 0.014586825855076313, -0.007380414288491011, 0.004837357439100742, -0.0006126717198640108, -0.03694618493318558, -0.010840234346687794, 0.04474002867937088, -0.026397138833999634, -0.05689593032002449, 0.003349544480443001, 0.04963451996445656, 0.04889928176999092, 0.0488608181476593, -0.058326393365859985, 0.014438602142035961, -0.05546704679727554, 0.005462449509650469, 0.004795739892870188, -0.00163909827824682, -0.008683357387781143, -0.007029115688055754, -0.012692512013018131, -0.025722190737724304, 0.07188205420970917, 0.0016910565318539739, 0.0005969118792563677, -0.001318984548561275, -0.011715412139892578, -0.020411718636751175, -0.001073538907803595, -0.0035969759337604046, 0.06774846464395523, 0.004978102166205645, -0.07378609478473663, 0.00007221232226584107, -0.029621122404932976, 0.064732126891613, -0.04499797150492668, -0.05686080828309059, -0.028787236660718918, 0.03941973298788071, -0.0025424701161682606, -0.007971856743097305, -0.005035209469497204, -0.040896084159612656, -0.044372789561748505, -0.041426993906497955, -0.012369491159915924, -0.010599136352539062, -0.029476532712578773, -0.056787408888339996, -0.019851725548505783, -0.06842642277479172, -0.08655659109354019, -0.003116017207503319, 0.09000510722398758, 0.02612537331879139, -0.01951705478131771, 0.017962217330932617, 0.0025898267049342394, -0.09488513320684433, 0.013086827471852303, -0.001119903172366321, -0.03042944334447384, 0.016883229836821556, 0.02335883118212223, 0.056494615972042084, -0.0315471775829792, -0.04910144582390785, 0.01739148050546646, 0.023160142824053764, 0.040329039096832275, -0.021485518664121628, 0.03912622481584549, 0.018696408718824387, -0.021450502797961235, 0.015638520941138268, 0.07998734712600708, 0.0055310530588030815, -0.03454827517271042, 0.002874781610444188, 0.005212894640862942, 0.0170204546302557, 0.01049472950398922, -0.011628971435129642, 0.015601693652570248, 0.031046219170093536, 0.005042525939643383, -0.06131169572472572, 0.034041110426187515, -0.028588445857167244, 0.004070206545293331, -0.0032147078309208155, -0.051845695823431015, 0.013588029891252518, 0.03143491968512535, -0.002036999212577939, -0.025796277448534966, -0.03760896250605583, -0.013041743077337742, -0.026350025087594986, -0.057680804282426834, -0.0156435277312994, -0.0017453876789659262, 0.036210767924785614, -0.022244591265916824, -0.023719295859336853, -0.015009035356342793, 0.0073674931190907955, -0.01865733414888382, -0.01138417236506939, -0.06745607405900955, -0.006830344442278147, -0.02675657533109188, -0.018899133428931236, -0.009536320343613625, 0.03240641951560974, -0.014932738617062569, 0.02010199800133705, 0.0215910617262125, -0.04799310490489006, 0.029560422524809837, -0.043470144271850586, -0.029980387538671494, -0.03826958313584328, 0.006911109667271376, -0.01867949590086937, -0.011169111356139183, 0.019546709954738617, 0.0016321049770340323, 0.003930332139134407, 0.06553298234939575, 0.022755224257707596, 0.0206728707998991, -0.011967236176133156, -0.001427106442861259, 0.01876387745141983, 0.013481078669428825, -0.08174894005060196, 0.005302322097122669, -0.018342304974794388, -0.014071485958993435, -0.00045450159814208746, 0.02920537441968918, 0.006084701046347618, -0.06222734600305557, -0.0047888485714793205, 0.009204046800732613, -0.06029285863041878, -0.03854835033416748, -0.011936752125620842, 0.021786661818623543, 0.05284859985113144, -0.03396691381931305, 0.024959780275821686, -0.0006110253161750734, -0.010554688982665539, 0.038565944880247116, 0.020139280706644058, -0.02983113005757332, 0.001835381262935698, 0.011029022745788097, -0.00411320012062788, -0.005223981104791164, 0.002362638246268034, 0.05598226189613342, 0.03212009742856026, -0.0020071303006261587, -0.028441470116376877, -0.0017072024056687951, 0.013822320848703384, 0.056165289133787155, 0.029574306681752205, -0.0023198279086500406, -0.004010785836726427, -0.018715348094701767, -0.01765773445367813, -0.05064249038696289, -0.013340621255338192, -0.008031768724322319, 0.011884616687893867, -0.03576754406094551, -0.07323337346315384, 0.05265776067972183, -0.009756375104188919, -0.00877415481954813, 0.029358260333538055, -0.007156854495406151, -0.0060527129098773, -0.04253304377198219, 0.02124740183353424, 0.03029787540435791, -0.06900634616613388, 0.010072890669107437, -0.01702246256172657, -0.02128429338335991, 0.01419022772461176, 0.004197853617370129, -0.050394944846630096, -0.019876549020409584, -0.04770421236753464, 0.031432654708623886, -0.07941358536481857, -0.03717735409736633, -0.04533068835735321, 0.011111116036772728, -0.003003512741997838, -0.002100687939673662, -0.03170020505785942, -0.03749844804406166, 0.009905736893415451, -0.041627202183008194, 0.05457475036382675, -0.022030530497431755, -0.0005984497256577015, 0.029530435800552368, -0.062236011028289795, 0.006079972255975008, -0.017285514622926712, 0.014471957460045815, 0.053642015904188156, -0.03911859542131424, 0.008446890860795975, -0.030971618369221687, -0.005135816056281328, 0.008745269849896431, 0.052503716200590134, -0.002166113816201687, -0.03645313158631325, -0.053194496780633926, -0.027869340032339096, -0.024338865652680397, 0.008602467365562916, -0.005901881027966738, -0.0028126181568950415, 0.027482911944389343, 0.06282296031713486, 0.0360618457198143, 0.004221743438392878, -0.028499457985162735, -0.002897662343457341, 0.026713356375694275, -0.08277106285095215, -0.014059662818908691, -0.024039680138230324, -0.037399277091026306, 0.01495278812944889, 0.017856525257229805, 0.0034443000331521034, -0.019287196919322014, 0.03524624556303024, 0.017386259511113167, 0.025608129799365997, 0.05564751476049423, 0.00834352895617485, 0.021424775943160057, -0.04991515725851059, 0.0036705501843243837, -0.0862482413649559, -0.026969077065587044, 0.012607813812792301, 0.004408765118569136, -0.03151647001504898, 0.00675630709156394, -0.019139958545565605, 0.04899832606315613, -0.06985971331596375, -0.01651453971862793, 0.015204595401883125, 0.002373536117374897, -0.012212375178933144, 0.017619043588638306, -0.07126554101705551, 0.02419385127723217, 0.009116276167333126, -0.051744140684604645, -0.021735655143857002, -0.02265889011323452, 0.05746297165751457, -0.012505894526839256, 0.02510819025337696, -0.03553665056824684, -0.013210374861955643, 0.07675182074308395, 0.027054565027356148, -0.0034981092903763056, 0.04080602526664734, 0.0004473714216146618, 0.04513144865632057, 0.03770947828888893, 0.023632260039448738, 0.002916464814916253, 0.013501252047717571, -0.021921388804912567, -0.07051743566989899, 0.04872015491127968, -0.00483053969219327, -0.04188847541809082, -0.030558595433831215, 0.07328186929225922, 0.021658193320035934, -0.030181458219885826, -0.039935436099767685, 0.017262475565075874, -0.03449553623795509, -0.010311154648661613, -0.019424479454755783, -0.00896682869642973, -0.05852662771940231, 0.03636705130338669, -0.0032091198954731226, 0.010152188129723072, 0.06515964865684509, 0.00010850861872313544, -0.024161506444215775, 0.007640413008630276, 0.09049943834543228, 0.07221052795648575, 0.07806402444839478, 0.02209905907511711, 0.06819766759872437, -0.02530791237950325, -0.047760218381881714, 0.02259622886776924, -0.007840698584914207, -0.03603813424706459, 0.001751408213749528, 0.003688710741698742, 0.042306285351514816, -0.0328495018184185, 0.08147896826267242, -0.02881777286529541, -0.011813631281256676, 0.0006415767129510641, 0.042349278926849365, -0.008656279183924198, 0.04314429312944412, 0.005948417354375124, 0.028511477634310722, -0.029211843386292458, -0.03671920299530029, 0.02730083465576172, -0.0444469153881073, -0.02426612749695778, 0.032838646322488785, -0.013253782875835896, 0.011386623606085777, -0.0024522147141397, 0.033526621758937836, 0.07957952469587326, -0.04874603822827339, 0.021411940455436707, 0.00969505961984396, 0.009033236652612686, -0.005370568949729204, 0.03618398681282997, 0.004586478229612112, -0.01069883443415165, -0.010409234091639519, -0.027280600741505623, -0.021106131374835968, -0.026302743703126907, -0.005107237491756678, 0.03997868299484253, -0.029741588979959488, -0.025971807539463043, 0.025094011798501015, 0.0026882910169661045, -0.0384971909224987, -0.04542236030101776, -0.01769813522696495, -0.03093498945236206, -0.06862769275903702, -0.007901244796812534, 0.019889745861291885, -0.0080196438357234, -0.014499668963253498, -0.009124224074184895, -0.03156793490052223, -0.03036872111260891, 0.01636255532503128, -0.06415999680757523, -0.02782115340232849, 0.012325432151556015, 0.030292101204395294, 0.021448291838169098, 0.02264106087386608, 0.0432472787797451, -0.003304607467725873, 0.002789786085486412, -0.018107973039150238, 0.015443386510014534, 0.031673092395067215, -0.0042040180414915085, -0.00794038362801075, -0.10243311524391174, -0.0047291917726397514, 0.016563279554247856, -0.016005773097276688, -0.06182267144322395, 0.03819571062922478, 0.03682224452495575, 0.02454238571226597, 0.061815690249204636, 0.014973348937928677, -0.01717006415128708, -0.04272755607962608, -0.007172727957367897, 0.011692779138684273, 0.005389252677559853, 0.0650726854801178, -0.014546128921210766, 0.07577010989189148, 0.03939317539334297, -0.011546071618795395, -0.05770418792963028, -0.02193416655063629, 0.009818683378398418, -0.014046934433281422, -0.01646767370402813, -0.03479944169521332, -0.029640045017004013, -0.08095703274011612, -0.03466866910457611, 0.035788699984550476, -0.0070703960955142975, -0.03005107119679451, 0.03841502219438553, 0.01043760683387518, -0.009695420041680336, 0.033414699137210846, -0.042898498475551605, 0.015989521518349648, 0.0027049044147133827, -0.004475667141377926, -0.01128344051539898, 0.021701177582144737, -0.008803334087133408, -0.005578883923590183, 0.007058129645884037, -0.04000873118638992, 0.014065033756196499, -0.0199817456305027, 0.027314726263284683, 0.011031010188162327, 0.007066383492201567, 0.007516637444496155 ]
[ -0.051956068724393845, -0.01952245458960533, -0.027415217831730843, -0.017585167661309242, 0.05636550858616829, -0.028186919167637825, 0.007883019745349884, 0.010545910336077213, -0.01152339018881321, -0.04311849921941757, 0.0037802536971867085, -0.013834170997142792, 0.003970767837017775, -0.020531991496682167, 0.08809340000152588, -0.006052999757230282, 0.03200695663690567, -0.11148910224437714, -0.022121181711554527, 0.010946325026452541, 0.0268824715167284, -0.021463407203555107, -0.0141841359436512, -0.007695362903177738, 0.028632355853915215, 0.02617909573018551, 0.03370542824268341, -0.04516763612627983, 0.018782733008265495, -0.17752927541732788, 0.008803589269518852, 0.0034870393574237823, 0.053198471665382385, 0.005199719220399857, -0.04132353514432907, 0.053895220160484314, 0.024496087804436684, 0.0007132648606784642, -0.01306083146482706, 0.035187769681215286, 0.006426273845136166, -0.004544531460851431, -0.0458969846367836, -0.0017383899539709091, 0.03196428716182709, -0.005596014205366373, -0.022968271747231483, -0.021855216473340988, -0.06660256534814835, -0.01772231049835682, -0.02228069119155407, -0.025611013174057007, -0.025471804663538933, 0.004984395578503609, -0.0067275697365403175, 0.048977889120578766, 0.03879309445619583, 0.08081475645303726, -0.006109061650931835, -0.002421277342364192, 0.053697798401117325, -0.006014666985720396, -0.1437372863292694, 0.11712177097797394, -0.009391485713422298, 0.04162594676017761, -0.04339247941970825, -0.007469091564416885, -0.036736227571964264, 0.07584453374147415, 0.024940945208072662, -0.0031609300058335066, -0.0345025435090065, 0.035180170089006424, 0.03568635880947113, 0.011244568042457104, 0.010951180942356586, 0.025632407516241074, 0.0014697995502501726, -0.03398251160979271, -0.025274718180298805, 0.02053426206111908, -0.039958320558071136, -0.032172832638025284, -0.02276643179357052, -0.004447683691978455, -0.010065698064863682, 0.02341201901435852, 0.01758384332060814, 0.008391817100346088, 0.018693283200263977, -0.008183938451111317, 0.011372372508049011, 0.0008980638231150806, -0.056091099977493286, -0.03850224241614342, -0.010115127079188824, 0.00599227100610733, -0.06876333802938461, 0.42742684483528137, -0.024935761466622353, 0.009737187065184116, 0.09983646869659424, 0.023476840928196907, 0.006795021705329418, -0.03436795249581337, 0.014676178805530071, -0.07742449641227722, 0.02904568985104561, -0.006152651272714138, 0.006663219537585974, 0.0034703111741691828, 0.04123934358358383, -0.030257320031523705, 0.015362752601504326, -0.00007081672811182216, 0.04299962520599365, 0.01034312043339014, 0.05208658054471016, -0.03093733824789524, -0.033937521278858185, 0.01294429786503315, 0.03537992015480995, -0.004150654189288616, -0.029939638450741768, -0.03524656966328621, 0.03472622483968735, 0.042526185512542725, 0.04577925056219101, -0.007178335916250944, 0.06672800332307816, -0.014716161414980888, -0.06175271421670914, 0.01886160671710968, 0.017481211572885513, 0.04243997484445572, 0.021034855395555496, -0.020528718829154968, -0.006839781999588013, 0.05328948795795441, 0.012464632280170918, -0.00751681299880147, 0.04572898522019386, -0.013590061105787754, -0.03321954980492592, 0.14143601059913635, -0.0024432349018752575, -0.04485936090350151, -0.01705067791044712, -0.0075058103539049625, -0.002113963011652231, -0.0029389311093837023, 0.007413589861243963, -0.06497009098529816, -0.013254540041089058, 0.02223728969693184, 0.09338878840208054, 0.0006123284110799432, -0.06395558267831802, 0.002352069364860654, -0.008275819942355156, -0.02765488438308239, -0.05809472128748894, 0.04957730695605278, 0.04579601436853409, -0.1264219582080841, -0.009551835246384144, -0.00622983742505312, 0.0013784877955913544, -0.07936429977416992, 0.004797347355633974, 0.005933260079473257, -0.012201572768390179, 0.02039860375225544, 0.0649353563785553, -0.02244485169649124, -0.041893187910318375, 0.008994710631668568, 0.039336156100034714, 0.026033099740743637, 0.015594777651131153, -0.004999062977731228, -0.03131600469350815, -0.01233803853392601, -0.0763392448425293, -0.039087772369384766, -0.02952757477760315, -0.027270568534731865, 0.032576702535152435, 0.016059566289186478, 0.004238911904394627, -0.03756669536232948, -0.08459275215864182, 0.06684289127588272, -0.016552304849028587, 0.0015574083663523197, 0.0033884127624332905, -0.029948335140943527, -0.024805741384625435, 0.0007775716949254274, -0.07994288206100464, 0.006429733708500862, -0.04580899327993393, 0.008626625873148441, -0.023335149511694908, 0.04468252509832382, 0.06528770178556442, -0.05768875405192375, 0.10203295946121216, 0.016075966879725456, -0.025690235197544098, -0.021772759035229683, -0.009697623550891876, 0.025561895221471786, 0.011517228558659554, -0.012289071455597878, 0.008910982869565487, 0.02352127991616726, 0.0017096488736569881, 0.03431735932826996, -0.03500378131866455, -0.012759201228618622, -0.0379212461411953, -0.3291262090206146, -0.06884424388408661, 0.004326827824115753, 0.024370424449443817, 0.016568617895245552, -0.04966651275753975, 0.020619770511984825, -0.04229229316115379, 0.0092646898701787, 0.012237870134413242, 0.061004724353551865, -0.00019274800433777273, -0.006050810217857361, -0.050032176077365875, 0.014553027227520943, 0.023675382137298584, -0.027128245681524277, -0.0268746055662632, -0.007289552129805088, 0.010556932538747787, -0.003205242333933711, 0.008934667333960533, -0.002262681256979704, -0.0795176550745964, -0.0018997215665876865, 0.003563177539035678, 0.09160256385803223, 0.02328282967209816, 0.06042453646659851, -0.05075107514858246, 0.032671425491571426, 0.016383180394768715, 0.0075112152844667435, -0.11637619882822037, 0.016180308535695076, 0.003759631421416998, 0.028921691700816154, -0.03735761716961861, 0.022403445094823837, -0.0526411347091198, -0.07363127171993256, 0.029910502955317497, -0.04334098845720291, -0.03771258890628815, -0.058371976017951965, 0.03539351746439934, -0.023355217650532722, -0.03147061541676521, -0.03313228487968445, 0.06140761077404022, 0.013886507600545883, 0.00437298696488142, 0.017382755875587463, 0.04009068384766579, -0.019207026809453964, -0.04270987957715988, -0.09436915814876556, 0.026766322553157806, -0.00014545842714142054, 0.020705953240394592, 0.03263464942574501, 0.04864328354597092, 0.03580563887953758, -0.07397009432315826, 0.0051943096332252026, -0.008240533992648125, -0.022683238610625267, 0.03140445053577423, 0.024180740118026733, 0.0072808172553777695, -0.03407391160726547, 0.11295130848884583, -0.02082725614309311, -0.010907968506217003, 0.03160085529088974, 0.01920914836227894, -0.0029120808467268944, -0.004409969784319401, 0.013570190407335758, -0.029045086354017258, 0.025032980367541313, 0.005098019260913134, 0.06146087124943733, -0.0138052087277174, -0.022479111328721046, 0.03342457860708237, 0.0007170889875851572, -0.07059933245182037, 0.04242299124598503, 0.0005021081306040287, -0.01989428512752056, 0.022519579157233238, -0.012829217128455639, -0.07006081938743591, 0.07696668058633804, -0.02939167059957981, -0.2631475627422333, 0.04139579460024834, 0.036701176315546036, 0.04990113154053688, 0.0041694738902151585, 0.03774040937423706, 0.007195092737674713, -0.059431228786706924, -0.003798705292865634, 0.03213226795196533, 0.01825438067317009, 0.015440654009580612, 0.001579586649313569, -0.02289658784866333, 0.045213330537080765, 0.011253568343818188, 0.057670269161462784, -0.002514131832867861, -0.02555488422513008, 0.004860956221818924, 0.04229579120874405, 0.015652405098080635, 0.18255823850631714, 0.007078779861330986, -0.008587106131017208, 0.0073659783229231834, 0.0065579344518482685, 0.01833086833357811, 0.061106666922569275, 0.005074612330645323, -0.00944959744811058, -0.01942875236272812, 0.055994946509599686, 0.0005614442634396255, 0.04671180248260498, -0.0877314880490303, -0.03276409953832626, -0.023524565622210503, 0.04187299311161041, -0.0009585184161551297, 0.024264857172966003, 0.02928845025599003, -0.022877149283885956, 0.026422569528222084, 0.0651463121175766, 0.011699998751282692, 0.015359428711235523, -0.029348615556955338, -0.04843014478683472, -0.0031886426731944084, -0.033126141875982285, -0.07102609425783157, -0.023242900148034096, 0.021844075992703438, 0.035353437066078186, 0.05016337335109711, 0.03227987140417099, -0.044310834258794785, 0.004947865381836891, 0.00462809344753623, -0.025693684816360474, -0.010881934314966202, 0.11179308593273163, 0.016906941309571266, 0.05757787823677063 ]
[ -0.04842338711023331, -0.0009184957016259432, 0.01395941711962223, 0.011869534850120544, 0.02875252068042755, -0.013030517846345901, 0.023359064012765884, 0.012113852426409721, -0.005564211402088404, -0.02608964405953884, -0.02074599452316761, 0.02798370271921158, 0.016984928399324417, -0.01892205700278282, 0.04958350583910942, -0.023885462433099747, 0.005457705352455378, -0.0263566505163908, 0.04077489301562309, -0.048500146716833115, -0.01843813806772232, -0.005809231661260128, 0.00035429245326668024, -0.01727479323744774, 0.00006999386823736131, 0.014151777140796185, -0.01739986054599285, -0.02841918356716633, 0.02754654362797737, -0.12823225557804108, 0.004783390089869499, -0.00967260543256998, 0.011928039602935314, 0.009257313795387745, -0.03505006805062294, 0.026442503556609154, -0.004305785987526178, 0.0014357304899021983, 0.0009087638463824987, 0.0245035570114851, -0.002915685996413231, -0.026621613651514053, -0.033783067017793655, -0.01625571772456169, 0.009412677958607674, 0.036688391119241714, -0.002029360504820943, -0.01800682581961155, -0.01997707411646843, -0.005480303429067135, -0.038933608680963516, -0.006137467455118895, -0.03007947839796543, 0.0625300258398056, -0.032567624002695084, -0.01258538942784071, -0.015451706945896149, 0.012491712346673012, 0.004813432227820158, -0.02398522198200226, -0.022849950939416885, -0.05754337087273598, -0.019735166803002357, -0.007893765345215797, -0.011310032568871975, -0.023384088650345802, -0.006615876220166683, 0.029833463951945305, -0.004304157104343176, -0.00007710784848313779, 0.01928175985813141, 0.03710077330470085, -0.03212979808449745, -0.005633002147078514, -0.007885525934398174, -0.006191631779074669, 0.00035602098796516657, -0.01490736287087202, 0.01035960391163826, 0.017554812133312225, -0.022146645933389664, 0.010142532177269459, 0.037125103175640106, 0.009350739419460297, 0.0016593043692409992, -0.003512919880449772, 0.016079261898994446, -0.0004329485527705401, -0.006260810885578394, -0.0032584182918071747, -0.015711555257439613, 0.04884763062000275, 0.015116767957806587, 0.0205177403986454, -0.07740800082683563, -0.011902639642357826, -0.02758784405887127, -0.015451813116669655, -0.029618719592690468, 0.8465718030929565, 0.035331059247255325, 0.027463020756840706, 0.008006698451936245, 0.008770705200731754, 0.02391992136836052, -0.03489667922258377, -0.012376762926578522, 0.017582815140485764, 0.06189965084195137, -0.03270648419857025, -0.03587208315730095, 0.05525234341621399, 0.011837701313197613, -0.006983490195125341, -0.010445074178278446, -0.02752031199634075, 0.013187569566071033, 0.024011265486478806, 0.05956213176250458, 0.01967264525592327, 0.06124293804168701, 0.01378678623586893, 0.014608155004680157, -0.01614890620112419, 0.016457339748740196, -0.14152869582176208, -0.028302932158112526, -8.476500784039054e-33, 0.04396098107099533, -0.0035597498062998056, 0.00700067775323987, -0.020184878259897232, -0.001138968043960631, -0.027679840102791786, 0.015950050204992294, 0.041530147194862366, -0.021410545334219933, -0.03362816572189331, 0.0017161458963528275, 0.009031482972204685, 0.0036065608728677034, 0.023073509335517883, 0.038933247327804565, -0.014597000554203987, -0.01763778366148472, 0.022849494591355324, 0.03869093954563141, -0.0317770317196846, 0.01821213774383068, 0.010668509639799595, -0.003921494819223881, 0.009747202508151531, -0.02209935523569584, 0.0398562066257, 0.018085259944200516, 0.0038342957850545645, -0.0428897887468338, -0.03615175560116768, 0.009779118932783604, -0.01789144054055214, 0.012230521067976952, -0.011662541888654232, 0.0226029884070158, -0.027514545246958733, -0.017105616629123688, 0.00231845211237669, -0.012014981359243393, -0.02914530411362648, -0.017205189913511276, 0.016634413972496986, -0.04328667372465134, -0.03220381587743759, -0.023568598553538322, 0.014511351473629475, 0.01443436462432146, -0.005625368095934391, 0.021190913394093513, 0.01412690058350563, 0.03704795986413956, -0.026218915358185768, 0.002120580757036805, 0.008152623660862446, 0.009010815992951393, 0.012399849481880665, -0.021629273891448975, 0.007086415309458971, 0.028195150196552277, 0.0008286079973913729, 0.0026066035497933626, -0.0016601822571828961, 0.0052338168025016785, 0.029856247827410698, 0.01132289133965969, 0.007816677913069725, 0.003944275435060263, 0.04159950837492943, 0.010800562798976898, -0.000026421348593430594, -0.026275457814335823, 0.004000234417617321, -0.010416350327432156, 0.02271592989563942, -0.022683357819914818, -0.02602338045835495, -0.0009894378017634153, -0.003955400548875332, -0.008001083508133888, 0.04341369494795799, 0.03125196322798729, -0.04027753323316574, 0.0104573555290699, -0.0014585301978513598, -0.04200788959860802, 0.022447733208537102, 0.07258167862892151, -0.025514565408229828, -0.04635106772184372, 0.03538380563259125, 0.008379395119845867, 0.06013982743024826, 0.011981402523815632, 0.030923131853342056, -0.03478951379656792, 8.592337670788929e-33, -0.007490901742130518, 0.014708750881254673, -0.06025586649775505, -0.0005793354939669371, 0.019421463832259178, -0.019850626587867737, 0.04742566496133804, 0.02741181291639805, -0.014173963107168674, 0.04661654308438301, -0.032385628670454025, -0.010823079384863377, -0.024744294583797455, 0.016438933089375496, 0.02459382824599743, -0.027058199048042297, 0.016074415296316147, -0.043931733816862106, 0.016813600435853004, 0.004596703220158815, -0.009617720730602741, -0.0009960723109543324, -0.0022319976706057787, 0.00006703001417918131, 0.033922579139471054, 0.03556464985013008, -0.016167744994163513, 0.0047935000620782375, -0.020037982612848282, -0.012524619698524475, 0.044287897646427155, -0.01399194449186325, 0.015951624140143394, 0.0009529326343908906, 0.003916877321898937, 0.012810776010155678, -0.003958296496421099, 0.000882513471879065, 0.04537549242377281, 0.0015728059224784374, 0.03659915179014206, 0.009516573511064053, -0.004981271922588348, -0.006391517352312803, 0.01145230233669281, 0.01922847330570221, 0.002511311788111925, -0.030183766037225723, -0.019722038879990578, 0.061305586248636246, 0.00214337813667953, 0.007033574394881725, 0.019548041746020317, 0.015981702134013176, -0.016949301585555077, -0.0404987633228302, -0.00717901112511754, -0.011831831187009811, -0.03146365284919739, -0.02450769580900669, -0.021565893664956093, -0.02527330070734024, -0.012413153424859047, 0.017270131036639214, -0.022038238123059273, -0.029415545985102654, -0.0004042112559545785, 0.004120292142033577, -0.0024980464950203896, -0.014321050606667995, -0.011489341966807842, -0.013535326346755028, -0.004286142066121101, 0.009466936811804771, 0.013182003982365131, -0.02984033152461052, -0.013565951026976109, 0.03659553825855255, -0.04172184690833092, 0.0028379715513437986, -0.0057689109817147255, 0.0330570749938488, 0.006094500422477722, -0.05046357586979866, -0.016008084639906883, 0.012864268384873867, -0.011780863627791405, 0.04283521696925163, 0.014413971453905106, 0.002971045207232237, 0.0030962552409619093, -0.025534793734550476, -0.006389284506440163, -0.005940549541264772, -0.0007997804204933345, -1.3760416806007925e-8, -0.013007939793169498, -0.0214993879199028, -0.01579851657152176, 0.013295503333210945, 0.047929562628269196, -0.0017163683660328388, -0.034442752599716187, -0.007167726755142212, 0.0120814498513937, 0.00869252160191536, 0.03134547546505928, -0.01396183017641306, -0.004022765904664993, 0.025559403002262115, 0.0335775725543499, -0.042377620935440063, -0.04472596198320389, -0.0361928790807724, 0.04089866578578949, 0.025745417922735214, 0.034178148955106735, 0.04331259801983833, 0.00011594466923270375, -0.03234732523560524, 0.02207617461681366, 0.018121130764484406, -0.0027151864487677813, -0.10596944391727448, -0.03150187432765961, 0.016945848241448402, -0.00735061289742589, -0.01841391995549202, -0.05068433657288551, -0.011791137047111988, -0.016012070700526237, -0.03548949584364891, -0.011207937262952328, 0.00863999966531992, -0.00109420798253268, -0.0093877874314785, 0.017071552574634552, 0.018554825335741043, 0.01619395799934864, -0.022951340302824974, -0.018216639757156372, -0.01722859963774681, -0.035483308136463165, 0.0028244846034795046, 0.04402691125869751, -0.015314310789108276, 0.02817363291978836, -0.002494042506441474, 0.008597377687692642, 0.026017026975750923, 0.04635733738541603, -0.051521461457014084, 0.018669163808226585, -0.021988047286868095, -0.01305982656776905, -0.031793996691703796, 0.032552752643823624, 0.047475654631853104, -0.04295654967427254, -0.01561487652361393 ]
use-of-language-intuitive
https://markhneedham.com/blog/2011/03/13/use-of-language-intuitive
false
2011-03-13 12:03:13
Everything I know everyone else knows
[ "learning" ]
[ "Learning" ]
For as long as I can remember I've had the belief that, at least as far as software is concerned, *everything I know how to do everyone else also knows how to do*. I carried that assumption for quite a while and only realised relatively recently how harmful it can be. The most observable outcome I noticed is that I either didn't give my opinion in group situations or just didn't take part in them because I assumed that what I wanted to say would eventually be contributed by someone else anyway. The danger of doing that is that sometimes people didn't come up with a solution I'd seen work before and I'd be extremely frustrated because it seemed like the others were making what I considered bad decisions deliberately. I think this belief evolved from the fact that for several years I was nearly always the least experienced person on the teams that I worked on and it was often true that my colleagues knew way more about almost everything than I did. As time has gone on I've seen more situations and gained some ideas on approaches which work and I haven't been the least experienced in the teams I've been working on so the belief doesn't necessarily hold anymore. I'm not sure if this is a common stage to go through on the software journey so it'd be interesting to hear about your experience. I'm now moving more towards an approach where I give my opinions in situations where I have some knowledge while also accepting the fact that there will be other situations where others know much more than me. In those situations I can legitimately keep quiet and learn from my colleagues experiences.
null
null
[ 0.023745855316519737, 0.016906898468732834, -0.018154948949813843, 0.042833827435970306, 0.08582203835248947, 0.031751468777656555, 0.032751888036727905, 0.04427042976021767, 0.025767752900719643, -0.01385017205029726, -0.036521606147289276, 0.01492223422974348, -0.06371177732944489, 0.026377294212579727, -0.027294998988509178, 0.06779947131872177, 0.052671581506729126, 0.004964231047779322, -0.0028684912249445915, -0.000885669665876776, 0.04202363267540932, 0.0667358785867691, 0.006451777182519436, 0.03333314508199692, 0.04803527146577835, 0.005448536481708288, 0.028078874573111534, -0.027186568826436996, -0.04980229213833809, 0.009301932528614998, 0.04307232052087784, -0.008767402730882168, 0.0011323216604068875, -0.0064238496124744415, 0.012462422251701355, 0.0004179994866717607, -0.0036804904229938984, 0.028804978355765343, 0.000621159968432039, 0.010037427768111229, -0.06668953597545624, 0.05758831650018692, -0.025853978469967842, 0.009373120032250881, -0.04235848784446716, 0.0055420612916350365, -0.017818348482251167, 0.010578048415482044, 0.0030599774327129126, 0.014107456430792809, -0.06210695207118988, 0.03302966430783272, 0.012687156908214092, -0.01628910005092621, -0.0032297177240252495, 0.043076056987047195, 0.036619752645492554, -0.05899333953857422, 0.003203328000381589, -0.03958894684910774, -0.021680135279893875, -0.005148693453520536, -0.001321453251875937, 0.028280939906835556, 0.011703254655003548, -0.026941128075122833, 0.014854821376502514, 0.029690535739064217, -0.04051230102777481, 0.0183514766395092, -0.02794426493346691, -0.015298000536859035, -0.034064650535583496, -0.04769667983055115, -0.012575081549584866, -0.06613614410161972, 0.010548821650445461, 0.05990573391318321, 0.020565317943692207, 0.05132857710123062, -0.023515356704592705, 0.03475230187177658, 0.002152971224859357, 0.029681125655770302, 0.014183529652655125, -0.05695628002285957, 0.025493871420621872, -0.01091510895639658, -0.08326433598995209, 0.04140886291861534, 0.005616563837975264, -0.06221374496817589, 0.007647561840713024, 0.03925188630819321, 0.0037882092874497175, 0.0050763594917953014, 0.029888741672039032, -0.003972150385379791, -0.016551781445741653, -0.028002241626381874, -0.02279798872768879, 0.0025392009411007166, -0.013990122824907303, 0.006569300778210163, -0.08191502839326859, 0.03268309310078621, -0.005502492189407349, -0.003807028755545616, -0.02970638871192932, 0.0073965382762253284, -0.04083400219678879, 0.026008838787674904, -0.02873007208108902, 0.036030907183885574, -0.06630636751651764, 0.0742773562669754, 0.0058801560662686825, -0.031089086085557938, 0.003910897299647331, -0.013780193403363228, 0.04040822014212608, 0.005404417868703604, -0.026735633611679077, 0.07520643621683121, -0.01817360520362854, 0.021018465980887413, -0.038641296327114105, 0.04763304442167282, 0.0023775408044457436, -0.057855505496263504, -0.027057811617851257, 0.04953458532691002, -0.05685405805706978, 0.0012346975272521377, -0.013380246236920357, -0.021075844764709473, 0.012510986067354679, 0.016144884750247, 0.005693455226719379, 0.03656637668609619, -0.00006488111830549315, -0.04580231010913849, 0.005703680217266083, 0.026004381477832794, 0.011752872727811337, -0.004181008320301771, 0.012894373387098312, -0.013056900352239609, -0.044284287840127945, -0.02467086724936962, 0.026713702827692032, -0.0005584110040217638, 0.027995487675070763, -0.037669986486434937, 0.031456466764211655, 0.0811934620141983, 0.03969230130314827, -0.009779101237654686, -0.009444577619433403, 0.018632348626852036, 0.042323559522628784, 0.011392608284950256, 0.016227159649133682, 0.01476080622524023, 0.032552264630794525, -0.033437322825193405, -0.01140697579830885, 0.023414047434926033, -0.009552722796797752, 0.02275182120501995, -0.06166824698448181, -0.04207712039351463, 0.02755008637905121, -0.03760810196399689, -0.018651971593499184, 0.05474572256207466, 0.06575906276702881, 0.05545280501246452, 0.029544664546847343, 0.00009986053191823885, -0.06880741566419601, 0.02295081876218319, -0.012387247756123543, 0.021147307008504868, 0.03680006042122841, -0.010548938065767288, 0.03273966535925865, 0.02296142280101776, 0.0013960215728729963, 0.029402978718280792, -0.08130130916833878, -0.08203209191560745, -0.01554886531084776, -0.009901442565023899, 0.052714746445417404, -0.030456243082880974, 0.009889249689877033, 0.058324217796325684, 0.002652333118021488, 0.049501873552799225, 0.016066137701272964, 0.0035290757659822702, 0.005015692673623562, -0.015535171143710613, -0.054714690893888474, 0.07102006673812866, 0.04405747726559639, 0.014520721510052681, -0.04374268651008606, 0.02576703391969204, -0.0334881991147995, -0.006802780088037252, 0.040096331387758255, -0.00930116418749094, 0.03866090625524521, 0.001352303079329431, 0.01875164359807968, -0.027088714763522148, 0.047095801681280136, -0.04439232498407364, -0.014036191627383232, 0.003595604794099927, -0.0034142411313951015, 0.01059318333864212, -0.003571620909497142, 0.1018126904964447, 0.05791826918721199, -0.07157471030950546, -0.03465477377176285, 0.02416723594069481, 0.020779147744178772, -0.05011332407593727, 0.012911414727568626, -0.014881852082908154, 0.024869902059435844, -0.010264459066092968, -0.047120101749897, -0.05751361325383186, 0.019723013043403625, -0.06105806306004524, -0.0050945826806128025, 0.05447990819811821, -0.012917090207338333, 0.07448448240756989, -0.012733066454529762, -0.00528085557743907, -0.0009969057282432914, -0.02355176769196987, -0.04402035102248192, 0.026706106960773468, 0.0244718249887228, -0.01268200296908617, 0.047397222369909286, -0.0036900443956255913, -0.026076190173625946, -0.04534526541829109, -0.015338325873017311, 0.023408178240060806, 0.03763445466756821, 0.06397894024848938, -0.014379537664353848, 0.05854448303580284, -0.00930639449506998, 0.03771529346704483, 0.012950778007507324, -0.039114050567150116, -0.04504571110010147, -0.035612553358078, 0.003411276265978813, 0.0068257031962275505, -0.013782107271254063, -0.013541469350457191, 0.019245846197009087, 0.02109234593808651, -0.024614514783024788, -0.005365243647247553, 0.00898774340748787, 0.003687519347295165, 0.001221930724568665, -0.017902763560414314, 0.008943564258515835, 0.06076298654079437, -0.028341861441731453, -0.00036120961885899305, 0.019369715824723244, -0.06420706957578659, 0.05418408289551735, -0.04333646968007088, -0.06050494685769081, 0.0011785054812207818, 0.03822098299860954, 0.04454788565635681, 0.02195051498711109, 0.031787317246198654, 0.053525250405073166, 0.0015220441855490208, 0.037659116089344025, -0.0008068648166954517, 0.008696681819856167, 0.04912767931818962, 0.028879497200250626, -0.019093787297606468, 0.027340415865182877, -0.009648206643760204, 0.008542118594050407, -0.04000355675816536, 0.060037992894649506, -0.040376242250204086, -0.3020050525665283, 0.030689075589179993, 0.024187924340367317, -0.04564259573817253, 0.027423640713095665, -0.0334465317428112, 0.019715406000614166, -0.04854307323694229, -0.022674035280942917, 0.02323596179485321, -0.029976125806570053, -0.03286084905266762, -0.01526152528822422, 0.046339936554431915, -0.001872617518529296, 0.015301569364964962, 0.02952616475522518, -0.022700438275933266, 0.009809860959649086, 0.04973877593874931, -0.015871921554207802, -0.052871569991111755, -0.02075153775513172, 0.027775712311267853, 0.04657788574695587, 0.061754439026117325, -0.06912145763635635, 0.0572623573243618, -0.06332813203334808, -0.00898184534162283, -0.005383823998272419, -0.008131962269544601, 0.003631428349763155, -0.0026910717133432627, -0.002902824664488435, -0.020534096285700798, 0.04420182853937149, 0.016505151987075806, -0.011805003508925438, -0.0014665452763438225, -0.012481276877224445, -0.05247509852051735, 0.004926686175167561, 0.02020866423845291, 0.07510996609926224, -0.009045197628438473, -0.08265127241611481, -0.017599796876311302, -0.03401047736406326, 0.08050750195980072, -0.041374173015356064, -0.01427282765507698, 0.005209067370742559, 0.0414685420691967, -0.017125269398093224, -0.018708478659391403, 0.01713556796312332, -0.02014841139316559, -0.07880370318889618, -0.03822373226284981, -0.00905182771384716, -0.01661371812224388, -0.018278246745467186, -0.06406036019325256, 0.011896463111042976, -0.06566867977380753, -0.07290367037057877, -0.03437996283173561, 0.05757730081677437, -0.01849661022424698, -0.03608172759413719, 0.020714741200208664, -0.0030587336514145136, -0.09713666141033173, -0.014646667055785656, 0.0004696534888353199, -0.02314700372517109, -0.0002478842216078192, 0.02582615055143833, 0.03482900932431221, -0.019664082676172256, -0.038212474435567856, 0.03041873127222061, -0.004118793178349733, 0.023918967694044113, 0.009782454930245876, 0.06153269484639168, 0.041188690811395645, -0.050489407032728195, 0.0014821283984929323, 0.07053274661302567, 0.02146761491894722, -0.047342658042907715, -0.0006721587851643562, 0.04515783488750458, 0.033314742147922516, -0.003179311752319336, -0.02749667316675186, 0.017764048650860786, 0.004133171867579222, -0.0006710059242323041, -0.05525020509958267, 0.010162904858589172, -0.02218690514564514, -0.02083154395222664, -0.0047896672040224075, -0.05312929302453995, 0.02000029943883419, 0.036984607577323914, 0.021632414311170578, 0.019387274980545044, -0.015078632161021233, 0.01874373108148575, -0.03331655636429787, -0.02455134317278862, -0.009783843532204628, -0.0027138434816151857, 0.038625556975603104, 0.0048553659580647945, 0.0043231770396232605, -0.03518708422780037, -0.0013959823409095407, -0.005486716516315937, 0.01597672887146473, -0.07698402553796768, -0.026669006794691086, -0.014371374621987343, -0.013569632545113564, -0.008550725877285004, 0.02958524599671364, -0.03375212475657463, 0.02615826018154621, 0.05098193883895874, -0.04396285489201546, 0.030216112732887268, -0.023745838552713394, -0.06511350721120834, -0.03713729977607727, -0.01672429032623768, -0.002693004673346877, -0.01755860634148121, 0.032475072890520096, 0.003133281832560897, -0.0032131806947290897, 0.03795839101076126, -0.001342057716101408, 0.012256513349711895, -0.018633505329489708, 0.02354094572365284, 0.009772413410246372, 0.009063096717000008, -0.06896598637104034, 0.013809921219944954, -0.024469492956995964, -0.028452659025788307, -0.02184155024588108, 0.029628688469529152, -0.028536247089505196, -0.04444167762994766, -0.009253174997866154, -0.005813471972942352, -0.05616538226604462, -0.049864280968904495, -0.027105625718832016, 0.0547342449426651, 0.06015479937195778, -0.037589553743600845, 0.00469607301056385, -0.006059713661670685, 0.0006183354998938739, 0.009690048173069954, 0.018292438238859177, -0.046406518667936325, -0.013031217269599438, -0.0003247865824960172, 0.01351082045584917, -0.0032462277449667454, -0.023977207019925117, 0.02961348555982113, -0.013679027557373047, 0.0036170282401144505, -0.03018280863761902, 0.0041110822930932045, 0.021957583725452423, 0.05301887169480324, 0.03585051745176315, -0.00932222232222557, -0.016774119809269905, -0.027723774313926697, -0.017253559082746506, -0.05348188057541847, -0.019919393584132195, -0.019769037142395973, 0.01697440631687641, -0.05304582789540291, -0.07185947149991989, 0.04085559397935867, 0.0055743674747645855, 0.017683029174804688, -0.0005518459365703166, -0.02276996709406376, -0.015810968354344368, -0.03140644729137421, 0.023301146924495697, 0.0647687017917633, -0.068597711622715, -0.0075928522273898125, 0.004427014384418726, -0.009153790771961212, 0.010562188923358917, -0.027888115495443344, -0.03430478274822235, -0.017929470166563988, -0.038807403296232224, 0.008291956037282944, -0.08324749767780304, -0.014318905770778656, -0.023939790204167366, 0.0010826676152646542, 0.004368006717413664, -0.0038480167277157307, -0.035353124141693115, -0.018636275082826614, -0.014374648220837116, -0.013128119520843029, 0.024298641830682755, -0.03678172081708908, 0.014860267750918865, 0.01646546460688114, -0.022131016477942467, -0.01444467343389988, -0.02616862952709198, 0.032681506127119064, 0.0043571447022259235, -0.03630213439464569, -0.015690095722675323, -0.014357401989400387, 0.007374977692961693, 0.0012236576294526458, 0.018954666331410408, -0.01423376053571701, -0.031990960240364075, -0.037557005882263184, -0.03157874569296837, -0.029833700507879257, 0.0028954774606972933, -0.04126220569014549, -0.01669435389339924, 0.02323054149746895, 0.057122450321912766, 0.020566623657941818, 0.03484498709440231, -0.007317889016121626, -0.0018458240665495396, 0.05326210707426071, -0.04408552125096321, -0.029936006292700768, -0.038823891431093216, -0.042611926794052124, 0.005797977559268475, 0.030281145125627518, 0.01455081719905138, -0.029027290642261505, 0.03237380459904671, 0.021810509264469147, 0.033533211797475815, 0.03761617839336395, 0.018672702834010124, 0.03471950441598892, -0.062318507581949234, 0.011958187445998192, -0.08164806663990021, 0.0006367256864905357, 0.015111047774553299, -0.02166205830872059, 0.008053443394601345, -0.02317868173122406, -0.03283020481467247, 0.05172203853726387, -0.07118146121501923, -0.017218101769685745, 0.03885386884212494, -0.014497487805783749, -0.01698196493089199, 0.008618934080004692, -0.07707495987415314, 0.042891617864370346, 0.022441493347287178, -0.05673510953783989, -0.017388872802257538, -0.02428314834833145, 0.048919677734375, -0.005289873108267784, 0.031971171498298645, -0.03427274525165558, -0.01883433200418949, 0.0704064592719078, 0.02068747952580452, 0.022433288395404816, 0.06068621948361397, 0.0010905126109719276, 0.051170118153095245, 0.037408340722322464, 0.02698470465838909, -0.011776910163462162, 0.03849135339260101, -0.012896171770989895, -0.06752470880746841, 0.027633480727672577, 0.002914381679147482, -0.03672771528363228, -0.04535961151123047, 0.04609329253435135, 0.013801696710288525, -0.02583136595785618, -0.054468784481287, 0.01346358098089695, -0.058209650218486786, -0.005459461361169815, -0.020081937313079834, -0.011406469158828259, -0.04976939037442207, 0.049479492008686066, -0.005182135384529829, 0.02263008803129196, 0.06198732182383537, 0.01445788238197565, -0.01430688239634037, -0.023481525480747223, 0.08394429832696915, 0.05672508105635643, 0.07113274186849594, 0.024914849549531937, 0.0765010267496109, -0.026504578068852425, -0.041224155575037, 0.02697037160396576, -0.001118101761676371, -0.012400247156620026, -0.01581568829715252, 0.031139910221099854, 0.05325921252369881, 0.003999356646090746, 0.05573978275060654, -0.024747299030423164, -0.011545326560735703, 0.006112532690167427, 0.05095616728067398, 0.010207333602011204, 0.07760883867740631, 0.018140645697712898, 0.008715195581316948, -0.002133237197995186, -0.04697293043136597, 0.02898850478231907, -0.03974418342113495, -0.009684773162007332, 0.03386155143380165, -0.02069053053855896, 0.03679836168885231, 0.042035188525915146, 0.01334489043802023, 0.08065401762723923, -0.03222385793924332, 0.007433020509779453, -0.020694460719823837, 0.03934646397829056, -0.021295398473739624, 0.014119951985776424, -0.012991830706596375, -0.015128222294151783, -0.011075159534811974, -0.05576702579855919, -0.030555279925465584, -0.013037161901593208, -0.030574500560760498, 0.040288470685482025, -0.04410248622298241, -0.0040169041603803635, 0.037915248423814774, 0.012531622312963009, -0.03907609358429909, -0.06885174661874771, -0.029901033267378807, -0.027970287948846817, -0.031012577936053276, -0.0214356929063797, 0.015754712745547295, 0.028838373720645905, -0.03456796333193779, 0.014083841815590858, -0.0169228445738554, -0.021386411041021347, 0.042967233806848526, -0.04843753203749657, -0.012182091362774372, 0.008525841869413853, 0.025708917528390884, 0.03184591606259346, 0.0008046302245929837, 0.03827868402004242, 0.0035475553013384342, -0.007325264159590006, -0.0015548442024737597, 0.006724924314767122, 0.029164107516407967, -0.01615672931075096, 0.007272052578628063, -0.07927027344703674, 0.01605335809290409, 0.030064333230257034, -0.026207484304904938, -0.06394325941801071, 0.0316699855029583, 0.023319175466895103, -0.0023128085304051638, 0.06461425125598907, 0.008999223820865154, 0.02331617847084999, -0.024184491485357285, 0.0014017799403518438, -0.018698006868362427, 0.020230360329151154, 0.060997478663921356, -0.03655432164669037, 0.09475982189178467, 0.029226941987872124, -0.00823997426778078, -0.04746418073773384, -0.011993412859737873, 0.01355058141052723, -0.0070730773732066154, -0.0003866404586005956, -0.022832628339529037, -0.016161782667040825, -0.09099537134170532, 0.0004492824955377728, 0.016353009268641472, -0.036544810980558395, -0.021235698834061623, 0.01290274690836668, 0.01319968979805708, -0.012114045210182667, 0.0399504117667675, -0.06781329959630966, 0.04932550713419914, -0.024076037108898163, -0.004782821983098984, 0.029369857162237167, 0.023298878222703934, -0.004106895066797733, -0.008573957718908787, 0.03190641477704048, -0.048936471343040466, 0.00837800931185484, 0.0006108880043029785, 0.03953384608030319, 0.031065983697772026, -0.0026771107222884893, 0.014766916632652283 ]
[ -0.0712292492389679, 0.004782447591423988, -0.02485494129359722, -0.053016260266304016, 0.046858567744493484, -0.04290362820029259, 0.029427070170640945, 0.026088202372193336, 0.004837437067180872, -0.032724782824516296, -0.002130614360794425, -0.004501339979469776, 0.0043072886765003204, -0.043056052178144455, 0.07434544712305069, 0.02056046947836876, -0.014519816264510155, -0.0775856226682663, 0.01792912557721138, 0.02419411763548851, -0.018164103850722313, -0.035647738724946976, -0.03106508031487465, -0.01622236706316471, 0.006817093584686518, 0.028386259451508522, 0.0323733314871788, -0.037461236119270325, 0.0024307554122060537, -0.15115483105182648, 0.008539790287613869, 0.012495551258325577, 0.05860386788845062, -0.009293886832892895, 0.026977116242051125, 0.07402054965496063, 0.004176168702542782, 0.017873115837574005, -0.01034542452543974, 0.03206465393304825, 0.008863138034939766, 0.00808634515851736, -0.033400148153305054, -0.060473982244729996, 0.014256364665925503, 0.006429742090404034, 0.012033743783831596, -0.02694239467382431, -0.03172938898205757, 0.0008524848381057382, -0.05908483639359474, -0.025884395465254784, -0.03789667412638664, 0.006371669005602598, -0.03158893436193466, 0.030545789748430252, 0.020158324390649796, 0.07444386929273605, -0.003933487925678492, 0.030673272907733917, 0.022470761090517044, -0.03137172758579254, -0.14677785336971283, 0.10034087300300598, 0.040225863456726074, 0.08702616393566132, -0.06593573838472366, -0.02558670938014984, -0.0316372886300087, 0.0886191576719284, 0.005258873570710421, -0.023271316662430763, -0.018145699054002762, 0.04269793629646301, 0.03227413073182106, 0.008795460686087608, 0.007864930666983128, 0.027155259624123573, 0.018023857846856117, -0.052631400525569916, -0.026473011821508408, 0.02077443338930607, -0.019102612510323524, -0.0074812923558056355, -0.04535091668367386, 0.01985136978328228, 0.00506741926074028, 0.06501196324825287, 0.05141712725162506, 0.028304453939199448, 0.0381668396294117, 0.02300276607275009, 0.020091988146305084, -0.021743595600128174, -0.06861546635627747, -0.032817184925079346, 0.0008401329396292567, 0.0316021665930748, -0.06698828935623169, 0.44525668025016785, -0.0194639153778553, -0.04036262631416321, 0.09233718365430832, 0.04725184664130211, -0.010213401168584824, 0.011357827112078667, 0.018579011783003807, -0.04873637109994888, 0.02694249339401722, -0.013019835576415062, 0.020237963646650314, 0.025000302121043205, 0.047896429896354675, -0.036708004772663116, 0.02307002805173397, 0.049472615122795105, 0.02185147814452648, 0.021846268326044083, -0.011300548911094666, -0.037620652467012405, -0.02350052259862423, 0.00920757558196783, 0.02223707176744938, 0.007973047904670238, -0.03800557181239128, -0.054964616894721985, 0.032063208520412445, 0.06108437106013298, 0.012801281176507473, -0.029035136103630066, 0.05725037306547165, -0.05437814071774483, -0.04952340945601463, 0.013407393358647823, 0.0043255784548819065, 0.01375553198158741, 0.018557321280241013, -0.009575258940458298, -0.00883003044873476, 0.0570623017847538, 0.007153396029025316, -0.010751074180006981, 0.02560579776763916, -0.00485339155420661, -0.03932306915521622, 0.11524908244609833, 0.031453896313905716, -0.02452978864312172, -0.009007012471556664, -0.026950422674417496, 0.015684014186263084, 0.03188230097293854, -0.016760487109422684, -0.036812689155340195, 0.03762296587228775, -0.01568201370537281, 0.1261386126279831, -0.006097700912505388, -0.07727542519569397, -0.0015273101162165403, 0.0010269373888149858, -0.02273915521800518, -0.039722707122564316, 0.04641226679086685, 0.08649522066116333, -0.07661046087741852, 0.015905290842056274, 0.0007074586465023458, 0.05517132952809334, -0.047258105129003525, -0.00556521350517869, 0.009935540147125721, -0.02104281447827816, -0.0008113464573398232, 0.03212520107626915, -0.04325071722269058, -0.04866134002804756, 0.029864730313420296, 0.04042933136224747, 0.00822116807103157, 0.04063291475176811, 0.01313250046223402, -0.012102002277970314, 0.014964653179049492, -0.03259942680597305, -0.0686664879322052, -0.028397852554917336, -0.008677396923303604, -0.04082490876317024, -0.006502198986709118, -0.002040928928181529, -0.00812592264264822, -0.08459004759788513, 0.09158176183700562, -0.02793201245367527, -0.00414880970492959, 0.021244807168841362, -0.014455943368375301, -0.05163908749818802, -0.015011296607553959, -0.08546996116638184, 0.02533659338951111, -0.04008663073182106, 0.004025741945952177, -0.06866097450256348, 0.0404040589928627, 0.03492520749568939, -0.04690378159284592, 0.10932532697916031, 0.035918548703193665, -0.02966470457613468, -0.03473787009716034, 0.015656303614377975, 0.0245484821498394, 0.03036782145500183, -0.018439173698425293, 0.009980336762964725, 0.025929326191544533, 0.000048932208301266655, 0.025682440027594566, -0.03011784516274929, 0.02941850945353508, -0.028515135869383812, -0.33171287178993225, -0.040870245546102524, -0.04783029481768608, 0.02818647213280201, 0.0042860740795731544, -0.027772685512900352, 0.025806104764342308, -0.011392954736948013, -0.025517703965306282, 0.010246030054986477, 0.0680876150727272, -0.000399090233258903, 0.00709169777110219, -0.05252150818705559, 0.00267957360483706, -0.0145768066868186, -0.043196290731430054, -0.002737944945693016, -0.04114379361271858, 0.00851884763687849, -0.023340363055467606, -0.0034044054336845875, -0.018811238929629326, -0.0705103948712349, -0.012692376971244812, -0.0260224100202322, 0.10799571126699448, 0.0190321933478117, 0.06104839965701103, -0.016032744199037552, 0.02982405200600624, -0.006135864183306694, 0.027206001803278923, -0.13453394174575806, 0.01565902680158615, -0.015905868262052536, -0.0015616770833730698, -0.0402393601834774, 0.02678591199219227, -0.03242025896906853, -0.05506831035017967, 0.0073731569573283195, -0.08456342667341232, -0.020129673182964325, -0.09980402886867523, 0.013591899536550045, -0.03010951355099678, -0.007383143994957209, -0.04928546026349068, 0.07793424278497696, 0.0014765466330572963, 0.0006979681202210486, 0.01047893799841404, 0.02073378674685955, -0.013559773564338684, -0.05723477900028229, -0.11561547964811325, 0.03833922743797302, 0.007619272451847792, 0.005318629089742899, 0.018415585160255432, 0.06284055858850479, 0.021611295640468597, -0.06701835989952087, 0.003721772925928235, -0.0005839575896970928, -0.009825206361711025, 0.019739601761102676, 0.033962853252887726, -0.026992665603756905, -0.019407037645578384, 0.0998758003115654, -0.009416758082807064, -0.04784750938415527, 0.020931409671902657, 0.026959218084812164, -0.012067859061062336, 0.010125297121703625, -0.011216970160603523, -0.01752927154302597, 0.020345577970147133, -0.026360563933849335, 0.016997279599308968, -0.025579918175935745, 0.0010050685377791524, 0.028654716908931732, -0.015397217124700546, -0.05224045366048813, 0.0673561692237854, 0.022624513134360313, -0.007550613023340702, -0.009898577816784382, -0.03369959443807602, -0.07046588510274887, 0.08316235989332199, 0.006476162932813168, -0.23624080419540405, 0.007335455622524023, 0.05769126117229462, 0.0526273213326931, -0.023577548563480377, 0.05235394462943077, 0.027653254568576813, -0.046971265226602554, -0.005618823226541281, 0.01523569691926241, 0.019150864332914352, 0.011398211121559143, 0.002383793704211712, -0.011847280897200108, 0.03833258897066116, -0.008198370225727558, 0.04534288868308067, -0.01632283814251423, 0.013172373175621033, 0.004606685135513544, 0.006096824072301388, 0.014812024310231209, 0.1524401605129242, 0.005979735404253006, 0.027478070929646492, 0.017183704301714897, -0.005684571340680122, 0.01606164127588272, 0.05885004997253418, 0.0034612780436873436, 0.001916346955113113, -0.019971180707216263, 0.02585848607122898, 0.02659457176923752, 0.026615021750330925, -0.07357988506555557, -0.01695811003446579, 0.0030652990099042654, 0.027362219989299774, 0.010819132439792156, 0.030828766524791718, -0.007815885357558727, 0.0037714089266955853, 0.03636530414223671, 0.07224586606025696, 0.011337886564433575, -0.005182713735848665, -0.05679456144571304, -0.04773682355880737, -0.021821938455104828, -0.03497903048992157, -0.04520060494542122, 0.0077356863766908646, 0.014093399979174137, 0.038149163126945496, 0.0565808080136776, 0.029036633670330048, -0.027367787435650826, -0.009900703094899654, -0.02447706088423729, -0.027536751702427864, -0.013823779299855232, 0.09634611010551453, 0.02675662189722061, 0.037498023360967636 ]
[ 0.020055942237377167, 0.021150248125195503, 0.017962191253900528, 0.017285339534282684, 0.006351894699037075, -0.027427008375525475, -0.004287367686629295, -0.016240708529949188, 0.024699486792087555, 0.0017398300115019083, -0.0171944759786129, 0.03602384775876999, 0.03329465910792351, -0.010678607039153576, 0.011363741010427475, 0.006239315960556269, -0.01103590615093708, 0.0008503653225488961, 0.035085152834653854, 0.027666084468364716, -0.024735601618885994, -0.009721923619508743, -0.03598349168896675, 0.0038598203100264072, -0.001980133354663849, 0.007548315916210413, -0.022743811830878258, -0.005134469363838434, 0.015010194852948189, -0.14950217306613922, -0.018250104039907455, -0.014648295938968658, 0.013881778344511986, 0.003505722153931856, 0.003951139748096466, -0.0158982016146183, 0.012281130999326706, 0.017018184065818787, -0.0012192009016871452, -0.033660888671875, -0.007528768386691809, -0.016788633540272713, -0.004674328025430441, 0.016084391623735428, -0.011155480518937111, 0.02197769470512867, 0.0022003173362463713, -0.038403209298849106, -0.017412658780813217, -0.025088785216212273, -0.0519537515938282, -0.0032585039734840393, -0.031093262135982513, 0.02644967846572399, 0.007978977635502815, 0.013418972492218018, 0.005426345858722925, -0.007031626999378204, -0.011133783496916294, -0.02125765196979046, 0.014948738738894463, -0.06850995868444443, -0.06197495013475418, -0.007652936037629843, -0.03166057541966438, 0.00013286115427035838, 0.004078802652657032, 0.01280940044671297, -0.03887714445590973, 0.0004356627759989351, -0.004346953239291906, 0.003874483983963728, -0.027376381680369377, -0.035965751856565475, 0.0032727865036576986, -0.005721746478229761, -0.003896676003932953, -0.034193817526102066, 0.007253038696944714, 0.007403246127068996, -0.01846793107688427, 0.039780937135219574, -0.023914232850074768, 0.013910473324358463, -0.006325417198240757, -0.0007325110491365194, 0.02078453078866005, -0.010953265242278576, -0.00794459693133831, 0.015288224443793297, -0.029215838760137558, 0.026180556043982506, -0.018709465861320496, 0.0071180155500769615, -0.05422665551304817, -0.0075548021122813225, -0.002832883270457387, -0.016498245298862457, -0.01857224851846695, 0.8757303953170776, -0.006995151285082102, 0.009810523129999638, 0.011033079586923122, -0.03653285279870033, 0.01588769070804119, -0.00030102755408734083, -0.00811129342764616, -0.024996869266033173, 0.0000364722654921934, -0.012841482646763325, -0.018837833777070045, 0.013913982547819614, 0.011831330135464668, 0.02169869840145111, 0.024669012054800987, 0.017827289178967476, 0.01749458536505699, 0.04268795624375343, -0.03352827951312065, -0.0012378758983686566, 0.02478794753551483, 0.016764529049396515, 0.031285978853702545, 0.022248851135373116, 0.030123626813292503, -0.1582018882036209, 0.02049802802503109, -8.858536448056298e-33, 0.032697685062885284, -0.010131587274372578, 0.012668085284531116, -0.0001697047846391797, -0.01583239622414112, 0.007581557147204876, 0.02466787025332451, 0.03555714711546898, -0.011585349217057228, -0.031135521829128265, -0.0037551831919699907, -0.02074545808136463, 0.01138575840741396, -0.008495827205479145, 0.03844763711094856, -0.0010942016961053014, -0.014342793263494968, 0.026724956929683685, -0.018881037831306458, 0.002034955658018589, 0.020871445536613464, 0.00800739973783493, -0.027484018355607986, -0.0037193347234278917, -0.012591942213475704, 0.0068875644356012344, 0.019199833273887634, 0.007708420045673847, 0.025298984721302986, -0.042138054966926575, -0.01750556007027626, 0.032077670097351074, -0.009911149740219116, -0.0020549700129777193, 0.004479467403143644, -0.021732160821557045, -0.037429679185152054, -0.0009599810582585633, 0.04003354161977768, -0.004994894843548536, -0.021026482805609703, 0.014211403205990791, -0.012843755073845387, -0.018893560394644737, -0.003205858636647463, -0.005300793796777725, 0.011513289995491505, -0.02730528637766838, -0.003787785302847624, 0.000244514289079234, -0.01282731257379055, -0.0022177277132868767, 0.012384530156850815, 0.020170673727989197, -0.02173588052392006, 0.003966596908867359, -0.010121235623955727, 0.020767919719219208, 0.0013533520977944136, 0.022274915128946304, 0.002525793854147196, 0.013742471113801003, -0.01805320382118225, 0.02420218102633953, 0.004089814145117998, 0.016961602494120598, 0.005809455644339323, 0.0063949283212423325, 0.021680336445569992, -0.026203293353319168, -0.026856057345867157, -0.021675454452633858, 0.0006813577492721379, 0.007773310411721468, -0.008798773400485516, 0.004099422600120306, -0.022909462451934814, 0.029828662052750587, -0.00704475911334157, 0.017042847350239754, -0.027451777830719948, 0.01899344101548195, -0.012344474904239178, -0.04063466191291809, -0.004955408163368702, 0.05167428404092789, -0.0020787930116057396, -0.014440088532865047, -0.036488041281700134, 0.028678899630904198, -0.0001682425499893725, 0.004843872040510178, 0.0007017661700956523, 0.015513592399656773, -0.02363562025129795, 8.222812205400311e-33, 0.03590735048055649, -0.035228341817855835, -0.004497495014220476, 0.014427511021494865, 0.05951520428061485, -0.004149861633777618, -0.011946132406592369, 0.010884289629757404, -0.03895450383424759, 0.021549295634031296, 0.00003013953028130345, 0.005236742086708546, -0.012533184140920639, 0.01535853836685419, 0.00862740259617567, -0.022601032629609108, 0.016426391899585724, -0.01928558386862278, 0.014954222366213799, -0.01966210827231407, -0.016086027026176453, -0.006707973778247833, 0.015041518956422806, 0.0343894399702549, 0.04346289858222008, 0.053387351334095, 0.01957816816866398, -0.004634923301637173, 0.014559176750481129, 0.008176908828318119, 0.004753421526402235, 0.0013078905176371336, 0.02211860567331314, -0.005942184012383223, 0.016036193817853928, 0.018391206860542297, -0.011572807095944881, -0.019505469128489494, -0.015307742170989513, -0.005141325294971466, 0.006383748725056648, 0.02919931337237358, -0.006595309358090162, -0.015615218318998814, 0.019444065168499947, -0.028863051906228065, -0.014396176673471928, 0.01089137140661478, -0.0004760237061418593, -0.010693075135350227, -0.012467911466956139, -0.0010797085706144571, 0.016439421102404594, 0.019280029460787773, 0.006009932607412338, -0.01700170524418354, -0.031255096197128296, 0.0025764554738998413, 0.009480735287070274, -0.015116902999579906, -0.021570712327957153, 0.005301262252032757, -0.04785865545272827, 0.00008915180660551414, -0.027290290221571922, 0.032132647931575775, -0.015129121020436287, -0.0070711649022996426, -0.004934989381581545, 0.006749926134943962, -0.03564458712935448, 0.005938347894698381, -0.025708535686135292, 0.016523974016308784, 0.008670706301927567, -0.017308833077549934, -0.024387074634432793, -0.009365851059556007, -0.04017527028918266, 0.020710233598947525, 0.015320582315325737, 0.00004488057311391458, 0.024764034897089005, 0.03607690706849098, 0.003503022948279977, 0.04816712811589241, -0.0069961221888661385, 0.03388335928320885, -0.008239228278398514, -0.004998647607862949, -0.04311222955584526, -0.008632670156657696, 0.004733237903565168, 0.017439551651477814, -0.014827891252934933, -1.3958275424386102e-8, 0.0039482745341956615, -0.006059659644961357, 0.012153923511505127, 0.019351504743099213, 0.01895490474998951, 0.006993855815380812, -0.03771277144551277, 0.005940169095993042, -0.014280659146606922, 0.02254417911171913, 0.03493215888738632, -0.04896317422389984, -0.004388251341879368, 0.009036609902977943, 0.02126147784292698, 0.0009869618806988, 0.01068869885057211, -0.0076752654276788235, 0.03226461634039879, -0.002946282736957073, 0.046579305082559586, 0.030057357624173164, -0.016385508701205254, 0.025678584352135658, 0.020415544509887695, -0.004738817922770977, -0.039425626397132874, -0.07584792375564575, -0.024580826982855797, 0.025108516216278076, 0.017424652352929115, -0.04729439690709114, -0.02011205069720745, 0.04647049680352211, -0.012529983185231686, -0.024143140763044357, 0.005203425418585539, -0.0015441739233210683, 0.03304470703005791, 0.014291270636022091, 0.00018264703976456076, 0.016769371926784515, 0.0063489144667983055, -0.030383124947547913, -0.02905513532459736, 0.0314091220498085, -0.045039162039756775, -0.03639763593673706, -0.023868802934885025, -0.024081360548734665, 0.039212170988321304, -0.009359719231724739, 0.019953589886426926, 0.05122840404510498, 0.015223446302115917, 0.022508801892399788, 0.012568915262818336, 0.000016433063137810677, -0.027333851903676987, -0.033104486763477325, 0.01715809665620327, 0.048522837460041046, -0.022588443011045456, -0.02528429962694645 ]
everything-i-know-everyone-else-knows
https://markhneedham.com/blog/2011/03/13/everything-i-know-everyone-else-knows
false
2011-03-22 19:10:09
ThoughtWorks University: A refactoring dojo
[ "thoughtworks-university" ]
[ "ThoughtWorks University" ]
I facilitated a refactoring session today at ThoughtWorks University where we spent the morning refactoring our way through one of the problems the grads had to work on as part of the pre coursework. The previous version of this session has been more structured, whereby one of the trainers worked solo at the keyboard and took suggestions from the group about which refactoring to cover next. There are a certain number of refactorings that the session aims to introduce and the trainer would have practiced beforehand so they could make these fairly flawlessly. I'm not really a fan of that style of session so we refactored code which the grads were quite familiar with and I was unfamiliar with. We ended up doing 3x45 minute stints in the style of a http://codingdojo.org/cgi-bin/wiki.pl?RandoriKata[randori coding dojo] and we had one person keeping a list of the potential refactorings on the whiteboard. The 3 stints went like this: . Me always at the keyboard, people pairing with me and http://twitter.com/frankmt[Frankie] facilitating/controlling the whiteboard. . Two grads pairing and me facilitating the session . Two grads pairing and one grad facilitating the session. We're slowly trying to encourage the idea of the grads owning the way they learn so this was a step on the way to that. These were some of the learnings from covering a topic in this way: * Frankie noticed that I was dominating the keyboard in round 1 so we decided that the grads could pair with each other for the remainder. We'd already gone through a lot of the main refactorings in that 1st round so it made sense to make this change. * We switched the order of people before the 3rd round after some feedback so that people would have the opportunity to pair with different people than they had in the 2nd round. * In the first round I was a bit too focused on teaching keyboard shortcuts to the people I was pairing with. Frankie pointed out that it's more useful to *learn the refactoring first* and then once you have that concept then teach the shortcuts. By the 3rd round the grads were teaching each other the shortcuts which I thought was pretty cool. * We didn't get to cover as many different refactorings as we would have in a more structured session but we'll get to those in the next few weeks when we're coding on the project so I don't think it'll be too much of a problem. * Since this was a problem everyone had worked on previously several of the people had already done some of the refactorings in their own solution. Therefore parts of the session weren't a big learning experience for those people. That's been a bit of a theme so far - *working out how to cater for all skill/experience levels seems a difficult problem to solve!* Overall I was quite impressed with how much we managed to refactor the code in the amount of time we coded for. The only thing I'm a bit unsure about with the randori style is that it leaves a lot of people observing for big chunks of time. The http://www.dtsato.com/blog/2008/10/29/uberdojo-sao-paulo-coding-dojo/[Kake/UberDojo] format is one that might be more suitable but that would mean splitting up the group which wasn't something we'd considered.
null
null
[ 0.012039071880280972, -0.00589773990213871, -0.002789086429402232, 0.042561836540699005, 0.08104714006185532, 0.02326418273150921, 0.02810462936758995, 0.02676192857325077, 0.011213233694434166, -0.028403718024492264, -0.039546750485897064, -0.007043165620416403, -0.054153408855199814, -0.009917770512402058, -0.0270109660923481, 0.06528512388467789, 0.06754957139492035, -0.01056697778403759, 0.021731112152338028, 0.009363880380988121, 0.027640322223305702, 0.08387327194213867, 0.016837913542985916, 0.018000977113842964, 0.024742770940065384, 0.024690518155694008, 0.010120125487446785, -0.008141253143548965, -0.0731823667883873, -0.01345871202647686, 0.051701292395591736, -0.004924866836518049, 0.030084257945418358, 0.01237993873655796, 0.018683690577745438, -0.03278597444295883, -0.013697291724383831, 0.0395379364490509, 0.013100506737828255, 0.02147234044969082, -0.06456977874040604, 0.042212847620248795, 0.0012771202018484473, -0.00243427068926394, -0.044398438185453415, 0.007877040654420853, -0.05834632366895676, -0.005281414836645126, -0.008726620115339756, -0.024944936856627464, -0.08455869555473328, 0.02971138060092926, 0.024024682119488716, -0.020305538550019264, -0.025675177574157715, 0.060274913907051086, 0.05164692923426628, -0.06995350122451782, 0.01968427374958992, -0.03285187482833862, -0.022188875824213028, 0.011819606646895409, -0.004793940111994743, 0.05654522031545639, 0.03473803773522377, -0.03165106475353241, 0.013582311570644379, 0.03985505923628807, -0.04408654943108559, -0.0008806296391412616, -0.0019997702911496162, 0.0205709096044302, -0.009676286019384861, -0.023402417078614235, 0.003061833092942834, -0.032182712107896805, 0.003635668195784092, 0.07881517708301544, 0.011726041324436665, 0.028428494930267334, -0.013309895992279053, 0.006259310524910688, 0.01057559996843338, 0.02874729409813881, 0.0066537936218082905, -0.038355495780706406, -0.02914939820766449, -0.027748892083764076, -0.05153634026646614, 0.04607250168919563, -0.005448725540190935, -0.05588608607649803, 0.020965490490198135, 0.03568069264292717, 0.017881358042359352, 0.023289892822504044, 0.019354835152626038, 0.0005657794536091387, 0.004245183430612087, -0.007664183154702187, -0.03345989063382149, -0.016415663063526154, 0.01425942499190569, 0.010504995472729206, -0.08097279071807861, -0.0015903487801551819, -0.03218904882669449, -0.014240892603993416, 0.0013972887536510825, 0.015414457768201828, -0.01841486059129238, 0.013942052610218525, -0.015034759417176247, 0.009676573798060417, -0.06800198554992676, 0.07271159440279007, -0.003640091745182872, -0.039020564407110214, -0.043911706656217575, -0.008128860034048557, 0.032463155686855316, 0.04063141345977783, 0.0014415333280339837, 0.09573708474636078, 0.015375509858131409, 0.034189917147159576, -0.03530864417552948, 0.048961445689201355, -0.038723982870578766, -0.07108144462108612, -0.006284407805651426, 0.03693375736474991, -0.016068849712610245, 0.003005390288308263, 0.01578729972243309, -0.02154376544058323, 0.005501741077750921, -0.000356849079253152, 0.01850811019539833, 0.03782781958580017, -0.003577879164367914, -0.020978599786758423, 0.00967465527355671, 0.002894702600315213, 0.007718829438090324, 0.007660507690161467, -0.020866744220256805, -0.027398621663451195, -0.030623702332377434, -0.0038889411371201277, -0.015168893150985241, 0.02276100590825081, 0.018504289910197258, -0.05202829837799072, 0.03382430598139763, 0.08992940932512283, -0.0026560556143522263, -0.0007729182252660394, -0.02397919073700905, 0.025247745215892792, 0.009631098248064518, 0.031708743423223495, 0.005960706155747175, 0.03540733829140663, 0.0104958051815629, 0.003061786061152816, -0.001116558793000877, 0.024340294301509857, 0.006834011524915695, 0.01911778189241886, -0.0742696076631546, -0.046385519206523895, 0.056169044226408005, -0.07602588087320328, -0.037992097437381744, 0.04998505115509033, 0.07039465010166168, 0.02664225548505783, 0.04030153527855873, -0.00973096489906311, -0.07646887004375458, 0.0008366226102225482, 0.002032488351687789, 0.02277575619518757, 0.018019162118434906, -0.028972940519452095, 0.04860235005617142, 0.03184426948428154, -0.0008586536860093474, 0.051100656390190125, -0.08293601125478745, -0.0838744193315506, -0.014983778819441795, -0.027714746072888374, 0.05003763362765312, -0.004345749504864216, 0.02031676657497883, 0.06872105598449707, 0.013774197548627853, 0.0449201799929142, 0.045712828636169434, 0.0016000301111489534, 0.0067155370488762856, -0.03612937778234482, -0.020830685272812843, 0.05708784982562065, 0.02473306469619274, -0.021460728719830513, -0.05289468914270401, 0.011632638983428478, -0.018487559631466866, -0.008859572000801563, 0.05030087009072304, -0.002809808822348714, 0.028445899486541748, 0.014719346538186073, 0.034873757511377335, -0.037094488739967346, 0.05145444720983505, -0.03709514066576958, 0.027804624289274216, 0.010845307260751724, -0.011793017387390137, 0.004660685546696186, 0.0030722978990525007, 0.1044127494096756, 0.05866570025682449, -0.0461244210600853, -0.03252794221043587, 0.01184924691915512, 0.013272532261908054, -0.06842853873968124, -0.019804591313004494, -0.002769583137705922, 0.03147634118795395, -0.008999747224152088, -0.0726165845990181, -0.049944061785936356, 0.038272079080343246, -0.05803791061043739, 0.01859442889690399, 0.07989397644996643, -0.024121012538671494, 0.046612776815891266, 0.016249017789959908, -0.009121612645685673, -0.01730271987617016, 0.006034392397850752, -0.027599813416600227, 0.026141148060560226, 0.03334196284413338, -0.024704720824956894, 0.043654680252075195, -0.025263221934437752, -0.04393807426095009, -0.02156062051653862, -0.026618149131536484, -0.0012389918556436896, 0.03858879953622818, 0.06239527091383934, 0.00644424743950367, 0.06039104238152504, 0.004479527473449707, 0.03012894280254841, 0.017558123916387558, -0.036716099828481674, -0.022101622074842453, -0.034998632967472076, 0.008787158876657486, 0.02195834182202816, -0.004027761984616518, 0.0038289432413876057, 0.014670349657535553, -0.0026905664708465338, -0.04755816236138344, -0.031663160771131516, 0.02145632542669773, -0.007515326142311096, -0.032975513488054276, -0.0285263080149889, -0.035323403775691986, 0.03796370327472687, -0.05868449807167053, -0.025128599256277084, 0.01403117086738348, -0.06922956556081772, 0.048364367336034775, -0.06933139264583588, -0.05263214558362961, 0.018404414877295494, 0.01257341355085373, 0.04768294841051102, -0.01795915514230728, 0.020576881244778633, 0.0847928524017334, -0.016834760084748268, 0.015255678445100784, -0.013697938993573189, -0.002313427161425352, 0.04341833293437958, 0.00672402186319232, 0.004145386628806591, 0.027253439649939537, 0.012043897062540054, -0.005681527778506279, -0.03047773614525795, 0.03963764011859894, -0.017682233825325966, -0.2814968526363373, 0.02965887449681759, 0.005590040236711502, -0.02650109864771366, 0.01937100850045681, -0.020652901381254196, 0.022216450423002243, -0.056574851274490356, -0.021060606464743614, 0.006627080962061882, -0.030975932255387306, -0.042315851897001266, -0.02318238466978073, 0.07441750913858414, -0.0184913482517004, 0.04709227755665779, 0.007452480494976044, -0.042962633073329926, 0.009335179813206196, 0.05390818789601326, -0.0038078445941209793, -0.06417721509933472, -0.006076717749238014, 0.035615064203739166, 0.03763113543391228, 0.05232810974121094, -0.09944404661655426, 0.024942196905612946, -0.040783267468214035, -0.01717548817396164, 0.015045377425849438, 0.008024131879210472, -0.003228341229259968, -0.008830678649246693, -0.01568731479346752, -0.0010753140086308122, 0.04423642158508301, 0.009286072105169296, 0.008523603901267052, 0.007641413249075413, -0.019481737166643143, -0.03279055655002594, -0.01251926925033331, 0.010055223479866982, 0.07100449502468109, 0.015138084068894386, -0.0759144127368927, -0.024208422750234604, -0.019659945741295815, 0.08414596319198608, -0.009922214783728123, -0.04319000616669655, 0.010563717223703861, 0.054786037653684616, 0.01711300201714039, -0.02650959976017475, -0.0021462144795805216, -0.013456165790557861, -0.03454967960715294, -0.04780029505491257, -0.007110851351171732, -0.0450747087597847, -0.005884982645511627, -0.05827699601650238, 0.011702040210366249, -0.06841716170310974, -0.04202745482325554, 0.007685190066695213, 0.07074766606092453, 0.0308971144258976, -0.037812940776348114, 0.02530050463974476, -0.0004343435284681618, -0.09456992149353027, -0.0027810153551399708, -0.012199018150568008, -0.026940232142806053, -0.012815162539482117, 0.028535788878798485, 0.03430318459868431, -0.026257453486323357, -0.03977436572313309, 0.02526405081152916, 0.01067944522947073, 0.014813680201768875, 0.003196110250428319, 0.04082050919532776, 0.011068595573306084, -0.0101363779976964, 0.03541131317615509, 0.06726812571287155, 0.021641524508595467, -0.04052502289414406, -0.027460183948278427, 0.03333619236946106, 0.017810679972171783, 0.0011249992530792952, -0.013744562864303589, 0.012906193733215332, 0.034621767699718475, 0.010959475301206112, -0.05789683759212494, 0.04253246635198593, -0.018588053062558174, -0.014903424307703972, 0.0009631327702663839, -0.07331275194883347, 0.008961987681686878, 0.026083238422870636, 0.04346412047743797, -0.016548002138733864, -0.04235099256038666, 0.0024303446989506483, -0.032516878098249435, -0.015153386630117893, -0.01769578456878662, 0.018241841346025467, 0.02662380412220955, -0.019692258909344673, -0.0049447244964540005, -0.05080737546086311, 0.016547949984669685, -0.014212959446012974, -0.006664189510047436, -0.0590251088142395, -0.01302940584719181, -0.021742206066846848, -0.016927720978856087, 0.015540119260549545, 0.02948773466050625, -0.008641572669148445, 0.0025870525278151035, 0.0002597335260361433, -0.03937586396932602, 0.021490171551704407, -0.008800700306892395, -0.045224204659461975, -0.017396649345755577, -0.01253981702029705, 0.002763289725407958, -0.014336791820824146, 0.04217227175831795, 0.0001641028211452067, 0.0019866337534040213, 0.04774636775255203, 0.009393945336341858, 0.02156492881476879, -0.025618236511945724, 0.0023413803428411484, 0.009472145698964596, 0.024643128737807274, -0.08926089107990265, 0.0026472469326108694, -0.06285374611616135, -0.012724524363875389, -0.00599486380815506, 0.02488565444946289, -0.013838490471243858, -0.021259792149066925, 0.019570766016840935, 0.0035232158843427896, -0.05534646660089493, -0.041375163942575455, -0.035923298448324203, 0.007226965855807066, 0.052398886531591415, -0.017150580883026123, 0.02756378799676895, -0.028314275667071342, -0.012031948193907738, 0.01902572624385357, 0.023107098415493965, -0.059033025056123734, -0.006698013283312321, 0.03751416504383087, -0.004317000042647123, 0.011250178329646587, 0.006361707113683224, 0.04460707679390907, 0.014485164545476437, 0.0006553867133334279, -0.032930176705121994, 0.0012489885557442904, 0.011106960475444794, 0.05781259387731552, 0.0019449356477707624, 0.013723937794566154, -0.002114796545356512, -0.01559453271329403, -0.016581812873482704, -0.03538575768470764, -0.006868419703096151, 0.021582217887043953, 0.020521240308880806, -0.04379907622933388, -0.07276473939418793, 0.05373239889740944, 0.06276804953813553, 0.002874074736610055, 0.025256440043449402, 0.006942253094166517, 0.007497076876461506, -0.01785527914762497, 0.0441274456679821, 0.051847320050001144, -0.06572777777910233, 0.007832328788936138, -0.02572660893201828, 0.021084200590848923, -0.0155592430382967, -0.009093674831092358, -0.037693146616220474, -0.027619099244475365, -0.04600520804524422, -0.00491715595126152, -0.0583638921380043, -0.031366683542728424, -0.007629985921084881, 0.017396230250597, -0.008280054666101933, -0.028736907988786697, -0.01017245464026928, 0.008132770657539368, -0.010435941629111767, -0.029857328161597252, 0.009100772440433502, -0.062190596014261246, 0.031163055449724197, 0.0010655076475813985, -0.0478140264749527, 0.027811450883746147, -0.03367479518055916, 0.023278960958123207, 0.01894756220281124, -0.019483355805277824, -0.01986073888838291, -0.04211031273007393, 0.003423080313950777, 0.01728462055325508, 0.002394116949290037, -0.008582326583564281, -0.028558146208524704, -0.051394421607255936, -0.023874396458268166, -0.04993440583348274, 0.021815389394760132, -0.03542196378111839, -0.018226472660899162, 0.03835875540971756, 0.04344470426440239, 0.04245707392692566, 0.07055122405290604, -0.012319368310272694, -0.010134861804544926, 0.05783448368310928, -0.07118428498506546, -0.03250833973288536, -0.04322073981165886, -0.07248009741306305, 0.006113543175160885, 0.001269097556360066, 0.04399171471595764, -0.03911114111542702, 0.03380941227078438, -0.007306213490664959, 0.015542993322014809, 0.026058366522192955, -0.02874709479510784, 0.020769355818629265, -0.03997254744172096, 0.0013662547571584582, -0.06545711308717728, 0.0062688738107681274, 0.0412200391292572, -0.005082402843981981, -0.017992284148931503, -0.004851881414651871, -0.035541873425245285, 0.04837917536497116, -0.06734921783208847, -0.008349381387233734, 0.0400947742164135, -0.015172305516898632, -0.007392252795398235, 0.01098620519042015, -0.06322459876537323, 0.0419774204492569, 0.024457979947328568, -0.043687064200639725, -0.0034275688230991364, -0.045668840408325195, 0.05765398219227791, 0.006429677363485098, 0.0387917198240757, -0.03401949256658554, 0.016035031527280807, 0.060313720256090164, 0.014749919064342976, 0.015082845464348793, 0.048367392271757126, -0.0075413235463202, 0.030174123123288155, 0.04913920536637306, 0.017393799498677254, -0.015749670565128326, 0.024607475847005844, -0.004714422393590212, -0.057520948350429535, 0.028233852237462997, 0.009306007996201515, -0.03569094091653824, -0.03763049840927124, 0.06839396059513092, 0.028608692809939384, -0.025711124762892723, -0.047307342290878296, 0.02673329785466194, -0.08517861366271973, 0.0052744424901902676, -0.029108945280313492, -0.006837616674602032, -0.055114760994911194, 0.04457657411694527, 0.010268368758261204, -0.005527293775230646, 0.060388240963220596, 0.014185906387865543, -0.03145323321223259, -0.03447217866778374, 0.06452200561761856, 0.053677525371313095, 0.07771506905555725, 0.02875826694071293, 0.04416403919458389, -0.019524378702044487, -0.03656234219670296, 0.018263831734657288, 0.005491471383720636, -0.03381852060556412, -0.024500509724020958, 0.03085951693356037, 0.0697879046201706, 0.006203802768141031, 0.05172526091337204, -0.024228790774941444, -0.009564599022269249, 0.002301054075360298, 0.02713261917233467, 0.02709256298840046, 0.06584654003381729, 0.010187612846493721, -0.0047268131747841835, -0.016915859654545784, -0.040987130254507065, 0.024087265133857727, -0.04010826349258423, -0.00815622229129076, 0.027092473581433296, -0.01885875128209591, 0.02348824217915535, 0.006559440400451422, 0.006549476645886898, 0.0790424793958664, -0.045183975249528885, 0.006358496379107237, -0.003565531689673662, 0.04858008027076721, 0.024909168481826782, 0.019523894414305687, -0.020610561594367027, -0.03330432251095772, 0.023430142551660538, -0.03213108330965042, -0.022986508905887604, -0.01520547829568386, -0.014621376991271973, 0.037600964307785034, -0.005349534563720226, 0.01711864210665226, 0.05768902599811554, 0.02622944302856922, -0.02187979221343994, -0.07377070933580399, -0.028889290988445282, -0.054546553641557693, -0.035486020147800446, -0.012728320434689522, 0.018864791840314865, -0.006752304267138243, -0.027909109368920326, -0.0015517763094976544, -0.05066085606813431, -0.021831195801496506, 0.06473875045776367, -0.05967472493648529, -0.024947308003902435, 0.011923596262931824, 0.004259361885488033, 0.026140104979276657, 0.019152967259287834, 0.04541776701807976, -0.028601229190826416, -0.00009892365051200613, -0.028921790421009064, 0.011540787294507027, 0.026604019105434418, 0.0013016966404393315, 0.0004495565954130143, -0.0915302187204361, 0.02558301016688347, 0.011484856717288494, 0.0036383140832185745, -0.050209566950798035, 0.04170478507876396, 0.014557786285877228, 0.004793573636561632, 0.06047094240784645, -0.020436346530914307, 0.0006346997688524425, -0.019632969051599503, 0.0005160279106348753, 0.004162260331213474, 0.03018791973590851, 0.04315700754523277, -0.019713502377271652, 0.09539368003606796, 0.017172796651721, -0.009221982210874557, -0.04729752242565155, -0.01635749824345112, 0.014365077950060368, -0.011307758279144764, -0.0196929220110178, -0.025644399225711823, -0.024814026430249214, -0.0670844241976738, -0.028370941057801247, 0.015210148878395557, -0.01093614287674427, -0.04065157473087311, 0.01218588650226593, 0.024486098438501358, -0.03420299291610718, 0.029065817594528198, -0.04831438884139061, 0.042110249400138855, -0.026668839156627655, -0.017360180616378784, 0.00165716209448874, -0.0356273427605629, -0.004806970711797476, 0.005876306444406509, 0.02217199094593525, -0.04085107520222664, 0.00254758819937706, 0.007446979638189077, -0.0005360775394365191, 0.03424376621842384, 0.023461494594812393, -0.014811172150075436 ]
[ -0.10006445646286011, -0.01904362626373768, -0.008049024268984795, -0.052302706986665726, 0.004401908256113529, -0.02650606632232666, -0.02175167389214039, 0.032592300325632095, 0.00340423290617764, -0.041099946945905685, -0.0056088510900735855, -0.003583409357815981, 0.004437609110027552, -0.0001270470820600167, 0.0822325050830841, 0.013415866531431675, -0.016189806163311005, -0.04486464336514473, 0.017125755548477173, -0.0007679283153265715, 0.004470390267670155, -0.033007118850946426, -0.03981500864028931, -0.019917838275432587, 0.005316705442965031, 0.03585207089781761, 0.032719459384679794, -0.0598737932741642, 0.02405274659395218, -0.2123178243637085, -0.010918684303760529, 0.030667047947645187, 0.05673445388674736, 0.006640227977186441, 0.012014049105346203, 0.06563026458024979, 0.0005890533211641014, 0.03277849778532982, -0.03396495431661606, 0.03349442407488823, 0.0061455462127923965, 0.009737737476825714, -0.04514305293560028, -0.04414776712656021, 0.051663726568222046, -0.01377048622816801, -0.00023832330771256238, -0.07411351054906845, -0.013374748639762402, 0.011425361037254333, -0.054588984698057175, -0.06750358641147614, -0.018555128946900368, -0.012664109468460083, -0.0020779799669981003, 0.03790661320090294, 0.05012257397174835, 0.06937365978956223, 0.0053316690027713776, 0.03270668163895607, 0.0030624396167695522, 0.0024708115961402655, -0.13061892986297607, 0.08417411148548126, 0.05448465049266815, 0.0561116486787796, -0.025088435038924217, -0.02611025981605053, 0.016068650409579277, 0.12215695530176163, -0.015339097939431667, -0.042838457971811295, 0.005994171369820833, 0.037639278918504715, 0.022450264543294907, 0.019592618569731712, -0.014175978489220142, 0.03322533890604973, 0.023822061717510223, -0.041850220412015915, -0.04327894747257233, -0.0261036679148674, -0.0038094669580459595, -0.009925496764481068, -0.021725816652178764, 0.02496844157576561, -0.011460522189736366, 0.03816068544983864, 0.04162055253982544, 0.0058903866447508335, 0.05405249074101448, -0.016910050064325333, 0.020110413432121277, -0.026311209425330162, -0.08156335353851318, -0.03036552295088768, 0.013986866921186447, 0.030866745859384537, -0.04399161413311958, 0.45419368147850037, -0.04784228652715683, -0.026423126459121704, 0.0850779190659523, 0.03180724009871483, -0.039378777146339417, -0.011678664945065975, 0.025776103138923645, -0.031543295830488205, 0.01519229356199503, -0.025545908138155937, 0.01893928088247776, 0.007042257580906153, 0.07201853394508362, -0.03382004052400589, 0.008187692612409592, 0.06145308539271355, 0.012004661373794079, 0.019249161705374718, 0.018389131873846054, -0.014493890106678009, 0.007504135370254517, 0.0066856397315859795, 0.02175680175423622, -0.005861205048859119, -0.03321029245853424, -0.041257888078689575, -0.001440986292436719, 0.06470045447349548, 0.012063263915479183, 0.021073555573821068, 0.058630816638469696, -0.026997588574886322, -0.04425126686692238, 0.007689847145229578, -0.012851844541728497, 0.009742219932377338, 0.025940455496311188, -0.027287185192108154, 0.0039145564660429955, 0.04044647514820099, 0.02193000540137291, 0.016562582924962044, 0.02813361957669258, -0.010713781230151653, -0.05672020837664604, 0.13659849762916565, -0.025514664128422737, -0.006450795568525791, -0.013420994393527508, -0.021108342334628105, 0.006931287702172995, 0.02386261522769928, -0.01378229446709156, -0.055211395025253296, 0.032225772738456726, -0.0024070648942142725, 0.11230442672967911, -0.0072021689265966415, -0.0434534028172493, 0.005712513346225023, -0.02838856540620327, -0.0282233115285635, -0.05732527747750282, 0.019331686198711395, 0.09148018062114716, -0.06809919327497482, 0.0011034321505576372, -0.00357139203697443, 0.02595456689596176, -0.06285246461629868, -0.006498644594103098, 0.020508354529738426, -0.020787430927157402, 0.006987354252487421, 0.05198541283607483, -0.023851461708545685, -0.029066283255815506, 0.00728545943275094, 0.05163910984992981, 0.02808312326669693, 0.05015827342867851, 0.00041812463314272463, -0.026310285553336143, 0.006351180840283632, -0.023150119930505753, -0.05459019914269447, -0.008106372319161892, -0.007705317344516516, -0.039371561259031296, 0.024595238268375397, -0.041711557656526566, -0.00911964476108551, -0.09211362153291702, 0.06845111399888992, -0.036787185817956924, -0.035136010497808456, 0.04619386047124863, -0.04581676423549652, -0.03884893283247948, -0.013119424693286419, -0.03443766012787819, 0.028889693319797516, -0.04106328263878822, 0.02825312130153179, -0.057942673563957214, 0.04020515829324722, 0.03938307613134384, -0.028459332883358, 0.11019084602594376, 0.07688930630683899, -0.054088935256004333, -0.039996787905693054, 0.0402994230389595, -0.012256694957613945, 0.018960310146212578, -0.032120756804943085, 0.0008074200013652444, 0.0500897653400898, -0.0018087185453623533, 0.008853325620293617, -0.002576617756858468, 0.029966669157147408, -0.01278660912066698, -0.32302162051200867, -0.029692267999053, 0.004026813432574272, -0.014462144114077091, 0.0065380604937672615, -0.04227079078555107, 0.04368212819099426, -0.025825154036283493, -0.025345277041196823, -0.0014946595765650272, 0.038721468299627304, -0.008434582501649857, 0.00762527622282505, -0.06571577489376068, -0.0014046368887647986, -0.004468163475394249, -0.018093988299369812, 0.00655676145106554, -0.024829894304275513, -0.002029906725510955, 0.012814691290259361, 0.00126923737116158, -0.0006411386420950294, -0.0626019835472107, -0.01337904017418623, -0.04695812985301018, 0.10592338442802429, -0.0048085604794323444, 0.10695688426494598, -0.028308575972914696, 0.02627311460673809, 0.007167430128902197, 0.03409735485911369, -0.11121848225593567, 0.037013519555330276, 0.007974290288984776, 0.012333366088569164, -0.038251183927059174, 0.042924877256155014, -0.04955916479229927, -0.012309304438531399, 0.016144108027219772, -0.06475547701120377, -0.06366599351167679, -0.07127491384744644, -0.007013961207121611, -0.050018005073070526, -0.07761743664741516, -0.04343520849943161, 0.07129669934511185, 0.005021109711378813, -0.015138780698180199, 0.013718168251216412, -0.013251729309558868, -0.02374429814517498, -0.01594383642077446, -0.08342483639717102, 0.026363302022218704, 0.006827630568295717, 0.001743354368954897, 0.024472856894135475, 0.045340921729803085, -0.002637522527948022, -0.05218176171183586, -0.006025153212249279, 0.014442071318626404, 0.02149154804646969, -0.004813101142644882, 0.025413408875465393, -0.017540156841278076, -0.013910365290939808, 0.0627303421497345, 0.04062579572200775, -0.01367874164134264, 0.019384760409593582, 0.027126064524054527, -0.029077501967549324, 0.02338513731956482, -0.0034171915613114834, -0.013919293880462646, 0.006078206468373537, -0.02967889979481697, 0.026576753705739975, -0.02674488164484501, 0.0071836067363619804, 0.0009488517534919083, 0.025947965681552887, -0.0480467714369297, 0.058561306446790695, 0.017780445516109467, -0.026809612289071083, 0.006693718023598194, -0.019110163673758507, -0.028669804334640503, 0.0804419219493866, 0.002069351961836219, -0.2514805197715759, 0.003912829793989658, 0.046003252267837524, 0.038812100887298584, -0.009013284929096699, 0.02884475328028202, 0.025118453428149223, -0.056236572563648224, -0.0013463370269164443, 0.003887604922056198, 0.004551609046757221, 0.015145041979849339, -0.013063915073871613, 0.004884656984359026, 0.04464356228709221, -0.00964286644011736, 0.052414726465940475, -0.020131215453147888, 0.0334923192858696, -0.007475567981600761, -0.00787846464663744, 0.010067750699818134, 0.14161692559719086, -0.009226365014910698, 0.06524456292390823, 0.00997550692409277, -0.016518935561180115, 0.0023307702504098415, 0.11412311345338821, -0.01749430038034916, -0.0031017169822007418, -0.018793482333421707, 0.04040079936385155, -0.002271810080856085, 0.019254136830568314, -0.05108431354165077, -0.049281224608421326, 0.01447203103452921, 0.022120755165815353, 0.027791043743491173, 0.017721598967909813, -0.007169014774262905, -0.03857158496975899, 0.013998796232044697, 0.043458241969347, 0.035975631326436996, 0.015104813501238823, -0.05264689400792122, -0.049285903573036194, -0.009416766464710236, -0.02251601405441761, -0.022264083847403526, 0.010587479919195175, -0.011921755969524384, 0.004425154533237219, 0.0703343003988266, 0.013422349467873573, -0.023246169090270996, -0.02695462293922901, -0.0034375335089862347, -0.013960272073745728, -0.014446520246565342, 0.11103463172912598, 0.0204513818025589, 0.01495778001844883 ]
[ -0.017189590260386467, -0.0386977382004261, 0.0136243412271142, -0.022634152323007584, -0.011483426205813885, 0.027415378019213676, 0.015273562632501125, -0.009897811338305473, 0.019925961270928383, -0.019669266417622566, 0.007212277501821518, 0.016905177384614944, -0.004498794674873352, -0.017020603641867638, 0.01909206621348858, -0.01756933517754078, 0.007028198800981045, -0.013011961244046688, 0.012404224835336208, 0.01890147477388382, 0.0009642577497288585, -0.022803835570812225, 0.0008949749171733856, -0.007269251625984907, -0.007757476065307856, 0.0015883509768173099, 0.00422906968742609, -0.01996700093150139, 0.03507290408015251, -0.1264919489622116, -0.029790537431836128, -0.007767004892230034, 0.009704790078103542, -0.006735366769134998, -0.022307606413960457, -0.005865595769137144, 0.0019819147419184446, 0.013855770230293274, 0.0033873773645609617, 0.015611661598086357, -0.04959402605891228, 0.003932540770620108, 0.017199784517288208, 0.0520440973341465, 0.018875060603022575, -0.0014136553509160876, 0.023644018918275833, -0.07954967767000198, -0.030279014259576797, -0.005029636435210705, -0.03810359537601471, -0.012856762856245041, 0.006985454820096493, 0.018875135108828545, 0.0008963048458099365, -0.015095707029104233, 0.00428827665746212, -0.005350788123905659, 0.009561666287481785, -0.006382166873663664, -0.021455906331539154, -0.003149581840261817, -0.039403513073921204, -0.030577896162867546, -0.022574523463845253, -0.0059667532332241535, -0.028195450082421303, -0.004643627442419529, -0.0021505863405764103, -0.010592491365969181, -0.03217701613903046, 0.008475013077259064, 0.004266837146133184, -0.030151501297950745, 0.02668638713657856, 0.017534703016281128, -0.012367199175059795, -0.0008311654673889279, 0.02503569982945919, -0.04747850075364113, -0.02141665481030941, 0.0004452662542462349, 0.06961081176996231, 0.012521397322416306, -0.004890021402388811, -0.008569744415581226, 0.0013759497087448835, -0.015534257516264915, 0.01487652026116848, 0.01633336953818798, -0.01681109517812729, 0.03193433955311775, -0.012517120689153671, 0.014829562976956367, -0.08459072560071945, 0.019279830157756805, -0.022445840761065483, -0.011138495989143848, 0.011945780366659164, 0.8558252453804016, -0.004824737552553415, 0.03376806527376175, 0.02756452187895775, 0.008146816864609718, 0.01067985687404871, 0.024046409875154495, 0.03399328887462616, -0.040828365832567215, 0.02101753279566765, -0.02384180948138237, 0.023005686700344086, 0.029942581430077553, 0.01829584129154682, 0.023188039660453796, -0.01567702554166317, 0.03322548419237137, 0.03151223808526993, -0.0069805472157895565, -0.008334248326718807, 0.01501881517469883, 0.023868173360824585, 0.0013799868756905198, 0.013984227553009987, 0.007145197596400976, -0.03165505453944206, -0.16961725056171417, 0.03136669099330902, -7.658195085393504e-33, 0.05644521489739418, -0.021911745890975, -0.025899717584252357, -0.01488228514790535, 0.017467830330133438, -0.002084865001961589, 0.04463924840092659, -0.010073784738779068, -0.03532660752534866, -0.03199062496423721, -0.001620081951841712, -0.0004385308420751244, -0.005883274599909782, -0.027817558497190475, 0.015459679067134857, -0.02757909707725048, -0.0238924752920866, 0.04881281033158302, -0.032435428351163864, 0.022517478093504906, 0.036541081964969635, 0.024552835151553154, -0.00490129180252552, -0.007838716730475426, -0.003543146187439561, 0.01773071475327015, -0.013768045231699944, 0.021237730979919434, 0.015886381268501282, -0.04638603329658508, -0.019522979855537415, 0.011881831102073193, -0.03011912852525711, -0.0036916127428412437, -0.052298590540885925, -0.03163965791463852, 0.003919476643204689, -0.0101250559091568, -0.023940803483128548, -0.03599591553211212, -0.03526631370186806, 0.009046616964042187, -0.01271843258291483, -0.05053699016571045, -0.0007235618541017175, -0.01710934191942215, 0.0310494564473629, 0.044475357979536057, 0.020179320126771927, -0.028203977271914482, 0.013674963265657425, 0.004137044306844473, 0.0060651167295873165, 0.010287949815392494, -0.01686794124543667, 0.012084194459021091, -0.0030534332618117332, 0.042630635201931, 0.008046150207519531, 0.058396030217409134, -0.00831424631178379, 0.022710470482707024, -0.03705930709838867, 0.052124932408332825, -0.039672303944826126, -0.011564571410417557, -0.001210919115692377, 0.0286282766610384, 0.05163969472050667, -0.029473189264535904, -0.07817119359970093, 0.013647325336933136, -0.016829930245876312, 0.0015466938493773341, -0.011186258867383003, -0.0029104838613420725, 0.024678461253643036, 0.0008918946841731668, -0.021424444392323494, 0.028506912291049957, 0.011655593290925026, 0.0021552627440541983, -0.03650975599884987, -0.015832096338272095, -0.0392802394926548, 0.01151456218212843, -0.009046107530593872, -0.03630856052041054, -0.016921916976571083, 0.02458171918988228, 0.019210191443562508, 0.00645164679735899, -0.005825406406074762, 0.026748545467853546, -0.015857676044106483, 6.663977391831368e-33, -0.004710588604211807, -0.018934916704893112, -0.007841585204005241, 0.008263964205980301, 0.03597981110215187, 0.0034280617255717516, 0.0019645297434180975, -0.02464056760072708, -0.032422494143247604, -0.0036360586527734995, -0.02252412959933281, 0.002549121156334877, 0.0019461055053398013, 0.0042181541211903095, 0.0363825187087059, -0.022519510239362717, 0.0006451274966821074, 0.009327221661806107, 0.014880283735692501, -0.009346098639070988, 0.04633689299225807, 0.014766206033527851, -0.01704910211265087, 0.015185274183750153, -0.02536197192966938, 0.05818082392215729, -0.0032961908727884293, 0.028118377551436424, 0.009563197381794453, 0.021441951394081116, -0.024576755240559578, -0.022756636142730713, 0.015049181878566742, -0.0008135857642628253, 0.006974526681005955, 0.011178521439433098, -0.022200115025043488, 0.005640573799610138, -0.004235583357512951, -0.003131396835669875, 0.02597188577055931, -0.0033996545244008303, 0.005431977566331625, 0.04251271113753319, 0.03152413293719292, 0.02487310580909252, -0.005197073798626661, -0.023793546482920647, 0.00588737428188324, 0.016071390360593796, 0.0008060599793680012, -0.004422209225594997, -0.018231993541121483, -0.016003180295228958, -0.016732459887862206, -0.03255421668291092, -0.024027647450566292, -0.023677146062254906, -0.02365264482796192, 0.03996619954705238, 0.0022533449809998274, -0.0006284897681325674, -0.007975523360073566, 0.02494472824037075, 0.000318555481499061, 0.010259096510708332, -0.03347336873412132, 0.01268942840397358, -0.012814091518521309, 0.0345928892493248, 0.005782309453934431, 0.02262965962290764, -0.010807007551193237, 0.03995128348469734, 0.03599953651428223, -0.037893958389759064, -0.02546057105064392, -0.001397209125570953, -0.021921448409557343, 0.02478606067597866, 0.020803404971957207, -0.008185782469809055, 0.02923235483467579, -0.024613987654447556, -0.0005018350202590227, 0.01981121301651001, 0.009195198304951191, 0.06256582587957382, 0.01797294057905674, -0.03831309825181961, -0.019394526258111, -0.01364902500063181, 0.03015611693263054, 0.0013507523108273745, 0.0030110999941825867, -1.3246617136530858e-8, -0.01031684409826994, 0.03498891741037369, -0.005847553256899118, 0.043455060571432114, -0.0302700474858284, 0.008841851726174355, -0.010454770177602768, 0.007587169297039509, -0.03238557279109955, 0.006424614228308201, 0.01868627592921257, -0.004422466270625591, -0.008780127391219139, -0.012382062152028084, 0.0264689140021801, -0.023286299780011177, -0.04740992188453674, 0.0007322430028580129, 0.03969637677073479, -0.0013051179703325033, 0.019691497087478638, 0.02013588324189186, 0.0011091039050370455, 0.01721113920211792, -0.020086612552404404, -0.0192839615046978, 0.0024157725274562836, -0.04605424404144287, -0.03534076362848282, 0.007860600017011166, 0.006122073158621788, -0.03183373808860779, -0.0003895500849466771, 0.01528091449290514, -0.03765818104147911, -0.03586266562342644, 0.024366004392504692, -0.0005657674046233296, 0.01811918243765831, 0.0005769520648755133, -0.03771999850869179, -0.043748147785663605, 0.0018162938067689538, -0.03801734745502472, -0.023060936480760574, 0.03057652711868286, -0.01859092153608799, -0.004956964869052172, 0.017441729083657265, -0.033742740750312805, 0.026508206501603127, -0.035130735486745834, 0.012848070822656155, 0.025539100170135498, 0.00045134505489841104, 0.04269349202513695, -0.024455901235342026, 0.008286877535283566, -0.010720404796302319, -0.04456840455532074, 0.0010802479228004813, 0.02692127414047718, -0.025648336857557297, -0.027330530807375908 ]
thoughtworks-university-a-refactoring-dojo
https://markhneedham.com/blog/2011/03/22/thoughtworks-university-a-refactoring-dojo
false
2011-04-03 17:11:46
ThoughtWorks University: The coaching/training conflict
[ "thoughtworks-university" ]
[ "ThoughtWorks University" ]
As I http://www.markhneedham.com/blog/2011/03/29/thoughtworks-university-coding-dojo-style/[mentioned in an earlier post] Sumeet has been encouraging us to act more as coaches rather than trainers during ThoughtWorks University but it's not quite as easy as it seems. I've noticed that there are a few things that contribute to this difficulty. == Assessment The biggest obstacle is that by the end of TWU the trainers are required to send a review about each of the grads to the respective Resource Managers describing each person's current level of skill in various categories. Although we're trying hard to be helpful when conveying this message it's difficult for the grads to get beyond the feeling that they're being tested which to some extent is true. I find the idea of assessing people while I'm working with them quite difficult so for me it's more a point of working out the best way to help each person improve their skills. On the other hand the advantage of being in a mode where you're explicitly looking for ways for them to improve is that you are able to give much more detailed feedback than you might be able to if you were on a 'normal team'. == Switching roles One of the things that a couple of the trainers were doing was acting as a proxy customer as well as playing their normal role. This is an approach that has been used on previous TWU's and the intention was to give the grads an idea of the different types of customers that they might encounter. The feedback from the grads was that it can be quite confusing because you're never quite sure which role the trainer is going to be playing when you go to speak to them. As a result we've decided to drop this idea and let the http://www.sukrupa.org/[Sukrupa] guys completely play the role of customer while the trainers just play their normal role. == Drifting outside the group A more subtle thing which can signify a difference between trainers/grads is the tendency for trainers to drift outside of group situations physically. For example in the http://www.markhneedham.com/blog/2011/03/30/thoughtworks-university-a-double-loop-learning-example/[wrap up that we do at the end of the day] if the trainers don't participate in that then it signifies a difference between them and the grads i.e. they're not really part of the group. I think we've got better at this as time has gone on and it's actually much more fun to take part in everything than to just be an observer. It's very difficult to completely get rid of the role of being a trainer but at least having an awareness of the situations where we make it more difficult for ourselves can help us get closer to achieving that.
null
null
[ 0.025517750531435013, -0.01011565700173378, -0.004281009081751108, 0.026223719120025635, 0.0789506658911705, 0.014828231185674667, 0.03024446591734886, 0.03088165447115898, 0.026133453473448753, -0.024035047739744186, -0.033443450927734375, -0.009053842164576054, -0.03718243166804314, 0.012238365598022938, -0.01898028329014778, 0.0720575600862503, 0.059506241232156754, 0.021319683641195297, 0.012635678984224796, -0.012129953131079674, 0.032553162425756454, 0.07510209828615189, 0.03461878001689911, 0.025276362895965576, 0.04631844907999039, 0.0035394395235925913, 0.022892000153660774, 0.011715138331055641, -0.041836656630039215, -0.02117096818983555, 0.03205835819244385, -0.010339864529669285, 0.013838909566402435, 0.017507750540971756, 0.037802111357450485, -0.02697390876710415, 0.007686789613217115, 0.03894439712166786, 0.023930231109261513, 0.007105305790901184, -0.07453012466430664, 0.037789810448884964, -0.01668466627597809, 0.014933545142412186, -0.056876394897699356, 0.01057201623916626, -0.03992064669728279, -0.004954626318067312, 0.0033709651324898005, -0.018865838646888733, -0.0819907858967781, 0.042699478566646576, 0.022762887179851532, -0.006446153856813908, -0.015626680105924606, 0.03904838487505913, 0.01795244961977005, -0.05810267850756645, 0.019916683435440063, -0.05896560847759247, -0.013576209545135498, 0.008932606317102909, -0.009856833145022392, 0.02532687410712242, 0.027557574212551117, -0.031612761318683624, 0.03443336859345436, 0.03814275935292244, -0.02765577659010887, 0.0014506445731967688, -0.01953764818608761, 0.007483961991965771, 0.010180302895605564, -0.018067380413413048, 0.0074645597487688065, -0.05367245152592659, -0.007517289370298386, 0.06201242655515671, 0.029944201931357384, 0.011535460129380226, -0.030401229858398438, 0.021356234326958656, 0.008621116168797016, 0.020572878420352936, -0.009623182006180286, -0.06447423249483109, 0.007542779203504324, -0.02208450622856617, -0.06703098118305206, 0.08171255886554718, -0.005069534294307232, -0.030560335144400597, 0.005864029284566641, 0.04503260925412178, -0.0027239478658884764, 0.01306548248976469, 0.025024043396115303, -0.028136825188994408, -0.007779065519571304, -0.03649154677987099, -0.03161139413714409, -0.024373723194003105, 0.006308524403721094, 0.022800618782639503, -0.09197687357664108, -0.0013912358554080129, 0.007907219231128693, -0.0062585496343672276, -0.009783023968338966, 0.03945591673254967, -0.0572047233581543, 0.02150714211165905, -0.004946002271026373, 0.006061668507754803, -0.06929462403059006, 0.06085206940770149, 0.008477297611534595, -0.03830908611416817, -0.03241953253746033, 0.003869749838486314, 0.04342811182141304, -0.0023471792228519917, -0.014048327691853046, 0.06779439747333527, 0.02318480610847473, 0.01664787158370018, -0.05172799527645111, 0.058964427560567856, -0.014103945344686508, -0.0578383170068264, 0.02130310796201229, 0.04538900777697563, -0.018563350662589073, 0.030041038990020752, 0.010118783451616764, -0.03410055488348007, 0.015897877514362335, -0.015319595113396645, 0.03693292289972305, 0.05989023298025131, -0.006983996834605932, -0.0185276847332716, 0.006007627584040165, 0.022823316976428032, 0.009008443914353848, -0.020811906084418297, 0.005098219029605389, -0.01650376431643963, -0.03418685123324394, -0.02193334698677063, -0.010389132425189018, 0.018535926938056946, 0.017952559515833855, -0.037073567509651184, 0.026731785386800766, 0.07924070209264755, 0.04302285984158516, 0.01659076102077961, -0.032518137246370316, 0.024072952568531036, 0.01726129651069641, 0.03353636711835861, 0.014702532440423965, 0.032804589718580246, 0.02140832506120205, -0.009277233853936195, 0.0035981000401079655, 0.01164234895259142, -0.004959156271070242, 0.02652774378657341, -0.06947338581085205, -0.0417468436062336, 0.04408919811248779, -0.04854055494070053, -0.03807946294546127, 0.05093652009963989, 0.056338921189308167, 0.027598606422543526, 0.039212148636579514, -0.0016591434832662344, -0.07803838700056076, 0.027600819244980812, 0.025874461978673935, 0.02779652550816536, 0.04391089081764221, -0.0367598757147789, 0.05219821259379387, 0.035801731050014496, -0.010730407200753689, 0.05454828217625618, -0.06740565598011017, -0.08907970786094666, -0.004676046781241894, -0.01716633513569832, 0.02934494987130165, -0.028400423005223274, 0.016420822590589523, 0.06595367938280106, -0.0068070185370743275, 0.04665941372513771, 0.03944646567106247, -0.011682304553687572, 0.010706627741456032, -0.028030239045619965, -0.02952994592487812, 0.07757697999477386, 0.023529691621661186, -0.00946216844022274, -0.050126537680625916, 0.013985334895551205, -0.01906791515648365, -0.04199053719639778, 0.044753339141607285, -0.012084469199180603, 0.03130349889397621, 0.00927415769547224, 0.0460989736020565, -0.01856597326695919, 0.053138215094804764, -0.031977538019418716, 0.024004971608519554, 0.011475521139800549, -0.025086741894483566, 0.0060985335148870945, 0.001303330878727138, 0.10745666921138763, 0.039025891572237015, -0.0420144759118557, -0.05859949439764023, 0.017073720693588257, 0.016686445102095604, -0.0550747849047184, -0.01317224558442831, 0.017488490790128708, 0.018056320026516914, -0.0033783752005547285, -0.06448747217655182, -0.0655173808336258, 0.03056951053440571, -0.05900145322084427, -0.0025321627035737038, 0.0776006355881691, -0.025054708123207092, 0.06591068208217621, -0.009418158791959286, -0.011606377549469471, 0.0016936514293774962, 0.02528476156294346, -0.04795901104807854, 0.013352619484066963, 0.011521282605826855, -0.00825470220297575, 0.043520279228687286, -0.007541842292994261, -0.035440970212221146, -0.028400911018252373, -0.045712750405073166, 0.021617447957396507, 0.06855982542037964, 0.04323865845799446, -0.017590269446372986, 0.07154189795255661, -0.019162293523550034, 0.030244821682572365, 0.00008853525650920346, -0.04241488128900528, -0.03672284260392189, -0.018021883442997932, 0.0027962063904851675, -0.0037426594644784927, 0.01631687767803669, -0.0016092831501737237, 0.013298937119543552, 0.005447539500892162, -0.04093881696462631, 0.011412340216338634, 0.03009832091629505, 0.007148673292249441, -0.0022269198670983315, -0.02197301760315895, -0.01966916210949421, 0.05137554183602333, -0.028241753578186035, -0.009126204065978527, 0.02146873064339161, -0.09544394165277481, 0.024376899003982544, -0.06445957720279694, -0.058329325169324875, 0.001690085744485259, -0.011640133336186409, 0.05348564311861992, 0.022230001166462898, 0.0024125732015818357, 0.0637611523270607, 0.0027509245555847883, 0.01953689567744732, 0.005907729733735323, 0.00411132862791419, 0.050986986607313156, 0.004825622774660587, -0.009878428652882576, 0.049079250544309616, 0.006086936220526695, 0.004723504185676575, -0.049300920218229294, 0.049287647008895874, -0.032859042286872864, -0.3038456439971924, 0.03174848109483719, 0.012946165166795254, -0.01781998760998249, 0.03885906934738159, -0.0649065151810646, 0.0227526742964983, -0.04373263567686081, -0.048393942415714264, 0.025977905839681625, -0.04485731199383736, -0.036136444658041, -0.03232920914888382, 0.04850083589553833, -0.007676309440284967, 0.03442128002643585, 0.021704955026507378, -0.04251088574528694, -0.0006210284191183746, 0.056669268757104874, -0.009833055548369884, -0.06164403259754181, -0.029475318267941475, 0.06650716811418533, 0.05792742967605591, 0.08071092516183853, -0.08678224682807922, 0.019258422777056694, -0.07042631506919861, -0.012039247900247574, 0.013974172994494438, 0.011919891461730003, -0.0005490656476467848, -0.010061085224151611, -0.011781780980527401, -0.015518919564783573, 0.060338351875543594, 0.008463026024401188, 0.0013464384246617556, -0.004503245465457439, -0.03788066655397415, -0.05357683077454567, -0.017197730019688606, 0.027348246425390244, 0.06334226578474045, 0.030727755278348923, -0.07585989683866501, -0.01664918102324009, -0.03042391501367092, 0.067369744181633, -0.018337011337280273, -0.030453383922576904, -0.012982562184333801, 0.03584234043955803, -0.0005176147678866982, -0.012788410298526287, -0.003568959655240178, -0.01750207133591175, -0.050754643976688385, -0.03809875249862671, -0.03105568327009678, -0.030055735260248184, -0.020596211776137352, -0.05199655145406723, -0.0057059479877352715, -0.06147744134068489, -0.051622744649648666, 0.006089204456657171, 0.0683518499135971, 0.01454151701182127, -0.06032080575823784, 0.009098514914512634, -0.02604164555668831, -0.0963967889547348, 0.0014454415068030357, 0.00431381119415164, -0.014108140021562576, -0.010965866968035698, 0.023246098309755325, 0.04553750902414322, -0.022912638261914253, -0.04887918382883072, 0.02996254339814186, 0.01255182083696127, 0.029383914545178413, -0.018101125955581665, 0.06264182925224304, 0.03221697360277176, 0.001042018411681056, 0.02536759153008461, 0.07894977182149887, 0.02514633908867836, -0.03488631546497345, -0.018981315195560455, 0.03691012039780617, 0.022855546325445175, 0.008600437082350254, -0.03480173647403717, -0.007532898802310228, 0.007350859697908163, 0.0049750604666769505, -0.05025488883256912, 0.012534351088106632, -0.00836541410535574, -0.009395546279847622, -0.025936473160982132, -0.04173055291175842, 0.02984398789703846, 0.031910065561532974, 0.011349099688231945, 0.011125339195132256, -0.035663481801748276, 0.012292139232158661, -0.019642651081085205, -0.024560537189245224, -0.015292751602828503, -0.004992849659174681, 0.045728158205747604, -0.006567004136741161, 0.009482836350798607, -0.032919760793447495, 0.01850084587931633, -0.010269644670188427, -0.024127835407853127, -0.0636465772986412, 0.005958123132586479, -0.004981494043022394, -0.0374569408595562, 0.005257775541394949, 0.0022153391037136316, -0.005488777067512274, 0.005493248347193003, 0.03157878667116165, -0.02895452082157135, 0.01628834567964077, -0.03174629807472229, -0.07080709934234619, -0.02569652907550335, -0.023738769814372063, 0.005118303466588259, -0.014091191813349724, 0.030481427907943726, -0.0029118875972926617, 0.018067196011543274, 0.05296345800161362, 0.02012716606259346, 0.007010181434452534, -0.021963050588965416, 0.02051362954080105, 0.012380927801132202, 0.026010069996118546, -0.0783432349562645, 0.008678426966071129, -0.04014228284358978, -0.012904595583677292, -0.006526237353682518, 0.02408771403133869, -0.0008708181558176875, -0.006311530712991953, 0.0008210866362787783, 0.0018671163124963641, -0.05351000279188156, -0.04241626337170601, -0.024990303441882133, 0.043985139578580856, 0.05349443107843399, -0.005782011430710554, 0.0007724398747086525, -0.02003396488726139, -0.0007321839220821857, 0.021901564672589302, 0.008349507115781307, -0.04098290205001831, -0.004422579891979694, 0.012575552798807621, -0.01316419430077076, 0.004094061907380819, 0.006060832645744085, 0.047287601977586746, -0.012066828086972237, -0.003286611521616578, -0.026690199971199036, 0.009692519903182983, 0.001585774589329958, 0.04746190831065178, 0.04015664756298065, -0.001192352850921452, -0.00944504700601101, -0.00874511618167162, -0.008397439494729042, -0.04315252974629402, -0.020012324675917625, 0.004743732046335936, 0.03375079855322838, -0.037134505808353424, -0.053886573761701584, 0.0660427138209343, 0.023453116416931152, -0.010294501669704914, 0.03375973179936409, 0.004419542383402586, -0.0016092738369479775, -0.022340066730976105, 0.026209605857729912, 0.05650445446372032, -0.05686737969517708, 0.006341440137475729, -0.01574692130088806, -0.004093554802238941, -0.011030192486941814, -0.021206839010119438, -0.01610073447227478, 0.007797109428793192, -0.049200866371393204, -0.00203571910969913, -0.09576697647571564, -0.013449244201183319, -0.04038369283080101, 0.021466659381985664, -0.0206452589482069, 0.013715197332203388, -0.021321339532732964, -0.01991334557533264, -0.003997223451733589, -0.04197470471262932, 0.015861425548791885, -0.045627664774656296, -0.006743066944181919, 0.01565094292163849, -0.04461483284831047, -0.004544842056930065, -0.017481135204434395, 0.0055590784177184105, 0.02747455984354019, -0.022444361820816994, -0.004232961218804121, -0.01778230629861355, 0.013630992732942104, 0.01993674412369728, 0.027315037325024605, 0.0007116097840480506, -0.03345667943358421, -0.04426500201225281, -0.00549532612785697, -0.035668134689331055, 0.022847559303045273, -0.03285274654626846, -0.018213028088212013, 0.03684094920754433, 0.05696617439389229, 0.05079095438122749, 0.03402632102370262, -0.012585262767970562, -0.014834008179605007, 0.0455138199031353, -0.06280955672264099, -0.02362227439880371, -0.029772188514471054, -0.046395134180784225, 0.02065255492925644, 0.0008672273834235966, 0.03014662116765976, -0.019888944923877716, 0.03459473326802254, -0.0006984997307881713, 0.02742653153836727, 0.04293722286820412, -0.0007309571956284344, 0.032256465405225754, -0.07704610377550125, -0.00017010726151056588, -0.07659413665533066, -0.009559497237205505, 0.022116297855973244, 0.022475052624940872, -0.012575924396514893, -0.008570518344640732, -0.058216702193021774, 0.08161057531833649, -0.06688768416643143, -0.022156665101647377, 0.03671611100435257, -0.016997285187244415, -0.03101542964577675, 0.01086127944290638, -0.07226903736591339, 0.029963070526719093, 0.01590912602841854, -0.04514814540743828, -0.01628316380083561, -0.019037116318941116, 0.0377470962703228, 0.0013302399311214685, 0.00880910363048315, -0.03713813051581383, 0.006586930714547634, 0.08193863183259964, 0.0029809861443936825, 0.005571965593844652, 0.044324323534965515, -0.019771970808506012, 0.030324557796120644, 0.039135873317718506, 0.01982971467077732, -0.00946609303355217, 0.00903661921620369, -0.006244543008506298, -0.07515716552734375, 0.046518538147211075, -0.004547587130218744, -0.03146687150001526, -0.050750732421875, 0.046884097158908844, 0.021184321492910385, -0.012378421612083912, -0.044473160058259964, 0.016341086477041245, -0.04447304084897041, -0.009811006486415863, -0.0124747883528471, -0.013606196269392967, -0.049389440566301346, 0.040623776614665985, -0.004371363669633865, 0.012042371556162834, 0.055852219462394714, -0.0098617197945714, -0.03992785885930061, -0.012161938473582268, 0.08543018251657486, 0.05377236381173134, 0.06434659659862518, 0.01890845224261284, 0.07238198071718216, -0.011860380880534649, -0.051630161702632904, 0.033112164586782455, 0.011261772364377975, -0.002720403950661421, -0.012861201539635658, 0.018804023042321205, 0.05784690007567406, 0.011663820594549179, 0.05140864849090576, -0.019889449700713158, -0.023718610405921936, 0.013803653419017792, 0.03570982813835144, 0.0020314068533480167, 0.046131931245326996, -0.001898465328849852, -0.0030487359035760164, -0.02430158108472824, -0.06362129747867584, 0.02093864604830742, -0.034821875393390656, -0.012581747956573963, 0.02055293507874012, -0.03582730144262314, 0.02619382180273533, -0.0017634357791393995, 0.015534373931586742, 0.07708066701889038, -0.06459635496139526, 0.01642017625272274, -0.011149570345878601, 0.02681315504014492, -0.007353785913437605, 0.0048132846131920815, -0.010057956911623478, -0.02555767260491848, 0.008392928168177605, -0.021748382598161697, -0.017075305804610252, 0.005717217922210693, 0.004409723915159702, 0.03330717235803604, -0.03180110082030296, 0.002106458181515336, 0.04485798999667168, 0.016119465231895447, -0.018606359139084816, -0.05887996777892113, -0.0287201926112175, -0.0338093601167202, -0.05490947514772415, -0.006370370276272297, 0.028901314362883568, -0.014211125671863556, -0.017458749935030937, -0.007485439069569111, -0.02652113325893879, -0.02886558696627617, 0.05256228521466255, -0.04246146231889725, -0.02741573192179203, -0.007950861006975174, 0.02364155650138855, 0.04063652828335762, 0.006641723681241274, 0.05476224794983864, 0.006122478283941746, 0.0025345711037516594, -0.009451075457036495, 0.0024155667051672935, 0.016194187104701996, -0.0024640315677970648, 0.00966144073754549, -0.08608545362949371, 0.0031672026962041855, 0.03676290437579155, -0.01508352067321539, -0.04043135792016983, 0.03094453364610672, 0.03360304236412048, 0.04092499613761902, 0.05527917295694351, -0.004594127181917429, -0.02426045946776867, -0.040412746369838715, -0.0215406846255064, -0.00775156682357192, 0.019269336014986038, 0.056702401489019394, -0.02032906375825405, 0.07514779269695282, 0.008180479519069195, -0.008257071487605572, -0.0408511646091938, -0.008720684796571732, 0.017885304987430573, -0.019039906561374664, -0.036514703184366226, -0.024965627118945122, -0.01043898519128561, -0.08062786608934402, -0.02361346036195755, 0.023458193987607956, -0.01174962054938078, -0.045115601271390915, 0.018202027305960655, 0.006545824930071831, -0.005686952732503414, 0.02664109505712986, -0.04235118255019188, 0.028278188779950142, -0.021678093820810318, -0.012076484970748425, 0.02232174389064312, 0.010537675581872463, -0.010171420872211456, -0.010110918432474136, 0.0183497853577137, -0.060946714133024216, -0.0035188316833227873, -0.005357011687010527, -0.0017623440362513065, 0.04770120233297348, -0.0028690421022474766, -0.019126061350107193 ]
[ -0.07036572694778442, -0.0035491413436830044, 0.01323753409087658, -0.023676011711359024, 0.02645721100270748, -0.011924129910767078, 0.015396995469927788, 0.013723201118409634, -0.01377358939498663, -0.022469226270914078, 0.016391154378652573, -0.025517454370856285, 0.00120670220348984, -0.015052533708512783, 0.09371186792850494, -0.011389423161745071, -0.015238623134791851, -0.04776264727115631, 0.013779678381979465, 0.0266831424087286, -0.03124268911778927, -0.0268685445189476, -0.05069153755903244, 0.011309394612908363, 0.03361261636018753, -0.007456441875547171, 0.009328425861895084, -0.04111633077263832, 0.008607316762208939, -0.1679105907678604, -0.004353759344667196, 0.009216653183102608, 0.03499237075448036, 0.00973500870168209, -0.01028144359588623, 0.07910753041505814, 0.029325595125555992, 0.00011511644697748125, -0.005470863077789545, 0.040504515171051025, -0.00351765938103199, 0.02083377167582512, -0.05737559497356415, -0.044217798858881, 0.03351002186536789, 0.007498544175177813, -0.0034648128785192966, -0.05445073917508125, -0.04077130928635597, 0.025265075266361237, -0.043472789227962494, -0.044457580894231796, -0.011791431345045567, -0.007930782623589039, -0.01528892945498228, 0.013040339574217796, 0.05679294839501381, 0.05062122270464897, 0.004907504189759493, 0.019161341711878777, 0.016078175976872444, -0.015572397038340569, -0.15302340686321259, 0.09274574369192123, 0.0212633665651083, 0.060085199773311615, -0.04231082648038864, 0.015232523903250694, -0.02045072242617607, 0.07126733660697937, -0.003685038536787033, -0.0615316666662693, -0.025358157232403755, 0.003972323145717382, 0.02496841736137867, 0.026644127443432808, -0.010242384858429432, 0.02488730661571026, 0.033966220915317535, -0.02397788129746914, -0.02971719019114971, -0.021972117945551872, -0.01377107948064804, -0.026911722496151924, -0.032267190515995026, 0.010879412293434143, -0.0012540315510705113, 0.009598915465176105, 0.013737677596509457, 0.026515953242778778, 0.05278262495994568, 0.0024624825455248356, 0.011635851114988327, 0.007217829115688801, -0.06405937671661377, -0.05471891164779663, -0.011033731512725353, 0.03907167539000511, -0.06338980048894882, 0.4487062394618988, -0.017905905842781067, 0.017970716580748558, 0.07405952364206314, 0.04649626091122627, -0.015453812666237354, -0.009317893534898758, 0.009485676884651184, -0.04814882203936577, 0.02917175367474556, 0.002592021133750677, 0.01912548765540123, 0.01730099320411682, 0.023961389437317848, -0.010650092735886574, -0.013563149608671665, 0.058599311858415604, 0.0180130023509264, 0.018518922850489616, -0.011833679862320423, 0.021337714046239853, -0.021965419873595238, 0.008382882922887802, 0.014241221360862255, -0.01265043206512928, -0.06470072269439697, -0.03709401190280914, 0.010954255238175392, 0.049922045320272446, 0.050324250012636185, -0.004475492984056473, 0.06844382733106613, -0.05665351077914238, -0.07401411980390549, -0.0023688855580985546, -0.010616865009069443, -0.004104833584278822, 0.04243534430861473, -0.007475426886230707, -0.0018745427951216698, 0.07616553455591202, 0.0556107833981514, -0.03047223947942257, 0.0416983999311924, -0.037759605795145035, -0.03993093594908714, 0.11460069566965103, -0.008294432424008846, -0.03091505914926529, 0.009567168541252613, 0.014616877771914005, -0.026186229661107063, -0.0012132411357015371, -0.03415858745574951, -0.04061506316065788, 0.012824547477066517, 0.0053711202926933765, 0.10507049411535263, -0.004647834226489067, -0.02327766641974449, -0.023364879190921783, -0.013209589757025242, -0.01705763302743435, -0.03760167211294174, 0.01634335331618786, 0.10621130466461182, -0.07615414261817932, -0.02325976826250553, -0.02919076941907406, 0.0074456119909882545, -0.08691093325614929, -0.0049946727231144905, 0.009619569405913353, -0.028727134689688683, 0.02870236523449421, 0.06578759849071503, -0.0250112134963274, -0.04201558977365494, -0.013308349996805191, 0.030560629442334175, 0.024978715926408768, 0.06686408072710037, 0.009521649219095707, -0.008305887691676617, -0.04168619588017464, -0.021600306034088135, -0.03718922659754753, -0.026580529287457466, -0.03397790342569351, -0.0059793442487716675, 0.009690819308161736, -0.014199170283973217, -0.04967925325036049, -0.1028132438659668, 0.043033234775066376, -0.017782047390937805, -0.0023340897168964148, 0.030105266720056534, -0.06953219324350357, -0.021364497020840645, 0.00621491065248847, -0.10066702961921692, 0.03734518215060234, -0.03451705351471901, -0.004119358956813812, -0.051735538989305496, 0.06175784394145012, 0.06834696978330612, -0.027518726885318756, 0.1015934944152832, 0.02815277874469757, -0.06292278319597244, -0.04990256950259209, 0.000693623733241111, 0.044427260756492615, 0.007722876965999603, 0.006946911569684744, 0.021477695554494858, 0.02949908748269081, -0.005385109689086676, 0.012105082161724567, 0.004437341820448637, 0.03835710138082504, -0.012938148342072964, -0.3501267433166504, -0.02283889427781105, -0.026685521006584167, 0.007280297577381134, -0.004831783939152956, -0.023369763046503067, 0.02455085515975952, -0.001852825516834855, 0.007700877729803324, 0.022400259971618652, 0.09402318298816681, 0.0010722636943683028, 0.0000748293605283834, -0.06990182399749756, 0.03361623361706734, 0.021175777539610863, -0.030781632289290428, -0.012347353622317314, -0.029367249459028244, -0.0012510702945291996, 0.024181243032217026, 0.0431317575275898, -0.009419574402272701, -0.047654248774051666, -0.004381066188216209, -0.036076903343200684, 0.09225662797689438, -0.004982430022209883, 0.0908961221575737, -0.030597658827900887, 0.013591989874839783, 0.004566422197967768, 0.03274039179086685, -0.08691805601119995, 0.045739442110061646, -0.051920585334300995, -0.0023383954539895058, -0.06015954911708832, 0.05501609295606613, -0.057660482823848724, -0.040704745799303055, 0.024014778435230255, -0.06782513111829758, -0.051811207085847855, -0.07095930725336075, 0.02704811654984951, -0.028233563527464867, -0.020306328311562538, -0.03787790983915329, 0.04967528209090233, 0.01197731588035822, -0.0035067845601588488, 0.03184381499886513, -0.02238711714744568, -0.04705385863780975, -0.02532881125807762, -0.12221681326627731, 0.03622514382004738, 0.005418239161372185, 0.029917635023593903, 0.0038414360024034977, 0.04702473431825638, 0.041638363152742386, -0.05016323924064636, -0.022048786282539368, 0.005550178233534098, 0.009449644014239311, 0.0027150462847203016, 0.052298907190561295, -0.01132872048765421, -0.011105412617325783, 0.06287088245153427, 0.008182309567928314, 0.003652438521385193, 0.013994217850267887, 0.016371579840779305, -0.013930254615843296, -0.010352132841944695, 0.0050899856723845005, -0.013249222189188004, 0.011955144815146923, -0.04618244618177414, 0.030106525868177414, -0.020632585510611534, 0.0068710921332240105, 0.02709089033305645, 0.007063821889460087, -0.05380251631140709, 0.0840611606836319, 0.034043945372104645, -0.011533182114362717, 0.02925754152238369, -0.06141695752739906, -0.014750377275049686, 0.05403361842036247, -0.011856296099722385, -0.23403559625148773, 0.010688559152185917, 0.06380295008420944, 0.03983546793460846, -0.0059872763231396675, 0.03619837388396263, 0.020908845588564873, -0.05261685326695442, -0.03709976002573967, 0.012867121025919914, 0.06944843381643295, -0.0040155742317438126, -0.011448298580944538, 0.0014973432989791036, 0.017310045659542084, 0.01093707513064146, 0.06324844807386398, -0.017294075340032578, 0.03676146641373634, -0.003051317296922207, 0.006967921741306782, -0.0018348495941609144, 0.16811013221740723, 0.024244088679552078, 0.05017935857176781, 0.004905750975012779, -0.02394988015294075, -0.0080458614975214, 0.057595208287239075, -0.01221139170229435, 0.004952955525368452, -0.010097838006913662, 0.03952539712190628, 0.005502306390553713, 0.00928366370499134, -0.06706925481557846, -0.02755272015929222, 0.03553320840001106, 0.018421007320284843, 0.0037039031740278006, 0.01268633734434843, -0.022293688729405403, -0.031208084896206856, 0.008056034334003925, 0.08669497072696686, 0.03094629943370819, -0.0005019546370021999, -0.019113322719931602, -0.0691644549369812, 0.0002906326262746006, -0.027344465255737305, -0.03535754978656769, -0.002066897228360176, -0.001386952819302678, 0.027871012687683105, 0.07414388656616211, 0.025679675862193108, -0.050410956144332886, -0.01196757610887289, -0.005968451499938965, -0.01530755590647459, -0.00809452310204506, 0.07123112678527832, 0.04027624800801277, 0.03842512518167496 ]
[ -0.030072050169110298, -0.008691479451954365, 0.03428647294640541, 0.009061048738658428, -0.00809776782989502, 0.008435802534222603, 0.006632510107010603, 0.009490586817264557, 0.00839424878358841, -0.025760171934962273, 0.020403165370225906, 0.017809368669986725, -0.005280104465782642, -0.01597421057522297, 0.014235115610063076, -0.004626175854355097, 0.02726539596915245, -0.004848761484026909, 0.041773758828639984, 0.0030081053264439106, 0.008818809874355793, -0.012869313359260559, -0.021162455901503563, -0.001067154691554606, -0.04995179921388626, -0.009806591086089611, -0.012595569714903831, -0.01610008254647255, 0.03336712718009949, -0.12487316876649857, -0.052066702395677567, -0.03093738481402397, 0.001213021925650537, 0.02365468069911003, -0.043922048062086105, -0.004421391058713198, 0.0108072180300951, 0.03485962748527527, 0.004400179721415043, 0.02372593805193901, 0.0010839462047442794, -0.004095497075468302, 0.00928663369268179, 0.02076483517885208, -0.010891239158809185, -0.0012335630599409342, 0.02411455474793911, -0.047310397028923035, -0.037044912576675415, 0.0163690447807312, -0.03506549075245857, -0.03205155208706856, 0.01037485059350729, 0.004394446965306997, 0.015763793140649796, -0.02337787114083767, 0.011046534404158592, 0.02060171589255333, -0.006384609267115593, 0.02216007187962532, 0.0331975519657135, -0.014488141983747482, -0.03848825767636299, -0.023151932284235954, 0.0006047574570402503, -0.026613887399435043, -0.062285199761390686, 0.025925595313310623, -0.03773335739970207, 0.002420928096398711, 0.007426731754094362, 0.0051522450521588326, -0.0016113024903461337, -0.05036880448460579, 0.032216500490903854, 0.011139191687107086, -0.009571069851517677, -0.004886063281446695, 0.04779946431517601, -0.02055169828236103, -0.024350399151444435, 0.012121817097067833, 0.012714548967778683, -0.017955003306269646, -0.0017490856116637588, -0.013697167858481407, 0.02165970951318741, -0.016179494559764862, 0.012930952943861485, 0.016912026330828667, -0.010788077488541603, 0.021005477756261826, -0.031399935483932495, 0.01803886517882347, -0.09515291452407837, 0.02421543374657631, -0.026869729161262512, 0.013555888086557388, 0.008442693389952183, 0.8580504655838013, -0.028194541111588478, 0.023996509611606598, 0.047572266310453415, 0.004757580813020468, -0.02414933405816555, -0.023868128657341003, 0.005021208897233009, -0.023015553131699562, 0.026265788823366165, -0.03660254180431366, 0.027457082644104958, 0.028397999703884125, 0.02652186155319214, 0.04097568243741989, 0.002715117996558547, 0.010654561221599579, 0.02535664476454258, 0.02294011600315571, -0.032152723520994186, 0.008622213266789913, 0.017350777983665466, -0.0021783201955258846, 0.02268892340362072, 0.006472479086369276, 0.004008867312222719, -0.1957555115222931, 0.019206572324037552, -8.596001539743648e-33, 0.03567731752991676, -0.004305984824895859, 0.008873241022229195, 0.005276904441416264, -0.010677609592676163, -0.024650780484080315, 0.004071339499205351, 0.021524449810385704, -0.027900679036974907, 0.005252168048173189, -0.012361288070678711, -0.0028642467223107815, 0.00008280694601126015, -0.0001324401528108865, -0.007246045861393213, -0.022786356508731842, 0.005589158274233341, 0.04743960499763489, 0.012632759287953377, 0.01855098456144333, 0.05185437202453613, 0.03310014307498932, 0.004007789772003889, 0.00040871076635085046, -0.005549728404730558, 0.0032197758555412292, -0.006116295699030161, 0.007091935258358717, 0.027039550244808197, -0.03220439329743385, -0.007657827343791723, -0.006424709223210812, -0.024064328521490097, -0.006641574203968048, -0.01300826482474804, -0.03316892310976982, -0.019221924245357513, 0.02570177987217903, 0.003993180114775896, -0.04232817515730858, -0.029766520485281944, 0.017975708469748497, -0.008373222313821316, -0.01478608138859272, -0.019699878990650177, 0.006404734216630459, 0.00258507183752954, -0.0066597010008990765, 0.01166752353310585, -0.013961412943899632, -0.017308775335550308, -0.02475135773420334, 0.01856241375207901, -0.0021960781887173653, -0.012952687218785286, -0.011008675210177898, 0.006940209772437811, 0.03708445280790329, 0.01025403756648302, 0.02765701711177826, 0.009198683314025402, 0.0013664942234754562, -0.027316531166434288, 0.005872773472219706, -0.01946907304227352, -0.030522098764777184, 0.019765695556998253, -0.006425848696380854, 0.04078221321105957, -0.005333420820534229, -0.05547330528497696, 0.014752404764294624, -0.0031001330353319645, -0.015183801762759686, 0.005778517574071884, -0.044349588453769684, 0.016089746728539467, 0.03165053576231003, -0.03674636408686638, 0.039842523634433746, 0.010337593033909798, -0.01964034140110016, -0.02077305316925049, -0.025613199919462204, -0.014684376306831837, 0.028523936867713928, 0.014454628340899944, -0.0025159958750009537, 0.008910393342375755, 0.04537253826856613, -0.010157794691622257, 0.05524739623069763, -0.0181913860142231, 0.009914166294038296, 0.015723856166005135, 8.74322192160857e-33, 0.009998857975006104, -0.01870409958064556, -0.01950957253575325, -0.011248180642724037, 0.017627505585551262, 0.01013757474720478, 0.01611698791384697, -0.0012448945781216025, -0.061637766659259796, 0.013596512377262115, -0.004828609060496092, -0.019294315949082375, -0.03517742455005646, 0.05034055933356285, 0.016500839963555336, -0.029764028266072273, 0.015907973051071167, 0.001183832879178226, 0.008858720771968365, -0.014027857221662998, 0.02530052326619625, 0.00002497137029422447, 0.006242151837795973, 0.007029510103166103, -0.0037105432711541653, 0.06310076266527176, -0.024543697014451027, 0.05378225818276405, -0.017951957881450653, 0.03229748085141182, 0.00071404391201213, -0.019492479041218758, 0.03257139027118683, 0.009786867536604404, -0.017036596313118935, -0.0040796673856675625, -0.017424387857317924, 0.0028629133012145758, 0.01130655501037836, 0.010556050576269627, 0.034084003418684006, -0.009512321092188358, 0.0025301813147962093, 0.03211941570043564, 0.018719863146543503, 0.002665015170350671, 0.0060179210267961025, -0.03025609813630581, -0.023518983274698257, 0.0049308245070278645, -0.014703742228448391, -0.0025384521577507257, -0.020072806626558304, 0.010779332369565964, -0.01116501446813345, -0.010151809081435204, -0.010124361142516136, -0.021078534424304962, -0.011965680867433548, 0.028576701879501343, -0.0025428372900933027, -0.010416206903755665, -0.03358331322669983, -0.008551598526537418, -0.01965934783220291, 0.018984785303473473, 0.006988041568547487, -0.006523764692246914, -0.024104734882712364, 0.012965940870344639, -0.015547852031886578, 0.014657792635262012, 0.00595330074429512, 0.030685899779200554, 0.00991733931005001, -0.014203622937202454, -0.009190715849399567, -0.00948573462665081, -0.026488566771149635, 0.017439603805541992, -0.016061721369624138, -0.032945845276117325, 0.02413678914308548, 0.019493140280246735, 0.01552956085652113, 0.034278541803359985, 0.006613908335566521, 0.06584179401397705, 0.01405309047549963, -0.038546014577150345, -0.0017586523899808526, -0.010412968695163727, 0.012548094615340233, 0.007159973960369825, -0.01224502082914114, -1.406677441195825e-8, -0.053190022706985474, -0.0145339360460639, -0.0036468307953327894, 0.03973434120416641, -0.0017752574058249593, -0.008565092459321022, -0.026467381045222282, -0.003994074650108814, -0.01958880014717579, 0.026858234778046608, 0.010431844741106033, -0.014746511355042458, -0.025228509679436684, 0.008904652670025826, 0.04587173834443092, -0.04444108158349991, -0.02187967114150524, 0.008990533649921417, 0.03164438530802727, -0.012868065387010574, 0.021602585911750793, 0.04685131832957268, -0.013215551152825356, 0.02053525112569332, 0.013214606791734695, 0.004333832301199436, -0.022701362147927284, -0.0825715959072113, -0.008965143002569675, -0.003676860360428691, 0.026447292417287827, -0.04610094800591469, 0.0017972810892388225, 0.016184993088245392, -0.022514430806040764, -0.019872678443789482, -0.0015702085802331567, 0.019001947715878487, 0.02392669767141342, 0.00007690912752877921, -0.0005712653510272503, 0.005178436171263456, 0.003439235733821988, -0.02961726300418377, -0.0005437606014311314, 0.0362684540450573, 0.008708411827683449, -0.0004231391358189285, 0.009553753770887852, 0.0012004002928733826, 0.00784388743340969, -0.013338950462639332, 0.037241775542497635, 0.03661830350756645, -0.02518981136381626, -0.003263606457039714, -0.018817096948623657, -0.012088472954928875, -0.05051976069808006, -0.01611919328570366, 0.029894409701228142, 0.006910486146807671, -0.025958634912967682, -0.033523429185152054 ]
thoughtworks-university-the-coachingtraining-conflict
https://markhneedham.com/blog/2011/04/03/thoughtworks-university-the-coachingtraining-conflict
false
2011-04-27 12:33:56
ThoughtWorks University: v2.0 vs v1.0
[ "thoughtworks-university" ]
[ "ThoughtWorks University" ]
Since we finished the most recent ThoughtWorks University session last week a few people have been asking me how the experience was and I've found myself comparing this experience to my own as an attendee in August 2006. Back then ThoughtWorks University was much different. We had 5 weeks of workshop style sessions and then spent the last week working on an internal application. This time we spent 1 week doing the workshop style sessions, 1 week working together on a story and then 4 weeks working on the application. == Knowing what you don't know My general feeling is that although http://www.learninggeneralist.com/2010/08/thoughtworks-university-story-of-our.html[TWU v2.0] is better designed for helping people to learn, an advantage of the previous approach was that there was more opportunity to see the gaps in your skill-set. From what I remember there was much more trainer input and at times it was amazing to see http://www.markhneedham.com/blog/2006/09/02/watching-a-master-at-work/[how good someone could be at programming] once they'd got years of practice behind them. Although this still happened, albeit less frequently, there was often feedback that people didn't know what they didn't know and were therefore unsure what they needed to learn. They will still be able learn about those gaps on the projects they work on but I didn't feel this group had the sense of how much there still is to learn as I did 4 1/2 years ago. == The 'trainer' role The role of the ThoughtWorks University trainers has changed from being an actual trainer to being http://www.markhneedham.com/blog/2011/04/03/thoughtworks-university-the-coachingtraining-conflict/[more of an enablement coach] whose primary goal is to facilitate people learning. I think this makes the 'trainer' a more passive participant as your job is no longer to 'teach' people things but rather to let them learn themselves. At times this meant sitting back to allow people to explore and learn from their mistakes and although I think this is a valuable approach it can get quite boring! == Realism vs Creating Learning Opportunities One of the nice things about the new style is that the challenges and problems that people encountered were actually real and not contrived. On the other hand this meant that we couldn't specifically target things that we wanted people to learn in such a structured way. For example, I remember doing several sessions on object design and design patterns and although we weren't experts in either of those by the end of TWU it helped us to see some areas that we could go and read/learn more about. I think people probably came across similar types of situations in this TWU but in their pairs rather than as a group so it was more difficult to point out the learning area.
null
null
[ 0.025455957278609276, -0.01154268067330122, -0.011391786858439445, 0.03498655557632446, 0.0757090374827385, 0.01676527038216591, 0.03059518150985241, 0.04763612151145935, 0.017893964424729347, -0.023432813584804535, -0.037032753229141235, -0.006057713180780411, -0.02464677393436432, 0.02570565603673458, -0.018103163689374924, 0.060086529701948166, 0.05454421788454056, -0.0040670884773135185, 0.015373415313661098, 0.010745659470558167, 0.04519478231668472, 0.07071005553007126, 0.027186183258891106, 0.02078952081501484, 0.0469173826277256, 0.0009799757972359657, 0.023190641775727272, -0.02039613574743271, -0.04233468696475029, -0.0014110322808846831, 0.022966496646404266, -0.008883023634552956, 0.008548181504011154, 0.014821263030171394, 0.0407278910279274, -0.018388820812106133, 0.0032255828846246004, 0.029148904606699944, 0.017774756997823715, 0.02202417142689228, -0.0727873146533966, 0.04043209180235863, -0.017788149416446686, 0.0008793115266598761, -0.054712023586034775, 0.008780403062701225, -0.026271430775523186, -0.0013439919566735625, 0.0013257534010335803, -0.009608739987015724, -0.09089583903551102, 0.03676304966211319, 0.039149992167949677, 0.009371554479002953, -0.017477184534072876, 0.03920833021402359, 0.019271334633231163, -0.07462921738624573, 0.01406302023679018, -0.029065828770399094, -0.020435471087694168, -0.002260876353830099, -0.020909275859594345, 0.0384548082947731, 0.025419143959879875, -0.04667221009731293, 0.027160855010151863, 0.03020220436155796, -0.026465676724910736, -0.00047955987975001335, -0.016472475603222847, 0.0006333206547424197, -0.009800000116229057, -0.008301700465381145, 0.009423570707440376, -0.03574686497449875, 0.012328154407441616, 0.05533185228705406, 0.0284008476883173, 0.005892789922654629, -0.02909182384610176, 0.021146230399608612, 0.012910845689475536, 0.0184188112616539, -0.002675676019862294, -0.06292556971311569, 0.006730393040925264, -0.03286612778902054, -0.06323191523551941, 0.06461963802576065, -0.0008414900512434542, -0.04398020729422569, 0.013351192697882652, 0.035784006118774414, -0.00913920346647501, 0.020787237212061882, 0.026454148814082146, -0.01844804175198078, -0.018197931349277496, -0.026367075741291046, -0.013042708858847618, -0.029635434970259666, 0.00767274247482419, 0.03202798217535019, -0.08742877840995789, 0.009062223136425018, -0.007605437189340591, -0.013728205114603043, -0.017592497169971466, 0.025291768833994865, -0.04667464643716812, 0.04466311261057854, -0.00701362919062376, 0.02187313511967659, -0.07104957848787308, 0.045016683638095856, 0.015166501514613628, -0.042100902646780014, -0.03031710907816887, -0.0006547051016241312, 0.019324779510498047, 0.007339954376220703, -0.004369318950921297, 0.06519802659749985, -0.0041877515614032745, 0.014987315982580185, -0.05386849492788315, 0.05899856612086296, -0.02879495359957218, -0.05728656426072121, 0.018465643748641014, 0.037574563175439835, -0.021852077916264534, 0.010818256996572018, 0.009435515850782394, -0.023132821545004845, 0.030064240097999573, -0.015147547237575054, 0.043157581239938736, 0.07417064905166626, 0.007065529935061932, -0.02716204710304737, 0.011372707784175873, 0.017814364284276962, -0.011327776126563549, -0.015743231400847435, 0.0002274938451591879, -0.008095878176391125, -0.015029560774564743, -0.02583002857863903, 0.0011390638537704945, 0.007093709893524647, 0.01922236569225788, -0.04220962151885033, 0.028547104448080063, 0.08903901278972626, 0.024115540087223053, 0.009445211850106716, -0.016731368377804756, 0.02077520824968815, 0.021801766008138657, 0.04817703738808632, 0.017870184034109116, 0.03115972876548767, 0.026749426499009132, -0.0077004218474030495, -0.008556105196475983, 0.005228706169873476, -0.02111951634287834, -0.0033031615894287825, -0.07213836163282394, -0.03349601849913597, 0.0492086336016655, -0.07069267332553864, -0.05327442288398743, 0.043718501925468445, 0.06853216141462326, 0.03156726434826851, 0.03192681074142456, -0.0045195166021585464, -0.06736879795789719, 0.010240904986858368, 0.006183547433465719, 0.04149064049124718, 0.0508744940161705, -0.045447297394275665, 0.04459713026881218, 0.035599928349256516, -0.01707499846816063, 0.05243938788771629, -0.06923197209835052, -0.07507746666669846, -0.018632374703884125, -0.023767292499542236, 0.04124768450856209, -0.019952258095145226, 0.03317943960428238, 0.07015623897314072, -0.029494306072592735, 0.04937431216239929, 0.04905680567026138, -0.009752227924764156, -0.017587602138519287, -0.04137652739882469, -0.03664611279964447, 0.07921252399682999, 0.024819208309054375, -0.011233584024012089, -0.04073689132928848, 0.009411328472197056, -0.023849081248044968, -0.021541733294725418, 0.046983327716588974, 0.011699615977704525, 0.01854296587407589, 0.009996596723794937, 0.055326081812381744, -0.034978047013282776, 0.05252629145979881, -0.03713182359933853, 0.02401312254369259, 0.00253061531111598, -0.011003164574503899, -0.009594093076884747, -0.022538242861628532, 0.09203340858221054, 0.03450867533683777, -0.05885162949562073, -0.04349851608276367, 0.01728370599448681, 0.029322689399123192, -0.043113309890031815, -0.0147341787815094, 0.00815883744508028, 0.029232382774353027, 0.00004685161547968164, -0.057154636830091476, -0.04622276499867439, 0.027639731764793396, -0.051349107176065445, 0.01176674384623766, 0.0663435235619545, -0.016415897756814957, 0.06495273113250732, -0.010839822702109814, -0.0015623990911990404, -0.006275265011936426, 0.010478458367288113, -0.05780818685889244, 0.007515791337937117, 0.02356545627117157, -0.009123377501964569, 0.047455742955207825, -0.005614474415779114, -0.04884147271513939, -0.024346651509404182, -0.05301062390208244, 0.009864906780421734, 0.06399191170930862, 0.061614517122507095, -0.013329011388123035, 0.08100435137748718, -0.030579395592212677, 0.03167351335287094, 0.00864624883979559, -0.03715314343571663, -0.0278531052172184, -0.04069853574037552, -0.006127795670181513, -0.0034907024819403887, 0.010775151662528515, -0.005952976178377867, 0.032583702355623245, 0.017844464629888535, -0.04097331687808037, 0.002016367157921195, 0.024341542273759842, -0.0025318069383502007, -0.010143138468265533, -0.025034204125404358, -0.01208662148565054, 0.04828452691435814, -0.0345931351184845, 0.007002625148743391, 0.02138587087392807, -0.08557477593421936, 0.020389899611473083, -0.04928763210773468, -0.05865393579006195, 0.006992018781602383, 0.01124587468802929, 0.038362883031368256, 0.050667282193899155, 0.0023043102119117975, 0.07737983763217926, 0.009204787202179432, 0.03020549565553665, -0.024896034970879555, 0.0008207850041799247, 0.05163612216711044, -0.005021725781261921, -0.019884971901774406, 0.04204834625124931, 0.011923477053642273, 0.005154402926564217, -0.0374152772128582, 0.0521271787583828, -0.05494410917162895, -0.2964688241481781, 0.027622593566775322, 0.0132823521271348, -0.017511244863271713, 0.03536436706781387, -0.06505269557237625, 0.02878868207335472, -0.047840416431427, -0.05299250781536102, 0.020144551992416382, -0.024373726919293404, -0.03631732612848282, -0.02996368147432804, 0.07198315858840942, -0.013989945873618126, 0.04007289186120033, 0.006698980461806059, -0.04977903515100479, 0.015149493701756, 0.05759836360812187, -0.005721199791878462, -0.05269429832696915, -0.02516048029065132, 0.06790272146463394, 0.05158638209104538, 0.08028564602136612, -0.07755107432603836, 0.028564821928739548, -0.06818120181560516, -0.004747334402054548, 0.012949599884450436, -0.0102129727602005, 0.017996439710259438, -0.016697876155376434, 0.001100374385714531, -0.008600148372352123, 0.05563962832093239, 0.0219301488250494, 0.015245643444359303, 0.0007203231216408312, -0.03531415015459061, -0.055935248732566833, 0.014095068909227848, 0.03012976609170437, 0.06062386557459831, 0.0298896674066782, -0.07570186257362366, -0.043027766048908234, -0.04285690188407898, 0.06590380519628525, -0.041965629905462265, -0.022569730877876282, -0.015041534788906574, 0.02831568941473961, -0.008134516887366772, -0.008894175291061401, -0.0021560308523476124, -0.024276558309793472, -0.048850782215595245, -0.05304713174700737, -0.03364069014787674, -0.012992747128009796, -0.023019244894385338, -0.07053406536579132, -0.01139106322079897, -0.06610332429409027, -0.06260795891284943, 0.021223463118076324, 0.06410001218318939, 0.02470114640891552, -0.047622714191675186, 0.0034363330341875553, -0.021469488739967346, -0.09582878649234772, 0.0019979674834758043, 0.011927464045584202, -0.024466050788760185, -0.006767259445041418, 0.034602005034685135, 0.0406096987426281, -0.02733837068080902, -0.046864233911037445, 0.04023945704102516, 0.016607390716671944, 0.03801804408431053, 0.003607501508668065, 0.06077167019248009, 0.018023189157247543, -0.014399110339581966, 0.023430315777659416, 0.06828989833593369, 0.027440115809440613, -0.040577784180641174, -0.029390573501586914, 0.010343289002776146, 0.034763138741254807, 0.0196756049990654, -0.027341552078723907, -0.0010588697623461485, 0.010170020163059235, 0.009978948161005974, -0.03889293223619461, 0.009503902867436409, -0.010876213200390339, -0.020046262070536613, -0.013764018192887306, -0.04364120960235596, 0.031045913696289062, 0.03968808054924011, 0.019342763349413872, 0.005459269974380732, -0.03105444647371769, 0.013029936701059341, -0.021285170689225197, -0.02289147861301899, -0.009217421524226665, 0.009390032850205898, 0.04870409891009331, -0.008004489354789257, 0.00438498193398118, -0.03782482072710991, 0.008060780353844166, -0.004488812759518623, -0.004666647873818874, -0.05061053857207298, -0.023223858326673508, 0.0013002739287912846, -0.02926654927432537, -0.007926976308226585, 0.010351404547691345, -0.024250520393252373, -0.01103601511567831, 0.042622026056051254, -0.02465808391571045, 0.0035812268033623695, -0.023589514195919037, -0.06816311180591583, -0.030709903687238693, -0.010418841615319252, 0.011445056647062302, -0.007805652916431427, 0.0367472842335701, -0.0026070731692016125, 0.01061611995100975, 0.05022863298654556, 0.026745811104774475, -0.00533284479752183, -0.024703091010451317, 0.0033707867842167616, -0.00420274306088686, 0.03367094323039055, -0.07290574163198471, 0.006658593658357859, -0.03470422700047493, -0.012331095524132252, -0.001888774218969047, 0.016428867354989052, -0.022242899984121323, -0.0045454856008291245, 0.0013248140458017588, 0.01946340873837471, -0.053482700139284134, -0.04729122295975685, -0.03306688368320465, 0.034254614263772964, 0.05621330067515373, -0.00044621527194976807, 0.013521711342036724, -0.006061938591301441, -0.01943003013730049, 0.027520297095179558, -0.001848290441557765, -0.049584146589040756, -0.0030713167507201433, 0.021452749148011208, -0.020648103207349777, 0.012583697214722633, 0.005048450082540512, 0.05158539488911629, -0.009904718957841396, -0.007573836017400026, -0.020502520725131035, 0.019320059567689896, -0.006384625099599361, 0.05344894900918007, 0.05122735723853111, -0.011350120417773724, 0.00403923774138093, -0.016554003581404686, -0.00479884585365653, -0.02237718179821968, -0.015356943011283875, -0.01282439660280943, 0.024533094838261604, -0.053249605000019073, -0.06199045479297638, 0.0605025552213192, 0.007221033796668053, 0.006181993056088686, 0.028001682832837105, -0.0016583299729973078, -0.004412662237882614, -0.01863451488316059, 0.031532417982816696, 0.053892988711595535, -0.06685944646596909, 0.002414020476862788, -0.011115659028291702, 0.008953392505645752, -0.015449714846909046, -0.018707536160945892, -0.007803353480994701, -0.00003985547664342448, -0.029735596850514412, 0.005791523028165102, -0.08765659481287003, -0.01885659620165825, -0.05026080086827278, 0.026484893634915352, -0.009947789832949638, 0.018723290413618088, -0.024613209068775177, -0.022715043276548386, -0.02184758335351944, -0.041329652070999146, 0.011897881515324116, -0.05216182395815849, -0.006626458838582039, -0.004041009116917849, -0.04583677276968956, -0.004224023316055536, -0.016418853774666786, 0.0026305385399609804, 0.021760141476988792, -0.02952292375266552, -0.019961563870310783, -0.011348179541528225, 0.019389407709240913, 0.007209251169115305, 0.022346466779708862, -0.012034048326313496, -0.027761589735746384, -0.04450404644012451, -0.016714930534362793, -0.042065028101205826, 0.030980989336967468, -0.03153710439801216, 0.009491019882261753, 0.0399998277425766, 0.04875946417450905, 0.030042441561818123, 0.04308921843767166, -0.006033582612872124, -0.026399221271276474, 0.044047094881534576, -0.048914119601249695, -0.015430568717420101, -0.04221116378903389, -0.051631856709718704, 0.007974470034241676, 0.009662206284701824, 0.029374482110142708, -0.0413072444498539, 0.04069267958402634, -0.00956826750189066, 0.016961829736828804, 0.06209613010287285, 0.00032711870153434575, 0.031454116106033325, -0.05822338908910751, -0.00013650952314492315, -0.07385076582431793, -0.026435842737555504, 0.02725619077682495, 0.0008730025147087872, -0.013989509083330631, -0.02455604076385498, -0.04078647121787071, 0.09565561264753342, -0.08420859277248383, -0.02233203686773777, 0.0345725379884243, -0.022708220407366753, -0.01409265585243702, 0.029863407835364342, -0.05782224237918854, 0.04043828696012497, 0.015367180109024048, -0.03548668697476387, -0.015875108540058136, -0.01804773323237896, 0.03644164651632309, -0.009733934886753559, 0.021481407806277275, -0.03714733570814133, 0.008207501843571663, 0.07200952619314194, 0.011371695436537266, 0.019415609538555145, 0.05850064381957054, -0.01613531820476055, 0.028308331966400146, 0.034618571400642395, 0.02254968322813511, -0.011623289436101913, 0.0011600010329857469, -0.0015776221407577395, -0.06772374361753464, 0.05568595975637436, 0.002126454608514905, -0.011154945008456707, -0.044791191816329956, 0.061036501079797745, 0.017563283443450928, -0.027213918045163155, -0.04722573235630989, 0.020977724343538284, -0.05474012345075607, -0.010298178531229496, -0.013892012648284435, -0.013969209976494312, -0.04510260745882988, 0.02609294094145298, -0.009499603882431984, 0.01520760077983141, 0.05307869613170624, -0.008759004063904285, -0.04238447546958923, -0.009006936103105545, 0.07588973641395569, 0.05455532297492027, 0.08102323859930038, 0.014507393352687359, 0.08064237982034683, -0.023679476231336594, -0.0504661500453949, 0.029321065172553062, -0.0005892498884350061, -0.02329936809837818, -0.021020958200097084, 0.03912639617919922, 0.06107572466135025, 0.007634730543941259, 0.04422259330749512, -0.025454994291067123, -0.0070655387826263905, -0.0037875708658248186, 0.049153100699186325, 0.03303839638829231, 0.055989913642406464, 0.012708727270364761, -0.0015498180873692036, -0.012754772789776325, -0.07367058098316193, 0.017020458355545998, -0.04670562967658043, -0.006899999920278788, 0.03972780331969261, -0.027618246152997017, 0.026869244873523712, 0.009200658649206161, 0.01494457945227623, 0.0660918653011322, -0.043827954679727554, 0.023218179121613503, -0.013668854720890522, 0.014689402654767036, 0.009078547358512878, 0.0014548617182299495, -0.006300762295722961, -0.018289528787136078, 0.005379746202379465, -0.03077075444161892, -0.029382478445768356, -0.01542497519403696, -0.010931035503745079, 0.02566063404083252, -0.0451941154897213, 0.00818368885666132, 0.04182247072458267, 0.020727206021547318, -0.01848490536212921, -0.05700669065117836, -0.03328675404191017, -0.03701777383685112, -0.05127876251935959, 0.002122493227943778, 0.023168059065937996, -0.014276081696152687, -0.02972852624952793, -0.00804094597697258, -0.027100609615445137, -0.028990069404244423, 0.053602755069732666, -0.04343843832612038, -0.02536921761929989, -0.002175257308408618, 0.022803895175457, 0.015782983973622322, 0.006258330307900906, 0.04995877295732498, 0.00509162712842226, -0.005966224707663059, -0.006384400185197592, -0.006496661342680454, 0.008760697208344936, -0.00368319870904088, 0.008914198726415634, -0.08000937104225159, 0.012282808311283588, 0.03149111196398735, -0.012445066124200821, -0.04613460972905159, 0.021099267527461052, 0.035855475813150406, 0.029618727043271065, 0.05686940997838974, 0.007907934486865997, -0.006220013834536076, -0.02238304913043976, -0.025211893022060394, -0.020166872069239616, 0.022978490218520164, 0.06022745743393898, -0.013026708737015724, 0.07246556133031845, 0.007506933994591236, 0.005397520028054714, -0.04266694560647011, -0.026282409206032753, 0.027502087876200676, -0.016875924542546272, -0.035168081521987915, -0.021923579275608063, -0.026665017008781433, -0.07321208715438843, -0.025126319378614426, 0.026709750294685364, -0.02120559848845005, -0.04077108949422836, 0.0209046620875597, 0.0155695341527462, -0.016954682767391205, 0.031294818967580795, -0.04126565158367157, 0.027533207088708878, -0.007677398156374693, -0.009290358051657677, 0.02753126621246338, 0.010897621512413025, -0.004099748563021421, -0.0013942827936261892, 0.010789904743432999, -0.04328173026442528, -0.019372086971998215, -0.008519457653164864, 0.007552542258054018, 0.049730006605386734, -0.003920183051377535, -0.01667466200888157 ]
[ -0.06844451278448105, -0.0068443152122199535, -0.007026614621281624, -0.015058333054184914, 0.02524743042886257, -0.02243119291961193, -0.023222463205456734, 0.012601256370544434, -0.005982596427202225, -0.02548408694565296, 0.006668000482022762, -0.020724238827824593, -0.015418799594044685, -0.0015468583442270756, 0.09357369691133499, -0.011732294224202633, -0.007537951692938805, -0.09020163863897324, 0.017849260941147804, 0.02758578583598137, -0.015234182588756084, -0.025814900174736977, -0.03729402646422386, -0.00933077558875084, 0.007003918290138245, 0.02200837805867195, 0.029685523360967636, -0.036336153745651245, 0.020006349310278893, -0.15808264911174774, 0.01256564911454916, 0.0038980478420853615, 0.03999331593513489, 0.014615964144468307, 0.0007671521161682904, 0.08536256849765778, 0.015319791622459888, 0.020632192492485046, -0.017061417922377586, 0.0538753867149353, 0.008431674912571907, 0.013685417361557484, -0.054698288440704346, -0.04343158379197121, 0.04445388540625572, 0.0033440543338656425, 0.005910917650908232, -0.06387180089950562, -0.02611946314573288, 0.022394835948944092, -0.05040118843317032, -0.05842958390712738, -0.007937220856547356, -0.019886450842022896, -0.022362390533089638, 0.022381404414772987, 0.030681703239679337, 0.0598829910159111, -0.008878176100552082, 0.02617950551211834, 0.005692698527127504, -0.002851466415449977, -0.16262607276439667, 0.09627236425876617, 0.02090686745941639, 0.05188838019967079, -0.054022468626499176, -0.024163683876395226, -0.002715629292652011, 0.07065748423337936, -0.007020575925707817, -0.03214440867304802, -0.02516729012131691, 0.015134932473301888, 0.03630281612277031, 0.018756916746497154, 0.011824478395283222, 0.030276097357273102, 0.030960679054260254, -0.04016350209712982, -0.01176515594124794, -0.000029748522138106637, -0.006942044943571091, -0.025211798027157784, -0.014618129469454288, 0.02220897190272808, -0.0187290720641613, 0.033020347356796265, 0.02172914333641529, 0.020675625652074814, 0.052099358290433884, -0.015879999846220016, -0.0072725145146250725, -0.003388040466234088, -0.06165752559900284, -0.04272840917110443, -0.004751396365463734, 0.042424872517585754, -0.053977470844984055, 0.45675909519195557, -0.034574270248413086, 0.0023052850738167763, 0.09724397212266922, 0.03692068159580231, -0.013455497100949287, 0.0037442604079842567, 0.010959025472402573, -0.045085690915584564, 0.029517069458961487, -0.018243756145238876, 0.020367398858070374, 0.01567905955016613, 0.044516537338495255, -0.032792165875434875, -0.015562626533210278, 0.05062072351574898, 0.03176473081111908, 0.006760374177247286, 0.00864235870540142, 0.01101449504494667, -0.019941605627536774, 0.015897389501333237, 0.008495913818478584, -0.026643497869372368, -0.05183521658182144, -0.061039526015520096, 0.031777698546648026, 0.04870961979031563, 0.0248342864215374, -0.003617315785959363, 0.0777626484632492, -0.05885125324130058, -0.06856656819581985, 0.005772809498012066, -0.005222593434154987, 0.00331226852722466, 0.03158095106482506, -0.01915515586733818, 0.020242009311914444, 0.05942750722169876, 0.03741540387272835, -0.012947439216077328, 0.004954246338456869, -0.041391123086214066, -0.0515267439186573, 0.1301746517419815, 0.02144087292253971, -0.02122289314866066, -0.0043195271864533424, 0.01347373891621828, -0.01086049061268568, 0.02449585497379303, -0.0284244604408741, -0.045971959829330444, 0.04036407917737961, 0.004998816642910242, 0.09631136059761047, -0.019019801169633865, -0.03901805728673935, -0.014589139260351658, -0.010335839353501797, -0.03164314851164818, -0.0449758879840374, 0.0006614005542360246, 0.09801897406578064, -0.08477494865655899, -0.008067425340414047, -0.006573355756700039, 0.03232928737998009, -0.07452742010354996, 0.0032842117361724377, 0.0158820953220129, -0.01604423299431801, 0.02447379194200039, 0.07425711303949356, -0.03427452594041824, -0.044930391013622284, 0.0021328122820705175, 0.05316120758652687, 0.019111450761556625, 0.05700226128101349, -0.005591189488768578, -0.028784887865185738, -0.005543284118175507, -0.03306157514452934, -0.06088477373123169, -0.016180384904146194, -0.021571917459368706, -0.0007150765741243958, -0.00110057950951159, -0.0037270316388458014, -0.030830292031168938, -0.0949699804186821, 0.06949987262487411, -0.031062934547662735, -0.009907208383083344, 0.02981678768992424, -0.042298365384340286, -0.030401987954974174, -0.003623457858338952, -0.08171951025724411, 0.02475314401090145, -0.04629620537161827, 0.023461800068616867, -0.06155173107981682, 0.06386679410934448, 0.06935570389032364, -0.02115616388618946, 0.12695960700511932, 0.041489679366350174, -0.05057089403271675, -0.0467476062476635, 0.018793776631355286, 0.01914268732070923, 0.012000620365142822, -0.030476558953523636, 0.008398677222430706, 0.024250216782093048, 0.0029927280265837908, 0.005493590608239174, -0.007568276487290859, 0.02696581557393074, -0.02404285967350006, -0.33648619055747986, -0.010432935319840908, -0.02289399318397045, -0.0004679837729781866, 0.02309498004615307, -0.038685500621795654, 0.022355979308485985, -0.018270229920744896, 0.005325113423168659, 0.019743207842111588, 0.07186055928468704, 0.011025931686162949, 0.023293739184737206, -0.07823958247900009, 0.030125362798571587, -0.0021112554240971804, -0.019259151071310043, -0.002408370841294527, -0.028607437387108803, -0.012863833457231522, 0.007025972008705139, 0.024175111204385757, -0.017993958666920662, -0.060372330248355865, -0.0159031692892313, -0.058617908507585526, 0.09804702550172806, 0.004346242640167475, 0.06615997105836868, -0.034184541553258896, 0.02894211933016777, -0.006733984686434269, 0.039835937321186066, -0.13335035741329193, 0.009665616787970066, -0.02999120019376278, 0.0037882833275943995, -0.03844397887587547, 0.02725139632821083, -0.06043214723467827, -0.037991929799318314, 0.024123214185237885, -0.06995214521884918, -0.03489844873547554, -0.08820327371358871, 0.02207857556641102, -0.025963541120290756, -0.02594880200922489, -0.04026218503713608, 0.08236251026391983, 0.014892445877194405, -0.012118322774767876, 0.012362104840576649, 0.007388072554022074, -0.04385244846343994, -0.015570515766739845, -0.12136965245008469, 0.039004333317279816, -0.002598663093522191, 0.01485831942409277, 0.006063375156372786, 0.05828569084405899, 0.03170328214764595, -0.059477269649505615, -0.027743645012378693, 0.007626460865139961, 0.013819809071719646, 0.017130034044384956, 0.046654801815748215, -0.03347884491086006, -0.008996017277240753, 0.0647796094417572, 0.010652290657162666, -0.007669911254197359, 0.02156372182071209, 0.020121220499277115, -0.014963530004024506, 0.03587654232978821, 0.007268045097589493, 0.008333902806043625, 0.0017564294394105673, -0.04016038030385971, -0.005776046775281429, -0.017888415604829788, -0.005348452366888523, 0.02584686130285263, -0.008179186843335629, -0.050023846328258514, 0.05794515833258629, 0.028745820745825768, -0.013275975361466408, 0.032399732619524, -0.042093243449926376, -0.03978278487920761, 0.0700293704867363, 0.006194490939378738, -0.22648455202579498, 0.021323472261428833, 0.07763607054948807, 0.043682798743247986, 0.010208403691649437, 0.030031686648726463, 0.012563372030854225, -0.04145171865820885, 0.0030217666644603014, 0.008153004571795464, 0.06403558701276779, -0.012138064019382, -0.0053543648682534695, 0.0006503863260149956, 0.01623069867491722, 0.010378513485193253, 0.04834482818841934, -0.011337405070662498, 0.025282811373472214, 0.013581458479166031, -0.0005845910054631531, 0.011157852597534657, 0.12514543533325195, 0.014220623299479485, 0.027046024799346924, -0.02505732886493206, -0.031822096556425095, 0.01181495189666748, 0.07654037326574326, -0.009580262005329132, -0.007193842437118292, -0.006031520664691925, 0.017138812690973282, 0.006209717132151127, 0.01019803062081337, -0.08634227514266968, -0.03558225929737091, 0.023784533143043518, 0.012769405730068684, 0.014445058070123196, 0.01985422521829605, -0.005715715233236551, -0.0411435104906559, 0.022465098649263382, 0.06773760169744492, 0.030541574582457542, 0.025273378938436508, -0.04358554631471634, -0.06612225621938705, -0.00899775791913271, -0.025650041177868843, -0.03396960347890854, 0.022344514727592468, 0.018666774034500122, 0.02147897519171238, 0.0920560210943222, 0.025399861857295036, -0.04013475403189659, -0.009206452406942844, -0.024379367008805275, -0.02984693832695484, 0.0004506696714088321, 0.07865606993436813, 0.042010389268398285, 0.030429214239120483 ]
[ 0.005742422770708799, 0.00342441420070827, 0.03124118596315384, 0.024228835478425026, -0.006484644021838903, 0.024979785084724426, -0.005467396229505539, -0.020829705521464348, 0.009621056728065014, -0.008974607102572918, 0.008560813032090664, 0.005360838491469622, 0.010344674810767174, -0.002819282468408346, 0.006585653871297836, -0.0017916313372552395, 0.018351536244153976, -0.03295218572020531, 0.039269331842660904, 0.00644562067463994, -0.0011068894527852535, 0.028426269069314003, -0.0261729396879673, 0.013669422827661037, -0.03020579367876053, 0.0017639216966927052, -0.0221133753657341, -0.02443568781018257, 0.03579448536038399, -0.11854612082242966, -0.06705749034881592, -0.02722293883562088, -0.02540736459195614, 0.0010643359273672104, -0.01706647127866745, -0.005667349323630333, 0.012428904883563519, 0.049052610993385315, -0.01127422321587801, 0.004368593450635672, -0.02298458106815815, 0.011497118510305882, 0.015198827721178532, 0.017999285832047462, -0.011397968046367168, 0.005857799667865038, 0.04566226154565811, -0.07298785448074341, -0.03167266026139259, 0.012129535898566246, -0.03731154650449753, -0.023319758474826813, 0.010764073580503464, 0.0027215415611863136, -0.018861213698983192, -0.02713770978152752, 0.02531311847269535, 0.013590475544333458, -0.01631806418299675, 0.008008581586182117, 0.029483184218406677, -0.02398289367556572, -0.03735726699233055, -0.030999846756458282, -0.0032535826321691275, -0.03191017732024193, -0.028037164360284805, 0.018157200887799263, -0.01123698428273201, -0.01351584680378437, -0.002707303501665592, 0.01870611123740673, -0.0075847855769097805, -0.06452000886201859, 0.036388613283634186, 0.00021967860811855644, 0.00007907298277132213, -0.041274718940258026, 0.03744909539818764, -0.0035411810968071222, -0.021811265498399734, 0.045020900666713715, 0.004785552620887756, -0.01579625904560089, 0.005708120297640562, -0.004927530884742737, 0.02462327852845192, -0.006767829414457083, 0.014435801655054092, 0.019185258075594902, -0.021457862108945847, 0.002951480681076646, -0.04133784398436546, 0.007798129692673683, -0.07498114556074142, 0.02674206718802452, -0.025567295029759407, -0.00703758280724287, 0.005419632885605097, 0.8344562649726868, -0.05466078966856003, 0.0294326301664114, 0.010629259049892426, -0.0008623528410680592, 0.0028487686067819595, 0.014413365162909031, 0.0010019369656220078, -0.03210771828889847, 0.024640189483761787, -0.02983248047530651, 0.01879957504570484, 0.02507421001791954, 0.018852228298783302, 0.029296036809682846, 0.024263441562652588, 0.0399123914539814, 0.005917651113122702, -0.0015621910570189357, -0.04478849098086357, 0.018723296001553535, 0.007647152058780193, 0.0026054815389215946, 0.029090575873851776, 0.021714314818382263, -0.016336051747202873, -0.220890074968338, 0.014488070271909237, -7.910938125763804e-33, 0.02771490253508091, 0.0009861876023933291, 0.020741302520036697, 0.021735362708568573, 0.003804028732702136, -0.03393639251589775, 0.01915397122502327, 0.020546378567814827, -0.013813123106956482, -0.002988463966175914, -0.0189023707062006, -0.0010619859676808119, 0.006911527831107378, 0.004152067471295595, 0.013616125099360943, -0.03892205283045769, -0.01835917867720127, 0.033050376921892166, -0.002292955294251442, 0.029022550210356712, 0.03772197663784027, 0.018367821350693703, -0.00996457226574421, -0.0011480569373816252, -0.001534735900349915, 0.002662558341398835, 0.022252647206187248, 0.04544217139482498, 0.023985708132386208, -0.04291696846485138, -0.004176467657089233, 0.004049592651426792, -0.027592189610004425, -0.03964593634009361, 0.019555574283003807, -0.041664354503154755, 0.00858298595994711, 0.016122736036777496, 0.027033019810914993, -0.033924996852874756, -0.029710091650485992, 0.02354964055120945, -0.01761726476252079, -0.03057992458343506, -0.016281738877296448, 0.0028926513623446226, 0.04252211004495621, -0.011951114051043987, 0.003740006359294057, -0.031136250123381615, -0.013741347007453442, 0.007153837941586971, 0.01476446632295847, -0.0069796242751181126, -0.0033974740654230118, -0.03275105357170105, 0.014899923466145992, 0.05806947872042656, 0.027627836912870407, 0.028122805058956146, 0.005407290533185005, 0.00022483278007712215, -0.02791174128651619, 0.03781647980213165, -0.009705696254968643, -0.013033556751906872, 0.011809926480054855, -0.01034242007881403, 0.039992403239011765, -0.02917250245809555, -0.061408430337905884, 0.011646080762147903, -0.005554052535444498, -0.02605878934264183, 0.026553738862276077, -0.037841908633708954, -0.012891402468085289, 0.01060432568192482, -0.02897578664124012, 0.0588531419634819, 0.007812597788870335, -0.017589092254638672, -0.034722212702035904, -0.032054971903562546, -0.01543502975255251, -0.0005619768635369837, 0.029508348554372787, -0.007038812153041363, 0.024677321314811707, 0.020458418875932693, 0.016326701268553734, 0.02203870378434658, -0.011452521197497845, 0.011060398072004318, 0.010278945788741112, 7.717259268418508e-33, 0.013191682286560535, -0.023114265874028206, -0.02414657361805439, -0.012756435200572014, 0.02281804196536541, -0.002383354352787137, -0.00043568515684455633, 0.015478371642529964, -0.059992242604494095, 0.01018571574240923, 0.035717982798814774, -0.02165667712688446, -0.03972947970032692, 0.05730791389942169, 0.0256818775087595, -0.021467875689268112, 0.006015883293002844, -0.015926461666822433, 0.012744944542646408, -0.000609947950579226, 0.03889193758368492, 0.008122501894831657, -0.012695834040641785, -0.01216400321573019, 0.021200379356741905, 0.060479406267404556, -0.013354753144085407, 0.0518575944006443, -0.010218142531812191, 0.033749502152204514, -0.019728653132915497, -0.03466672822833061, 0.025670014321804047, 0.011681294068694115, -0.01900515705347061, 0.010362180881202221, -0.004119126591831446, -0.008004123345017433, -0.003955035004764795, -0.007935733534395695, 0.037881869822740555, -0.000995031325146556, -0.003968024160712957, 0.03646543622016907, 0.008901878260076046, 0.020318370312452316, -0.01767248846590519, -0.013080637902021408, -0.00825207494199276, -0.002860060892999172, -0.0025694819632917643, -0.007427540607750416, -0.002756590722128749, -0.03506825491786003, 0.03320784494280815, -0.01963297463953495, -0.02820783108472824, -0.03583383932709694, -0.010667736642062664, 0.026323944330215454, 0.00391855463385582, -0.01343443337827921, -0.023890724405646324, 0.0030896789394319057, -0.021176477894186974, 0.0185234472155571, -0.017326312139630318, 0.024138854816555977, -0.021294524893164635, 0.014805964194238186, -0.01626693643629551, 0.033130157738924026, 0.027823174372315407, 0.024354731664061546, 0.02410835772752762, 0.0036935543175786734, -0.0018602462951093912, 0.006649239920079708, -0.04072438180446625, 0.0026481274981051683, -0.014763589948415756, -0.028180930763483047, 0.02465583011507988, 0.005609071347862482, 0.023931831121444702, 0.05751270055770874, -0.008442596532404423, 0.06121900677680969, -0.009990660473704338, -0.022107655182480812, -0.008029191754758358, -0.022597098723053932, 0.03465849533677101, 0.020541390404105186, -0.009768536314368248, -1.3475093929571358e-8, -0.05623897165060043, -0.015881137922406197, 0.012144886888563633, 0.014387594535946846, -0.01930239051580429, 0.020824242383241653, -0.010031990706920624, 0.009609905071556568, -0.02939261496067047, 0.03465578332543373, 0.03529877960681915, -0.02924157679080963, -0.009856216609477997, -0.00032626328174956143, 0.03127884492278099, -0.03402869030833244, -0.009761251509189606, -0.005600541364401579, 0.0375584214925766, -0.047711409628391266, 0.02089345082640648, 0.04223434999585152, -0.003965210169553757, 0.005841268692165613, -0.009687719866633415, 0.0055443719029426575, -0.011392341926693916, -0.08182869851589203, -0.019356681033968925, -0.009704296477138996, 0.02413664385676384, -0.03966327756643295, -0.01563555933535099, 0.024886449798941612, -0.03305456414818764, -0.04673127084970474, -0.007958599366247654, 0.020660674199461937, 0.0022998398635536432, -0.003069003578275442, -0.007875282317399979, -0.0014909773599356413, 0.0019906661473214626, -0.04459526762366295, -0.0004728127096313983, 0.04569025710225105, -0.009652277454733849, -0.018842415884137154, 0.02089124359190464, -0.028075389564037323, 0.001130294636823237, -0.00645783357322216, 0.026898710057139397, 0.0453977957367897, 0.003341138828545809, 0.02653980255126953, -0.0047473120503127575, -0.014491102658212185, -0.06503140181303024, -0.03417874500155449, 0.0194871723651886, 0.018378131091594696, -0.026659058406949043, -0.026126815006136894 ]
thoughtworks-university-v2-0-vs-v1-0
https://markhneedham.com/blog/2011/04/27/thoughtworks-university-v2-0-vs-v1-0
false
2011-04-17 11:27:31
Tech Leading: Initial Thoughts
[ "software-development" ]
[ "Software Development" ]
As I mentioned in an earlier post I've been playing the role of tech lead on the project that we've been doing at ThoughtWorks University so I thought it'd be interesting to note down some of my observations so far. Out of the tech leads that I've had I liked the style of http://intwoplacesatonce.com/[Dave Cameron] the best. He viewed himself more as a technical facilitator rather than as a person who should make every single decision about how a system got built which meant that others also got a chance to take some responsibility. == Varying the style I wanted to apply this style with everyone on the team such that I would facilitate a conversation with the pair about the story that they were working on but they would decide how they went about it. This worked reasonably well for some of the people but I quickly noticed that others were ending up quite lost if we only had a brief conversation. They needed a bit of a structure around what they were going to work on so in those cases we http://www.thekua.com/atwork/2007/07/onboarding-strategy-tiny-tasks/[tiny tasked] out the implementation together. == A fresh view When I worked with https://twitter.com/#!/christianralph[Christian] as my tech lead I noticed that when we were stuck on something he would often come round and ask a question which guided us to a solution which had been completely evading us. I don't yet do that as well as him but I have found that having a fresh and higher level view of a problem means that you can see things which the pair may now be missing because they're so stuck in the implementation. That's happened several times and is always immensely frustrating for the pair involved! == Knowing what's on the wall I've got quite used to only having to know what story I was working on and not really needing to know that much about what the rest of the team are working on. That approach doesn't work quite as well in the tech lead role where you need to be the one who has an idea of what's going on with everything that's in play. This is the thing I've struggled the most with and there have been occasions where stories have been in play way too long where I could have intervened and help the pair work out how to finish them. Other people that I've spoken to have suggested that one way of ensuring you know what's going on is to browse every checkin that's made to the repository each day. I did try this a couple of weeks ago but it's really time consuming and I think you can get information about a story quicker by just talking to the people working on it.
null
null
[ 0.035112906247377396, -0.0015349899185821414, 0.0019474015571177006, 0.05392932519316673, 0.08913397789001465, 0.03133975341916084, 0.013461150228977203, 0.05007707700133324, 0.018860366195440292, -0.02517634443938732, -0.05417579784989357, 0.006201337091624737, -0.045692093670368195, 0.01716236025094986, -0.04188811779022217, 0.07088692486286163, 0.06189271807670593, 0.016654429957270622, 0.004453503526747227, 0.0026267210487276316, 0.040084339678287506, 0.07437155395746231, 0.050400540232658386, 0.034313902258872986, 0.044317688792943954, -0.0024302739184349775, 0.02025880478322506, -0.01988282799720764, -0.044383253902196884, -0.002553362399339676, 0.0476066879928112, -0.01295465137809515, -0.0011351847788318992, -0.012979942373931408, 0.01638345792889595, -0.023609250783920288, -0.010089214891195297, 0.02840326726436615, -0.0037486848887056112, 0.0070125749334692955, -0.0784686729311943, 0.05505356565117836, -0.027618402615189552, 0.0064913807436823845, -0.036227643489837646, 0.026268407702445984, -0.02516401931643486, 0.005523244850337505, 0.011440843343734741, -0.0013526191469281912, -0.060737043619155884, 0.025906043127179146, 0.011183023452758789, 0.00193272833712399, -0.013836624100804329, 0.03422054648399353, 0.018788492307066917, -0.05648573115468025, -0.0003027763159479946, -0.042306918650865555, -0.01924852654337883, -0.014599301852285862, 0.0043801600113511086, 0.03691663220524788, 0.03311773017048836, -0.0353216826915741, 0.010743916966021061, 0.029440876096487045, -0.03207066282629967, 0.02067866362631321, -0.02290283516049385, 0.0016692883800715208, -0.006018123123794794, -0.02956509217619896, 0.00485376687720418, -0.059767141938209534, 0.011988982558250427, 0.08072565495967865, 0.01999916508793831, 0.03287892788648605, -0.025763239711523056, 0.016229839995503426, -0.007664925418794155, 0.03599987551569939, -0.02676716446876526, -0.038138650357723236, 0.01856878027319908, -0.024674173444509506, -0.0697096511721611, 0.057058922946453094, 0.005236600525677204, -0.04730695113539696, 0.005487640853971243, 0.04794837161898613, -0.003926820121705532, 0.013531064614653587, 0.02610328234732151, 0.003679057117551565, -0.02258884534239769, -0.024889256805181503, -0.024848520755767822, -0.0054540508426725864, -0.017372585833072662, 0.018989019095897675, -0.07790103554725647, 0.004333203192800283, -0.01223353948444128, -0.012824924662709236, -0.018337251618504524, 0.016568759456276894, -0.028998570516705513, 0.010569185018539429, -0.004498076159507036, 0.02441805973649025, -0.066876620054245, 0.0635785385966301, 0.01983240433037281, -0.04638411104679108, -0.019354969263076782, 0.0011250411625951529, 0.031542740762233734, 0.01842217706143856, -0.011846568435430527, 0.06503342092037201, -0.005475965794175863, 0.029797270894050598, -0.04188956692814827, 0.05658887326717377, -0.01165104005485773, -0.06968783587217331, -0.0069335210137069225, 0.04979674890637398, -0.029257239773869514, 0.0030363770201802254, -0.002284862333908677, -0.04322362691164017, 0.019016947597265244, 0.013148996978998184, 0.011464091017842293, 0.05233297869563103, -0.0038446648977696896, -0.040699344128370285, 0.025253092870116234, 0.035240884870290756, 0.021799355745315552, -0.015610582195222378, -0.006306777708232403, -0.019033774733543396, -0.06635483354330063, -0.011889170855283737, -0.012930506840348244, -0.015406042337417603, 0.017669735476374626, -0.05228139087557793, 0.029658768326044083, 0.0845847874879837, 0.04580816626548767, 0.0034882021136581898, -0.02335401624441147, 0.0489962212741375, 0.03745465353131294, 0.03467126190662384, 0.015665989369153976, 0.021941447630524635, 0.02007746323943138, -0.00872380193322897, 0.0003631144645623863, 0.014300931245088577, 0.0011552139185369015, 0.021721718832850456, -0.05154239013791084, -0.03598153963685036, 0.031619228422641754, -0.03967463597655296, -0.031791605055332184, 0.06602392345666885, 0.0707312524318695, 0.04793642461299896, 0.022326385602355003, 0.006229745224118233, -0.07728827744722366, 0.043244991451501846, 0.014409171417355537, 0.019287358969449997, 0.05066582188010216, -0.021844683215022087, 0.0322868637740612, 0.02922116592526436, -0.009911890141665936, 0.020789312198758125, -0.07527962327003479, -0.10041844099760056, -0.03902184218168259, -0.00231822207570076, 0.04383688047528267, -0.04200174659490585, 0.016734780743718147, 0.04699366167187691, 0.005103470291942358, 0.05544265732169151, 0.03328445553779602, -0.00012296889326535165, 0.008125429973006248, -0.03069678694009781, -0.04484211280941963, 0.059158969670534134, 0.04096025228500366, 0.014908649027347565, -0.03703982010483742, 0.020411401987075806, -0.021546723321080208, -0.029294779524207115, 0.04856695979833603, -0.016425665467977524, 0.04292851313948631, 0.0018651960417628288, 0.03701873868703842, -0.03879101574420929, 0.04806152358651161, -0.03873451426625252, -0.0005313009023666382, 0.003822903148829937, -0.02559771202504635, 0.0274567399173975, -0.007915621623396873, 0.10176212340593338, 0.04085133224725723, -0.07481611520051956, -0.06196649372577667, 0.03930138796567917, 0.027351349592208862, -0.036767296493053436, -0.01776198111474514, -0.010405706241726875, 0.01673647202551365, -0.0009070842061191797, -0.07985568791627884, -0.06483396887779236, 0.026744157075881958, -0.042444366961717606, 0.011957775801420212, 0.05081058666110039, -0.02299753576517105, 0.07491546869277954, -0.011561084538698196, 0.005538851022720337, -0.019236421212553978, -0.024990525096654892, -0.04070645570755005, 0.010914971120655537, 0.00793923158198595, -0.02595028281211853, 0.06026288866996765, -0.00795432273298502, -0.02375837229192257, -0.0406036376953125, -0.032976530492305756, 0.003317661117762327, 0.044726185500621796, 0.0675867348909378, -0.014066113159060478, 0.07599976658821106, -0.03258882090449333, 0.043873921036720276, 0.0008175456314347684, -0.032793451100587845, -0.03407605364918709, -0.025673536583781242, 0.0036483616568148136, 0.025847159326076508, -0.01112289447337389, -0.007615594193339348, 0.0123024582862854, 0.0021770542953163385, -0.01112684141844511, -0.012876976281404495, 0.02295994944870472, -0.001122443238273263, 0.012674827128648758, -0.04524851590394974, -0.005861150100827217, 0.05415095388889313, -0.03700296953320503, -0.007941068150103092, 0.023369919508695602, -0.08248965442180634, 0.028666265308856964, -0.057245541363954544, -0.03042842447757721, -0.018393555656075478, -0.0011282069608569145, 0.03231719881296158, 0.01427998673170805, 0.023340974003076553, 0.06201280280947685, 0.023625196889042854, 0.025505216792225838, -0.013101950287818909, -0.004476527683436871, 0.038083624094724655, 0.008043591864407063, 0.004607961978763342, 0.04786955937743187, 0.016083471477031708, 0.005445435643196106, -0.060813140124082565, 0.07685772329568863, -0.045791853219270706, -0.2851964831352234, 0.025110725313425064, 0.028246203437447548, -0.035244204103946686, 0.030900949612259865, -0.036683518439531326, 0.028022481128573418, -0.04935777932405472, -0.021168744191527367, 0.021637363359332085, -0.042522281408309937, -0.020891482010483742, -0.016680611297488213, 0.04104991629719734, 0.00923964474350214, 0.036338578909635544, 0.038919597864151, -0.05103984847664833, 0.019047345966100693, 0.05797411873936653, -0.011068562045693398, -0.061996832489967346, 0.0027408807072788477, 0.0370648019015789, 0.05420849472284317, 0.06566129624843597, -0.0748804435133934, 0.0542987659573555, -0.052759576588869095, 0.0015515879495069385, 0.016362832859158516, 0.003477932419627905, -0.005500535946339369, -0.027623984962701797, -0.0039899349212646484, -0.01595197431743145, 0.05514537915587425, 0.013199553824961185, -0.009921303950250149, -0.0025515377055853605, -0.017160696908831596, -0.0363469198346138, -0.008437626995146275, 0.023105215281248093, 0.07081543654203415, 0.0025447134394198656, -0.07870203256607056, -0.014698375947773457, -0.019640259444713593, 0.08087334036827087, -0.02783092111349106, -0.0066101932898163795, -0.002586932387202978, 0.017412493005394936, 0.0030118837021291256, -0.012157444842159748, -0.010442979633808136, -0.025099867954850197, -0.048588965088129044, -0.040081508457660675, -0.012510702945291996, -0.018265297636389732, -0.019089987501502037, -0.04296233505010605, 0.014483775943517685, -0.05683410167694092, -0.05913885682821274, -0.006298837251961231, 0.05391576141119003, -0.003778937039896846, -0.03257995843887329, 0.0172052551060915, 0.014660215005278587, -0.10789529234170914, 0.004616572987288237, 0.00466470792889595, -0.014531618915498257, 0.0010715171229094267, 0.02925344929099083, 0.025379527360200882, -0.022043174132704735, -0.06041525676846504, 0.014455029740929604, 0.020841337740421295, 0.0228378027677536, 0.0011353621957823634, 0.048198118805885315, 0.030412092804908752, -0.03090618923306465, 0.016306621953845024, 0.058848027139902115, -0.004277935717254877, -0.04664909467101097, -0.01467464305460453, 0.022733373567461967, -0.008623599074780941, -0.0015442274743691087, -0.006172523368149996, 0.0020574394147843122, 0.028962930664420128, -0.0018217286560684443, -0.03686927631497383, 0.01679001934826374, -0.002448676386848092, -0.015006914734840393, -0.002347042318433523, -0.04440969601273537, 0.0057435184717178345, 0.025782588869333267, 0.03892308101058006, 0.01921370066702366, -0.02115977182984352, 0.020621854811906815, -0.04219790920615196, -0.01889725588262081, -0.01217231061309576, 0.008740246295928955, 0.047494858503341675, -0.0042844898998737335, -0.00725550577044487, -0.05078355595469475, -0.006642368156462908, -0.0037229321897029877, 0.01301262155175209, -0.06807798892259598, -0.01145688071846962, -0.02620454505085945, -0.019756769761443138, 0.010359047912061214, 0.011819609440863132, -0.017712827771902084, 0.01933460123836994, 0.0394185334444046, -0.04075193405151367, 0.010936941020190716, -0.04515811800956726, -0.0648677870631218, -0.03174373134970665, -0.00548142334446311, 0.012505974620580673, -0.02393512800335884, 0.03764916956424713, -0.019086457788944244, 0.01202424243092537, 0.05460251867771149, 0.015590647235512733, -0.01045959535986185, -0.020924948155879974, 0.04877975583076477, 0.016535164788365364, 0.003416219726204872, -0.05949210375547409, 0.01738313026726246, -0.04475211352109909, -0.0071619716472923756, -0.036138035356998444, 0.01485308539122343, -0.030087970197200775, -0.023526521399617195, 0.005067128688097, 0.0006183612276799977, -0.059993382543325424, -0.03876586630940437, -0.021288707852363586, 0.04552309587597847, 0.045428190380334854, -0.02288355864584446, 0.0011033439077436924, -0.0036199160385876894, -0.002182475058361888, 0.0037517365999519825, 0.01865519769489765, -0.05947664752602577, -0.005564265884459019, 0.01632034406065941, 0.020157407969236374, 0.009452950209379196, 0.00008249724487541243, 0.052307602018117905, 0.002017935272306204, -0.004041155334562063, -0.02861221320927143, 0.0012417860561981797, 0.015075081028044224, 0.05343097075819969, 0.04392293840646744, 0.0019271105993539095, 0.00004136024654144421, -0.01184022706001997, -0.02403605543076992, -0.048533372581005096, -0.01734532229602337, -0.00009464856702834368, 0.01774662546813488, -0.037834249436855316, -0.07626401633024216, 0.06474096328020096, 0.0037849899381399155, 0.030879754573106766, 0.007396273780614138, -0.021359942853450775, 0.00674655195325613, -0.027793094515800476, 0.040510036051273346, 0.07089930772781372, -0.07426484674215317, 0.0006780471303500235, -0.010551521554589272, -0.007614420261234045, 0.009879334829747677, -0.008647427894175053, -0.03655344620347023, -0.012256519868969917, -0.034213632345199585, -0.004994894377887249, -0.10396713018417358, -0.020765410736203194, -0.031823139637708664, 0.01612953469157219, -0.004457158502191305, -0.016470611095428467, -0.02625410631299019, -0.015462242066860199, -0.01083056628704071, -0.03173184394836426, 0.01001294981688261, -0.035378485918045044, 0.004694195464253426, -0.006094362586736679, -0.04029601067304611, -0.016508063301444054, -0.02727608196437359, 0.01724129170179367, 0.022216714918613434, -0.030402017757296562, 0.0115668885409832, -0.03350438177585602, -0.01363056804984808, 0.0021190389525145292, 0.032140444964170456, -0.016612235456705093, -0.036277465522289276, -0.04133988916873932, -0.021686039865016937, -0.03875463083386421, 0.02891734428703785, -0.02603953331708908, 0.012470441870391369, 0.02721576951444149, 0.056535813957452774, 0.018165672197937965, 0.043907131999731064, -0.0024901342112571, -0.01975632831454277, 0.03417171910405159, -0.06469526141881943, -0.02725326269865036, -0.0441213920712471, -0.046946968883275986, -0.004184467252343893, -0.0048526013270020485, 0.019396411255002022, -0.05488228797912598, 0.04503512382507324, 0.025516411289572716, 0.02348453551530838, 0.032020796090364456, 0.012860518880188465, 0.02060851640999317, -0.055101215839385986, -0.017006468027830124, -0.06563407927751541, 0.004999381024390459, 0.02024163492023945, -0.01238577626645565, -0.0032283884938806295, 0.011786104179918766, -0.030782734975218773, 0.0467415414750576, -0.07861506193876266, -0.0372299924492836, 0.05896955728530884, -0.012676571495831013, 0.00019003536726813763, 0.015118710696697235, -0.07356615364551544, 0.03489086776971817, 0.0221331175416708, -0.04036632180213928, -0.027249138802289963, -0.03690757229924202, 0.0647331029176712, 0.006019025109708309, 0.03567146882414818, -0.043548766523599625, -0.010159989818930626, 0.06940500438213348, 0.007999012246727943, 0.003545148763805628, 0.06460071355104446, 0.006150242872536182, 0.03235666826367378, 0.03529918193817139, 0.011466325260698795, -0.006774923298507929, 0.02784334309399128, -0.014161037281155586, -0.06291043758392334, 0.03837199881672859, 0.006318120285868645, -0.01608596369624138, -0.03169602155685425, 0.03912851959466934, 0.02595457248389721, -0.0251151155680418, -0.05694360285997391, 0.015599287115037441, -0.0491037555038929, -0.011775309219956398, -0.018500665202736855, -0.0050867414101958275, -0.03489839658141136, 0.040085501968860626, -0.003403595183044672, 0.006981880869716406, 0.07169739902019501, 0.014940796419978142, -0.017022117972373962, -0.030490273609757423, 0.09233254194259644, 0.07451875507831573, 0.08495068550109863, 0.005807959940284491, 0.0677422434091568, -0.007515279576182365, -0.05175783112645149, 0.02450881525874138, -0.006322275381535292, -0.027069630101323128, -0.016059894114732742, 0.02270015887916088, 0.0650714635848999, -0.008450543507933617, 0.0625360757112503, -0.0007893951842561364, -0.01959889940917492, -0.0061566997319459915, 0.03545467182993889, 0.014800063334405422, 0.0797005146741867, 0.0027128534857183695, 0.0019876074511557817, -0.023067118600010872, -0.05997629091143608, 0.006405760999768972, -0.039004478603601456, -0.01855541206896305, 0.04784313961863518, -0.005129613913595676, 0.024603309109807014, -0.004467626102268696, 0.00436931848526001, 0.07940486818552017, -0.04072488844394684, 0.02225014567375183, -0.023271292448043823, 0.03177521005272865, -0.025290686637163162, 0.01786193437874317, -0.02434539422392845, 0.002486560493707657, -0.007197563070803881, -0.026411738246679306, -0.026573214679956436, -0.014164554886519909, -0.020399346947669983, 0.0426548533141613, -0.01648261770606041, 0.01041072141379118, 0.03988256677985191, 0.01720854453742504, -0.022475706413388252, -0.06629301607608795, -0.031041376292705536, -0.0441942997276783, -0.04547351971268654, -0.017979733645915985, 0.05015077069401741, 0.003379862057045102, -0.03935260325670242, 0.009092866443097591, -0.041238896548748016, -0.036313388496637344, 0.036486443132162094, -0.04500140994787216, -0.017800388857722282, 0.007903644815087318, 0.029836028814315796, 0.007162397727370262, 0.013949601911008358, 0.04247923567891121, 0.0029740140307694674, -0.0005185644258745015, -0.01517281774431467, 0.03370407968759537, 0.013366568833589554, 0.0031714518554508686, -0.01002735085785389, -0.07538808137178421, 0.015011240728199482, 0.02983863838016987, -0.022828003391623497, -0.06168811395764351, 0.010036006569862366, 0.02004869468510151, 0.00185980717651546, 0.05284911394119263, -0.004943878389894962, 0.01545274630188942, -0.029025973752141, -0.00369956623762846, -0.0002788248239085078, 0.005297289229929447, 0.05783982202410698, -0.025468675419688225, 0.08237233757972717, 0.022744329646229744, -0.00255371886305511, -0.0357665978372097, -0.002731415443122387, 0.017449984326958656, 0.0001387674710713327, -0.013265739195048809, -0.030031224712729454, -0.009509004652500153, -0.08211208879947662, -0.030498914420604706, 0.02444705367088318, -0.029736239463090897, -0.031497031450271606, 0.0257632564753294, -0.0001671766076469794, -0.023960046470165253, 0.025879550725221634, -0.06900762766599655, 0.04046899825334549, -0.008037935011088848, -0.005950747989118099, 0.00829149316996336, 0.0034158388152718544, -0.006833305582404137, -0.023767489939928055, 0.01499472837895155, -0.050694145262241364, 0.012682339176535606, -0.008395479060709476, 0.006527562625706196, 0.04785671830177307, 0.02674144133925438, -0.022856831550598145 ]
[ -0.062092795968055725, 0.017887016758322716, -0.0030129950027912855, -0.03733724728226662, 0.0328696183860302, -0.0597543939948082, 0.025246765464544296, 0.04205900430679321, -0.011166057549417019, -0.035023752599954605, 0.009027083404362202, -0.014659508131444454, -0.006438777782022953, -0.02953409217298031, 0.09324083477258682, 0.013220306485891342, -0.015728045254945755, -0.0834798738360405, 0.026116902008652687, 0.029886512085795403, -0.024463308975100517, -0.030022943392395973, -0.027052870020270348, -0.012415207922458649, 0.016125714406371117, -0.003536082338541746, 0.03155871480703354, -0.04570735618472099, 0.00847928412258625, -0.15849992632865906, 0.010653158649802208, 0.005802026018500328, 0.039647284895181656, 0.0025597629137337208, 0.012292460538446903, 0.07814862579107285, 0.013079894706606865, 0.0037925047799944878, -0.003025585785508156, 0.028420405462384224, 0.017353691160678864, -0.008305812254548073, -0.0470273494720459, -0.036009982228279114, 0.022967588156461716, 0.01150842010974884, 0.01154516264796257, -0.054968152195215225, -0.033544111996889114, 0.009798422455787659, -0.05778525397181511, -0.02917066588997841, -0.017070576548576355, -0.021499458700418472, -0.012209584005177021, 0.03906992822885513, 0.04962771013379097, 0.061790261417627335, 0.015970155596733093, 0.025893837213516235, 0.0237115565687418, -0.018619008362293243, -0.15258251130580902, 0.09326164424419403, 0.0554346926510334, 0.05912536010146141, -0.06723754107952118, -0.005861022975295782, -0.01007479801774025, 0.09174666553735733, 0.015818145126104355, -0.04404435679316521, -0.02021707221865654, 0.016773922368884087, 0.021511990576982498, 0.03450487554073334, 0.0022956919856369495, 0.039074115455150604, 0.021945057436823845, -0.07169206440448761, -0.020861079916357994, -0.006660155951976776, -0.040114566683769226, -0.0026484050322324038, -0.04488388076424599, 0.033061783760786057, -0.0063719116151332855, 0.05807679891586304, 0.029776012524962425, 0.026883665472269058, 0.051295205950737, 0.004480298142880201, 0.00667620450258255, -0.016258198767900467, -0.08143432438373566, -0.054459523409605026, -0.005780869163572788, 0.015908466652035713, -0.0760776624083519, 0.44531169533729553, -0.008672884665429592, -0.031276870518922806, 0.0897943377494812, 0.06713894754648209, -0.005769115407019854, 0.007519005797803402, 0.020894194021821022, -0.06442947685718536, 0.028706828132271767, -0.006154234986752272, 0.03112909570336342, 0.02195962704718113, 0.03018822893500328, -0.04471920058131218, 0.03067769855260849, 0.05023935064673424, -0.0012540743919089437, 0.024857306852936745, -0.021901007741689682, -0.017532043159008026, -0.003303015371784568, 0.030897585675120354, 0.02599584311246872, 0.0035531024914234877, -0.057131990790367126, -0.04449427127838135, 0.043273575603961945, 0.05357466638088226, 0.022435519844293594, -0.0038401009514927864, 0.04318983852863312, -0.034378957003355026, -0.059341397136449814, 0.01760186441242695, -0.0035786861553788185, 0.008038701489567757, 0.027870655059814453, -0.018309583887457848, -0.0017481192480772734, 0.06607656925916672, 0.011628522537648678, -0.021560441702604294, -0.01318665873259306, -0.027814531698822975, -0.032701507210731506, 0.1050477921962738, 0.03267104551196098, -0.03722900152206421, -0.012303706258535385, -0.014452449977397919, -0.009922118857502937, 0.03838794305920601, 0.0186002254486084, -0.047515980899333954, 0.0352434366941452, 0.010216508992016315, 0.0771327093243599, 0.004938138648867607, -0.04629437252879143, 0.015509508550167084, 0.0033959338907152414, -0.016327403485774994, -0.05950716882944107, 0.011896522715687752, 0.09875960648059845, -0.11149708926677704, -0.01372658833861351, -0.00277513824403286, 0.02804826945066452, -0.058142680674791336, -0.00621528085321188, 0.032983578741550446, -0.01642693765461445, -0.009557506069540977, 0.04426790028810501, -0.026431070640683174, -0.04292147234082222, 0.013121494092047215, 0.04187994450330734, 0.02718561328947544, 0.04637471213936806, 0.010588646866381168, -0.00914754532277584, 0.022299399599432945, -0.0234119463711977, -0.056032996624708176, -0.023625360801815987, -0.02336571179330349, -0.04204195365309715, -0.003957045264542103, -0.01887342892587185, 0.007678254973143339, -0.08607505261898041, 0.09515991061925888, -0.026274405419826508, -0.010454228147864342, 0.033985771238803864, -0.03848763555288315, -0.03986794129014015, -0.0016663686838001013, -0.07808071374893188, 0.0008117357501760125, -0.07829783111810684, 0.03602035343647003, -0.0848219245672226, 0.049646683037281036, 0.04549011215567589, -0.03104003146290779, 0.10918286442756653, 0.03356342762708664, -0.03524911403656006, -0.03468874841928482, 0.019293000921607018, 0.027991002425551414, -0.008563051000237465, -0.015569859184324741, 0.01788947358727455, 0.028750818222761154, 0.0026747030206024647, 0.006596448365598917, -0.007977639324963093, 0.051041871309280396, -0.022038279101252556, -0.3477221429347992, -0.052168168127536774, -0.04262213036417961, 0.01237331423908472, -0.0012734363554045558, -0.03667377680540085, -0.00521291745826602, -0.013823379762470722, -0.016657060012221336, 0.010001055896282196, 0.07978472858667374, -0.015158253721892834, 0.027167338877916336, -0.1003049984574318, 0.0030935395043343306, -0.007971265353262424, -0.03244379162788391, 0.006991817150264978, -0.03647477924823761, -0.009611661545932293, 0.017264513298869133, 0.009970737621188164, -0.032922711223363876, -0.05496261268854141, -0.010761217214167118, -0.03591720014810562, 0.10449475795030594, 0.006191720254719257, 0.062017232179641724, -0.019329290837049484, 0.03134385496377945, 0.013454408384859562, 0.028387613594532013, -0.10945442318916321, 0.014680434949696064, -0.0158028956502676, 0.03062489628791809, -0.02616456337273121, 0.015157663263380527, -0.031274061650037766, -0.06061318889260292, 0.010107298381626606, -0.07492312788963318, -0.015511207282543182, -0.08737639337778091, 0.006590959616005421, -0.04285690560936928, -0.025680234655737877, -0.047537822276353836, 0.06063693389296532, 0.004485686309635639, -0.015713725239038467, -0.00215805321931839, -0.0010218541137874126, -0.012295342981815338, -0.04507903382182121, -0.10035014897584915, 0.03720346838235855, -0.0012309346348047256, -0.011145135387778282, 0.010074885562062263, 0.08923926204442978, 0.012183715589344501, -0.026314323768019676, -0.0022910244297236204, 0.007188137620687485, 0.007890462875366211, 0.04102769121527672, 0.03416439890861511, -0.028703125193715096, -0.002690967870876193, 0.06901227682828903, -0.005104086361825466, -0.007921534590423107, 0.014642545953392982, 0.01889880932867527, -0.02031966857612133, 0.02590118907392025, 0.015451925806701183, 0.0036784480325877666, 0.01482747308909893, -0.03651398792862892, 0.03301488980650902, -0.02813412807881832, -0.014856573194265366, 0.016334274783730507, -0.014374456368386745, -0.06477389484643936, 0.07484541833400726, 0.026807112619280815, -0.013568622060120106, 0.03677545487880707, -0.026093196123838425, -0.0415298268198967, 0.08014603704214096, 0.00458386680111289, -0.22959592938423157, 0.017671162262558937, 0.0642644539475441, 0.019240055233240128, -0.024595163762569427, 0.023831713944673538, 0.013778994791209698, -0.02634027786552906, 0.014001886360347271, 0.02694699354469776, 0.015633463859558105, 0.008065936155617237, -0.01624094508588314, 0.014372395351529121, 0.03005385585129261, 0.0003030853986274451, 0.036360353231430054, -0.0032530343160033226, 0.00860301312059164, 0.0014539527473971248, 0.010010289028286934, -0.014324631541967392, 0.14728441834449768, -0.00009065528138307855, 0.04832485690712929, 0.0000454725231975317, -0.022660046815872192, 0.003777463920414448, 0.05667921155691147, -0.016596797853708267, 0.022640202194452286, -0.009721004404127598, 0.011057243682444096, -0.007235966622829437, 0.03279881179332733, -0.09422983974218369, -0.002295083599165082, 0.02955029159784317, -0.0001182326304842718, 0.02887812629342079, 0.016294430941343307, 0.031576044857501984, -0.009904672391712666, 0.01742813177406788, 0.07111480832099915, 0.0048781284131109715, -0.015317651443183422, -0.037254203110933304, -0.04026661813259125, -0.020394636318087578, -0.04746664687991142, -0.03398004546761513, 0.016550878062844276, 0.002317763166502118, 0.025928400456905365, 0.07336775213479996, 0.034089889377355576, -0.0429600328207016, -0.007915075868368149, 0.003302362048998475, -0.03779974579811096, -0.010051052086055279, 0.0865291953086853, 0.044456757605075836, 0.054574064910411835 ]
[ -0.003432999365031719, 0.024659408256411552, 0.014572047628462315, 0.0008419342921115458, 0.00010062637738883495, 0.006720753386616707, 0.008662058971822262, 0.004231031518429518, 0.027368873357772827, 0.008510551415383816, -0.033243462443351746, 0.02619006112217903, 0.04658696427941322, -0.0009044784237630665, 0.02025710977613926, -0.03705306351184845, -0.011319192126393318, -0.0388655848801136, 0.032860271632671356, 0.013377262279391289, -0.011737174354493618, 0.01663757488131523, -0.020181911066174507, -0.012881649658083916, -0.012522143311798573, -0.018030419945716858, -0.005787012167274952, -0.02644954062998295, 0.023855729028582573, -0.14699779450893402, -0.04684370756149292, -0.0355008989572525, -0.01797935552895069, 0.0028360651340335608, -0.017386827617883682, 0.0005452304030768573, 0.015809547156095505, 0.04325428232550621, -0.010540766641497612, -0.02516835741698742, -0.018398646265268326, -0.023331571370363235, 0.003796927398070693, 0.042212069034576416, 0.010398440062999725, 0.0034967968240380287, -0.011705707758665085, -0.06584271788597107, -0.022512275725603104, -0.03019368089735508, -0.04144176468253136, -0.015466157346963882, -0.011820358224213123, 0.011044067330658436, 0.010369950905442238, -0.008964288979768753, 0.02115296758711338, -0.002081563463434577, 0.015604573301970959, -0.02747395634651184, 0.007262329570949078, -0.04032783582806587, -0.043170418590307236, -0.021903278306126595, -0.009828227572143078, -0.005866282153874636, -0.00257040630094707, 0.017735453322529793, -0.02356545999646187, 0.0068270196206867695, 0.01283701416105032, 0.02234596759080887, -0.026104411110281944, -0.030405571684241295, 0.006313651334494352, 0.018878495320677757, 0.01781812496483326, -0.029025504365563393, 0.018977811560034752, -0.010633529163897038, -0.022186707705259323, 0.016679581254720688, -0.023074643686413765, 0.01220744289457798, 0.01637890376150608, 0.003221183782443404, 0.009691938757896423, -0.009945194236934185, 0.011683152057230473, 0.018984531983733177, -0.008486062288284302, 0.009126880206167698, -0.012560608796775341, 0.013382252305746078, -0.07454725354909897, -0.005853657610714436, -0.03142343461513519, -0.026777341961860657, -0.03243684023618698, 0.8664832711219788, -0.009793668985366821, 0.011927357874810696, 0.025927942246198654, 0.000427079590735957, -0.002055397490039468, 0.005229669157415628, 0.01351971086114645, 0.0010693010408431292, 0.013449590653181076, -0.026152193546295166, 0.01639633998274803, 0.022395402193069458, 0.0043252985924482346, 0.028502928093075752, 0.03839773312211037, 0.033995456993579865, 0.0036518832203000784, 0.01408372726291418, -0.01812703348696232, 0.0033953040838241577, 0.030467329546809196, 0.018300512805581093, 0.010165520943701267, 0.026958568021655083, 0.026430079713463783, -0.15669019520282745, 0.02667475864291191, -8.041797830317187e-33, 0.05530654639005661, 0.028749817982316017, -0.004432393237948418, 0.01996207796037197, 0.003949311561882496, -0.007545652333647013, 0.027581706643104553, 0.011170872487127781, -0.03918568044900894, -0.020578578114509583, -0.024400072172284126, -0.0034269934985786676, 0.023949895054101944, -0.03152797371149063, 0.018073920160531998, -0.04041379317641258, -0.00799652747809887, 0.02458028309047222, -0.009253405034542084, 0.023068182170391083, 0.04297582060098648, 0.03051130659878254, 0.00030482487636618316, 0.006814213935285807, 0.02949598804116249, 0.004183052107691765, 0.004955812357366085, 0.024861561134457588, 0.00033249385887756944, -0.03992090001702309, -0.03427505120635033, 0.02795950137078762, -0.021471956744790077, -0.017738131806254387, 0.017865775153040886, -0.03301464393734932, -0.014669954776763916, 0.00307624414563179, 0.021153856068849564, -0.034588977694511414, -0.02891422063112259, 0.021566348150372505, -0.031808216124773026, -0.0021500850562006235, -0.0010820215102285147, -0.028784051537513733, 0.008519596420228481, 0.00801081769168377, -0.00064998643938452, -0.027689961716532707, -0.028126977384090424, 0.02549692615866661, 0.004497619345784187, -0.0048442198894917965, 0.016786543652415276, -0.0024994537234306335, 0.013649385422468185, 0.0002809933212120086, 0.021268928423523903, 0.011690746992826462, 0.0542716421186924, 0.016256259754300117, -0.03095621056854725, 0.03646013140678406, -0.008582105860114098, -0.015532647259533405, -0.00009940776362782344, 0.015302634797990322, 0.028982404619455338, -0.024985555559396744, -0.057111579924821854, -0.0019056389573961496, 0.02388848178088665, -0.020152514800429344, 0.004555974155664444, 0.025316134095191956, -0.019805869087576866, 0.008154128678143024, -0.025456206873059273, 0.02769302763044834, -0.006182749755680561, -0.013463710434734821, -0.01674766279757023, -0.04139677807688713, -0.002789414254948497, 0.010665361769497395, 0.000583887507673353, -0.02660101093351841, -0.003042572643607855, 0.011678611859679222, 0.03443557396531105, 0.0223150085657835, -0.011997252702713013, -0.005482191685587168, -0.017529917880892754, 8.082719727405188e-33, 0.006785786710679531, -0.015522844158113003, 0.00783434510231018, 0.001978752203285694, 0.06301417201757431, -0.03378375992178917, 0.014595869928598404, -0.004363576881587505, -0.03781949728727341, 0.019596314057707787, -0.009276564233005047, 0.0056789773516356945, -0.04353296011686325, -0.014580540359020233, 0.03806564211845398, -0.00004922836887999438, 0.027544759213924408, -0.03203337639570236, 0.028116656467318535, 0.0059331683441996574, 0.008756390772759914, -0.0006196546601131558, -0.010645337402820587, 0.014985554851591587, 0.04121851548552513, 0.06845150142908096, -0.00012634406448341906, 0.025541730225086212, 0.0037680636160075665, -0.011775485239923, 0.0031478030141443014, -0.040228452533483505, 0.003859147895127535, -0.02478671260178089, -0.014542455784976482, 0.028104590252041817, -0.009410891681909561, 0.0016229385510087013, 0.014046679250895977, -0.005108487326651812, 0.023588119074702263, 0.015315165743231773, 0.011345150880515575, 0.02274284139275551, 0.0047033014707267284, 0.006649253889918327, -0.002598254010081291, -0.0180612001568079, -0.03564855083823204, -0.0011829305440187454, 0.01644960045814514, 0.01058771088719368, 0.006910059601068497, -0.01552313007414341, -0.010276689194142818, -0.03460828587412834, -0.005828677676618099, 0.021017683669924736, -0.01092461310327053, 0.013917247764766216, 0.02818129025399685, 0.010494323447346687, -0.008135747164487839, -0.02489287033677101, -0.02885809913277626, 0.015594533644616604, -0.007226031739264727, 0.015385870821774006, -0.0274275504052639, 0.016783086583018303, -0.026899339631199837, 0.010171515867114067, 0.0024942131713032722, 0.03362799808382988, 0.015231777913868427, 0.00030632931157015264, -0.03802977874875069, -0.0044111390598118305, -0.03789832442998886, 0.01857433095574379, 0.0038222153671085835, 0.015301689505577087, 0.0021771618630737066, 0.012119933031499386, -0.012620937079191208, 0.05031917244195938, -0.015576228499412537, 0.051110927015542984, -0.005769665353000164, -0.020970724523067474, -0.03433672711253166, -0.03489883244037628, 0.03380604460835457, 0.01823366805911064, -0.014588354155421257, -1.3921936492522491e-8, -0.023287981748580933, 0.0024763818364590406, -0.013474681414663792, -0.001277779694646597, -0.011767176911234856, -0.011178280226886272, -0.006427261512726545, -0.008902611210942268, 0.0003814678930211812, 0.002767629222944379, 0.02070450969040394, -0.029463909566402435, 0.0006470566149801016, 0.01418034452944994, 0.043963607400655746, -0.020262954756617546, -0.004984220955520868, -0.029012789949774742, 0.027489976957440376, -0.002001936547458172, 0.05002402886748314, 0.05158793553709984, -0.02805355004966259, 0.020657815039157867, 0.010444923304021358, 0.004450315609574318, -0.03488760069012642, -0.0875178650021553, -0.01938634365797043, 0.004303529392927885, 0.011584344319999218, -0.029058709740638733, -0.037546828389167786, 0.04184502363204956, 0.0005373578169383109, -0.014565554447472095, 0.017964696511626244, -0.01103927381336689, 0.01419809740036726, -0.008402841165661812, 0.00005441731263999827, -0.004690786357969046, -0.0024665002711117268, -0.02246253564953804, -0.023129580542445183, 0.01634114794433117, -0.03744171932339668, -0.02387937158346176, -0.007533139083534479, -0.030525971204042435, 0.0013479853514581919, -0.009997247718274593, -0.00978593248873949, 0.02384205162525177, 0.005835792515426874, 0.01468461100012064, 0.02567565254867077, -0.024238158017396927, -0.03804059326648712, -0.024902157485485077, 0.005799927283078432, 0.026788746938109398, -0.0039181956090033054, -0.03116113692522049 ]
tech-leading-initial-thoughts
https://markhneedham.com/blog/2011/04/17/tech-leading-initial-thoughts
false
2011-04-17 12:05:12
The sunk cost fallacy
[ "software-development" ]
[ "Software Development" ]
I recently came across David McRaney's post about http://youarenotsosmart.com/2011/03/25/the-sunk-cost-fallacy/[the sunk cost fallacy with reference to Farmville], a fallacy that is very applicable to software. David starts off with the following statements which describe the fallacy pretty well: ____ *The Misconception*: You make rational decisions based on the future value of objects, investments and experiences. *The Truth*: Your decisions are tainted by the emotional investments you accumulate, and the more you invest in something the harder it becomes to abandon it. ____ I think this is very true in a lot of IT organisations in particular when they've made a big investment on some sort of middleware, usually an http://en.wikipedia.org/wiki/Enterprise_service_bus[ESB]. These can often cost hundreds of thousands if not millions of £'s so the person who authorised the purchase is likely to push very hard for it to be used because if it's not then their decision looks very foolish. The problem is that in a lot of cases using an ESB doesn't simplify the system being built - it makes it much more complicated. ESB's are typically difficult to test against, difficult to setup on a continuous integration server and generally make the life of people who have to use them hell. The sunk cost fallacy applies here because the organisation feels the pain of the initial purchase and doesn't want to write that off even if it would make life easier for them from now onwards. I even have my own smaller example from something I've been working on over the weekend. I wanted to try moving this blog from Wordpress to https://github.com/mojombo/jekyll[Jekyll] and I came across https://github.com/imathis/octopress[octopress] which simplifies the process by providing ready made style sheets and layouts. I've got it mostly working but I couldn't work out how to create pages which showed the posts in certain categories or for a specific month. From what I can tell you can get that functionality by implementing a plugin but unfortunately plugins were only added to Jekyll from version 0.6 and octopress relies on henrik-jekyll version 0.5. I've spent about a day and a half getting the blog to its current state so I'm pretty reluctant to write off that time and scrap the octopress idea. Unfortunately that may not be possible if I want to get all the functionality of wordpress. I'm not sure exactly when we should take the sunk cost and when we should write it off but being aware of it is at least a step in the right direction.
null
null
[ 0.010217690840363503, 0.017483113333582878, 0.0037763025611639023, 0.05452584847807884, 0.09756207466125488, 0.04039938002824783, 0.01853170618414879, 0.05515877157449722, 0.029147151857614517, -0.013919791206717491, -0.02426406927406788, 0.009218192659318447, -0.06434372812509537, 0.028952160850167274, -0.042610038071870804, 0.07304452359676361, 0.04849124327301979, -0.0005374697502702475, 0.009178949519991875, 0.01331037562340498, 0.026705309748649597, 0.06944718211889267, -0.00028759753331542015, 0.017274728044867516, 0.031718652695417404, -0.00617597671225667, 0.009598405100405216, -0.0026825019158422947, -0.06012576073408127, -0.02609756402671337, 0.038686420768499374, 0.018772894516587257, 0.006778206210583448, -0.00616830587387085, 0.008650691248476505, -0.004741295240819454, -0.017566917464137077, 0.00978915300220251, -0.005820938851684332, 0.02330225706100464, -0.08395194262266159, 0.0537271648645401, 0.011358937248587608, 0.022598635405302048, -0.05882124602794647, -0.013014805503189564, -0.05186585709452629, 0.010151022113859653, -0.01374006737023592, -0.01715145818889141, -0.05679773911833763, 0.04644594341516495, -0.017562881112098694, -0.022222958505153656, -0.024287154898047447, 0.05451757088303566, 0.012670178897678852, -0.056564126163721085, 0.009192079305648804, -0.03588944301009178, -0.0037442906759679317, 0.00003080051101278514, 0.00618183147162199, 0.012845027260482311, 0.025848472490906715, -0.033039696514606476, -0.015538668259978294, 0.03759247437119484, -0.05888572335243225, -0.00559802632778883, -0.013077069073915482, 0.013351621106266975, -0.017918439581990242, -0.016521966084837914, 0.02086341567337513, -0.04908229410648346, -0.018619874492287636, 0.05468416213989258, 0.046408191323280334, 0.038196414709091187, -0.021587379276752472, 0.033523645251989365, 0.008032362908124924, 0.03617206960916519, 0.0018901803996413946, -0.04028668627142906, 0.009472566656768322, -0.0028285717125982046, -0.07557612657546997, 0.06693127006292343, 0.030056066811084747, -0.0483752079308033, 0.03778405115008354, 0.031567007303237915, -0.007744119968265295, 0.021199801936745644, 0.0335974283516407, 0.018313637003302574, -0.0017167833866551518, -0.017812112346291542, -0.03503057733178139, -0.012301423586905003, -0.015068882144987583, 0.0016785607440397143, -0.07084720581769943, -0.001083602663129568, -0.02400333620607853, 0.0005550141795538366, -0.00000476788954983931, -0.007151199039071798, -0.04257027804851532, 0.03983623906970024, -0.019919199869036674, 0.012993273325264454, -0.04899046570062637, 0.060129109770059586, 0.001553796697407961, -0.06156125292181969, -0.0024663256481289864, 0.007736923173069954, 0.04482065886259079, 0.009269255213439465, -0.030130259692668915, 0.07179756462574005, 0.022935859858989716, 0.0037774695083498955, -0.022204067558050156, 0.046838827431201935, -0.024903863668441772, -0.05763895437121391, 0.004221313167363405, 0.05232629552483559, -0.04159286990761757, -0.01968231424689293, -0.00278186216019094, -0.015733346343040466, 0.008461445569992065, 0.013123772107064724, 0.05238451063632965, 0.04173621907830238, -0.007864152081310749, -0.04274269565939903, 0.0038227522745728493, 0.018709151074290276, 0.01996532268822193, -0.00895201601088047, 0.022907763719558716, -0.015595467761158943, -0.05179981514811516, -0.016885358840227127, 0.02331007644534111, 0.019990775734186172, 0.01477543544024229, -0.025922881439328194, 0.029449312016367912, 0.07779984176158905, 0.04687481373548508, -0.010080263018608093, -0.007077666465193033, 0.04593978449702263, 0.04281003400683403, 0.0364275723695755, 0.027484958991408348, 0.02189946360886097, 0.03239338472485542, -0.04135917127132416, 0.007446609903126955, 0.05598781630396843, -0.023957401514053345, 0.015377405099570751, -0.050965938717126846, -0.05894733965396881, 0.07068710774183273, -0.039376985281705856, 0.00406376039609313, 0.04835584759712219, 0.0892946794629097, 0.04878177121281624, 0.04104722663760185, 0.0021851013880223036, -0.08369489759206772, 0.025485586374998093, 0.02023094892501831, 0.02287977747619152, 0.008340509608387947, -0.022802084684371948, 0.049737632274627686, 0.024988772347569466, 0.025315767154097557, 0.04456231743097305, -0.07944997400045395, -0.09561082720756531, -0.0254091527312994, -0.02299455739557743, 0.05249106138944626, -0.007120982743799686, -0.00781992170959711, 0.06179666891694069, 0.015467888675630093, 0.05374951288104057, -0.0007310945075005293, 0.00936270784586668, 0.00586311100050807, -0.03566405177116394, -0.03380220755934715, 0.05132966861128807, 0.0440031960606575, 0.005397346336394548, -0.04177794232964516, 0.015176519751548767, -0.03476359695196152, -0.025609515607357025, 0.04527024179697037, -0.035548947751522064, 0.0049669379368424416, -0.0031939430627971888, 0.06083915755152702, -0.027791470289230347, 0.018063701689243317, -0.031870126724243164, -0.016052190214395523, 0.01672269217669964, -0.008087769150733948, 0.009226256050169468, -0.0018563851481303573, 0.10956277698278427, 0.05829518660902977, -0.041900813579559326, -0.04014565050601959, 0.02361895889043808, -0.010652589611709118, -0.025711096823215485, -0.012270026840269566, -0.025920016691088676, 0.006674280855804682, 0.002169970190152526, -0.0686943456530571, -0.0360424779355526, 0.01932614855468273, -0.030236171558499336, 0.010627600364387035, 0.04251030087471008, -0.01595119945704937, 0.0634663850069046, -0.013624219223856926, -0.0018132003024220467, -0.0320143885910511, -0.021668504923582077, -0.09305398166179657, 0.02929217927157879, -0.0013603997649624944, -0.0023674354888498783, 0.04922303929924965, -0.015887148678302765, -0.026993783190846443, -0.02890067920088768, -0.030157288536429405, 0.028159143403172493, 0.020823532715439796, 0.0815078467130661, -0.013032088987529278, 0.06835587322711945, -0.011815623380243778, 0.037139277905225754, 0.006451547611504793, -0.04778505489230156, -0.05195125937461853, -0.019543029367923737, 0.010896282270550728, 0.030050648376345634, 0.021694695577025414, 0.0027769876178354025, 0.004984840285032988, 0.020750707015395164, 0.003035223111510277, -0.017556296661496162, 0.03714766725897789, 0.021207153797149658, -0.020755045115947723, -0.019440699368715286, -0.029588375240564346, 0.07083343714475632, -0.03232298046350479, -0.005007576663047075, 0.007986613549292088, -0.07840755581855774, 0.06412313878536224, -0.05839637666940689, -0.018248414620757103, 0.006455887109041214, 0.02718159928917885, 0.04824095591902733, 0.025347987189888954, 0.03464876487851143, 0.061256036162376404, 0.013682669028639793, 0.011367611587047577, -0.006488809362053871, -0.016720859333872795, 0.048259370028972626, 0.012131250463426113, -0.019670220091938972, 0.0571562796831131, 0.014014085754752159, 0.02962256222963333, -0.03437848761677742, 0.04280296340584755, -0.012416045181453228, -0.2889222800731659, 0.04600624367594719, 0.0048117442056536674, -0.05295414850115776, 0.02207898534834385, -0.01095589715987444, 0.005778378341346979, -0.05386347323656082, -0.01794186793267727, 0.0197904072701931, -0.023404495790600777, -0.058205585926771164, -0.014925409108400345, 0.028605611994862556, 0.020254280418157578, 0.005098317284137011, 0.04374942183494568, -0.031062819063663483, -0.010701299645006657, 0.03013017773628235, -0.01286782044917345, -0.07944238930940628, -0.0007237427635118365, 0.05809105560183525, 0.04204477742314339, 0.06548988074064255, -0.05946642532944679, 0.015071190893650055, -0.06857182830572128, -0.009782481007277966, -0.002715504029765725, -0.006042120512574911, 0.004476516507565975, -0.020809782668948174, -0.0025553740561008453, -0.007014433853328228, 0.0338866151869297, 0.020543009042739868, 0.012568652629852295, 0.014724621549248695, -0.004408076871186495, 0.007745515089482069, 0.0007442953647114336, 0.029043609276413918, 0.06585552543401718, -0.021407702937722206, -0.07697593420743942, 0.00676342286169529, -0.042550183832645416, 0.07991950213909149, -0.014345929957926273, -0.029813190922141075, -0.007111641578376293, 0.0302235446870327, 0.0002628206566441804, -0.009207658469676971, -0.028103450313210487, -0.027211979031562805, -0.04432859644293785, -0.03169415891170502, 0.0037802397273480892, 0.0022650263272225857, -0.02192215621471405, -0.02246381901204586, -0.0019808532670140266, -0.05888909846544266, -0.07155628502368927, -0.009371878579258919, 0.09277543425559998, 0.0047597079537808895, -0.03353200480341911, 0.016481250524520874, 0.009164029732346535, -0.10576208680868149, -0.0029927671421319246, -0.0013794830301776528, -0.025287799537181854, -0.003438527463003993, 0.019115282222628593, 0.03717309609055519, -0.021606026217341423, -0.051490575075149536, 0.020249169319868088, 0.006572409067302942, 0.012230404652655125, -0.04548053443431854, 0.016135171055793762, 0.04910282418131828, -0.020977331325411797, 0.02115170657634735, 0.06548278778791428, 0.010078414343297482, -0.04157022014260292, -0.02886757254600525, 0.017742346972227097, 0.026283230632543564, 0.02731703780591488, -0.012184790335595608, 0.006697072181850672, 0.03106645494699478, -0.012505937367677689, -0.06544572860002518, 0.019960112869739532, -0.02749929204583168, -0.031106948852539062, -0.0241085197776556, -0.04458755627274513, 0.004708792548626661, 0.027911117300391197, 0.020444994792342186, -0.003917638678103685, -0.030470997095108032, 0.01759324222803116, -0.05141705647110939, -0.048656195402145386, -0.011703439988195896, -0.005847690161317587, 0.03417586907744408, -0.006404321640729904, -0.01412174105644226, -0.039624202996492386, 0.007630888372659683, -0.00979310367256403, -0.026142412796616554, -0.06977272033691406, -0.010122530162334442, -0.023501310497522354, -0.015085231512784958, 0.017548060044646263, 0.018869753926992416, 0.009365558624267578, 0.038881659507751465, 0.018151089549064636, -0.04516297206282616, 0.009785918518900871, -0.02926398254930973, -0.05053652822971344, -0.03418375924229622, -0.0025436494033783674, -0.007305183447897434, 0.0018412215868011117, -0.014723731204867363, 0.01218180451542139, 0.03349476680159569, 0.029182976111769676, 0.0015910747461020947, 0.027245469391345978, 0.0107896002009511, 0.03924453631043434, 0.01807314343750477, -0.011121860705316067, -0.06393299996852875, 0.025821303948760033, -0.043934691697359085, -0.02480810321867466, -0.021715201437473297, 0.014884044416248798, -0.021641593426465988, -0.035636305809020996, -0.02944280579686165, -0.005768007133156061, -0.04065129533410072, -0.05264692008495331, -0.02828110195696354, 0.03651878237724304, 0.0644991546869278, -0.038370829075574875, 0.017315203323960304, -0.012987123802304268, -0.0032241693697869778, 0.013567439280450344, 0.03064117021858692, -0.048920657485723495, -0.004684116691350937, 0.025426197797060013, 0.00715651037171483, -0.016123870387673378, -0.017481729388237, 0.04096401110291481, -0.0005372996674850583, -0.02090093120932579, -0.03661014139652252, 0.0174295324832201, 0.008092159405350685, 0.05104152113199234, 0.01432290580123663, -0.025945933535695076, -0.0030672652646899223, -0.009709108620882034, -0.006399425677955151, -0.06685967743396759, -0.024268249049782753, 0.01754726469516754, 0.02220292203128338, -0.036850716918706894, -0.07309959828853607, 0.044330962002277374, 0.019113365560770035, 0.012680908665060997, 0.01018427312374115, -0.0038774190470576286, -0.012690617702901363, -0.043942756950855255, 0.013168786652386189, 0.0670863687992096, -0.06259074062108994, -0.007341137155890465, -0.0024594957940280437, 0.011746459640562534, 0.02230130322277546, -0.011984254233539104, -0.04098927602171898, -0.03669111058115959, -0.03280075266957283, 0.02049611508846283, -0.06686022132635117, -0.022921301424503326, -0.042258262634277344, -0.001786296023055911, -0.008303161710500717, -0.008502070792019367, -0.02735057659447193, -0.024987440556287766, 0.0036704731173813343, -0.03322640061378479, 0.017001766711473465, -0.024041973054409027, -0.0049794865772128105, 0.02962474338710308, -0.03774280101060867, 0.004504879005253315, -0.023520782589912415, 0.018669141456484795, 0.010894524864852428, -0.028759252279996872, 0.02467581070959568, -0.011776846833527088, 0.011863576248288155, -0.013892545364797115, 0.03491028770804405, -0.006745381746441126, -0.025167865678668022, -0.01887478120625019, -0.006863524205982685, -0.0421941801905632, -0.005398101639002562, -0.001700199325568974, -0.00684865890070796, 0.020111626014113426, 0.055886562913656235, 0.010761638171970844, 0.0008169981883838773, -0.022775057703256607, 0.004418303724378347, 0.03423084318637848, -0.07592068612575531, -0.02390405349433422, -0.021538209170103073, -0.03983692079782486, 0.022262409329414368, 0.014755473472177982, 0.03311117738485336, -0.039970312267541885, 0.04186037927865982, 0.03009295091032982, 0.03650052845478058, 0.030693965032696724, 0.016325367614626884, 0.03898146376013756, -0.056802913546562195, -0.003521858248859644, -0.09655148535966873, 0.0028529849369078875, 0.016424166038632393, -0.005648821126669645, -0.006254305597394705, 0.0023707756772637367, -0.048570290207862854, 0.029079370200634003, -0.05682309716939926, -0.02915748953819275, 0.04230187088251114, -0.007090390659868717, -0.01644064486026764, 0.011873450130224228, -0.07156560570001602, 0.01282413862645626, 0.03309906646609306, -0.05282687395811081, -0.026699375361204147, -0.0076917498372495174, 0.05483350157737732, 0.010066473856568336, 0.031485144048929214, -0.04335317015647888, -0.023969288915395737, 0.06217551603913307, 0.004724323749542236, 0.016879236325621605, 0.03520704060792923, -0.005532045848667622, 0.035454340279102325, 0.04924878478050232, 0.02652323804795742, 0.010478666052222252, -0.0045607793144881725, -0.019113803282380104, -0.04963407292962074, 0.0436234213411808, 0.009111745283007622, -0.03209520876407623, -0.031078485772013664, 0.0418088473379612, 0.018906688317656517, -0.006345013622194529, -0.07381188869476318, -0.00015002369764260948, -0.05598068609833717, 0.0024094132240861654, -0.009397972375154495, -0.036866866052150726, -0.026535458862781525, 0.049400679767131805, -0.00992969423532486, 0.02542029321193695, 0.0654856413602829, 0.014073718339204788, -0.021029837429523468, 0.0023556521628051996, 0.0782800242304802, 0.08134052157402039, 0.06940461695194244, -0.008233096450567245, 0.07547878473997116, -0.022736452519893646, -0.043680932372808456, 0.02363518811762333, -0.027791185304522514, -0.020136043429374695, -0.028876937925815582, 0.009065987542271614, 0.04175262153148651, -0.014997216872870922, 0.06960611790418625, -0.013119388371706009, -0.007918426766991615, -0.002708186861127615, 0.010598559863865376, 0.009086445905268192, 0.07863713055849075, 0.02814645878970623, -0.005876461043953896, -0.03000068850815296, -0.0709770992398262, 0.03945317491889, -0.04325388744473457, -0.02343224547803402, 0.022418422624468803, -0.014207187108695507, 0.03632056713104248, 0.01975521817803383, 0.04352445527911186, 0.07389381527900696, -0.04652729630470276, 0.01102534495294094, 0.016693027690052986, 0.022766968235373497, 0.006432755850255489, 0.03212788701057434, 0.010095412842929363, -0.007491914555430412, 0.015437675639986992, -0.021772170439362526, 0.011813108809292316, -0.017221085727214813, -0.011019759811460972, 0.04745980724692345, -0.021730300039052963, -0.004617281723767519, 0.04808710515499115, -0.00234906654804945, -0.01885649561882019, -0.06437292695045471, -0.009150484576821327, -0.048615336418151855, -0.0697135329246521, -0.017544638365507126, 0.009511641226708889, 0.004319808911532164, -0.0322694405913353, -0.02080308459699154, -0.01635829359292984, -0.02040131948888302, 0.039691388607025146, -0.06715346872806549, -0.016968922689557076, 0.011021672748029232, 0.01886877976357937, -0.0007394918939098716, 0.012969531118869781, 0.02571864239871502, 0.00009532258991384879, -0.02357511967420578, 0.003084813943132758, 0.022700348868966103, 0.042013637721538544, 0.010573133826255798, -0.00020110142941121012, -0.08895601332187653, 0.01799914613366127, 0.030076000839471817, 0.006111120339483023, -0.06603528559207916, 0.04328566789627075, -0.013860885985195637, -0.011218322440981865, 0.07980364561080933, -0.0022519235499203205, 0.024158630520105362, -0.04128384590148926, -0.008593793027102947, -0.01397013571113348, -0.001882363110780716, 0.01268271915614605, -0.023424647748470306, 0.0768280178308487, 0.034306980669498444, -0.01220834068953991, -0.058269161731004715, -0.024938266724348068, -0.002171669853851199, -0.021461715921759605, -0.016500869765877724, -0.03776237368583679, -0.009407497011125088, -0.0786479264497757, -0.03094332478940487, 0.015077382326126099, -0.03250724822282791, -0.035275183618068695, 0.030445527285337448, 0.021189341321587563, -0.02712121792137623, 0.019337652251124382, -0.06113753840327263, 0.018135204911231995, -0.01264812983572483, -0.004462844226509333, -0.013557140715420246, 0.03013746254146099, 0.022691739723086357, -0.008193348534405231, 0.005503380671143532, -0.041699960827827454, -0.00523377675563097, -0.002281003165990114, 0.035334862768650055, 0.03504403680562973, 0.018711697310209274, -0.0231876652687788 ]
[ -0.0705004557967186, -0.02497958205640316, -0.04104544594883919, -0.019992154091596603, 0.03992435708642006, -0.051834676414728165, -0.006677679251879454, 0.029302241280674934, -0.005084396339952946, -0.014819604344666004, -0.009636756964027882, 0.01491040550172329, 0.002959076315164566, -0.014885625801980495, 0.08776433765888214, 0.009840394370257854, -0.026991184800863266, -0.09040728211402893, 0.007907803170382977, 0.04742991551756859, 0.024161778390407562, -0.05309223756194115, -0.023266345262527466, -0.034950412809848785, -0.006967572961002588, 0.0013923601945862174, 0.02494930289685726, -0.018742617219686508, 0.00558613333851099, -0.1660459339618683, 0.010201239958405495, -0.012115026824176311, 0.01778523065149784, -0.029428042471408844, 0.009768196381628513, 0.047738540917634964, 0.02403333969414234, -0.00010726287291618064, 0.004015564452856779, 0.036806024610996246, -0.0019964328967034817, 0.025235749781131744, -0.060066018253564835, -0.024989960715174675, 0.04289660602807999, 0.014398627914488316, -0.0007551878225058317, -0.02858545444905758, -0.030724620446562767, 0.014739415608346462, -0.030863424763083458, -0.015304273925721645, -0.017550967633724213, -0.02447151392698288, -0.01209139171987772, 0.024553198367357254, 0.024627206847071648, 0.10427457094192505, 0.021450191736221313, 0.030000515282154083, 0.026193341240286827, -0.03093733638525009, -0.14727631211280823, 0.08270620554685593, 0.03185706585645676, 0.04919661954045296, -0.036330997943878174, 0.0006541751208715141, -0.03640642389655113, 0.07633965462446213, 0.008265573531389236, -0.02418942004442215, -0.016618851572275162, 0.03337268903851509, 0.020045433193445206, -0.015744123607873917, 0.041558172553777695, 0.03835389018058777, 0.025245893746614456, -0.028003627434372902, 0.012261854484677315, 0.01749664731323719, -0.02837812714278698, -0.023398077115416527, -0.032972607761621475, 0.0007518966449424624, 0.02482501231133938, 0.052195750176906586, 0.05187302082777023, 0.02621532417833805, 0.04998790845274925, -0.0052960277535021305, 0.0566755086183548, -0.020188020542263985, -0.06264054030179977, 0.013859288766980171, 0.006491363048553467, 0.0015035599935799837, -0.06745810806751251, 0.4154294431209564, -0.001561485230922699, -0.002871174830943346, 0.07114927470684052, 0.017961790785193443, -0.00018335603817831725, -0.023802151903510094, -0.014112514443695545, -0.020580116659402847, 0.03542301431298256, -0.029502911493182182, -0.020801635459065437, 0.03022356517612934, 0.09601996839046478, -0.03734659031033516, -0.01754310540854931, 0.014354881830513477, -0.02171316184103489, -0.011016184464097023, 0.00027965966728515923, -0.011812902055680752, -0.032866500318050385, 0.006613450590521097, 0.022466067224740982, 0.026321260258555412, -0.008542115800082684, -0.03535333648324013, 0.022635208442807198, 0.0355171374976635, 0.034329310059547424, -0.011559214442968369, 0.022255798801779747, -0.10122930258512497, -0.06171824783086777, 0.014304128475487232, 0.020045483484864235, 0.013814977370202541, 0.02409631572663784, 0.01133629772812128, 0.005666999612003565, 0.04433593526482582, -0.03202258050441742, 0.0032436710316687822, 0.009692610241472721, -0.02467406913638115, -0.0572362057864666, 0.10643908381462097, 0.058890774846076965, -0.0630221739411354, -0.00012222871009726077, -0.03726173937320709, -0.02036108635365963, 0.019501764327287674, 0.013352605514228344, -0.09191794693470001, 0.016434211283922195, 0.04089615121483803, 0.08581455796957016, 0.015662135556340218, -0.09111764281988144, -0.017077889293432236, -0.021966468542814255, -0.021887725219130516, -0.04060918837785721, 0.03965899348258972, 0.043387629091739655, -0.10335733741521835, -0.033248089253902435, 0.007389950565993786, 0.03178844973444939, -0.07024721056222916, -0.037726353853940964, 0.015414245426654816, -0.02053222618997097, -0.03745405375957489, 0.06239279732108116, -0.02932823821902275, -0.03361016884446144, 0.01601414568722248, 0.05061829835176468, 0.009314136579632759, 0.008282994851469994, 0.003454196732491255, -0.030691683292388916, -0.01609252393245697, -0.0407840721309185, -0.06709609925746918, -0.06412801891565323, -0.02337251417338848, -0.019439110532402992, -0.00040600518696010113, -0.03407485783100128, -0.049679242074489594, -0.0926566943526268, 0.09833193570375443, -0.0018046863842755556, -0.003908759448677301, 0.0032208492048084736, 0.020359637215733528, 0.009832147508859634, -0.007596347946673632, -0.033237021416425705, 0.011741617694497108, -0.03583445027470589, 0.0179838128387928, -0.047084446996450424, 0.06829451769590378, 0.05177214369177818, -0.04928727075457573, 0.1063259020447731, 0.015017676167190075, -0.03677757829427719, 0.000515795371029526, -0.0020970599725842476, 0.05707613751292229, 0.024204522371292114, 0.004727946128696203, 0.010904678143560886, 0.017288729548454285, 0.0043389624916017056, 0.02371286042034626, -0.004001964814960957, -0.027282195165753365, 0.009012307971715927, -0.3578825294971466, -0.052054665982723236, -0.05959007889032364, 0.0068175774067640305, 0.02091839723289013, -0.05636952817440033, 0.025642575696110725, -0.04723150283098221, -0.018033107742667198, 0.044789768755435944, 0.07832887768745422, -0.041911255568265915, 0.014080545864999294, -0.07036782056093216, 0.026833130046725273, -0.001422352623194456, -0.0319703109562397, -0.03309672325849533, -0.05346529558300972, 0.003348678583279252, -0.03618256002664566, -0.007243920583277941, -0.014875287190079689, -0.07411034405231476, 0.011522657237946987, -0.014152055606245995, 0.09909714013338089, -0.011115198023617268, 0.09116272628307343, -0.018824441358447075, 0.04295588657259941, 0.013480235822498798, 0.030400212854146957, -0.06208173930644989, -0.000564935093279928, 0.012389331124722958, 0.03829621896147728, -0.03966585546731949, -0.006046053487807512, -0.026263998821377754, -0.08674777299165726, 0.018828218802809715, -0.06083676218986511, -0.05556899681687355, -0.053420569747686386, 0.04131411388516426, -0.03359034284949303, -0.0110181774944067, -0.04391838610172272, 0.09765282273292542, 0.011937710456550121, 0.016735540702939034, 0.032681696116924286, 0.009871719405055046, 0.04793960601091385, -0.04592643678188324, -0.06461901217699051, 0.013999952003359795, -0.008098659105598927, 0.0006966589135117829, 0.04979221895337105, 0.046730831265449524, 0.049917589873075485, -0.05261634290218353, 0.027434395626187325, -0.0045431735925376415, 0.007355099078267813, 0.010524283163249493, 0.02828245796263218, -0.031708016991615295, -0.033168207854032516, 0.11262192577123642, -0.010855975560843945, -0.04302367940545082, 0.013650460168719292, 0.028128458186984062, -0.02030608430504799, 0.02496449276804924, -0.005339672788977623, 0.010991952382028103, 0.003806707914918661, -0.0052110194228589535, 0.036528781056404114, -0.007955865934491158, -0.028456170111894608, 0.043070532381534576, -0.02093285135924816, -0.04738686606287956, 0.04700314626097679, 0.01069966983050108, -0.059315722435712814, 0.00161329610273242, -0.04223533719778061, -0.04767857864499092, 0.07759964466094971, -0.0037003932520747185, -0.24807555973529816, 0.030592912808060646, 0.0687868595123291, 0.037005312740802765, 0.0027033300139009953, 0.04602641984820366, 0.028126578778028488, -0.032141461968421936, 0.023808039724826813, 0.031573545187711716, 0.005511262454092503, 0.028289034962654114, -0.022678006440401077, -0.013587542809545994, 0.06233394145965576, -0.028060780838131905, 0.03944077715277672, -0.020375216379761696, 0.022552816197276115, -0.005322629120200872, 0.011419246904551983, -0.016349246725440025, 0.15284058451652527, 0.014657755382359028, -0.0203547403216362, 0.013373554684221745, -0.004942917264997959, 0.0454278290271759, 0.04335963353514671, 0.01887684501707554, -0.01205271203070879, 0.011356275528669357, 0.04268842935562134, -0.002422463847324252, 0.02443886175751686, -0.07733407616615295, -0.052535831928253174, 0.038850970566272736, 0.04765981808304787, -0.021938977763056755, 0.03748828545212746, 0.003850685665383935, -0.015207583084702492, 0.023624006658792496, 0.08138421922922134, 0.01763775758445263, 0.0024615414440631866, -0.028855618089437485, -0.02619931660592556, 0.007715283893048763, -0.024491427466273308, -0.02887188456952572, 0.03923169523477554, -0.02143249660730362, 0.017669791355729103, 0.06380664557218552, 0.012811809778213501, 0.002421304350718856, 0.0172584168612957, -0.02078407071530819, -0.015706866979599, -0.04352464899420738, 0.06980069726705551, 0.034664254635572433, 0.05768613889813423 ]
[ 0.015363769605755806, 0.032343555241823196, 0.012015331536531448, 0.00229832180775702, -0.007768647279590368, 0.0152662955224514, 0.007960593327879906, 0.015983955934643745, 0.019345609471201897, 0.015261263586580753, -0.019759846851229668, 0.017712868750095367, 0.020149724557995796, -0.03436648100614548, -0.0008819432696327567, -0.023138009011745453, 0.014020091854035854, -0.002510532271116972, 0.015935208648443222, -0.003926163539290428, -0.020023707300424576, 0.013248779810965061, -0.03104856051504612, -0.017415331676602364, -0.015805957838892937, -0.011887344531714916, -0.0023348054382950068, 0.01846086047589779, 0.002254468621686101, -0.1351652890443802, 0.0030419209506362677, -0.04199814051389694, -0.029870344325900078, -0.0019972280133515596, 0.0008707911474630237, 0.005326469428837299, 0.004416535142809153, -0.03643224015831947, 0.0003518389421515167, -0.0019333199597895145, 0.011643484234809875, -0.03380807861685753, -0.004353356081992388, 0.013174121268093586, 0.01023443229496479, -0.013806900009512901, -0.02776927314698696, -0.03220749646425247, -0.01734117791056633, -0.01489236205816269, -0.011444095522165298, -0.04499828815460205, 0.01577397622168064, 0.005029840860515833, -0.010561413131654263, 0.0033950458746403456, -0.0089407404884696, 0.0005220897146500647, 0.0036994032561779022, 0.0030546945054084063, 0.026729434728622437, -0.005622577387839556, -0.022387806326150894, -0.013497205451130867, -0.006460550241172314, -0.003948891535401344, 0.00659903883934021, 0.013788046315312386, -0.05471367388963699, 0.01954394020140171, -0.005873650312423706, -0.0028002799954265356, -0.030640235170722008, -0.035658951848745346, -0.0060922554694116116, -0.025405215099453926, 0.01849275827407837, -0.027853507548570633, 0.03106882981956005, -0.012269603088498116, -0.03518202528357506, 0.019758345559239388, -0.009397339075803757, -0.012585964053869247, -0.00457445764914155, -0.010775471106171608, 0.016967063769698143, 0.013977325521409512, 0.020167788490653038, -0.004249535035341978, 0.006608482915908098, 0.014355397783219814, 0.01493608858436346, 0.00686382781714201, -0.0811929851770401, -0.024060998111963272, -0.030801676213741302, -0.007665141019970179, -0.007569846697151661, 0.8705828189849854, 0.013345209881663322, 0.0230205450206995, 0.033993471413850784, 0.03646514564752579, 0.021695392206311226, -0.033519960939884186, -0.005399934947490692, 0.039252880960702896, 0.01343141682446003, -0.055341076105833054, -0.007348045706748962, -0.0008401312516070902, 0.03419745713472366, 0.01754116080701351, -0.0031547569669783115, 0.02528638206422329, -0.013208849355578423, -0.01395090389996767, 0.003442400600761175, 0.029314599931240082, 0.028223751112818718, 0.052004434168338776, 0.02397637628018856, -0.01977621577680111, 0.003646374214440584, -0.14520372450351715, -0.007842623628675938, -7.94025715892522e-33, 0.0013280179118737578, -0.00796989630907774, 0.009178644977509975, 0.0059772091917693615, 0.015125247649848461, -0.014535578899085522, 0.002639410551637411, 0.005240658763796091, -0.01882365345954895, 0.0019317739643156528, -0.019561070948839188, 0.013172428123652935, 0.011187344789505005, -0.0095058036968112, 0.0462307408452034, -0.04826805368065834, 0.01402115449309349, 0.0318494476377964, 0.0246680099517107, -0.015367028303444386, 0.0368935652077198, 0.004458348732441664, 0.021766727790236473, -0.027893628925085068, 0.02000458352267742, -0.00800352729856968, -0.006084611639380455, 0.002409457927569747, 0.04204466938972473, -0.03339768946170807, -0.010703346692025661, 0.021263983100652695, -0.008443162776529789, -0.012614008039236069, -0.025092318654060364, -0.03531232103705406, -0.03198699653148651, 0.0020400998182594776, -0.03136710822582245, -0.022459642961621284, -0.05474260076880455, 0.0011410389561206102, -0.06162033602595329, 0.039699725806713104, -0.03848794475197792, -0.004182150587439537, 0.017236799001693726, 0.0035452242009341717, 0.052903659641742706, -0.0021206275559961796, -0.003829261986538768, -0.018915237858891487, 0.0028849460650235415, 0.014026879332959652, -0.005855293478816748, 0.018171463161706924, -0.00447926577180624, 0.016455067321658134, 0.021150164306163788, -0.005763881839811802, 0.006078832317143679, -0.022124025970697403, -0.016167277470231056, 0.00578783405944705, -0.03666120022535324, 0.009010608308017254, 0.05059798061847687, 0.030458293855190277, -0.03890339657664299, -0.016111593693494797, -0.028277909383177757, -0.01099016610532999, -0.014498316682875156, 0.0032974088098853827, 0.0054780058562755585, 0.01667090691626072, 0.014883220195770264, 0.025713639333844185, -0.02949093095958233, 0.013996748253703117, 0.0033320083748549223, -0.018345223739743233, -0.0142719317227602, -0.011541007086634636, -0.00894706416875124, 0.02533699944615364, 0.020356975495815277, 0.012662800960242748, 0.02036583237349987, 0.036194849759340286, 0.013883532024919987, 0.02225823700428009, 0.009432613849639893, -0.015364421531558037, 0.019865887239575386, 8.125231480602676e-33, -0.014126639813184738, 0.010995881631970406, -0.033481258898973465, 0.018140090629458427, 0.02503916434943676, -0.015998203307390213, 0.037423353642225266, -0.021155351772904396, -0.04437456279993057, 0.02627747878432274, -0.030509181320667267, 0.028621360659599304, -0.05162843316793442, 0.04300939664244652, 0.016067268326878548, -0.02758365124464035, 0.03486887738108635, -0.036793190985918045, 0.040248941630125046, 0.00008584004535805434, 0.0018902532756328583, 0.004326277412474155, -0.017243271693587303, -0.0041048480197787285, 0.02694915607571602, 0.07808693498373032, -0.0141646359115839, 0.006195863708853722, -0.01051552314311266, -0.02218025177717209, -0.005931601393967867, -0.025781791657209396, 0.009290602058172226, 0.010175434872508049, -0.03533506020903587, 0.02923468127846718, -0.011666330508887768, 0.010673108510673046, 0.008238114416599274, 0.010037404485046864, 0.030908796936273575, 0.00651547173038125, 0.0077498783357441425, 0.029897674918174744, 0.00684911897405982, -0.028157897293567657, -0.007676317356526852, -0.03836856782436371, 0.014288321137428284, 0.010258708149194717, -0.03912309929728508, -0.006515862420201302, 0.02150997519493103, 0.025019541382789612, -0.03445112332701683, -0.020045852288603783, 0.007682782597839832, -0.020236246287822723, -0.01699993759393692, 0.024360330775380135, -0.0127780856564641, 0.019223546609282494, 0.0007417245069518685, 0.014043446630239487, -0.01896659843623638, -0.01803061179816723, -0.0028752912767231464, -0.027503518387675285, 0.0065091075375676155, -0.0300323236733675, -0.007642422337085009, 0.015680404379963875, -0.001172571792267263, 0.01741192862391472, 0.016443829983472824, 0.0021059312857687473, -0.018615756183862686, 0.031082117930054665, -0.011037585325539112, 0.02406417764723301, 0.02422221377491951, 0.005265072453767061, 0.01784040406346321, -0.018959978595376015, -0.018366739153862, -0.011910008266568184, -0.027151305228471756, 0.009623371064662933, 0.0030803570989519358, -0.025605427101254463, -0.02639383263885975, -0.03335004299879074, -0.0025770985521376133, 0.015203265473246574, -0.023762885481119156, -1.3492084782740221e-8, -0.023378578945994377, 0.000018410306438454427, 0.02305307239294052, 0.002697860123589635, 0.049110300838947296, -0.024283340200781822, 0.011385113000869751, 0.004403560888022184, -0.020648300647735596, 0.02204507403075695, 0.01554214209318161, -0.002733428031206131, -0.0042172204703092575, 0.04046102613210678, -0.016795892268419266, -0.029044335708022118, 0.012525899335741997, -0.013134177774190903, 0.024837808683514595, 0.005004910286515951, 0.042655497789382935, 0.048034198582172394, 0.0272692684084177, 0.0004636852245312184, 0.021179746836423874, -0.01662273332476616, -0.014097963459789753, -0.043315332382917404, -0.008564638905227184, 0.0031600426882505417, -0.0020406332332640886, -0.027119824662804604, -0.022551748901605606, 0.003716286737471819, -0.03334299474954605, -0.013276487588882446, 0.005794559605419636, 0.031572125852108, -0.028565144166350365, 0.01572604477405548, -0.008249441161751747, -0.0018254176247864962, -0.003948135767132044, -0.0268755704164505, 0.001402513706125319, 0.025065138936042786, -0.027105582877993584, 0.038279417902231216, 0.03142363578081131, -0.04742635041475296, 0.008928421884775162, -0.014369278214871883, 0.03012511506676674, 0.08623287081718445, 0.026682037860155106, -0.03720977157354355, 0.0261918306350708, 0.013446974568068981, -0.00033432841883040965, 0.003972493577748537, -0.004219174850732088, 0.01547109056264162, -0.00146344059612602, -0.034274980425834656 ]
the-sunk-cost-fallacy
https://markhneedham.com/blog/2011/04/17/the-sunk-cost-fallacy
false
2011-04-07 19:18:04
Unix: Getting the sound from 'say' as a wav file
[ "software-development" ]
[ "Software Development" ]
I spent a bit of time yesterday afternoon working out how to get the output from the Unix command 'say' to be played whenever our build breaks. We're using http://ccnet.sourceforge.net/CCNET/CCTray.html[cctray] on a Windows box for that purpose which means that we need to have the file in the 'wav' format. Unfortunately 'say' doesn't seem to be able to output a file in that format: [source,text] ---- > say "WARNING! Drainage has occurred, please fix it. Drainage has occurred, please fix it." --output-file drain.wav Opening output file failed: fmt? ---- So I first converted it into a 'wmv': [source,text] ---- > say "WARNING! Drainage has occurred, please fix it. Drainage has occurred, please fix it." --output-file drain.wmv ---- And then converted it into a 'wav' via http://media.io/[media.io]. Sadly media.io doesn't seem to have an API so I can't fully automate it. If anyone knows a service that does have an API let me know!
null
null
[ 0.008847692050039768, 0.0037508367095142603, -0.015394452959299088, 0.04014315456151962, 0.09937364608049393, 0.024163952097296715, 0.006579025648534298, 0.041148893535137177, 0.03522335737943649, -0.02487448789179325, -0.010665716603398323, 0.025211157277226448, -0.05837881192564964, 0.025279859080910683, -0.010371112264692783, 0.05897850543260574, 0.05144450068473816, -0.013092379085719585, 0.05607081577181816, 0.009026060812175274, 0.01957053318619728, 0.047794416546821594, 0.015149691142141819, 0.021976938471198082, 0.021139519289135933, 0.022291358560323715, -0.0002378209464950487, -0.0039702728390693665, -0.056979697197675705, -0.026600904762744904, 0.03903094679117203, -0.004347485955804586, 0.03353377804160118, -0.0455801822245121, 0.01371852494776249, 0.019612863659858704, -0.047101981937885284, 0.010181221179664135, -0.003359916852787137, 0.03497454151511192, -0.06989283114671707, 0.003311171429231763, -0.023545481264591217, -0.023611117154359818, -0.038044653832912445, 0.05086950585246086, 0.0031574375461786985, -0.0085616335272789, -0.01971331797540188, -0.019050851464271545, -0.055324506014585495, 0.03903746232390404, -0.017301810905337334, -0.020444611087441444, 0.028267843648791313, 0.004946544766426086, -0.00016148465510923415, -0.07645843178033829, 0.015794171020388603, -0.018498849123716354, -0.007965469732880592, -0.03711695224046707, -0.002205874538049102, 0.016193481162190437, 0.02792500890791416, -0.04908532649278641, -0.0026627208571881056, 0.04078933969140053, -0.029597297310829163, -0.033635176718235016, -0.011231537908315659, 0.02527143433690071, -0.040726590901613235, -0.030350642278790474, 0.04063112288713455, -0.04057565703988075, 0.04118161275982857, 0.028001081198453903, 0.0019084294326603413, 0.05723041668534279, -0.025238286703824997, 0.026986096054315567, 0.027202291414141655, 0.02699798345565796, -0.005873407237231731, -0.04922892153263092, 0.005470736417919397, 0.0207056887447834, -0.06497657299041748, 0.06139780208468437, 0.028407208621501923, -0.04561847820878029, 0.004016263876110315, 0.014432392083108425, -0.02479163371026516, 0.023222919553518295, -0.008902187459170818, 0.0017454363405704498, 0.016069583594799042, -0.006537420209497213, -0.043184902518987656, -0.004712203983217478, -0.0010334696853533387, 0.0577368438243866, -0.06242338940501213, -0.003630365477874875, -0.020836446434259415, -0.03341370075941086, 0.013827170245349407, -0.00058342469856143, 0.010343849658966064, 0.0038091314490884542, 0.011957782320678234, -0.012198944576084614, -0.07568033039569855, 0.06407073140144348, 0.05298849195241928, -0.03836442530155182, 0.015457401983439922, 0.04690875858068466, 0.0499192476272583, 0.027630949392914772, 0.0021921603474766016, 0.08056759089231491, -0.004046413116157055, 0.004683461971580982, 0.014817464165389538, 0.036397818475961685, -0.027896400541067123, -0.07985174655914307, -0.026578335091471672, 0.06818278133869171, -0.005376024637371302, -0.0052104005590081215, 0.0038967481814324856, -0.0004314894904382527, 0.007895787246525288, -0.019272146746516228, 0.038917675614356995, 0.047089241445064545, -0.017131639644503593, -0.024773694574832916, 0.016762711107730865, -0.006329511292278767, 0.029526259750127792, 0.03361469879746437, -0.03754548728466034, -0.03443069010972977, -0.04188946262001991, 0.03807614743709564, 0.004301789216697216, -0.0009484898764640093, 0.06721750646829605, -0.04336128756403923, -0.01619463413953781, 0.06584537774324417, 0.034152548760175705, 0.02062506042420864, -0.02268369309604168, 0.015171869657933712, 0.033017490059137344, 0.04988839477300644, 0.028697723522782326, 0.03608063980937004, 0.010372950695455074, -0.022363578900694847, -0.004603374749422073, 0.011588700115680695, -0.02971477061510086, 0.020309263840317726, -0.060184743255376816, -0.0508582778275013, 0.061493169516325, -0.022936835885047913, -0.020654913038015366, 0.010443180799484253, 0.0969591736793518, 0.029904622584581375, 0.04053475707769394, 0.011504927650094032, -0.07557939738035202, 0.04553256556391716, -0.018732039257884026, 0.04665813222527504, 0.029760483652353287, -0.0010495007736608386, 0.05616471543908119, 0.02092870883643627, 0.03717833012342453, 0.018199985846877098, -0.06455626338720322, -0.09768879413604736, -0.02232118509709835, 0.012711410410702229, 0.04385308921337128, -0.023762591183185577, -0.007639747578650713, 0.02788175456225872, 0.027766674757003784, 0.042777638882398605, 0.018743975088000298, 0.0031945386435836554, 0.02492489665746689, -0.07925577461719513, -0.0669378861784935, 0.04429689049720764, 0.06321932375431061, -0.013050958514213562, -0.022729970514774323, -0.004179148934781551, -0.04438381642103195, -0.002774870488792658, 0.07212301343679428, -0.034901272505521774, 0.06971805542707443, 0.0006926244823262095, 0.017563486471772194, -0.02765241265296936, 0.034397296607494354, -0.05479620769619942, -0.009514778852462769, 0.010652885772287846, -0.029722195118665695, 0.016864275559782982, -0.009513466618955135, 0.11074124276638031, 0.06584558635950089, -0.0022342323791235685, -0.035889919847249985, -0.008838886395096779, -0.013822424225509167, -0.029389675706624985, -0.0359932966530323, 0.04317300021648407, -0.004798900336027145, 0.013304050080478191, -0.054443687200546265, -0.009870990179479122, 0.005556321237236261, -0.018302638083696365, 0.003452470526099205, 0.039939362555742264, 0.00803495105355978, 0.0412454716861248, 0.00786138977855444, -0.019704099744558334, 0.040381431579589844, -0.03235872834920883, -0.052887000143527985, -0.004625394474714994, 0.02954735979437828, 0.007636072114109993, 0.06750302016735077, -0.015587632544338703, -0.02870325930416584, -0.018775545060634613, -0.045820217579603195, 0.010954312980175018, 0.056748032569885254, 0.05728921666741371, -0.022195007652044296, 0.07514243572950363, 0.0004159960080869496, 0.020491721108555794, -0.03591533377766609, -0.03312036767601967, -0.044272009283304214, 0.01757151633501053, -0.007199542131274939, -0.00005707599484594539, 0.02670268341898918, 0.04590371996164322, 0.005146919749677181, -0.000799471337813884, 0.03170911595225334, -0.002982255769893527, 0.04260014742612839, -0.0019822833128273487, 0.004675352945923805, -0.024151727557182312, -0.0030541778542101383, 0.025065355002880096, -0.06752214580774307, -0.004181759897619486, 0.033392030745744705, -0.049119532108306885, 0.04347619414329529, -0.05726240575313568, -0.04400753974914551, -0.010085681453347206, -0.011589577421545982, 0.0016743575688451529, 0.013777781277894974, 0.03320511803030968, 0.06702016294002533, 0.008927538990974426, 0.013134805485606194, -0.021183526143431664, 0.016740994527935982, 0.044932298362255096, -0.004189313855022192, 0.01370457373559475, 0.05916805937886238, -0.021144434809684753, -0.0341181755065918, -0.06214945390820503, 0.008914745412766933, -0.047044750303030014, -0.2931613028049469, 0.05366112291812897, 0.021416805684566498, -0.02097606472671032, 0.06513449549674988, -0.04244134947657585, -0.0005563367158174515, -0.0431092195212841, -0.030027959495782852, 0.025071384385228157, -0.047596275806427, -0.02936704456806183, -0.009809042327105999, 0.023355629295110703, 0.006953181698918343, 0.000691746361553669, 0.005737260915338993, -0.05940258875489235, 0.03615550324320793, 0.011486833915114403, 0.0008904804708436131, -0.029260313138365746, 0.016668930649757385, 0.023484837263822556, 0.03426220640540123, 0.045633476227521896, -0.03587758168578148, 0.059283267706632614, -0.035821493715047836, -0.04062388092279434, -0.0008997201221063733, -0.016817376017570496, -0.0016819096636027098, 0.02619098126888275, -0.026324333623051643, -0.007437584921717644, 0.03827236220240593, 0.018646972253918648, 0.035187240689992905, -0.007797471713274717, -0.002412776229903102, -0.055432528257369995, 0.006695242132991552, -0.003301751334220171, 0.06723780930042267, -0.011706709861755371, -0.05149976909160614, -0.01053171418607235, -0.03907962143421173, 0.08372104912996292, -0.03664340451359749, -0.03410118445754051, -0.005653630010783672, 0.015553207136690617, -0.005151976365596056, 0.013963526114821434, 0.0156395323574543, 0.01116887480020523, -0.026853712275624275, -0.021439289674162865, -0.021323053166270256, -0.05203227698802948, -0.01753537543118, -0.05588080361485481, 0.009675336070358753, -0.04785024747252464, -0.05824444442987442, -0.027142396196722984, 0.08368529379367828, 0.03262794390320778, -0.019315537065267563, 0.0036841467954218388, -0.00890170969069004, -0.11285814642906189, -0.008186022751033306, -0.009225073270499706, -0.05717802047729492, -0.011833743192255497, 0.00008749186235945672, 0.03269293159246445, -0.057987578213214874, -0.04110882058739662, 0.03247419372200966, 0.00822782889008522, 0.0033886334858834743, -0.01941199228167534, 0.048903658986091614, -0.023365546017885208, -0.02310117892920971, -0.0008952184580266476, 0.06021412834525108, -0.02985416166484356, -0.022337745875120163, -0.022286536172032356, 0.005934196058660746, 0.029732655733823776, 0.0030460518319159746, 0.012439768761396408, 0.027283895760774612, 0.024483181536197662, 0.049485333263874054, -0.03851858526468277, 0.003214106895029545, -0.058684613555669785, -0.017643660306930542, -0.007042628712952137, -0.05325774848461151, 0.02080436982214451, 0.015525031834840775, 0.04286495968699455, 0.005821265745908022, -0.038818176835775375, 0.04908067733049393, -0.04889362305402756, -0.020543331280350685, -0.005284621845930815, 0.0018293235916644335, 0.027770357206463814, 0.05604718253016472, -0.02935193106532097, -0.01407562755048275, 0.008108481764793396, 0.020609106868505478, -0.008993552066385746, -0.04076850041747093, -0.01643446460366249, 0.015941480174660683, -0.0009829606860876083, -0.002922373590990901, 0.00705783162266016, -0.03713168948888779, -0.0018496112897992134, 0.04823066294193268, -0.038309890776872635, 0.026226677000522614, -0.036903832107782364, -0.040279339998960495, -0.03890587016940117, -0.004486368969082832, 0.016136091202497482, -0.0253521129488945, 0.0050990697927773, -0.003814988536760211, 0.002210994716733694, 0.05220656841993332, 0.012610777281224728, 0.009419761598110199, -0.006038850173354149, 0.03560620918869972, -0.025975361466407776, 0.004464014898985624, -0.07255109399557114, 0.006937770172953606, -0.03394777700304985, -0.0271214060485363, -0.0028973999433219433, 0.022082513198256493, -0.04421249032020569, -0.011982393451035023, -0.021769830957055092, 0.024387696757912636, -0.031461697071790695, -0.04807283356785774, -0.0178749468177557, -0.00847206637263298, 0.044752929359674454, 0.0060157873667776585, 0.014047572389245033, 0.005691046826541424, 0.018700839951634407, -0.007293142378330231, 0.022191045805811882, -0.051769886165857315, 0.0016362994210794568, -0.005039923824369907, 0.026603510603308678, 0.022177323698997498, 0.00972780305892229, 0.03517932817339897, 0.013470896519720554, 0.015430143103003502, -0.03264255076646805, 0.019794758409261703, -0.0017798779299482703, 0.04350915551185608, -0.010330603457987309, 0.005754872225224972, 0.028173986822366714, -0.024919841438531876, 0.00692251231521368, -0.03319377824664116, -0.012631549499928951, -0.01750434935092926, 0.009290365502238274, -0.020855963230133057, -0.05921870097517967, 0.045268721878528595, 0.006770756561309099, 0.013605976477265358, 0.004736050963401794, 0.016261544078588486, -0.004903258755803108, -0.032994527369737625, 0.0007043172372505069, 0.04891711845993996, -0.07713793218135834, 0.002832957776263356, -0.003654071129858494, -0.004008355550467968, -0.007949513383209705, 0.009648006409406662, -0.026235029101371765, -0.03149314224720001, -0.03127225860953331, 0.00970957800745964, -0.06524345278739929, -0.02818518877029419, -0.04130131006240845, 0.004944893065840006, -0.02634737826883793, -0.018355578184127808, -0.009541058912873268, 0.01110419537872076, 0.01010823342949152, -0.05322953313589096, 0.008228017017245293, -0.0523998849093914, -0.01081429235637188, 0.013837370090186596, 0.011037145741283894, 0.000717608374543488, -0.016722967848181725, 0.0430874228477478, 0.04000457003712654, -0.014439625665545464, -0.033661890774965286, -0.02686643972992897, -0.00920915324240923, -0.05337047576904297, 0.05098750442266464, -0.008002559654414654, 0.010286640375852585, -0.02742212638258934, -0.0052742441184818745, -0.005816964898258448, -0.00006577801832463592, -0.007205105386674404, -0.012316935695707798, -0.0031212642788887024, 0.06423695385456085, 0.003769013099372387, 0.02751809172332287, -0.020162714645266533, -0.06419866532087326, 0.039904385805130005, -0.10123390704393387, -0.0265534445643425, 0.009651596657931805, -0.042128175497055054, 0.054672423750162125, -0.004276007879525423, 0.011784888803958893, -0.05364187806844711, 0.028591401875019073, 0.03790410980582237, 0.0023100029211491346, 0.039284609258174896, 0.008161420933902264, 0.02800983563065529, -0.024802392348647118, -0.0016131126321852207, -0.10214601457118988, 0.006901277229189873, 0.017596779391169548, -0.012360893189907074, -0.052901241928339005, -0.0016573105240240693, -0.028274046257138252, 0.06398990750312805, -0.048134446144104004, -0.04359092935919762, 0.05428466200828552, -0.03156804293394089, 0.001588342129252851, 0.040507979691028595, -0.05055692791938782, 0.028920194134116173, 0.03687499091029167, -0.023515596985816956, -0.015207399614155293, -0.026944559067487717, 0.07163218408823013, -0.0016120905056595802, 0.017167551442980766, -0.021198689937591553, -0.009022445417940617, 0.06520792841911316, 0.02039974555373192, 0.015179552137851715, 0.04275476187467575, -0.006315997801721096, 0.0054904380813241005, 0.031527478247880936, -0.016617391258478165, 0.019680995494127274, -0.00027354960911907256, -0.04799431562423706, -0.05321904271841049, -0.0014364176895469427, 0.01702965795993805, 0.013773240149021149, -0.025196166709065437, 0.06078227981925011, 0.016551587730646133, -0.02944856509566307, -0.04237129166722298, 0.02092950977385044, -0.04894326999783516, -0.01400731410831213, -0.004191657993942499, 0.0054245335049927235, -0.06127772480249405, 0.048182412981987, 0.03121192194521427, 0.014138894155621529, 0.07534492760896683, 0.0005874289199709892, -0.023498475551605225, 0.029721533879637718, 0.06313877552747726, 0.07049597799777985, 0.03232242166996002, 0.026665184646844864, 0.04577134922146797, -0.06139073893427849, -0.03578181564807892, -0.009994998574256897, -0.0035283821634948254, -0.00727175734937191, -0.019978659227490425, 0.02637314982712269, 0.08523441106081009, -0.03778572008013725, 0.05588308349251747, 0.004510357044637203, -0.0019593460019677877, -0.0034814050886780024, 0.010008569806814194, -0.003395342966541648, 0.01635383628308773, 0.013167018070816994, 0.014123285189270973, 0.03757384791970253, -0.040299057960510254, 0.021192949265241623, 0.0001983536349143833, -0.015623783692717552, 0.022438038140535355, 0.01692751981317997, 0.01683839038014412, -0.0013464827788993716, 0.046554725617170334, 0.06962434947490692, -0.026231758296489716, 0.01452823169529438, -0.0022676242515444756, 0.027929648756980896, -0.02399839088320732, 0.01822824962437153, -0.01268797367811203, -0.01615472137928009, 0.015494856983423233, -0.014153821393847466, -0.05314583703875542, -0.0021910376381129026, -0.008879696018993855, 0.031344275921583176, -0.01235081534832716, 0.013089089654386044, -0.004306846298277378, 0.005271820817142725, 0.013666847720742226, -0.06412828713655472, -0.08564145863056183, -0.06576099991798401, -0.04309260472655296, -0.012482767924666405, 0.022899804636836052, -0.006569589488208294, -0.04900205507874489, -0.03504486009478569, -0.04222845658659935, -0.039461590349674225, -0.0038362164050340652, -0.03605521842837334, -0.04841802641749382, 0.02960755117237568, 0.03275294974446297, 0.012861931696534157, 0.004259801935404539, 0.05030100420117378, 0.016233550384640694, -0.01813061349093914, -0.02762370929121971, 0.025864364579319954, 0.02264302410185337, -0.023307476192712784, 0.026360753923654556, -0.0787663534283638, 0.03171490132808685, 0.02394922822713852, 0.01486058160662651, -0.08005950599908829, 0.015593418851494789, 0.03566998988389969, -0.018548304215073586, 0.07569345086812973, -0.017691126093268394, 0.005095264874398708, -0.034680720418691635, -0.002846668241545558, -0.02388705685734749, 0.009268318302929401, 0.05396373197436333, -0.019978484138846397, 0.08295963704586029, 0.0569850355386734, -0.0223563052713871, -0.042097367346286774, -0.008689670823514462, -0.005006269086152315, 0.021764487028121948, -0.027196502313017845, -0.01126196887344122, -0.012767828069627285, -0.08781251311302185, -0.01741696335375309, -0.010185519233345985, -0.023216690868139267, -0.03207673504948616, 0.026668917387723923, -0.037287142127752304, -0.03579096496105194, -0.0030324822291731834, -0.06377637386322021, -0.03631917014718056, 0.011247968301177025, -0.02795678935945034, -0.02213772013783455, 0.0639868900179863, 0.01397280115634203, -0.002070499351248145, 0.02591649815440178, -0.023771943524479866, -0.020490264520049095, -0.009239447303116322, 0.00966552458703518, 0.055101048201322556, -0.015060803852975368, -0.02502620778977871 ]
[ -0.07629416137933731, -0.02250453643500805, -0.0009553484269417822, -0.04107901453971863, 0.042452745139598846, -0.040486566722393036, -0.04110965505242348, -0.0030873895157128572, -0.01363055408000946, -0.023841669782996178, -0.005022834520787001, -0.04694751650094986, -0.021732689812779427, -0.015906009823083878, 0.08349538594484329, 0.037775445729494095, 0.024699877947568893, -0.04875288903713226, -0.009621030651032925, 0.016567036509513855, -0.005978364497423172, 0.005679597612470388, -0.01923328824341297, -0.0214494951069355, -0.038454052060842514, -0.000617883400991559, 0.03185738995671272, 0.001242656959220767, -0.024204596877098083, -0.1962052285671234, 0.005432468373328447, -0.008963335305452347, 0.022658763453364372, -0.00932395737618208, 0.026460571214556694, 0.028375055640935898, 0.018129684031009674, 0.008136921562254429, -0.04648954048752785, 0.06519388407468796, 0.029286760836839676, 0.032850347459316254, -0.040182698518037796, -0.06607034802436829, 0.031159834936261177, -0.0018403418362140656, 0.017757218331098557, -0.035789620131254196, 0.03851424530148506, 0.02119729109108448, -0.026644915342330933, 0.0029171728529036045, 0.020466575399041176, -0.05110984295606613, -0.03958069160580635, -0.0005319335614331067, 0.04023946076631546, 0.09085841476917267, 0.02194291539490223, -0.006683395244181156, 0.017466962337493896, -0.010126554407179356, -0.1624121367931366, 0.09243546426296234, 0.014414509758353233, 0.05242128297686577, -0.003557638032361865, -0.01074571255594492, -0.020763931795954704, 0.10090512782335281, -0.01034659892320633, -0.04244097322225571, -0.03499609977006912, 0.03705519065260887, 0.005787917412817478, -0.031715888530015945, 0.01622731052339077, 0.036142006516456604, -0.001756653655320406, -0.05060523375868797, -0.050625357776880264, -0.0024556894786655903, -0.039314720779657364, -0.033723630011081696, -0.06373603641986847, 0.011602687649428844, -0.015272164717316628, 0.09249083697795868, 0.022344516590237617, 0.008427399210631847, 0.0075713107362389565, -0.03208281099796295, 0.03436102345585823, 0.015993431210517883, -0.10502175241708755, -0.015166332945227623, 0.02020362950861454, 0.0031347170006483793, -0.03879190981388092, 0.4459435045719147, -0.03601406514644623, -0.03919752687215805, 0.05379360541701317, -0.014227650128304958, 0.021209875121712685, 0.021618185564875603, -0.005914624780416489, 0.0029887158889323473, -0.0014922763220965862, -0.012821811251342297, 0.010643516667187214, -0.010974504053592682, 0.06540125608444214, -0.04162589833140373, 0.034381553530693054, 0.015128642320632935, -0.0007459553307853639, -0.009208799339830875, -0.02434336394071579, -0.015089284628629684, -0.0007522616651840508, -0.01905808597803116, 0.03232666105031967, 0.02428267151117325, 0.04482724517583847, -0.05582870543003082, 0.04954785108566284, 0.05613129213452339, 0.04180291295051575, 0.007024435792118311, 0.024742379784584045, -0.056805696338415146, -0.03635808080434799, -0.005966189317405224, -0.004761346150189638, 0.0163135789334774, 0.036788903176784515, -0.040431126952171326, -0.017361516132950783, 0.01813283935189247, 0.010000818409025669, -0.05943375825881958, 0.0005545322201214731, 0.007277240976691246, -0.02443423494696617, 0.0838809683918953, -0.015751779079437256, -0.030127638950943947, -0.014564325101673603, -0.03694017976522446, -0.00518426951020956, 0.027032384648919106, 0.00539226271212101, -0.054507460445165634, 0.03395088389515877, 0.024667171761393547, 0.08153122663497925, -0.00830998457968235, -0.05514137074351311, 0.021646209061145782, 0.007657275069504976, -0.05345523729920387, -0.04467927664518356, 0.016383295878767967, 0.012687331065535545, -0.05436502397060394, -0.04437010735273361, 0.020128482952713966, 0.06405516713857651, -0.0690021961927414, -0.01841137185692787, -0.0012093227123841643, -0.0014375222381204367, -0.05258370190858841, 0.008127250708639622, -0.03690205514431, -0.027773922309279442, 0.03623449429869652, 0.05153109133243561, 0.02306489646434784, -0.019315524026751518, 0.0058717927895486355, -0.012448659166693687, 0.010319357737898827, -0.026461955159902573, -0.08752920478582382, -0.036706410348415375, -0.0045265196822583675, -0.00015233841259032488, 0.012475984171032906, -0.012253907509148121, -0.02711714804172516, -0.043225064873695374, 0.043590202927589417, -0.019508160650730133, -0.0010680215200409293, 0.011066689155995846, 0.04512133076786995, 0.004586523398756981, -0.032991744577884674, 0.004387452267110348, 0.0012438797857612371, -0.03896741941571236, 0.01478582713752985, -0.05813635513186455, 0.0248014647513628, 0.025179041549563408, -0.03445739299058914, 0.06954745948314667, 0.02409028261899948, -0.029105009511113167, -0.03844372183084488, 0.039215587079524994, 0.016865039244294167, -0.011070423759520054, -0.03348235785961151, -0.0074897813610732555, -0.00453208340331912, 0.029807616025209427, 0.04331740736961365, -0.02254696935415268, -0.044464390724897385, -0.04395420104265213, -0.3420729637145996, -0.03230798617005348, -0.021600689738988876, 0.025951042771339417, 0.051138781011104584, -0.0745784193277359, 0.024578861892223358, -0.0039689368568360806, 0.012208906002342701, 0.028527874499559402, 0.06966253370046616, -0.016711460426449776, 0.019772281870245934, -0.07760453224182129, 0.00974483322352171, 0.01857137680053711, -0.02671089768409729, -0.03665319085121155, 0.008939973078668118, 0.05125132203102112, 0.016946539282798767, -0.028642376884818077, -0.035978350788354874, -0.0632832869887352, -0.002892858814448118, -0.020960034802556038, 0.11619047075510025, 0.04461190477013588, 0.11236824095249176, -0.022701527923345566, 0.05312328413128853, 0.02388700097799301, 0.0069927433505654335, -0.11939837783575058, -0.02856905199587345, 0.037166494876146317, 0.0073644304648041725, 0.022192630916833878, -0.00375150004401803, -0.022247357293963432, -0.06373385339975357, 0.011527186259627342, -0.057208478450775146, -0.0445539765059948, -0.018485797569155693, 0.005688888486474752, -0.009726249612867832, -0.0009133191779255867, -0.0321807935833931, 0.06105366721749306, 0.014327860437333584, 0.009224120527505875, -0.01008282694965601, 0.02839001454412937, 0.018613426014780998, -0.010954740457236767, -0.045872267335653305, 0.004818177316337824, 0.036196641623973846, -0.04559573903679848, 0.05230368673801422, 0.055699173361063004, 0.05703737214207649, -0.054527655243873596, -0.03241756558418274, 0.027581270784139633, 0.012265141122043133, 0.001976408762857318, 0.040005359798669815, -0.01925366185605526, -0.011863881722092628, 0.0944286435842514, -0.028224097564816475, 0.018014121800661087, 0.01722305454313755, 0.05785737186670303, -0.01789580099284649, -0.014011027291417122, -0.02456112764775753, -0.045605916529893875, 0.03832584246993065, 0.00224235188215971, 0.05172263830900192, -0.05052250623703003, -0.003379084635525942, 0.07296624779701233, -0.026442404836416245, -0.01610100455582142, 0.05172273889183998, -0.0022093418519943953, -0.006817745044827461, -0.006629802752286196, 0.019399922341108322, -0.09519795328378677, 0.055752936750650406, -0.009596235118806362, -0.2569037079811096, 0.023765722289681435, 0.07371640205383301, 0.04120098799467087, -0.0364069864153862, -0.000901324616279453, 0.019168106839060783, -0.006676192861050367, -0.026797764003276825, 0.048351939767599106, -0.012456031516194344, 0.025442183017730713, -0.04700366035103798, -0.011227227747440338, 0.020421970635652542, -0.02307034470140934, 0.07147108763456345, 0.022774165496230125, -0.000676516501698643, 0.015493903309106827, 0.011160559020936489, -0.02434208244085312, 0.14494846761226654, 0.025358743965625763, 0.028808820992708206, -0.01170613244175911, -0.008621465414762497, 0.038766562938690186, 0.07478286325931549, 0.007546279579401016, 0.012845808640122414, 0.002510656137019396, 0.012726498767733574, -0.0066916500218212605, 0.03868759423494339, -0.04648764058947563, -0.036603763699531555, 0.05994916334748268, 0.030892202630639076, 0.01750996522605419, -0.025545112788677216, 0.031068578362464905, -0.018238039687275887, 0.01769636943936348, 0.04123027250170708, 0.01342105958610773, 0.024865619838237762, -0.03334403783082962, -0.03633589297533035, 0.026681935414671898, -0.03181080520153046, -0.024677453562617302, 0.032929327338933945, -0.030128104612231255, 0.0239497572183609, 0.07261479645967484, 0.012284326367080212, -0.04504445940256119, 0.03009653277695179, 0.03022129274904728, 0.0018118562875315547, -0.05005576089024544, 0.1331583559513092, 0.00597412372007966, 0.02139417827129364 ]
[ 0.006261351518332958, 0.034622106701135635, 0.012450852431356907, 0.04821355268359184, 0.014266062527894974, -0.017436159774661064, -0.0180404894053936, 0.03663770109415054, 0.012890156358480453, 0.020756756886839867, -0.03198491409420967, -0.02644907496869564, 0.004267685580998659, 0.010786066763103008, -0.005936398170888424, 0.006329594179987907, -0.04909399896860123, -0.006177987437695265, 0.027369484305381775, -0.03690362349152565, -0.014266121201217175, 0.052621208131313324, 0.0437876358628273, -0.06166282668709755, -0.00883815810084343, 0.04692656174302101, -0.025130759924650192, 0.033046234399080276, 0.031872861087322235, -0.12533977627754211, -0.023449992761015892, -0.018837740644812584, 0.008929736912250519, -0.028475245460867882, -0.0011826069094240665, -0.00312411948107183, -0.003925396129488945, 0.04747592657804489, -0.05057087168097496, -0.015300650149583817, -0.001813194714486599, 0.02622092328965664, 0.05676749721169472, -0.00007426999945892021, -0.02433921955525875, 0.003886917605996132, -0.036298688501119614, -0.01621999777853489, -0.05245734378695488, 0.001569619169458747, 0.01956908218562603, 0.0018626340897753835, 0.025215087458491325, 0.02450285106897354, 0.009180755354464054, -0.014743927866220474, -0.006856382358819246, 0.012336808256804943, 0.00920351967215538, -0.023969879373908043, -0.010670602321624756, -0.009376654401421547, -0.042280156165361404, -0.05103599280118942, 0.021901657804846764, 0.003887661499902606, -0.040267348289489746, 0.014102802611887455, -0.006725545972585678, 0.003394313622266054, -0.05449824780225754, 0.033906783908605576, -0.06526298075914383, -0.04195398464798927, 0.021588189527392387, 0.022700196132063866, 0.04925548657774925, -0.0026087951846420765, -0.009389357641339302, -0.007982051931321621, -0.0052374377846717834, 0.0351431630551815, 0.007896674796938896, -0.009501611813902855, 0.0263025164604187, 0.01886030286550522, -0.0020632618106901646, 0.005867470521479845, 0.011790483258664608, -0.002105042105540633, -0.06907647103071213, -0.010424778796732426, -0.0061437636613845825, 0.05626842379570007, -0.06476959586143494, 0.014636334963142872, 0.010023115202784538, -0.04873434454202652, 0.026265205815434456, 0.8097838163375854, -0.005815526470541954, -0.013926510699093342, 0.026407012715935707, -0.009449723176658154, 0.038006678223609924, -0.04569019004702568, 0.014487764798104763, 0.07387057691812515, 0.04765603691339493, -0.05350763350725174, 0.015101248398423195, -0.02659633569419384, 0.015577117912471294, 0.004926665220409632, 0.05944078415632248, 0.014657320454716682, 0.0013242779532447457, 0.017050080001354218, -0.04036292806267738, 0.015139651484787464, -0.02304551564157009, -0.03513543680310249, -0.05758554860949516, -0.011531085707247257, 0.013204075396060944, -0.1642521172761917, 0.05006213113665581, -7.16423105334287e-33, -0.004125168081372976, -0.05772169306874275, 0.011899597011506557, 0.02373119257390499, 0.048992592841386795, -0.012987357564270496, 0.028622929006814957, 0.01756691187620163, -0.004229114390909672, -0.03410786762833595, 0.00754674943163991, -0.036989543586969376, -0.017625637352466583, -0.027224209159612656, -0.004985694773495197, -0.007312273606657982, -0.02858564257621765, 0.010960516519844532, -0.016977278515696526, -0.00231481296941638, 0.009274264797568321, 0.0016046545933932066, 0.02995346300303936, -0.000362126826075837, 0.02362520433962345, -0.020871806889772415, 0.04636050760746002, -0.002555776620283723, 0.03121352195739746, -0.06433798372745514, -0.028829868882894516, 0.011183307506144047, 0.006159085314720869, -0.07114683836698532, -0.021772660315036774, -0.042813125997781754, -0.04481349140405655, 0.007565228268504143, -0.041511695832014084, -0.023607980459928513, -0.017672641202807426, -0.0059675658121705055, -0.016077760607004166, 0.03667481988668442, -0.014579330570995808, -0.01623344048857689, -0.02195899747312069, 0.038217172026634216, -0.007643084041774273, 0.017113568261265755, 0.013415372930467129, 0.08419647067785263, -0.025065958499908447, 0.04204723238945007, 0.029103469103574753, 0.016182109713554382, 0.021274082362651825, 0.008738335222005844, -0.012539896182715893, -0.013955943286418915, 0.03745264187455177, 0.009545665234327316, -0.02835143730044365, 0.011006087996065617, -0.03443388640880585, -0.011467245407402515, 0.03428800404071808, 0.01639213040471077, 0.0023782222997397184, 0.011411470361053944, -0.01680396869778633, 0.0011549877235665917, -0.03145181015133858, -0.022557569667696953, 0.017844296991825104, 0.01906287670135498, 0.026906440034508705, -0.01463767047971487, 0.039728570729494095, 0.03004351817071438, 0.010085267014801502, -0.013904319144785404, -0.003571988781914115, -0.0444679893553257, -0.02365417405962944, 0.01047934964299202, -0.009496266953647137, -0.07251068949699402, 0.0043961587361991405, 0.030050795525312424, -0.014167463406920433, 0.06649149954319, -0.018511857837438583, 0.00020215478434693068, -0.02433132380247116, 7.586040303404155e-33, -0.0009177600732073188, 0.024586200714111328, -0.009466728195548058, -0.020575279369950294, 0.006427515763789415, -0.014373460784554482, -0.032936204224824905, 0.021832402795553207, -0.013397220522165298, -0.004095321986824274, -0.006873791571706533, 0.022437412291765213, -0.05151540786027908, 0.01502236444503069, 0.030864709988236427, -0.034616868942976, 0.002564091235399246, 0.007131613790988922, 0.05944233015179634, 0.030088314786553383, 0.01908736303448677, 0.01592244580388069, 0.01085643470287323, 0.007207015994936228, -0.01761954464018345, 0.06446237862110138, 0.011446607299149036, 0.028768645599484444, 0.00844395998865366, -0.004900560714304447, 0.006313439924269915, -0.01962038315832615, -0.001064112177118659, -0.031225234270095825, 0.01012357883155346, 0.033567316830158234, 0.04753134399652481, -0.0022095765452831984, -0.028845932334661484, 0.019407065585255623, 0.012119424529373646, 0.014124291017651558, -0.03392786160111427, -0.012437543831765652, -0.01314296294003725, 0.031312137842178345, 0.012229138053953648, -0.013330414891242981, -0.009069759398698807, 0.03737843036651611, 0.011767514050006866, -0.017434338107705116, 0.01189858466386795, 0.04176359251141548, 0.016297155991196632, -0.008834278210997581, -0.01629406027495861, 0.023889368399977684, -0.03376033529639244, 0.000672622409183532, -0.01710021309554577, 0.019342249259352684, -0.016165748238563538, -0.03005240485072136, -0.04920047149062157, 0.04428988695144653, -0.01985645480453968, 0.01414518617093563, 0.0274114478379488, -0.008405032567679882, -0.026144780218601227, -0.010820391587913036, -0.011401471681892872, 0.013391563668847084, -0.000969584274571389, -0.012213589623570442, 0.012649353593587875, -0.03585414960980415, -0.05562688410282135, -0.019916994497179985, 0.020887408405542374, 0.019319666549563408, 0.013592885807156563, -0.008460013195872307, 0.023778613656759262, 0.015171377919614315, -0.023960880935192108, -0.04562017321586609, 0.03533869981765747, 0.057740189135074615, 0.010344035923480988, 0.0018296089256182313, -0.005409043747931719, -0.013350318185985088, -0.03161303699016571, -1.279505035256534e-8, -0.04666904732584953, 0.0074378312565386295, -0.031362272799015045, 0.0201271865516901, -0.020804423838853836, 0.01057711336761713, 0.018373539671301842, -0.002602615859359503, -0.010309815406799316, 0.02483009546995163, 0.04189083352684975, -0.05613121762871742, 0.0179800633341074, 0.029567113146185875, 0.020018402487039566, 0.00565089238807559, -0.0316898450255394, 0.0075049321167171, 0.018128395080566406, -0.041196178644895554, -0.019965196028351784, 0.03494954854249954, 0.02331347018480301, 0.018720414489507675, 0.009932727552950382, -0.017112499102950096, 0.017457308247685432, -0.10373705625534058, -0.03288601338863373, -0.01301844883710146, 0.002487814985215664, -0.003823419800028205, -0.024242157116532326, 0.0373128317296505, 0.020944911986589432, -0.010801378637552261, -0.009988615289330482, -0.02764158509671688, -0.03703979402780533, 0.04863879457116127, 0.00664538936689496, 0.04217112436890602, -0.010688203386962414, -0.015357127413153648, 0.006752752233296633, -0.04016251116991043, -0.034940268844366074, 0.020022444427013397, 0.007287816610187292, -0.025723082944750786, 0.04058144986629486, 0.012314597144722939, -0.0033409660682082176, 0.03492707014083862, 0.018649714067578316, 0.016576040536165237, 0.022699033841490746, 0.011526985093951225, -0.03284461796283722, 0.021314898505806923, -0.0012670382857322693, 0.02210710197687149, 0.02857854962348938, -0.018723798915743828 ]
unix-getting-the-sound-from-say-as-a-wav-file
https://markhneedham.com/blog/2011/04/07/unix-getting-the-sound-from-say-as-a-wav-file
false
2011-04-09 10:54:59
HTML encoding/escaping with StringTemplate and Spring MVC
[ "software-development" ]
[ "Software Development" ]
Last week my colleague T.C. and I had to work out how to HTML encode the values entered by the user when redisplaying those onto the page to prevent a cross site scripting attack on the website. I wrote a blog post a couple of years ago http://www.markhneedham.com/blog/2009/02/12/aspnet-mvc-preventing-xss-attacks/[describing how to do this in ASP.NET MVC] and the general idea is that we need to have a custom renderer which HTML encodes any strings that pass through it. In our case this means that we needed to write a custom renderer for String Template and hook that into Spring MVC. We already had a view class +++<cite>+++StringTemplateView+++</cite>+++ so we needed to add to that class and add our custom renderer. The viewResolver was defined like so: [source,java] ---- @Bean public ViewResolver viewResolver() { InternalResourceViewResolver viewResolver = new InternalResourceViewResolver(); viewResolver.setPrefix("/WEB-INF/templates/"); viewResolver.setViewClass(StringTemplateView.class); viewResolver.setSuffix(".st"); return viewResolver; } ---- And after some guidance from http://twitter.com/jimbarritt[Jim] we changed +++<cite>+++StringTemplateView+++</cite>+++ to look like this: [source,java] ---- public class StringTemplateView extends InternalResourceView { @Override protected void renderMergedOutputModel(Map<String, Object> model, HttpServletRequest request, HttpServletResponse response) throws Exception { String templateRootDir = format("%s/WEB-INF/templates", getServletContext().getRealPath("/")); StringTemplateGroup group = new StringTemplateGroup("view", templateRootDir); StringTemplate template = group.getInstanceOf(getBeanName()); AttributeRenderer htmlEncodedRenderer = new HtmlEncodedRenderer(); template.registerRenderer(String.class, htmlEncodedRenderer); ... } private class HtmlEncodedRenderer implements AttributeRenderer { @Override public String toString(Object o) { return HtmlUtils.htmlEscape(o.toString()); } @Override public String toString(Object o, String formatName) { return HtmlUtils.htmlEscape(o.toString()); } } } ---- At the moment we want to HTML encode everything that we render through StringTemplate but if that changes then we could http://www.antlr.org/wiki/display/ST/Object+rendering[make use of the formatName parameter] which we're currently ignoring. In retrospect this looks pretty simple to do but my Googling skills were pretty much failing me at the time so I thought it'd be good to document.
null
null
[ -0.0003828147309832275, -0.02097243070602417, -0.009417892433702946, 0.04052749648690224, 0.0792773887515068, -0.01930621638894081, 0.033894363790750504, 0.027974270284175873, 0.0009746914729475975, -0.032841939479112625, -0.02021215483546257, -0.020924702286720276, -0.047597020864486694, 0.019041087478399277, -0.0494462214410305, 0.09011906385421753, 0.050711143761873245, -0.010192767716944218, 0.020298663526773453, -0.008179881609976292, 0.008952195756137371, 0.04525010287761688, 0.004992480389773846, 0.03094533085823059, 0.04679422453045845, 0.03450974076986313, -0.011554193682968616, 0.0062855607829988, -0.06693007797002792, -0.007341500837355852, 0.03307384252548218, 0.023483721539378166, 0.011053810827434063, -0.01213880442082882, 0.007412351202219725, -0.023180581629276276, -0.01702134869992733, 0.0003926026402041316, 0.002420989563688636, 0.011751744896173477, -0.07312998175621033, 0.014598816633224487, -0.009062105789780617, 0.012865160591900349, -0.03071034885942936, -0.02648005075752735, -0.009073624387383461, 0.021771926432847977, -0.04014689847826958, -0.00893231388181448, -0.06679695844650269, 0.04466961324214935, -0.033137258142232895, 0.006139740813523531, 0.018610628321766853, 0.05437054857611656, 0.009265037253499031, -0.07049586623907089, 0.023340564221143723, -0.07758612930774689, 0.002565437462180853, -0.015227326191961765, 0.004829229321330786, 0.03750842064619064, -0.00412787077948451, 0.019652532413601875, -0.0175364688038826, 0.05226235091686249, -0.04352207109332085, -0.037144988775253296, 0.013641521334648132, 0.011181154288351536, -0.012862089090049267, 0.013073641806840897, 0.018025198951363564, -0.034736018627882004, -0.008498172275722027, 0.033766329288482666, -0.009731256403028965, 0.047686465084552765, -0.0069740936160087585, 0.006821082439273596, 0.015370338223874569, 0.019388899207115173, 0.012718027457594872, -0.04884577542543411, -0.02832304872572422, 0.0166276004165411, -0.016611680388450623, 0.04777277633547783, 0.01852218620479107, -0.02360263466835022, 0.015457693487405777, 0.03202279657125473, 0.013957658782601357, 0.00634719617664814, -0.005810230504721403, 0.00383157841861248, -0.01140556763857603, 0.006285686977207661, -0.017074938863515854, -0.015000858344137669, 0.03319934755563736, 0.01713939942419529, -0.08777281641960144, 0.013184544630348682, -0.04028144106268883, -0.0034555778838694096, 0.004898010287433863, -0.005723769310861826, -0.053593095391988754, 0.006811780389398336, -0.035848468542099, -0.015333686955273151, -0.04476100951433182, 0.06207570433616638, 0.00833715870976448, -0.008429463021457195, 0.013110151514410973, 0.03738907724618912, 0.033220324665308, 0.010862142778933048, -0.014452639035880566, 0.08430267125368118, 0.013759540393948555, 0.040489789098501205, -0.020894523710012436, 0.064680315554142, -0.02739187330007553, -0.06804333627223969, -0.005806164816021919, 0.04757547006011009, 0.01082210149616003, 0.01702839508652687, 0.004624471068382263, -0.02323242276906967, 0.004613690543919802, -0.0023069188464432955, 0.02401566691696644, 0.023105423897504807, -0.03860143944621086, -0.03892340511083603, -0.002527486765757203, -0.007323399186134338, 0.028749000281095505, 0.024549948051571846, -0.011217030696570873, -0.022373739629983902, -0.033775731921195984, 0.037064820528030396, 0.021368997171521187, 0.005352702457457781, 0.04939483478665352, -0.019398121163249016, -0.0009108649101108313, 0.08628693222999573, 0.04387551173567772, 0.003108091652393341, 0.002487911842763424, 0.019044727087020874, 0.037673160433769226, 0.010448669083416462, -0.01513749547302723, 0.053765539079904556, 0.010424775071442127, 0.02129368484020233, -0.027958806604146957, 0.03793187439441681, 0.0072814831510186195, -0.047192323952913284, -0.07724054902791977, -0.052769050002098083, 0.04383217543363571, -0.05273154750466347, 0.00022924727818462998, 0.041841257363557816, 0.044572506099939346, 0.009354999288916588, 0.07338790595531464, 0.016228754073381424, -0.06780409067869186, 0.0204007551074028, 0.023372197523713112, 0.022897539660334587, 0.026834862306714058, 0.012948949821293354, 0.07562224566936493, 0.0484069362282753, -0.003968334756791592, 0.049583565443754196, -0.09879697114229202, -0.07694756984710693, -0.05818851664662361, -0.005968845449388027, 0.06270714849233627, -0.025153718888759613, -0.010560235008597374, 0.08529144525527954, 0.026383129879832268, 0.034712206572294235, 0.029843641445040703, -0.012768532149493694, 0.019268782809376717, -0.031695522367954254, -0.05029786005616188, 0.010755381546914577, 0.053241461515426636, -0.013392974622547626, -0.05554217845201492, 0.0004592478508129716, -0.024903466925024986, -0.01789732277393341, 0.03226650878787041, -0.004717979114502668, 0.02357213757932186, 0.016297362744808197, 0.02259356714785099, -0.028540655970573425, 0.04496929794549942, -0.07704436779022217, 0.03289065882563591, -0.022970853373408318, -0.018996037542819977, -0.014560977928340435, -0.003496770979836583, 0.14428290724754333, 0.02403036504983902, -0.011810257099568844, -0.059629738330841064, 0.01920047029852867, -0.011372163891792297, -0.05226992443203926, 0.011599392630159855, -0.020640522241592407, 0.0012253782479092479, 0.016661008819937706, -0.04709238186478615, -0.008841547183692455, 0.007012676913291216, -0.035485267639160156, 0.028385451063513756, 0.08387884497642517, -0.02975982241332531, 0.05222754552960396, -0.025900617241859436, -0.005667037330567837, -0.024352185428142548, -0.03431978449225426, -0.044189270585775375, -0.005451519042253494, 0.028073422610759735, -0.0006564987706951797, 0.025191418826580048, -0.028358958661556244, -0.038834791630506516, -0.011120589450001717, -0.04974175989627838, 0.005299474112689495, 0.03686698526144028, 0.07257290929555893, -0.01525819581001997, 0.054497819393873215, -0.010727166198194027, 0.018078042194247246, -0.02041415125131607, -0.04102958366274834, -0.002719242824241519, -0.006843050010502338, 0.026350952684879303, 0.04353821650147438, 0.014109588228166103, 0.025152796879410744, 0.012228194624185562, 0.020171720534563065, -0.02853996492922306, -0.01564960554242134, 0.020131532102823257, -0.01101530622690916, -0.012252869084477425, -0.02278321422636509, -0.027945587411522865, 0.04627430811524391, -0.012171031907200813, -0.07791205495595932, 0.015864526852965355, -0.0914359763264656, 0.02929743193089962, -0.052943434566259384, -0.06342611461877823, 0.004478588234633207, 0.03343619406223297, 0.02946760505437851, 0.024787727743387222, 0.03899436816573143, 0.07587399333715439, 0.005704044364392757, -0.00892048329114914, 0.011670415289700031, -0.00116983603220433, 0.032452184706926346, -0.04414820298552513, -0.002287984825670719, 0.042783353477716446, -0.024394890293478966, -0.001413314719684422, -0.045922160148620605, 0.026315925642848015, -0.035829056054353714, -0.2813599407672882, 0.03534884378314018, 0.018189135938882828, -0.04668809473514557, 0.038573261350393295, -0.0191646758466959, 0.03844461962580681, -0.06307875365018845, 0.0033894898369908333, 0.025735609233379364, -0.02330901101231575, -0.02870054356753826, -0.03393794596195221, 0.02840684913098812, -0.022525722160935402, -0.0012362420093268156, 0.008372868411242962, -0.025189215317368507, 0.0337720662355423, 0.00951342098414898, 0.014218303374946117, -0.08134980499744415, 0.020917434245347977, 0.02714935876429081, 0.050779372453689575, 0.05055084079504013, -0.08391335606575012, 0.06550023704767227, -0.006926848087459803, 0.007310082670301199, 0.02394544892013073, -0.022603359073400497, 0.017684437334537506, -0.025632791221141815, -0.03598785027861595, -0.026585150510072708, 0.02487759105861187, 0.029990144073963165, 0.00003201480649295263, 0.011806627735495567, -0.030559899285435677, -0.060813046991825104, 0.009050028398633003, -0.021288534626364708, 0.06329847872257233, -0.01259851548820734, -0.054901160299777985, -0.0010682853171601892, -0.02046002633869648, 0.07346122711896896, -0.014596096239984035, -0.06304249167442322, 0.024590779095888138, 0.03126142546534538, -0.02950931154191494, -0.043121226131916046, 0.011716482229530811, -0.00866283755749464, -0.054777249693870544, -0.05261385813355446, 0.02615286596119404, -0.05235496535897255, -0.016484810039401054, -0.04050436615943909, 0.007562766782939434, -0.05289183557033539, -0.0387868769466877, -0.024151576682925224, 0.07478343695402145, 0.054775066673755646, -0.010108438320457935, 0.01941569708287716, 0.008370425552129745, -0.10907206684350967, 0.024642709642648697, -0.04848114401102066, -0.03511013835668564, -0.032688967883586884, -0.03527342155575752, 0.035000577569007874, -0.02619762346148491, -0.030708178877830505, 0.015517227351665497, 0.016128191724419594, 0.009701711125671864, -0.017659328877925873, 0.03171059861779213, -0.009423620067536831, -0.0032799162436276674, -0.005733016412705183, 0.07320898771286011, -0.019532930105924606, -0.013027728535234928, -0.034270189702510834, -0.0028280902188271284, 0.03545527532696724, 0.04712079092860222, -0.018564041703939438, 0.0038519161753356457, 0.015850434079766273, 0.025932861492037773, -0.05447935685515404, 0.02681001089513302, -0.03619004786014557, -0.0011323037324473262, -0.024156877771019936, -0.05265484005212784, 0.018425187095999718, 0.024828504770994186, 0.008047171868383884, -0.015519739128649235, -0.02771328203380108, -0.006403387989848852, -0.05622991546988487, -0.043326690793037415, 0.0014258399605751038, 0.008459758944809437, 0.009271754883229733, 0.002106765750795603, -0.05569768697023392, -0.03347538039088249, 0.013374444097280502, 0.00827579852193594, -0.004320317879319191, -0.054270289838314056, -0.04233897477388382, 0.013943523168563843, -0.02137039788067341, -0.0006911015952937305, 0.025182386860251427, -0.01551808975636959, 0.0214126817882061, -0.003057336201891303, -0.017687419429421425, 0.011769231408834457, -0.008932766504585743, -0.009243073873221874, -0.02646108902990818, -0.02140100859105587, 0.006675833370536566, 0.008034284226596355, 0.030113615095615387, 0.013174411840736866, 0.015251681208610535, 0.06896401196718216, -0.016387347131967545, 0.03814972937107086, -0.001534207258373499, -0.023548686876893044, 0.03520894795656204, 0.0033967322669923306, -0.04620802029967308, 0.0038709347136318684, -0.0185539647936821, -0.03635561093688011, -0.030919041484594345, 0.03328653424978256, -0.03165707364678383, -0.013545215129852295, -0.028775988146662712, 0.025675473734736443, -0.057114582508802414, -0.03320365399122238, 0.0002360842190682888, -0.002458800096064806, 0.04324191436171532, -0.02063165046274662, 0.04972197115421295, 0.009101038798689842, -0.02024077996611595, 0.028126658871769905, 0.01052662543952465, 0.0015264813555404544, 0.022799689322710037, 0.002679693978279829, 0.00496375048533082, 0.0020783795043826103, 0.03861774876713753, 0.030559968203306198, 0.04369473457336426, 0.02827833592891693, -0.015301782637834549, 0.032971613109111786, 0.0416526198387146, 0.03722004592418671, -0.0005126261967234313, -0.027228713035583496, -0.008112712763249874, -0.011831439100205898, -0.01796284131705761, -0.025961652398109436, -0.009651187807321548, -0.03753015398979187, 0.02442745491862297, -0.016304248943924904, -0.08245368301868439, -0.0009779027896001935, -0.010882925242185593, 0.02162405103445053, -0.003895754460245371, 0.00328295910730958, 0.014715179800987244, -0.0025579268112778664, 0.0205378457903862, 0.013542511500418186, -0.044196516275405884, 0.011451169848442078, -0.013593610376119614, -0.029298746958374977, 0.028842143714427948, 0.017065247520804405, -0.041030701249837875, 0.028205281123518944, 0.007931612432003021, 0.007005234248936176, -0.04336675629019737, -0.019416483119130135, -0.0062051559798419476, 0.03198929876089096, 0.017083890736103058, 0.020490869879722595, -0.005665789358317852, 0.005241612438112497, -0.0009876471012830734, -0.016239352524280548, -0.001112039783038199, -0.01624053157866001, -0.000030937408155296, 0.018875518813729286, -0.043616265058517456, 0.030556030571460724, -0.02490023709833622, 0.014091050252318382, 0.028158167377114296, -0.0026357669848948717, -0.03445406258106232, -0.05639796331524849, 0.02916373312473297, 0.03341035172343254, 0.05618395656347275, 0.02012578211724758, -0.02332489565014839, -0.04965538904070854, 0.029864124953746796, -0.008142498321831226, 0.03004422038793564, -0.009647256694734097, 0.00114838604349643, 0.0466294102370739, 0.044807832688093185, 0.03714277222752571, 0.02938464656472206, -0.025502808392047882, -0.015657301992177963, 0.07214156538248062, -0.07256840914487839, -0.038371339440345764, -0.02787558175623417, -0.05244573950767517, 0.020059429109096527, 0.012301146984100342, 0.059177499264478683, -0.017524244263768196, 0.03916801139712334, 0.0368100143969059, -0.0060527510941028595, 0.01901675947010517, 0.01158581767231226, 0.04239579662680626, -0.02250557765364647, -0.00985755492001772, -0.08874780684709549, 0.004784776829183102, 0.052246756851673126, 0.012714358977973461, -0.01134253665804863, -0.03699244186282158, -0.04761504754424095, 0.03006552904844284, -0.07518995553255081, -0.03739585727453232, 0.004444052930921316, 0.015279536135494709, -0.012369307689368725, -0.004753986373543739, -0.05745304003357887, 0.06068810075521469, 0.039395157247781754, -0.05209511145949364, -0.04345626011490822, -0.04822865128517151, 0.06218302622437477, 0.015230728313326836, 0.000015541105312877335, -0.045524779707193375, 0.017817901447415352, 0.060278136283159256, 0.0355074517428875, 0.009305712766945362, 0.050051480531692505, -0.03378549963235855, 0.01411131490021944, 0.024615982547402382, -0.018519466742873192, -0.007983081974089146, 0.00424673268571496, 0.0015377093805000186, -0.08499948680400848, 0.016634512692689896, 0.014359980821609497, -0.04031195119023323, -0.05589062720537186, 0.059184085577726364, 0.030083714053034782, -0.0037978156469762325, -0.03578629717230797, -0.015408433973789215, -0.02400818280875683, -0.027601109817624092, -0.02521447092294693, 0.033052559942007065, -0.04279156029224396, 0.06907350569963455, -0.0032903491519391537, 0.0019679199904203415, 0.08017725497484207, 0.007646574638783932, -0.005185262765735388, -0.035732485353946686, 0.07419228553771973, 0.07810934633016586, 0.047415681183338165, -0.0216009933501482, 0.06179915741086006, -0.028431588783860207, -0.052419550716876984, 0.000981717836111784, -0.022300776094198227, -0.010424282401800156, -0.028675736859440804, -0.0006704771076329052, 0.07271666824817657, 0.0020569642074406147, 0.06131584569811821, -0.015959955751895905, -0.0218654815107584, -0.010518868453800678, 0.033855095505714417, 0.029389068484306335, 0.011130688712000847, 0.021383043378591537, 0.012306422926485538, -0.01083108689635992, -0.04281127080321312, 0.027362670749425888, -0.01591642014682293, -0.008714565075933933, 0.027408452704548836, 0.01866775192320347, 0.014598054811358452, -0.013793864287436008, 0.027361812070012093, 0.07172531634569168, -0.009260407648980618, -0.017273467034101486, -0.0014522396959364414, 0.021627740934491158, 0.016783742234110832, 0.00038326552021317184, -0.012761304154992104, -0.023174509406089783, -0.045768480747938156, -0.018864821642637253, -0.01218112837523222, -0.028721043840050697, -0.03046441450715065, 0.04640921577811241, -0.04177699610590935, 0.016591835767030716, 0.01024051196873188, -0.012281866744160652, -0.06679684668779373, -0.059546783566474915, -0.06274489313364029, -0.03915700316429138, -0.08167654275894165, -0.028906909748911858, 0.011163828894495964, -0.012698771432042122, -0.050833746790885925, -0.00888348650187254, -0.02664656564593315, 0.0025919910985976458, 0.05328616127371788, -0.008400722406804562, -0.02491200529038906, 0.006128259934484959, 0.027018966153264046, 0.03518898785114288, 0.026821162551641464, 0.04722147807478905, -0.00915455725044012, -0.003513208357617259, -0.018710380420088768, -0.02099604159593582, 0.055461350828409195, -0.007945239543914795, 0.005357341840863228, -0.08599302917718887, 0.019105209037661552, 0.03261876106262207, -0.014088913798332214, -0.0651012435555458, 0.013911126181483269, 0.021793100982904434, -0.03020501136779785, 0.04844698682427406, -0.03225793316960335, 0.008578936569392681, -0.010979730635881424, -0.02640431560575962, 0.005041657481342554, 0.019235670566558838, 0.06396907567977905, -0.01920728012919426, 0.07326237857341766, 0.04905112460255623, -0.0012466959888115525, -0.015188541263341904, 0.0003782632411457598, -0.013483760878443718, 0.014573413878679276, -0.053598303347826004, -0.002381103578954935, -0.06988651305437088, -0.04857322946190834, 0.00031206445419229567, 0.019880162551999092, -0.040566347539424896, -0.03449169918894768, 0.01696748100221157, 0.037645261734724045, -0.04952310770750046, -0.00423866230994463, -0.043417226523160934, 0.03900574892759323, -0.0169940497726202, -0.005985600873827934, -0.02515220083296299, 0.02933804877102375, 0.00711460318416357, 0.011231723241508007, 0.04047444835305214, -0.03569704294204712, 0.002388664986938238, 0.0015133516862988472, 0.021886102855205536, 0.051298364996910095, 0.001858038711361587, 0.01696864515542984 ]
[ -0.09287536889314651, -0.006923583336174488, -0.05863200128078461, -0.04373805969953537, 0.03413819894194603, -0.02399657852947712, -0.007618277799338102, 0.01368101965636015, -0.011541971936821938, -0.012125982902944088, -0.007825986482203007, -0.0060490891337394714, 0.0019307368202134967, 0.036977265030145645, 0.10342507064342499, 0.011681236326694489, -0.006242149043828249, -0.018715551123023033, -0.017051367089152336, 0.043040644377470016, 0.04981726408004761, -0.003251419635489583, -0.022576553747057915, -0.030488234013319016, -0.025245875120162964, 0.02412094734609127, 0.0195439625531435, -0.05380982905626297, 0.011387229897081852, -0.17222796380519867, 0.041913822293281555, -0.029581734910607338, 0.023615913465619087, -0.0006747639854438603, -0.02098134718835354, 0.012718775309622288, 0.001643194118514657, 0.03637649118900299, 0.020762186497449875, 0.0342523492872715, -0.017150191590189934, 0.03522718325257301, -0.05382740497589111, -0.03504455089569092, 0.04122119024395943, -0.021817388013005257, 0.011444425210356712, -0.024965817108750343, -0.024092426523566246, 0.014151357114315033, -0.05029209703207016, -0.003527504624798894, 0.00910237804055214, -0.010654173791408539, -0.011698280461132526, -0.013865826651453972, 0.04838993772864342, 0.05269694700837135, -0.006282402668148279, 0.03193892911076546, 0.005308825988322496, -0.009592377580702305, -0.12364158779382706, 0.12731364369392395, -0.0037069586105644703, 0.06471274048089981, -0.014413481578230858, -0.008293516002595425, -0.0023809238336980343, 0.06578971445560455, 0.027323352172970772, -0.023647844791412354, -0.04676533862948418, 0.04823876917362213, 0.025486096739768982, -0.00540357967838645, 0.000060791484429501, 0.024904344230890274, 0.047640834003686905, -0.0478857196867466, -0.0603274442255497, -0.015116588212549686, -0.002274764236062765, 0.0015092871617525816, -0.0011044011916965246, 0.05364475026726723, 0.020659489557147026, 0.03530639037489891, 0.041651204228401184, 0.03816559910774231, 0.02798490971326828, -0.03284508362412453, 0.023683151230216026, -0.013182505965232849, -0.09352832287549973, -0.006844511721283197, -0.0396985188126564, 0.012569071725010872, -0.054436095058918, 0.4234025180339813, -0.016776101663708687, -0.03119638003408909, 0.06606939435005188, -0.001332116429693997, 0.0027519292198121548, 0.008309891447424889, 0.019005993381142616, -0.03219474107027054, 0.001535376999527216, -0.01879286952316761, -0.007881664671003819, -0.0012086548376828432, 0.0006209948915056884, -0.042625077068805695, -0.013637694530189037, 0.010933109559118748, -0.013441955670714378, 0.0059003448113799095, -0.00574302114546299, 0.015213643200695515, -0.013990094885230064, -0.004093672148883343, 0.017057927325367928, 0.020486481487751007, 0.03179055452346802, -0.043203242123126984, 0.023682918399572372, 0.06224832683801651, 0.049082376062870026, 0.0466594435274601, 0.01850195974111557, -0.011971583589911461, -0.07179129123687744, -0.009888445027172565, -0.013565615750849247, 0.013309749774634838, 0.04206424579024315, -0.009467541240155697, -0.0036755220498889685, 0.010444851592183113, -0.006022043060511351, -0.009492520242929459, -0.0025482831988483667, -0.020692598074674606, -0.03352051600813866, 0.10820095241069794, -0.003849996253848076, -0.028206439688801765, -0.020863479003310204, -0.05252046510577202, -0.010111627168953419, 0.07433152198791504, -0.013868206180632114, -0.046950966119766235, -0.015577773563563824, 0.030680425465106964, 0.030165325850248337, -0.03955509141087532, -0.027176586911082268, -0.025144729763269424, 0.005361400544643402, -0.021698057651519775, -0.038322221487760544, 0.04868349805474281, 0.059555236250162125, -0.13679362833499908, -0.04456133395433426, 0.02457594871520996, 0.01820141263306141, -0.06089816614985466, -0.03514491766691208, 0.028336988762021065, -0.01942315325140953, -0.032814815640449524, 0.04504211246967316, 0.01725614070892334, -0.03959859907627106, 0.007418067194521427, 0.015782907605171204, 0.03182786703109741, 0.01776343770325184, 0.004734579473733902, -0.06021221727132797, 0.0006660146755166352, -0.052446022629737854, -0.09054581075906754, -0.03677552938461304, -0.009282932616770267, -0.001968331402167678, -0.026298334822058678, -0.043419379740953445, -0.020655877888202667, -0.08837708830833435, 0.085918128490448, -0.0034282123669981956, -0.0190961342304945, 0.0023910561576485634, -0.011253280565142632, 0.013509604148566723, -0.04435599967837334, 0.04268332198262215, 0.03566359728574753, -0.03916659206151962, 0.042192477732896805, -0.025497961789369583, 0.04226109758019447, 0.06120496988296509, -0.03319322317838669, 0.0250334981828928, 0.023455657064914703, -0.06836270540952682, 0.010601303540170193, 0.02176443487405777, 0.02842063643038273, -0.002737164031714201, -0.02360556833446026, -0.0010954318568110466, 0.062036577612161636, 0.04513755440711975, 0.011937744915485382, -0.03433229401707649, -0.013353913091123104, 0.033887214958667755, -0.34352439641952515, -0.03282095119357109, -0.015253438614308834, -0.01986454613506794, 0.010826727375388145, -0.07312607020139694, 0.016633208841085434, -0.03371089696884155, 0.009356833063066006, -0.012422257103025913, 0.10636153072118759, -0.007457415573298931, 0.006341545842587948, -0.0936293974518776, -0.011659925803542137, 0.022720105946063995, -0.02146267145872116, -0.04260607436299324, -0.01528556365519762, -0.00028630782617256045, -0.02798854000866413, 0.008431878872215748, 0.006835094187408686, -0.05213577672839165, 0.025884313508868217, -0.024909941479563713, 0.13115516304969788, 0.013164378702640533, 0.07840593159198761, -0.036789897829294205, 0.03619437292218208, 0.02465500868856907, -0.016886204481124878, -0.10114533454179764, 0.009668080136179924, -0.03394457325339317, -0.025359906256198883, 0.009195569902658463, 0.03612023591995239, -0.0113111836835742, -0.025227949023246765, 0.005290961358696222, -0.04789680615067482, -0.07353261858224869, -0.01151200570166111, -0.013395997695624828, -0.03838300332427025, -0.03134990110993385, 0.00023814493033569306, 0.07797800004482269, -0.02089639939367771, -0.022079957649111748, 0.023718886077404022, 0.0790024921298027, 0.0057400306686758995, -0.015470306389033794, -0.06474453955888748, -0.01305881142616272, 0.01572059839963913, -0.0003897084970958531, 0.04916476458311081, 0.03013075515627861, 0.026569034904241562, -0.08762902021408081, 0.0011474746279418468, 0.02824372984468937, 0.012294992804527283, 0.006250194273889065, 0.07136398553848267, -0.034002695232629776, -0.06354811042547226, 0.09709686785936356, 0.019170932471752167, 0.000354176590917632, 0.04472198709845543, 0.048610009253025055, -0.017305120825767517, -0.027027444913983345, 0.018147969618439674, 0.016546519473195076, 0.0062646870501339436, 0.0376213863492012, 0.04045531526207924, -0.04325282201170921, -0.020135393366217613, 0.04112768918275833, -0.05120275169610977, -0.03846519812941551, 0.03564567491412163, 0.004413575865328312, -0.02018820494413376, -0.02471044659614563, -0.017168259248137474, -0.06438886374235153, 0.06056235730648041, -0.045785337686538696, -0.2670316994190216, 0.0028036856092512608, 0.07108048349618912, 0.08153952658176422, -0.01506761647760868, 0.016349315643310547, 0.06391125172376633, -0.05531540885567665, -0.018828032538294792, 0.013733901083469391, 0.010770863853394985, 0.029855012893676758, 0.0038843131624162197, -0.01731007546186447, 0.027499500662088394, -0.002943238941952586, 0.03691647946834564, 0.006481566466391087, 0.03477928042411804, -0.011924379505217075, -0.005371897015720606, -0.010335694998502731, 0.17221760749816895, 0.04335618019104004, 0.009179606102406979, 0.023457324132323265, 0.0022743530571460724, -0.005312993191182613, 0.074327252805233, 0.040341585874557495, 0.007118097506463528, -0.009110883809626102, 0.08988379687070847, 0.0219354759901762, 0.04595766216516495, -0.10399569571018219, -0.022389139980077744, 0.008617163635790348, 0.020248785614967346, 0.01760442927479744, -0.016683639958500862, 0.02755865640938282, -0.04040506109595299, 0.03188183158636093, 0.06489988416433334, -0.0000424085883423686, 0.0032281025778502226, 0.0142652103677392, -0.053432684391736984, -0.018438173457980156, -0.024748312309384346, -0.01232378464192152, -0.011819508858025074, 0.0053562899120152, -0.015102468430995941, 0.07819482684135437, -0.01169371698051691, -0.03430334851145744, -0.013362978585064411, 0.01599794439971447, -0.000552655546925962, 0.022412298247218132, 0.08113772422075272, 0.014672433026134968, 0.037782054394483566 ]
[ -0.01773133873939514, -0.012561093084514141, -0.015716390684247017, 0.017369119450449944, 0.030585508793592453, 0.04413652420043945, -0.0004174770729150623, 0.03267524018883705, -0.0005709922406822443, -0.014504090882837772, -0.003074586857110262, -0.014520418830215931, 0.041628528386354446, -0.017503097653388977, 0.013151408173143864, -0.00852184183895588, 0.013443312607705593, -0.013577592559158802, 0.018103336915373802, 0.013688236474990845, -0.013558104634284973, 0.011329563334584236, 0.04096737876534462, -0.015978354960680008, 0.021328505128622055, 0.04430345073342323, -0.00534755177795887, -0.028574027121067047, 0.021699706092476845, -0.11784274131059647, 0.032601870596408844, -0.02878609485924244, -0.017496280372142792, 0.006377975456416607, -0.02150425873696804, 0.00655762804672122, 0.00925442110747099, 0.0006286653224378824, 0.0065652248449623585, -0.011153888888657093, -0.027873752638697624, 0.016167091205716133, -0.011083274148404598, 0.01452482771128416, -0.013451087288558483, -0.029584692791104317, -0.0054524801671504974, -0.031054776161909103, -0.054836705327034, -0.00961684063076973, 0.004167165607213974, -0.026248609647154808, -0.0006971042021177709, -0.011421449482440948, -0.02985270507633686, -0.009038462303578854, -0.04586845263838768, -0.007243362255394459, 0.02110244520008564, 0.012108423747122288, 0.012118280865252018, -0.013153744861483574, -0.014352344907820225, 0.005118898116052151, -0.003961227834224701, -0.03009765036404133, 0.014030594378709793, -0.00549115426838398, 0.017892591655254364, -0.010375069454312325, -0.0001508277637185529, 0.01639431342482567, -0.003874169895425439, -0.007051764987409115, -0.01780298724770546, 0.004663368687033653, 0.026296628639101982, 0.0005686805234290659, 0.014799821190536022, -0.028383450582623482, -0.007052992004901171, 0.014284100383520126, 0.0007350352825596929, 0.04498200863599777, 0.04347481578588486, 0.011561392806470394, -0.0329386331140995, 0.0157513078302145, -0.0003935880376957357, 0.040861159563064575, -0.017728282138705254, 0.021576251834630966, 0.019493550062179565, 0.022945621982216835, -0.09987486153841019, -0.0037777817342430353, -0.037015073001384735, -0.011444032192230225, -0.025665974244475365, 0.8449119329452515, 0.023656439036130905, 0.01737208105623722, 0.026207689195871353, 0.004142658784985542, 0.027237925678491592, -0.04163305088877678, 0.0005746365059167147, 0.03388870507478714, -0.0003835001843981445, -0.00348066003061831, 0.02783261239528656, 0.026282740756869316, 0.017163729295134544, 0.0007642064010724425, 0.02052151784300804, -0.02027033269405365, 0.0559074729681015, -0.049460526555776596, 0.009240453131496906, 0.046768877655267715, -0.010183678939938545, -0.02078247256577015, -0.008107016794383526, 0.008532854728400707, 0.02478986233472824, -0.16783837974071503, 0.01579468697309494, -7.716542216864507e-33, 0.05984927713871002, 0.006230240222066641, -0.0018552265828475356, -0.002362603787332773, 0.0161789171397686, 0.008679937571287155, 0.007170537021011114, 0.020178191363811493, 0.02138732187449932, -0.04774446785449982, 0.01542722713202238, -0.03791583329439163, 0.005793444346636534, 0.0023091451730579138, 0.004595103673636913, -0.016119446605443954, -0.013844549655914307, 0.028773287311196327, -0.015961144119501114, -0.01678295060992241, -0.022390253841876984, 0.009589223191142082, 0.02363915927708149, -0.021940283477306366, -0.021135572344064713, 0.035385578870773315, -0.008056717924773693, 0.021373404189944267, -0.02998196706175804, -0.044123828411102295, 0.03304578736424446, -0.023398665711283684, 0.001948647666722536, 0.013890096917748451, 0.025399617850780487, -0.03719521313905716, 0.018239255994558334, 0.00883267167955637, -0.01412774808704853, -0.006233246996998787, -0.06957574933767319, -0.018996573984622955, -0.0391731932759285, 0.019907644018530846, -0.0171694103628397, -0.036940157413482666, 0.003481541760265827, 0.023886196315288544, -0.03257688879966736, -0.01931440457701683, 0.008085548877716064, 0.02244873344898224, 0.0014122562715783715, 0.0006480457377620041, -0.02860608696937561, 0.04214068874716759, -0.04086988791823387, 0.01734948717057705, 0.018859708681702614, 0.020608237013220787, -0.023234091699123383, 0.0006166731473058462, -0.017561625689268112, 0.004873066674917936, -0.02078804187476635, -0.017017150297760963, 0.04670003801584244, -0.03155358508229256, 0.0009964099153876305, -0.007794621866196394, -0.032377853989601135, 0.010066217742860317, 0.03309916704893112, -0.012851705774664879, 0.005373690277338028, -0.020135240629315376, -0.02204515039920807, 0.024920601397752762, 0.02909764088690281, 0.06821075826883316, 0.0006760303513146937, -0.011735760606825352, 0.020951971411705017, -0.013802895322442055, -0.0021172629203647375, -0.018273670226335526, 0.03881418704986572, -0.01702212542295456, -0.015080523677170277, 0.02501540631055832, 0.07488938421010971, 0.004987387452274561, -0.006981418468058109, -0.04614361748099327, 0.006082376465201378, 7.637734136849504e-33, 0.00466888677328825, 0.005752817261964083, -0.032079171389341354, -0.001419801963493228, 0.026370897889137268, -0.038079358637332916, 0.010488537140190601, 0.06548250466585159, -0.04711925610899925, -0.00380517914891243, -0.02077677473425865, 0.038378775119781494, -0.028432145714759827, 0.038724545389413834, 0.03678325563669205, -0.04125291481614113, 0.022926747798919678, 0.028625482693314552, 0.03762464597821236, -0.02826080471277237, 0.036297496408224106, 0.002159633906558156, 0.009352353401482105, 0.029772132635116577, 0.01688535325229168, 0.04575200006365776, -0.025189075618982315, -0.0067931292578577995, -0.010304844006896019, 0.0010376675054430962, 0.03836893290281296, -0.0051346817053854465, 0.019167978316545486, -0.03939051926136017, -0.026991432532668114, 0.03343910351395607, -0.031074922531843185, 0.02343444526195526, 0.0055685886181890965, 0.021994823589920998, 0.02158377505838871, -0.03723342344164848, 0.005202046129852533, 0.03331974148750305, -0.017231693491339684, -0.03367242217063904, -0.00576498918235302, -0.0047995345667004585, 0.013816331513226032, 0.00559622049331665, -0.01342919934540987, 0.006892059929668903, -0.006012198515236378, 0.018796425312757492, 0.023860447108745575, -0.03800688683986664, -0.04905800148844719, -0.007666341494768858, -0.023740101605653763, 0.022832579910755157, -0.006189511623233557, 0.0056173959746956825, -0.023760922253131866, 0.006243354175239801, -0.012092134915292263, -0.006328820716589689, -0.03808246925473213, -0.014322538860142231, 0.005162244662642479, -0.0017287512309849262, -0.01625552400946617, -0.03891003876924515, -0.019293904304504395, 0.015286142006516457, 0.05487252399325371, -0.051601067185401917, 0.005050679203122854, 0.014462629333138466, -0.009472289122641087, 0.015626486390829086, 0.02056765742599964, -0.0022999802604317665, -0.008127120323479176, -0.002022394211962819, 0.0550522543489933, -0.03294156491756439, -0.04960424453020096, 0.025533614680171013, -0.035489097237586975, -0.052688535302877426, -0.03411755710840225, -0.016274448484182358, -0.01910523697733879, 0.01676568202674389, 0.014053981751203537, -1.2982784625137356e-8, -0.03399525582790375, 0.01989191584289074, 0.0025096647441387177, -0.00006178177136462182, 0.022684577852487564, 0.030370643362402916, -0.055854346603155136, -0.05657090246677399, 0.004019247367978096, 0.002729239873588085, 0.040572360157966614, -0.02141558937728405, 0.01999121718108654, 0.014136780984699726, 0.007359795738011599, -0.04845605045557022, -0.012466705404222012, -0.017208414152264595, 0.015481053851544857, 0.005144120659679174, 0.0051300497725605965, 0.03405443951487541, -0.011404278688132763, -0.030170680955052376, 0.04484310746192932, 0.014509635046124458, 0.009103403426706791, -0.06301312148571014, -0.010931292548775673, 0.034211527556180954, 0.018097074702382088, -0.0017464825650677085, -0.053187668323516846, 0.022937048226594925, -0.019255641847848892, -0.014232166111469269, -0.004543320741504431, -0.002527122152969241, -0.006751769222319126, 0.022295905277132988, -0.018342016264796257, 0.016919123008847237, -0.008682606741786003, -0.0015622014179825783, -0.001314357970841229, 0.01774788647890091, 0.00891852006316185, 0.015639353543519974, 0.016736846417188644, -0.0030669854022562504, -0.011104300618171692, -0.03355085477232933, -0.011736284010112286, 0.02769991010427475, 0.007272928021848202, -0.028563905507326126, 0.04503516107797623, -0.0034575427416712046, 0.010074942372739315, 0.027092324569821358, 0.01244900282472372, 0.007468748837709427, -0.023784726858139038, -0.02109198085963726 ]
html-encodingescaping-with-stringtemplate-and-spring-mvc
https://markhneedham.com/blog/2011/04/09/html-encodingescaping-with-stringtemplate-and-spring-mvc
false
2011-04-09 10:38:47
ThoughtWorks University: Similarities with 'Discussing the Undiscussable'
[ "thoughtworks-university" ]
[ "ThoughtWorks University" ]
I'm currently reading the final chapter of William Noonan's http://www.amazon.com/gp/product/0787986321/ref=as_li_ss_tl?ie=UTF8&tag=marneesblo-20&linkCode=as2&camp=1789&creative=390957&creativeASIN=0787986321[Discussing the Undiscussable] titled 'Helping Those Who Teach, Learn' and a couple of the ideas that he describes seem quite applicable to what we're doing at ThoughtWorks University. == Modelling the skills When teaching the http://blog.benjaminm.net/2011/02/16/argyriscasestudylearningmodelii/[Mutual Learning Model] Noonan suggests that the practitioner needs to be able to produce actions consistent with the model in real time situations rather than just being able to do convincing presentations on the subject. I think this is the same with teaching/facilitating the learning of ThoughtWorks University and it seems to centre around the http://www.markhneedham.com/blog/2011/02/23/espoused-theory-theory-in-action-hypocrisy/[espoused theory and theory in action]. The espoused theory describes our theory of what we think we do in a situation whereas the theory in action describes what we actually do. I was a bit worried about doing a presentation/session on a topic where I would present my espoused theory about a topic and then more than likely not meet that theory in practice. Over the course of the last month or so it's become more clear to me that it's not a big problem to make mistakes, even when you're supposed to be the one who knows what they're doing, as long as you're open about your mistakes == Leading questions Noonan talks about the use of leading questions when opening a topic to the group, something which I think is quite prevalent in sessions and workshops: ____ There are potential downsides to the approach of using questions to get to the predetermined correct answer. If the class doesn't answer correctly, the teacher keeps asking questions like, "No, that is not it exactly. What other things can you think of?" The students or participants hit a point of frustration where there is finally a collective call to "just tell us the answer." ____ The intention is to try and make the session interactive but I'm not convinced that it helps learning and it often seems that if someone does actually get to the 'correct answer' that it's because of guessing rather than real understanding. http://twitter.com/frankmt[Frankie] and I unfortunately ended up using an approach similar to this when facilitating a session on the ThoughtWorks delivery model. We wanted the group to come up with the different components of a software delivery project rather than have us do a presentation on it which would have been immensely boring. They got 90% of these without the need for any intervention but we did end up asking leading questions to draw out the last 10%. Rather than doing this, Noonan suggests the following approach: ____ The remedy is for the leader to follow the basic rule of thumb that if you have a view, state it and balance it with inquiry to see if people agree or have different views. ____ In this case that would have meant that we would have kept the facilitated discussion but then helped fill in the missing components before discussing those with the group.
null
null
[ 0.023857545107603073, 0.0004491872387006879, -0.022341782227158546, 0.04896531626582146, 0.06546176970005035, -0.00709417974576354, 0.03480641171336174, 0.04142213612794876, 0.02194465510547161, -0.00866121519356966, -0.014020903967320919, -0.0008716246811673045, -0.021099800243973732, 0.02393684722483158, -0.03641499578952789, 0.06180713325738907, 0.056026820093393326, -0.004124166443943977, 0.0070013683289289474, 0.008506915532052517, 0.035750068724155426, 0.0653129294514656, 0.04188725724816322, 0.02575632743537426, 0.03113476186990738, 0.00009165509982267395, 0.022779740393161774, -0.0007243634900078177, -0.031126467511057854, 0.001484126434661448, 0.025199657306075096, -0.001771702547557652, 0.018685849383473396, 0.013722029514610767, 0.040664032101631165, -0.015691135078668594, -0.020889215171337128, 0.01967431977391243, 0.00929559487849474, 0.02378682978451252, -0.07698985934257507, 0.037684474140405655, -0.03282804787158966, 0.0019972543232142925, -0.04439953342080116, -0.0036597687285393476, -0.03465085104107857, 0.012849505990743637, 0.017239319160580635, -0.013342313468456268, -0.07243745774030685, 0.051557861268520355, 0.028909793123602867, -0.004873200785368681, -0.02245546132326126, 0.03615981340408325, -0.004411997273564339, -0.07200133800506592, 0.024193888530135155, -0.0508723184466362, -0.03054211288690567, 0.0015653049340471625, -0.015047341585159302, 0.03818816319108009, 0.028080914169549942, -0.02286251075565815, 0.0067209056578576565, 0.05224192887544632, -0.0552714578807354, 0.005302974954247475, -0.030619915574789047, 0.021951258182525635, -0.026144491508603096, 0.012420219369232655, 0.01631469838321209, -0.03610355034470558, 0.028470046818256378, 0.05160710588097572, 0.03403293341398239, 0.016321759670972824, -0.021818529814481735, 0.016776451840996742, 0.013112703338265419, 0.019902395084500313, -0.021638331934809685, -0.04282161965966225, 0.000351371883880347, -0.02140464447438717, -0.04623979702591896, 0.07192812860012054, 0.006326416973024607, -0.029975196346640587, -0.006047993898391724, 0.03034985065460205, -0.015828970819711685, 0.019906917586922646, 0.04819786176085472, -0.02256581373512745, -0.024110281839966774, -0.024662300944328308, -0.030489666387438774, -0.044340722262859344, 0.011089545674622059, 0.03749990463256836, -0.07705441862344742, 0.010524513199925423, -0.0008999836281873286, -0.01359559502452612, -0.022955460473895073, 0.02418074570596218, -0.058268800377845764, 0.028400195762515068, -0.018575264140963554, -0.015123621560633183, -0.07150938361883163, 0.054907526820898056, 0.022443300113081932, -0.029475796967744827, -0.00927867740392685, 0.023526662960648537, 0.034921105951070786, 0.019649531692266464, -0.012939753010869026, 0.08814918249845505, 0.012909620068967342, 0.010838357731699944, -0.028798718005418777, 0.03923482075333595, -0.025361504405736923, -0.04990234971046448, 0.020195115357637405, 0.04923290014266968, 0.0019886658992618322, -0.00509956618770957, 0.003983498550951481, -0.027724839746952057, 0.025381213054060936, 0.0025554371532052755, 0.025006217882037163, 0.0822865217924118, 0.003717917948961258, -0.04193459823727608, 0.02258913777768612, 0.007329411339014769, 0.03159170597791672, -0.010869125835597515, -0.010785738006234169, 0.0014045453863218427, -0.03566307574510574, -0.029109971597790718, 0.012956921011209488, 0.023188669234514236, 0.015608079731464386, -0.040580615401268005, 0.009672380052506924, 0.0733504593372345, 0.012778200209140778, 0.02696814574301243, -0.01318706851452589, 0.02616434171795845, 0.04630758985877037, 0.026826994493603706, 0.029548460617661476, 0.03162204846739769, 0.0159101951867342, -0.012091534212231636, -0.0034413463436067104, 0.031805023550987244, -0.03551902621984482, 0.007436020765453577, -0.06999095529317856, -0.0259357001632452, 0.05026687681674957, -0.08065593987703323, -0.010476290248334408, 0.04383239150047302, 0.062036219984292984, 0.036574602127075195, 0.044789183884859085, -0.014420838095247746, -0.08106798678636551, 0.028547892346978188, 0.022274727001786232, 0.019008656963706017, 0.020793162286281586, -0.04029076173901558, 0.04067329689860344, 0.0538279227912426, 0.01700473576784134, 0.06665094196796417, -0.07949774712324142, -0.08771034330129623, -0.009930706582963467, -0.02266104333102703, 0.05299881100654602, -0.020803416147828102, 0.029374223202466965, 0.06076306477189064, -0.00969243235886097, 0.061930544674396515, 0.03362762928009033, 0.0003481898456811905, -0.006507385987788439, -0.03240836784243584, -0.03798582777380943, 0.0599590428173542, 0.027259215712547302, 0.005256213713437319, -0.03478855639696121, 0.017781246453523636, -0.023502763360738754, -0.027267226949334145, 0.0521976463496685, -0.00910712406039238, 0.012961745262145996, 0.004937603138387203, 0.06809734553098679, -0.028659138828516006, 0.0454135462641716, -0.012415171600878239, 0.019726140424609184, -0.005402868147939444, -0.015558280050754547, -0.007914632558822632, -0.014752368442714214, 0.1094079315662384, 0.05561835691332817, -0.02036360092461109, -0.0633312240242958, 0.01655135490000248, 0.026156887412071228, -0.04535609856247902, -0.016258884221315384, 0.012451649643480778, 0.02602105773985386, -0.020581021904945374, -0.07750065624713898, -0.037817783653736115, 0.042892392724752426, -0.06195477023720741, 0.0032974055502563715, 0.0716724842786789, -0.025462975725531578, 0.07582589983940125, -0.02046271413564682, 0.014083919115364552, -0.01659112237393856, 0.00010407807712908834, -0.06149619072675705, 0.01224004290997982, -0.003918709699064493, -0.01574745401740074, 0.04068891704082489, -0.025284970179200172, -0.05273934081196785, -0.025509780272841454, -0.0517122745513916, 0.009562050923705101, 0.07893858104944229, 0.04948347806930542, -0.006394312251359224, 0.0878264531493187, -0.02503989264369011, 0.03791406378149986, -0.005155851598829031, -0.03327452763915062, -0.030170295387506485, -0.030161313712596893, -0.008226641453802586, 0.0004933263408020139, 0.03302670270204544, 0.008339786902070045, 0.02131090871989727, 0.015963491052389145, -0.03126068040728569, 0.0027807028964161873, 0.03651566803455353, 0.006970343645662069, -0.005937347188591957, -0.02110270783305168, -0.019050026312470436, 0.04230354353785515, -0.022268397733569145, -0.016011085361242294, 0.010354509577155113, -0.0860801488161087, 0.04052214324474335, -0.03547180816531181, -0.03703346103429794, 0.0021002774592489004, 0.006751587614417076, 0.041557904332876205, 0.05840156227350235, 0.005114199593663216, 0.060326337814331055, 0.008360897190868855, 0.01267760805785656, -0.017113734036684036, 0.0034554130397737026, 0.05667201057076454, -0.02216959372162819, -0.0014007827267050743, 0.032651636749506, 0.015886619687080383, -0.002967477310448885, -0.04578080773353577, 0.02546331286430359, -0.033551596105098724, -0.29067346453666687, 0.04915669187903404, 0.00448114238679409, -0.013559884391725063, 0.03230210766196251, -0.05224175378680229, 0.019832026213407516, -0.06621687859296799, -0.04101954773068428, 0.00218053231947124, -0.027723463252186775, -0.029032163321971893, -0.0343669168651104, 0.05362528935074806, -0.00008051710756262764, 0.02812371775507927, 0.018848562613129616, -0.044059984385967255, 0.010667513124644756, 0.05585155263543129, -0.00865102931857109, -0.032388199120759964, -0.042003169655799866, 0.07914581894874573, 0.0451342798769474, 0.07638709247112274, -0.0825905054807663, 0.017247730866074562, -0.052803363651037216, -0.0047369771637022495, 0.009083926677703857, -0.005516489967703819, 0.010488810017704964, -0.014773940667510033, -0.006487263832241297, 0.00007507135160267353, 0.04162866622209549, 0.01093246228992939, -0.002613687887787819, 0.027714256197214127, -0.03947613015770912, -0.04134221374988556, 0.006188371684402227, 0.032743148505687714, 0.06252045929431915, 0.026001257821917534, -0.0693199560046196, -0.02259841561317444, -0.03698890656232834, 0.07026045769453049, -0.04570811241865158, -0.04162190482020378, -0.003640831680968404, 0.01435855869203806, -0.007737265899777412, 0.0030562591273337603, -0.008819232694804668, -0.02357998676598072, -0.029505301266908646, -0.04228021204471588, -0.017405949532985687, -0.0245850570499897, -0.011920030228793621, -0.05156839266419411, -0.011540848761796951, -0.06347740441560745, -0.06848402321338654, -0.007261907681822777, 0.07808251678943634, 0.011539082042872906, -0.04394594579935074, 0.002398261334747076, -0.024563223123550415, -0.09453301876783371, -0.003801255486905575, 0.003223469713702798, -0.03185298666357994, -0.003724470967426896, 0.025312358513474464, 0.05714143067598343, -0.037403129041194916, -0.03880198672413826, 0.03947291523218155, 0.01120030414313078, 0.05471072345972061, 0.012606393545866013, 0.03099549002945423, 0.002902617445215583, -0.012132891453802586, 0.01591544970870018, 0.06433704495429993, 0.022772744297981262, -0.029440587386488914, -0.04347510263323784, 0.026453649625182152, 0.021948406472802162, 0.001370002282783389, -0.024170009419322014, 0.028267262503504753, 0.029706286266446114, 0.0056615364737808704, -0.05638115108013153, 0.0208128672093153, -0.0036989664658904076, -0.0407804399728775, -0.01735997386276722, -0.04829107224941254, 0.04571480676531792, 0.04130718111991882, -0.018164202570915222, 0.000097810392617248, -0.029971309006214142, 0.015736181288957596, -0.0006213968154042959, -0.03233882039785385, -0.024463709443807602, 0.00006917085556779057, 0.058092739433050156, -0.01642668806016445, -0.009065087884664536, -0.06653755903244019, 0.004909889306873083, -0.029497936367988586, -0.02681012451648712, -0.05945860594511032, -0.014935183338820934, 0.007408062927424908, -0.03734389692544937, -0.00009582503116689622, 0.011398985981941223, 0.00025859716697596014, -0.0012177287135273218, 0.028073372319340706, -0.02966221794486046, 0.015871111303567886, -0.04090498387813568, -0.0573708675801754, -0.02504103258252144, -0.0145405363291502, 0.026759376749396324, -0.0007962046074680984, 0.009213121607899666, -0.01213326770812273, 0.023275669664144516, 0.06624557077884674, 0.016590392217040062, -0.008823957294225693, -0.021473469212651253, 0.010850089602172375, 0.01962967962026596, 0.04000106453895569, -0.03967529535293579, 0.020504459738731384, -0.02971143089234829, -0.02623852901160717, 0.0009870254434645176, -0.012536688707768917, -0.018397437408566475, -0.00935157760977745, 0.0007410320686176419, 0.02978927083313465, -0.045719653367996216, -0.0555429607629776, -0.043556954711675644, 0.011576928198337555, 0.054344575852155685, -0.01648777723312378, 0.023611553013324738, -0.0006627585389651358, -0.015543930232524872, 0.02989933267235756, -0.015021931380033493, -0.05159521475434303, 0.0067573972046375275, 0.02491994947195053, -0.004570705816149712, 0.010828858241438866, -0.01615877076983452, 0.05618332698941231, -0.014718406833708286, -0.009413634426891804, -0.04454491659998894, 0.0026048903819173574, -0.0112140579149127, 0.0571998730301857, 0.029938312247395515, -0.005114991683512926, -0.001686900737695396, -0.032284580171108246, -0.012230342254042625, -0.02883109077811241, -0.009863444603979588, -0.010347126051783562, 0.030773604288697243, -0.04522239789366722, -0.050254274159669876, 0.054474372416734695, -0.006597968749701977, 0.03354118764400482, 0.029569756239652634, 0.015378504991531372, 0.00875578261911869, -0.042660269886255264, 0.024567632004618645, 0.039432503283023834, -0.0723671093583107, 0.008131414651870728, -0.024534691125154495, -0.0035079470835626125, 0.005000454373657703, -0.012454402633011341, -0.030919626355171204, -0.004871246870607138, -0.003510022070258856, 0.002723158337175846, -0.07921940833330154, -0.027684202417731285, -0.05013518035411835, 0.0201612189412117, 0.0035481948871165514, 0.007792468182742596, -0.03913787379860878, -0.004578679334372282, -0.004321939777582884, -0.03512801229953766, 0.014748593792319298, -0.036840278655290604, -0.0033666533417999744, 0.022167332470417023, -0.0516117699444294, -0.008597297593951225, -0.024293983355164528, 0.01174558699131012, 0.016805987805128098, -0.03541883826255798, -0.016682429239153862, -0.03212926909327507, 0.015834448859095573, 0.002576931845396757, 0.045171454548835754, 0.0007099526701495051, -0.004645741544663906, -0.04977089911699295, -0.006466892082244158, -0.0422377735376358, 0.021806135773658752, 0.0009714926709420979, -0.02038884162902832, 0.04741740971803665, 0.048493996262550354, 0.028656024485826492, -0.0003922762116417289, -0.040517572313547134, 0.0016931083519011736, 0.03150640055537224, -0.05274300277233124, -0.013620501384139061, -0.025851743295788765, -0.0525377057492733, 0.015912365168333054, -0.006151509005576372, 0.023154424503445625, -0.048156265169382095, 0.024099675938487053, 0.004464676138013601, 0.014740251936018467, 0.06094856560230255, 0.009804238565266132, 0.020224424079060555, -0.04575253650546074, -0.020026149228215218, -0.08734419196844101, -0.023025382310152054, 0.01546291820704937, 0.012809036299586296, -0.012918395921587944, 0.0020508472807705402, -0.04979928210377693, 0.06511564552783966, -0.09599965810775757, -0.014976373873651028, 0.0343901664018631, -0.013284211978316307, -0.016472289338707924, 0.02392396703362465, -0.05568721517920494, 0.02282499521970749, 0.003989686723798513, -0.03667258098721504, -0.02605837769806385, -0.035499207675457, 0.03995857015252113, 0.004522806964814663, 0.012204982340335846, -0.013489422388374805, 0.03358526900410652, 0.07174388319253922, 0.0061845676973462105, 0.01475316472351551, 0.05819268897175789, -0.009173044934868813, 0.02009069174528122, 0.0303452480584383, 0.025921428576111794, 0.004183536861091852, -0.011634323745965958, -0.02779366821050644, -0.058891650289297104, 0.06825031340122223, 0.0017035531345754862, -0.019645147025585175, -0.0405668281018734, 0.051389921456575394, 0.014712252654135227, -0.025176528841257095, -0.05782932788133621, 0.01823297329246998, -0.05326566472649574, -0.021043729037046432, -0.016065027564764023, -0.015730062499642372, -0.01871144212782383, 0.046257250010967255, -0.012957658618688583, 0.019931448623538017, 0.038782279938459396, -0.016232404857873917, -0.02347853034734726, -0.004299550782889128, 0.09678417444229126, 0.06119595840573311, 0.06874475628137589, 0.006460126023739576, 0.08240675926208496, -0.011205226182937622, -0.04746851325035095, 0.009472391568124294, -0.01979646272957325, -0.013982157222926617, -0.02096344344317913, 0.044496938586235046, 0.042975738644599915, -0.02217213809490204, 0.04481937363743782, -0.030159158632159233, -0.013232368975877762, -0.004094132222235203, 0.03757401928305626, 0.004914493300020695, 0.05105259642004967, 0.026744304224848747, 0.011398842558264732, -0.017753813415765762, -0.09637424349784851, 0.03646872565150261, -0.01172195840626955, -0.014498921111226082, 0.03371172398328781, -0.028557000681757927, 0.028465013951063156, 0.028465207666158676, 0.024587096646428108, 0.08319557458162308, -0.057063598185777664, 0.024042636156082153, 0.02158277854323387, 0.02004765160381794, 0.012155395932495594, 0.02041458897292614, -0.016560085117816925, -0.02233268879354, -0.0036427562590688467, -0.029179032891988754, -0.020147332921624184, -0.0037148005794733763, -0.020564211532473564, 0.024029601365327835, -0.03983106091618538, 0.017037775367498398, 0.025108756497502327, 0.018003085628151894, -0.019895438104867935, -0.0683571845293045, -0.027844758704304695, -0.034835442900657654, -0.05657653510570526, 0.00994065310806036, 0.017128337174654007, -0.02568439394235611, -0.03335757553577423, -0.03244449943304062, -0.012534107081592083, -0.03051837533712387, 0.05136888101696968, -0.06088772788643837, -0.025106260553002357, -0.0026525419671088457, 0.0198315791785717, 0.0310326237231493, -0.0035921218805015087, 0.0531434565782547, 0.009504036046564579, -0.01972622238099575, 0.006903109606355429, 0.004448369611054659, 0.015095963142812252, -0.001472193282097578, 0.03131914138793945, -0.09988429397344589, 0.019002823159098625, 0.014374390244483948, -0.024346182122826576, -0.053113698959350586, 0.015913959592580795, 0.02748633176088333, 0.010822520591318607, 0.05294393002986908, 0.009204765781760216, -0.005415304098278284, -0.041844405233860016, -0.004576909355819225, -0.012197145260870457, 0.0037988086696714163, 0.03334609419107437, -0.03490448370575905, 0.06894402951002121, 0.017016004770994186, -0.0040811155922710896, -0.030525939539074898, -0.03952699899673462, 0.029374798759818077, -0.001494916738010943, -0.034860603511333466, -0.018400736153125763, -0.003350920742377639, -0.07103222608566284, -0.022747322916984558, 0.040608976036310196, -0.02178286574780941, -0.026611505076289177, 0.03543286398053169, -0.002193800639361143, -0.030621914193034172, 0.013233156874775887, -0.024663858115673065, 0.005212817806750536, -0.011591263115406036, -0.0040364437736570835, 0.024036603048443794, 0.02384546585381031, 0.0008745921077206731, -0.01148232538253069, 0.012779021635651588, -0.040591999888420105, -0.0016999018844217062, -0.02544650062918663, 0.02041315659880638, 0.043118104338645935, -0.01036504004150629, -0.030006345361471176 ]
[ -0.07586080580949783, -0.007970696315169334, -0.007822800427675247, -0.028439730405807495, 0.026681620627641678, -0.04035400599241257, -0.004003599286079407, 0.03177575394511223, -0.0067451102659106255, -0.01510285772383213, -0.014188116416335106, -0.03383689001202583, -0.025063741952180862, 0.02045777440071106, 0.09716642647981644, -0.010524355806410313, -0.02502945065498352, -0.0638071596622467, 0.009971671737730503, 0.03506312146782875, 0.0017964579164981842, -0.029826512560248375, -0.03161819651722908, 0.002946247113868594, 0.02516959235072136, 0.022001486271619797, 0.052138783037662506, -0.05692258104681969, 0.020782487466931343, -0.17246772348880768, 0.009438054636120796, 0.0022454888094216585, 0.022356532514095306, 0.012693093158304691, -0.02237021178007126, 0.08147507905960083, 0.026500390842556953, 0.018104534596204758, -0.02203170582652092, 0.03599622845649719, 0.005069913808256388, 0.01847895048558712, -0.05171298608183861, -0.03326728194952011, 0.04739634692668915, 0.03549710661172867, 0.0023282268084585667, -0.07174438238143921, -0.029774224385619164, -0.010356767103075981, -0.04410870745778084, -0.057829778641462326, -0.048270970582962036, -0.0269310399889946, -0.014383110217750072, 0.03912936896085739, 0.027410021051764488, 0.031425271183252335, -0.002588112372905016, 0.019726809114217758, 0.01510397158563137, 0.021861910820007324, -0.1742677241563797, 0.12148673087358475, 0.024430517107248306, 0.044452305883169174, -0.025669492781162262, 0.012505286373198032, 0.007462726440280676, 0.06267723441123962, -0.00913313589990139, -0.03548787161707878, 0.0036945834290236235, 0.04144629091024399, 0.02015170082449913, 0.037250831723213196, -0.00006803327414672822, 0.0036710440181195736, 0.0532509908080101, -0.07335762679576874, 0.00001916862493089866, 0.017576247453689575, 0.012302214279770851, -0.016418742015957832, -0.0014823554083704948, 0.0030112331733107567, -0.01873003877699375, 0.010289091616868973, 0.02184968627989292, 0.012117489241063595, 0.028932644054293633, -0.013908292166888714, -0.007537481375038624, 0.0001568960287841037, -0.026553930714726448, -0.03663285821676254, -0.007514727767556906, 0.025547729805111885, -0.06306299567222595, 0.414395272731781, -0.04417101666331291, 0.008094538934528828, 0.10682112723588943, 0.03195633739233017, -0.032106876373291016, 0.005672472063452005, 0.007178965490311384, -0.06999706476926804, 0.031139379367232323, -0.0068805706687271595, 0.02021072804927826, -0.0014223249163478613, 0.046266425400972366, -0.03499680384993553, 0.005663015879690647, 0.04444706812500954, 0.0692903995513916, -0.003797135315835476, -0.012393244542181492, -0.005810822360217571, -0.016414577141404152, 0.012918337248265743, 0.015115998685359955, -0.03493059054017067, -0.01655113883316517, -0.08099929988384247, -0.0014133240329101682, 0.06480096280574799, 0.03363482654094696, -0.008051764219999313, 0.047269195318222046, -0.08183304965496063, -0.06936679780483246, -0.009932354092597961, -0.007008785847574472, 0.013873524963855743, 0.05028562620282173, -0.01421614084392786, 0.0336921401321888, 0.0595109649002552, 0.04253813996911049, -0.012767713516950607, -0.016886040568351746, -0.021325351670384407, -0.052070628851652145, 0.13824552297592163, 0.017406944185495377, -0.034628480672836304, -0.010718648321926594, -0.007071646861732006, -0.01177749689668417, 0.02502998523414135, -0.0471346415579319, -0.041035063564777374, 0.03528409078717232, 0.012622837908565998, 0.1035405695438385, 0.007705846335738897, -0.04018204286694527, -0.036268025636672974, -0.02974175289273262, -0.021664392203092575, -0.05389712005853653, 0.0437624529004097, 0.08689998835325241, -0.024601459503173828, -0.015880120918154716, -0.009891183115541935, 0.006848359014838934, -0.09404119104146957, 0.0025190338492393494, 0.03420228138566017, -0.022750042378902435, 0.021670160815119743, 0.08747782558202744, -0.022236118093132973, -0.02643980272114277, -0.00835266150534153, 0.04846535250544548, 0.028078718110919, 0.04214080050587654, -0.0046293665654957294, -0.03136754408478737, 0.009301885962486267, -0.027822311967611313, -0.04973071068525314, -0.018116850405931473, -0.05108487606048584, -0.0011499858228489757, 0.007753856014460325, 0.01140597090125084, -0.0015819312538951635, -0.08591333031654358, 0.0619715116918087, -0.07270731776952744, -0.010490926913917065, 0.042968619614839554, -0.049345605075359344, -0.03874102607369423, 0.02334434725344181, -0.09566933661699295, 0.032733235508203506, -0.048418086022138596, 0.031004322692751884, -0.034590840339660645, 0.051712766289711, 0.07928966730833054, -0.012369987554848194, 0.1008150726556778, 0.02254178375005722, -0.045792270451784134, -0.0485578253865242, -0.010583159513771534, 0.0053253015503287315, 0.0001011580097838305, -0.014892082661390305, 0.02531050704419613, 0.026005269959568977, -0.0077472287230193615, 0.0017573990626260638, 0.00844214390963316, -0.008311700075864792, -0.035701166838407516, -0.34627318382263184, -0.03441409021615982, -0.011378681287169456, -0.016417786478996277, 0.03999052569270134, -0.04953460395336151, 0.030064726248383522, -0.021109819412231445, -0.026264067739248276, 0.02430972456932068, 0.03421397507190704, 0.011599789373576641, 0.024971971288323402, -0.09139128029346466, 0.02727874554693699, -0.0058555640280246735, -0.03461979329586029, -0.04000616818666458, -0.045842185616493225, -0.005759064108133316, -0.013997042551636696, 0.017939504235982895, -0.007312334142625332, -0.06352026015520096, -0.016204960644245148, -0.045085787773132324, 0.08159073442220688, 0.027253612875938416, 0.06281217932701111, -0.006697247736155987, 0.021215053275227547, 0.017839204519987106, 0.020858393982052803, -0.098185233771801, -0.0010632129851728678, -0.03292987495660782, -0.010167221538722515, -0.013419237919151783, 0.032141197472810745, -0.0680210068821907, -0.01418181974440813, 0.03142980486154556, -0.06870455294847488, -0.026252327486872673, -0.09173955768346786, 0.032503798604011536, -0.020988192409276962, -0.0038026117254048586, -0.0263809971511364, 0.08022628724575043, 0.023532120510935783, 0.012824268080294132, 0.020329196006059647, 0.02193540520966053, -0.06591477990150452, 0.0028020506724715233, -0.11539740115404129, 0.03213563188910484, -0.00877988152205944, 0.008867288008332253, -0.0056053944863379, 0.0890544205904007, 0.03643361106514931, -0.07176925987005234, -0.026216482743620872, 0.004370552953332663, 0.01286393590271473, -0.005698405206203461, 0.0406213104724884, -0.016536682844161987, -0.015839891508221626, 0.0964391902089119, 0.005309565458446741, 0.010892447084188461, 0.008479133248329163, 0.020883379504084587, 0.008598427288234234, 0.028070855885744095, -0.00013083848170936108, 0.011305615305900574, 0.028587816283106804, -0.014914500527083874, -0.0028734144289046526, -0.026492547243833542, -0.0029047110583633184, 0.008043400943279266, -0.008322129026055336, -0.052679430693387985, 0.06217729672789574, 0.006669613998383284, -0.03093770705163479, 0.0330006442964077, -0.033909350633621216, -0.027107419446110725, 0.04712080955505371, 0.006113841198384762, -0.22748062014579773, 0.019654957577586174, 0.09018561989068985, 0.06806720793247223, -0.004767130129039288, 0.04295097663998604, 0.003825834719464183, -0.05709301307797432, -0.005760512314736843, 0.002070543123409152, 0.028991619125008583, 0.0016611262690275908, -0.007080269046127796, 0.022053929045796394, 0.0027694031596183777, 0.001673105638474226, 0.06433611363172531, -0.0318351686000824, 0.030386628583073616, -0.01490569394081831, 0.009662743657827377, 0.005479968618601561, 0.1415371596813202, -0.0027612356934696436, 0.027798449620604515, -0.026372943073511124, 0.014055551961064339, 0.009078199043869972, 0.06220102310180664, -0.017976509407162666, 0.028354104608297348, -0.005309251137077808, 0.013180886395275593, -0.000907578447367996, 0.01948368363082409, -0.07468323409557343, -0.03529743850231171, 0.017584482207894325, 0.043848637491464615, -0.0023092664778232574, 0.028848445042967796, -0.00044197874376550317, -0.05167241767048836, 0.013897371478378773, 0.0676654800772667, 0.02643621154129505, 0.0338570773601532, -0.047179024666547775, -0.060428280383348465, -0.009498466737568378, -0.009955259971320629, -0.023409172892570496, 0.02210385724902153, 0.013430464081466198, 0.006558259017765522, 0.07282359898090363, 0.0302224550396204, -0.02592650055885315, -0.020687004551291466, -0.018181128427386284, -0.022047249600291252, -0.005343962926417589, 0.09797327220439911, 0.06080543249845505, 0.03569851815700531 ]
[ 0.0022485582157969475, 0.004159897565841675, 0.01873554289340973, -0.005342587828636169, -0.008733825758099556, 0.03125181421637535, 0.009755178354680538, -0.002134845592081547, 0.03472813591361046, 0.02251640148460865, 0.004102130886167288, 0.02654554881155491, 0.015460359863936901, 0.01733418181538582, 0.015757396817207336, -0.009303401224315166, 0.01735028810799122, -0.01722033880650997, 0.029796535149216652, 0.01149159949272871, -0.008526265621185303, 0.0178654957562685, -0.009228899143636227, 0.010720846243202686, -0.03105602040886879, 0.012894690036773682, 0.003224110696464777, -0.018027549609541893, 0.0236965361982584, -0.14657048881053925, -0.045983362942934036, -0.015832871198654175, -0.02586575224995613, 0.014223495498299599, -0.011811803095042706, 0.0056757694110274315, -0.01183249894529581, 0.012234128080308437, 0.009074999019503593, -0.02915945276618004, -0.03150253742933273, -0.016999926418066025, 0.006223594304174185, 0.016349611803889275, 0.0008184377220459282, -0.0032525777351111174, 0.004225744400173426, -0.04663008823990822, -0.025217734277248383, -0.030987774953246117, -0.02562636137008667, -0.024389449506998062, -0.01463004294782877, 0.006645659916102886, -0.00754298223182559, -0.0011266625951975584, 0.00091529794735834, -0.016350146383047104, 0.0031208707951009274, -0.004579365719109774, -0.006092449650168419, -0.01573401503264904, -0.045506659895181656, -0.0019538626074790955, -0.008741701021790504, 0.005127255339175463, -0.01443684846162796, 0.024996137246489525, -0.013569965027272701, -0.0057176342234015465, -0.003165775677189231, 0.01580057293176651, -0.021719710901379585, -0.04586615785956383, 0.015996001660823822, -0.01606755144894123, 0.010159661993384361, -0.022091763094067574, 0.03764677047729492, -0.019531507045030594, -0.023181086406111717, 0.0318751186132431, 0.016428276896476746, -0.01575021632015705, 0.0178710725158453, -0.027585554867982864, 0.019447296857833862, -0.005113561172038317, 0.023174390196800232, -0.005350581370294094, -0.026663843542337418, 0.02094418741762638, -0.03011302649974823, 0.00992165319621563, -0.0639684721827507, 0.022405024617910385, -0.024805322289466858, 0.014179776422679424, -0.010525182820856571, 0.8672863841056824, 0.021391723304986954, 0.05330108106136322, 0.00365641200914979, 0.002568113850429654, -0.008196868002414703, 0.004083683714270592, 0.01866147480905056, -0.0037671271711587906, 0.037311676889657974, -0.020386768504977226, 0.0048374286852777, -0.02353707328438759, 0.026315102353692055, 0.016155140474438667, 0.03602559119462967, 0.015836084261536598, 0.025050567463040352, 0.01952938176691532, -0.017421992495656013, 0.005077913403511047, 0.02060077339410782, 0.0159157607704401, 0.03229387104511261, -0.0024188393726944923, -0.009315351024270058, -0.19882267713546753, -0.000571219134144485, -8.242232841443834e-33, 0.05058527737855911, 0.010387414135038853, 0.003729350632056594, 0.01652926579117775, 0.0023729908280074596, -0.008397845551371574, 0.02176057919859886, 0.02197800576686859, 0.01674233190715313, -0.02013866975903511, -0.020483484491705894, -0.007158936932682991, 0.002201621187850833, -0.031753454357385635, 0.023695828393101692, -0.0134736904874444, -0.007963674142956734, 0.02478582039475441, -0.01967400498688221, 0.034819576889276505, 0.025051511824131012, 0.035980891436338425, 0.0007227305322885513, -0.024115072563290596, 0.005956521723419428, 0.026128724217414856, 0.0185259897261858, 0.04285648837685585, 0.023186929523944855, -0.038937751203775406, 0.012421773746609688, 0.02697204053401947, -0.030133763328194618, -0.007958539761602879, 0.008030211552977562, -0.03923321142792702, 0.006144896615296602, 0.00587623892351985, 0.027436692267656326, -0.06531748175621033, -0.02303246594965458, 0.0035712560638785362, -0.02501356229186058, -0.003047894686460495, -0.02102028578519821, -0.0023796698078513145, 0.0238080732524395, 0.014987589791417122, 0.004314817953854799, -0.0004324102192185819, -0.019655926153063774, 0.0025949920527637005, -0.010749021545052528, -0.03100205957889557, -0.033437129110097885, 0.009438750334084034, 0.002397168194875121, 0.018015675246715546, 0.002881433581933379, 0.008046185597777367, 0.005412769038230181, -0.0023634263779968023, -0.02779749222099781, 0.020888270810246468, -0.01030459813773632, -0.01280074380338192, -0.016762711107730865, -0.012523124925792217, 0.04584448039531708, -0.033181969076395035, -0.06082861125469208, 0.005503419786691666, -0.011344174854457378, -0.0112671609967947, 0.00335977622307837, -0.015261329710483551, 0.01002881582826376, 0.027279606088995934, -0.010939941741526127, 0.0475456677377224, 0.033983130007982254, -0.030810212716460228, 0.0030805456917732954, -0.05080806836485863, -0.027179094031453133, -0.007123775314539671, 0.027120346203446388, -0.016730578616261482, 0.012784324586391449, 0.010619094595313072, 0.03987246751785278, 0.0058611370623111725, 0.0016462825005874038, 0.004453576169908047, 0.0014935311628505588, 7.889295070713258e-33, 0.04046349972486496, -0.03503408655524254, -0.02305123396217823, 0.005123176146298647, 0.04703464359045029, -0.000754821056034416, 0.0031662604305893183, 0.00010552054300205782, -0.05354379117488861, 0.012073668651282787, -0.011560157872736454, -0.023050623014569283, -0.015337987802922726, 0.02556869015097618, 0.017247062176465988, -0.010414224117994308, 0.048169273883104324, -0.02439766563475132, 0.005446244962513447, 0.013627243228256702, 0.025651218369603157, 0.018025711178779602, -0.014490407891571522, 0.009299884550273418, 0.026989202946424484, 0.06320586800575256, -0.022243160754442215, 0.020513569936156273, 0.002519941655918956, 0.01848263293504715, 0.010732359252870083, -0.016648266464471817, 0.009520202875137329, -0.016107281669974327, -0.03737659007310867, 0.016574401408433914, -0.011311432346701622, -0.014873398467898369, -0.009159015491604805, -0.012953677214682102, 0.029347160831093788, -0.006578185595571995, -0.0024899563286453485, 0.006353741977363825, 0.03186798095703125, -0.005326453596353531, 0.00031611532904207706, -0.013438072055578232, -0.0005780479987151921, -0.004796162247657776, -0.018317023292183876, -0.015351255424320698, 0.008204425685107708, -0.03355187177658081, 0.028015609830617905, -0.008078077808022499, -0.014514932408928871, -0.029598552733659744, -0.01864357478916645, 0.01925785280764103, -0.006848494987934828, 0.030096497386693954, -0.008516860194504261, -0.027099184691905975, -0.022570013999938965, 0.005061107687652111, -0.05486835911870003, -0.01557010505348444, 0.007906497456133366, 0.004682251717895269, -0.0378788560628891, 0.0003232151793781668, 0.020200440660119057, 0.015486521646380424, 0.03418596833944321, -0.012022936716675758, -0.016952192410826683, -0.013321188278496265, -0.024513188749551773, 0.0005969071644358337, 0.006561292335391045, -0.015104321762919426, 0.015449969097971916, 0.015650145709514618, -0.01883576065301895, 0.024836549535393715, 0.015593183226883411, 0.05468178540468216, -0.004058570135384798, -0.01048476342111826, -0.02854882925748825, -0.014071143232285976, 0.02003760263323784, 0.00877157598733902, -0.020259210839867592, -1.3860977254864792e-8, -0.02188592217862606, 0.02164355106651783, 0.01109931617975235, 0.002647652756422758, 0.007588461972773075, -0.006448921747505665, 0.005651330109685659, -0.022909503430128098, -0.014960650354623795, 0.022519266232848167, 0.024772798642516136, -0.01305396668612957, 0.0065633212216198444, 0.0010728406487032771, 0.01135244034230709, -0.032329969108104706, -0.009465720504522324, -0.006320500746369362, 0.03156907483935356, -0.009556644596159458, 0.04090527072548866, 0.03672557324171066, -0.015826888382434845, 0.018852844834327698, 0.02363649196922779, 0.02001715637743473, -0.006616566795855761, -0.06774944812059402, -0.020556334406137466, -0.0010069975396618247, -0.007224904838949442, -0.03662778437137604, -0.019922887906432152, 0.028080208227038383, -0.02001895196735859, -0.016386697068810463, 0.007372202351689339, 0.01895151473581791, 0.008626190945506096, -0.01618191972374916, 0.0032377608586102724, -0.014136258512735367, 0.009126050397753716, -0.01655597612261772, -0.0258738212287426, 0.030264422297477722, -0.0240110345184803, -0.0426936075091362, -0.00047461275244131684, -0.0004888877738267183, -0.012512469664216042, 0.006762845441699028, -0.00936897937208414, 0.027346257120370865, 0.0042867837473750114, 0.015157472342252731, 0.010395142249763012, -0.027666645124554634, -0.057130854576826096, -0.034265462309122086, 0.027111312374472618, 0.01609255000948906, -0.034123580902814865, -0.02939222939312458 ]
thoughtworks-university-similarities-with-discussing-the-undiscussable
https://markhneedham.com/blog/2011/04/09/thoughtworks-university-similarities-with-discussing-the-undiscussable
false
2011-04-06 01:34:00
ThoughtWorks University: Letting people explore
[ "thoughtworks-university" ]
[ "ThoughtWorks University" ]
I've been acting as the tech lead on the project that we're working on at ThoughtWorks University and as a result I sometimes find myself being dragged away from my pair to help someone else. An interesting thing which I've noticed on more than one occasion is that when I've come back from helping - maybe 15 or 20 minutes later - my pair has actually got much further than I expected them to. I think there are probably more than one factors that lead to this but one which I think is quite applicable is that *having me there is stopping the grads from exploring the problem*. In general if I see someone moving around the editor or browser without there seeming to be any logical path I'll start asking questions to try and 'guide' them to where I believe we need to go. On other projects that I've worked on this has worked reasonably well because we both have a similar understanding of the problem, the tools and so on. In this case I think that shared understanding is much less and my approach is much more harmful. I've been reading John Medina's http://www.amazon.com/Brain-Rules-Principles-Surviving-Thriving/dp/0979777747/ref=sr_1_1?ie=UTF8&qid=1302114250&sr=8-1[Brain Rules] over the last couple of days and Rule #12 seems to agree with what I've observed: Rule #12: We are powerful and natural explorers ____ We are natural explorers, even if the habit sometimes stings us. The tendency is so strong, it is capable of turning us into lifelong learners. ____ I particularly liked the following section... ____ [Humans] Make a sensory observation, form a hypothesis about what is going on, design an experiment capable of testing the hypothesis, and then draw conclusions from the findings. ____ ..which seems to describe the process that I'm sometimes restricting by asking 'guiding' questions. http://twitter.com/jimbarritt[Jim] suggested that one way to get around this problem could be to split up as a pair when we're in this explorative mode but what I've been trying at the moment is keeping more silent and trying to understand what discovery is going on. I'm still getting it wrong sometimes but I'm starting to pick up more where they're really stuck and need some help and where I should just keep quiet and allow them to work out what to do themselves.
null
null
[ 0.030889950692653656, 0.008335494436323643, -0.017941517755389214, 0.035986192524433136, 0.08646991103887558, 0.007207972463220358, 0.02756291814148426, 0.039230380207300186, 0.02454087696969509, -0.033733662217855453, -0.03511705994606018, 0.011096184141933918, -0.03806741163134575, 0.020293451845645905, -0.03428128734230995, 0.0868944376707077, 0.059830814599990845, 0.011657629162073135, 0.0004745548067148775, -0.003850479144603014, 0.04807615652680397, 0.06252797693014145, 0.030773457139730453, 0.04214465990662575, 0.048642680048942566, -0.010336275212466717, 0.010413755662739277, -0.003333027707412839, -0.029928842559456825, 0.00020052355830557644, 0.0427582748234272, -0.006244841031730175, 0.00014098787505645305, -0.011522929184138775, 0.022049201652407646, -0.014926369301974773, -0.0274775680154562, 0.017916206270456314, 0.020545918494462967, 0.010617297142744064, -0.08368641883134842, 0.05301932990550995, -0.03649198263883591, -0.0006579846376553178, -0.0468132384121418, 0.013700663112103939, -0.04005894437432289, 0.01672910526394844, 0.030918898060917854, -0.0003128847456537187, -0.061607278883457184, 0.040330298244953156, 0.031153855845332146, -0.0057267602533102036, -0.02359950914978981, 0.04463224485516548, 0.027940772473812103, -0.059552669525146484, 0.016731157898902893, -0.04282749816775322, -0.009097433649003506, 0.007971136830747128, 0.0035237858537584543, 0.033312663435935974, 0.016537314280867577, -0.03326858580112457, 0.018500937148928642, 0.03980310261249542, -0.03539680689573288, 0.0334370918571949, -0.03243565186858177, 0.0004308770876377821, -0.024869292974472046, -0.016019802540540695, -0.004345324356108904, -0.043595898896455765, 0.0073175509460270405, 0.04645896330475807, 0.016621317714452744, 0.020478252321481705, -0.028256727382540703, 0.01963440142571926, 0.0059751225635409355, 0.024392828345298767, -0.012700501829385757, -0.041641123592853546, 0.02228066325187683, -0.02142249047756195, -0.08403047919273376, 0.0560588575899601, 0.006227718200534582, -0.05827978253364563, 0.013287955895066261, 0.03940444812178612, 0.008420553058385849, 0.023696282878518105, 0.04447941109538078, -0.02341141179203987, -0.029915720224380493, -0.019664673134684563, -0.02252003736793995, -0.02485658787190914, -0.007485525216907263, 0.048646874725818634, -0.08295401930809021, -0.011031349189579487, -0.0007571042515337467, -0.031711552292108536, -0.03746820241212845, 0.014372463338077068, -0.02952541783452034, 0.02529127337038517, -0.0229200329631567, 0.025792138651013374, -0.08247772604227066, 0.06881529092788696, 0.030284468084573746, -0.03503049537539482, -0.023115772753953934, 0.009411382488906384, 0.013077587820589542, 0.0059208073653280735, -0.010660538449883461, 0.058726150542497635, -0.006115850526839495, 0.010526575148105621, -0.031000128015875816, 0.03859757259488106, -0.013324991799890995, -0.0539371520280838, -0.0023619632702320814, 0.041494160890579224, -0.0156995952129364, -0.015465157106518745, 0.004687848966568708, -0.029737552627921104, 0.01856316812336445, 0.0030683460645377636, 0.011724326759576797, 0.07258901745080948, -0.00443069776520133, -0.04893709346652031, 0.022576291114091873, 0.003471395932137966, 0.03100435435771942, -0.007821719162166119, 0.00008617455750936642, -0.0020237925928086042, -0.05629150569438934, -0.019252441823482513, 0.005084137432277203, 0.00037436257116496563, 0.016378581523895264, -0.04245131462812424, 0.020482385531067848, 0.08111044019460678, 0.036948077380657196, 0.010111293755471706, -0.001739175640977919, 0.02688460797071457, 0.04235587269067764, 0.03738986328244209, 0.007233662065118551, 0.03237088769674301, 0.022518953308463097, -0.007545194588601589, -0.009991070255637169, 0.04314868152141571, -0.020940490067005157, 0.02721415087580681, -0.05373993143439293, -0.03174520283937454, 0.05122639238834381, -0.04818311333656311, -0.02781548537313938, 0.04600583016872406, 0.07098844647407532, 0.041009459644556046, 0.02124268375337124, -0.00018498253484722227, -0.08053866773843765, 0.031566400080919266, -0.006487580947577953, 0.022842591628432274, 0.021682297810912132, -0.036027032881975174, 0.041798874735832214, 0.030848698690533638, -0.004233154002577066, 0.04547322168946266, -0.06786830723285675, -0.08809048682451248, -0.03559934347867966, -0.005814460571855307, 0.053600113838911057, -0.031544893980026245, 0.007262542378157377, 0.0725373774766922, 0.01097206398844719, 0.0493115559220314, 0.032264344394207, -0.004344650078564882, 0.007607000879943371, -0.028741855174303055, -0.05502200126647949, 0.07172441482543945, 0.025722069665789604, -0.007075962610542774, -0.03593576326966286, 0.015881607308983803, -0.03100932203233242, -0.010839661583304405, 0.03464452177286148, -0.026063160970807076, 0.04240579530596733, -0.006180531810969114, 0.05843576788902283, -0.030333200469613075, 0.0419437475502491, -0.02805887535214424, -0.0034274801146239042, -0.0029296588618308306, -0.008603512309491634, 0.024706248193979263, -0.003430158132687211, 0.1077938824892044, 0.04401719570159912, -0.05562708526849747, -0.0528712198138237, 0.04733268916606903, 0.016602950170636177, -0.04338764399290085, 0.0025170461740344763, -0.003932523541152477, 0.005467384587973356, 0.003370982827618718, -0.054894983768463135, -0.052122995257377625, 0.04018101841211319, -0.06520047783851624, 0.00009610713459551334, 0.05917220935225487, -0.02959834411740303, 0.08495654165744781, -0.013728001154959202, -0.01319859828799963, 0.013606827706098557, -0.006701845210045576, -0.048539258539676666, 0.013256857171654701, 0.007456684950739145, -0.012624718248844147, 0.024323400110006332, -0.005406229756772518, -0.01939978636801243, -0.049270179122686386, -0.02521982043981552, 0.004944265354424715, 0.06850463151931763, 0.06194480508565903, -0.01648067682981491, 0.08268003165721893, -0.015357240103185177, 0.046438220888376236, 0.0005240060854703188, -0.05047871917486191, -0.03379502147436142, -0.04298960044980049, 0.007970246486365795, 0.025107715278863907, 0.00042197786387987435, -0.005005478858947754, 0.03304558992385864, 0.016700420528650284, -0.02403659000992775, -0.00285040820017457, 0.03744414821267128, -0.0004781625175382942, -0.007171310018748045, -0.021432293578982353, 0.010139782913029194, 0.05133634805679321, -0.03755214065313339, 0.0025426342617720366, 0.015476769767701626, -0.08822257816791534, 0.02843310870230198, -0.049334537237882614, -0.040889985859394073, -0.0006987835513427854, 0.010203844867646694, 0.04238959401845932, 0.04449181631207466, 0.017093786969780922, 0.060603152960538864, 0.024987922981381416, 0.027567148208618164, 0.004181671421974897, 0.0028827909845858812, 0.0451207160949707, -0.005043185316026211, -0.024088481441140175, 0.03316817060112953, 0.011984329670667648, -0.0016868398524820805, -0.04179522022604942, 0.06994446367025375, -0.04405517503619194, -0.2842084765434265, 0.02433416061103344, 0.016529234126210213, -0.009146692231297493, 0.020665617659687996, -0.04884805157780647, 0.039053335785865784, -0.057743534445762634, -0.024928105995059013, 0.01994301751255989, -0.02999887242913246, -0.03363347426056862, -0.016582559794187546, 0.0611141063272953, 0.00016734519158490002, 0.01825040765106678, 0.0045449212193489075, -0.05084953084588051, 0.009483776055276394, 0.054330673068761826, 0.0013800431042909622, -0.04395567253232002, -0.014877610839903355, 0.0542781837284565, 0.05838106572628021, 0.07073590904474258, -0.0761907696723938, 0.03973156213760376, -0.05973508954048157, -0.00370471621863544, 0.02394181117415428, -0.01864147000014782, 0.0018445973983034492, -0.024972811341285706, 0.011344008147716522, -0.012330727651715279, 0.05494167283177376, -0.00381222041323781, 0.011590237729251385, 0.027901271358132362, -0.027378318831324577, -0.034163698554039, -0.00873786024749279, 0.03125273436307907, 0.056617721915245056, -0.003306696191430092, -0.06415478885173798, -0.025178199633955956, -0.012440343387424946, 0.07280484586954117, -0.04450874775648117, -0.007821653969585896, -0.010998662561178207, 0.021536998450756073, 0.0016664596041664481, -0.014198306016623974, 0.0020090530160814524, -0.006905003450810909, -0.04730772599577904, -0.046313244849443436, -0.013087514787912369, -0.011315488256514072, -0.012367508374154568, -0.059854283928871155, 0.016719691455364227, -0.06146905943751335, -0.07381614297628403, -0.018487755209207535, 0.06225286424160004, 0.009821676649153233, -0.02934088557958603, 0.022628815844655037, -0.013825861737132072, -0.1165008544921875, -0.0053564743138849735, -0.00046790714259259403, -0.03966270387172699, -0.0061325980350375175, 0.012639284133911133, 0.042543284595012665, -0.027134140953421593, -0.044314246624708176, 0.020190434530377388, 0.02328140288591385, 0.020410817116498947, -0.015465871430933475, 0.03274641931056976, 0.010957752354443073, -0.04100710153579712, 0.019017115235328674, 0.04882144555449486, 0.02017916738986969, -0.05306073650717735, -0.04212142527103424, 0.020672868937253952, 0.01911328174173832, 0.009004373103380203, -0.005368442740291357, 0.019229939207434654, 0.03347507491707802, -0.0003518472658470273, -0.05222209170460701, 0.026004603132605553, -0.01573186367750168, -0.027089308947324753, -0.018657764419913292, -0.05887655168771744, 0.03465068340301514, 0.049136508256196976, 0.01637999154627323, -0.004346879664808512, -0.0032116558868438005, 0.02210569567978382, -0.025962334126234055, -0.013736381195485592, -0.030946502462029457, 0.00004297158739063889, 0.04621032625436783, -0.011740916408598423, -0.015980470925569534, -0.049896951764822006, 0.006930467206984758, -0.0016787259373813868, -0.005584891885519028, -0.047217756509780884, -0.012551302090287209, -0.009320644661784172, -0.03428763896226883, -0.017381154000759125, 0.018514761701226234, -0.020948415622115135, 0.013548639602959156, 0.04103216156363487, -0.016469096764922142, 0.01435421034693718, -0.044129688292741776, -0.08218930661678314, -0.014253512024879456, 0.00514638377353549, -0.0014793181326240301, -0.029223304241895676, 0.013965667225420475, 0.01085677184164524, 0.01759403944015503, 0.046374112367630005, 0.01930597983300686, -0.0004811444669030607, -0.025739898905158043, 0.02442411333322525, 0.006480114068835974, 0.0049077607691287994, -0.03861693665385246, 0.0090646306052804, -0.03582674637436867, -0.00972785521298647, -0.033749714493751526, 0.012268719263374805, -0.011586565524339676, -0.014899110421538353, -0.017744146287441254, -0.0017772311111912131, -0.07725946605205536, -0.025304850190877914, -0.03317216411232948, 0.02075834758579731, 0.06597784906625748, -0.031198590993881226, 0.004163620062172413, -0.014401697553694248, -0.017323506996035576, 0.024564580991864204, 0.0017647015629336238, -0.051484134048223495, 0.0009658383787609637, 0.005960050038993359, 0.010229022242128849, -0.006011823192238808, -0.011347961612045765, 0.04179835319519043, 0.005509144626557827, -0.014183379709720612, -0.03525027260184288, 0.009707647375762463, -0.003600358497351408, 0.0458240881562233, 0.021939361467957497, 0.00788402184844017, -0.007555495481938124, -0.017846841365098953, -0.020016536116600037, -0.045766834169626236, -0.022599296644330025, -0.0037693839985877275, 0.015819068998098373, -0.04314257204532623, -0.07049815356731415, 0.051590654999017715, 0.0018542698817327619, 0.007224762346595526, 0.027371864765882492, -0.0028769962955266237, -0.008894163183867931, -0.027462439611554146, 0.033492788672447205, 0.0607524998486042, -0.08045078068971634, 0.009581642225384712, 0.004232214298099279, -0.022003697231411934, 0.030441779643297195, -0.01795143634080887, -0.03137556090950966, -0.011886770837008953, -0.03564169257879257, 0.01941033825278282, -0.0823885053396225, -0.03602985292673111, -0.03585277497768402, 0.03601311892271042, 0.012880317866802216, 0.0016491489950567484, -0.020798567682504654, -0.0027138369623571634, -0.018841352313756943, -0.027411462739109993, 0.0004419209435582161, -0.04264718294143677, 0.009785052388906479, 0.023241408169269562, -0.04223235696554184, -0.007943780161440372, -0.01961878314614296, 0.01477031596004963, 0.027814693748950958, -0.028090938925743103, -0.017953457310795784, -0.01092078909277916, 0.003426276845857501, 0.010516231879591942, 0.038074392825365067, 0.004484275355935097, -0.03276693820953369, -0.0662975162267685, -0.01215293351560831, -0.023628050461411476, 0.033346887677907944, -0.024998782202601433, 0.009255818091332912, 0.03540216013789177, 0.04888154938817024, 0.022131767123937607, 0.00264545320533216, -0.003621982876211405, -0.01003001444041729, 0.028352901339530945, -0.05225248262286186, -0.024803582578897476, -0.03624432906508446, -0.0477108508348465, 0.005275815259665251, 0.011787423864006996, 0.022234953939914703, -0.05692465603351593, 0.042790304869413376, 0.002655929187312722, 0.005099669564515352, 0.016732553020119667, 0.030681084841489792, 0.0261746346950531, -0.05490850657224655, 0.007501273415982723, -0.08923765271902084, -0.01399669237434864, 0.023532763123512268, -0.027622904628515244, 0.00440853089094162, -0.005388397723436356, -0.03577303886413574, 0.05304291471838951, -0.0924290344119072, -0.02197866141796112, 0.05364105850458145, -0.0020161126740276814, -0.004463460296392441, 0.02134837955236435, -0.07002604007720947, 0.02422271855175495, 0.01374314446002245, -0.039279576390981674, -0.030391233041882515, -0.02185549959540367, 0.05573495849967003, 0.00203165621496737, 0.006809107959270477, -0.007903407327830791, -0.004015141166746616, 0.08199246972799301, 0.006380144041031599, 0.005635384935885668, 0.050187014043331146, -0.01417978573590517, 0.04115235060453415, 0.04451558738946915, 0.029438192024827003, -0.005623742006719112, 0.013254721648991108, 0.0025753320660442114, -0.0519535206258297, 0.037690505385398865, -0.007821432314813137, -0.021177057176828384, -0.04402007535099983, 0.049848150461912155, 0.035389430820941925, -0.03060605563223362, -0.032163653522729874, 0.005466843955218792, -0.04975750297307968, -0.0027182195335626602, -0.005641544237732887, -0.022033685818314552, -0.021325912326574326, 0.040488023310899734, -0.014996866695582867, 0.02827141061425209, 0.05827672407031059, -0.0021020197309553623, -0.015765799209475517, -0.003904820652678609, 0.11017222702503204, 0.06960593909025192, 0.07616487890481949, 0.02079143561422825, 0.08821883052587509, -0.0025676991790533066, -0.04704558849334717, 0.02876046672463417, -0.012475152499973774, -0.042275719344615936, -0.01978668011724949, 0.0265787523239851, 0.05412904918193817, -0.01130289863795042, 0.044264599680900574, -0.016072750091552734, -0.005973365623503923, 0.002788844984024763, 0.04863893985748291, 0.02659778483211994, 0.0616440623998642, 0.019548427313566208, 0.0026937962975353003, -0.025979993864893913, -0.06083886697888374, 0.00924284290522337, -0.03871719911694527, -0.006765525788068771, 0.029064374044537544, -0.03643685206770897, 0.0316806398332119, 0.011319905519485474, 0.031518276780843735, 0.07506555318832397, -0.02489546872675419, 0.02611520141363144, -0.0036348372232168913, 0.03287433832883835, -0.017534228041768074, 0.01888062059879303, -0.013455364853143692, 0.0042281621135771275, 0.004445863887667656, -0.02607303485274315, -0.02268247865140438, -0.01519326213747263, -0.006696276366710663, 0.02779032476246357, -0.03568550944328308, 0.0031892526894807816, 0.03410235047340393, 0.025910181924700737, -0.02399715594947338, -0.06044139713048935, -0.023326443508267403, -0.042375363409519196, -0.04342665895819664, -0.0015871116193011403, 0.03026592545211315, -0.012513739988207817, -0.03348429128527641, -0.004783819895237684, -0.016114162281155586, -0.03580668568611145, 0.03830711171030998, -0.05600285157561302, -0.01946190372109413, 0.03374464809894562, 0.03056139498949051, 0.02630842663347721, -0.0034542069770395756, 0.048096396028995514, -0.014149968512356281, 0.000691984489094466, -0.020370248705148697, 0.009767400100827217, 0.034043215215206146, -0.0077353292144834995, -0.002714546862989664, -0.0709969773888588, 0.005015196744352579, 0.008707708679139614, -0.02054794691503048, -0.06654653698205948, 0.024779172614216805, 0.03527393937110901, 0.022824721410870552, 0.053725745528936386, -0.001047557103447616, -0.003379056230187416, -0.05925552919507027, -0.008690642192959785, -0.008108388632535934, -0.014636448584496975, 0.06233317032456398, -0.027658212929964066, 0.07282398641109467, 0.008643665350973606, -0.022232605144381523, -0.04584744572639465, -0.03392179682850838, 0.019506029784679413, -0.006013637408614159, -0.02604636922478676, -0.03307601064443588, 0.00005098328256281093, -0.11232852935791016, -0.037258297204971313, 0.039687857031822205, -0.03370247408747673, -0.04339462146162987, 0.021152624860405922, 0.01079636625945568, -0.007232458796352148, 0.03591066971421242, -0.06349175423383713, 0.021071244031190872, -0.015113904140889645, -0.018136819824576378, 0.007571891415864229, -0.00023575474915560335, -0.003070422913879156, -0.010847775265574455, 0.016624249517917633, -0.03839720040559769, -0.019068971276283264, -0.013085572980344296, 0.03635093569755554, 0.05820668861269951, 0.01237956341356039, -0.020327424630522728 ]
[ -0.06754020601511002, 0.011816159822046757, -0.019564751535654068, -0.011861835606396198, 0.02800496108829975, -0.0340719148516655, 0.026219472289085388, 0.012972506694495678, 0.0013111804146319628, -0.0458100363612175, 0.011072533205151558, -0.04321178421378136, 0.01328700315207243, -0.025044208392500877, 0.09344484657049179, 0.011702975258231163, -0.02244476228952408, -0.07960637658834457, -0.010280718095600605, 0.04095162823796272, -0.021324018016457558, -0.04176199808716774, -0.03179048001766205, -0.007605960126966238, -0.00856797769665718, 0.026343736797571182, 0.03022117167711258, -0.0567547082901001, 0.020703546702861786, -0.15937088429927826, 0.01919925957918167, 0.00949430838227272, 0.03326845541596413, -0.016148559749126434, -0.005192453972995281, 0.08029533922672272, 0.015390102751553059, 0.001144910929724574, -0.007916003465652466, 0.030606629326939583, 0.019536186009645462, 0.0055445414036512375, -0.013090725988149643, -0.02465215139091015, 0.025823188945651054, 0.034292250871658325, -0.008192217908799648, -0.049386560916900635, -0.021309101954102516, -0.013456792570650578, -0.05913037806749344, -0.039334408938884735, -0.03322388604283333, -0.0025630341842770576, -0.02239423803985119, 0.04190605506300926, 0.036686964333057404, 0.028327707201242447, -0.005795948673039675, 0.02574671246111393, 0.027699410915374756, -0.012002537958323956, -0.13828133046627045, 0.08851859718561172, 0.05082174018025398, 0.03996456041932106, -0.04748004674911499, -0.01336438674479723, -0.0033946335315704346, 0.08390071243047714, 0.020923160016536713, -0.013475285843014717, -0.02528700977563858, 0.026157744228839874, 0.03190702572464943, 0.021118242293596268, -0.003740152344107628, 0.015058471821248531, 0.04264272376894951, -0.06363242864608765, -0.0064176274463534355, 0.011847252026200294, -0.014919256791472435, -0.004055884201079607, -0.0345742404460907, 0.03198232874274254, -0.01170913316309452, 0.023438451811671257, -0.005074960179626942, 0.026109367609024048, 0.03887287899851799, -0.015437237918376923, 0.003653105581179261, -0.0011248965747654438, -0.08301974833011627, -0.03325095772743225, 0.0009365583537146449, 0.018871430307626724, -0.06836206465959549, 0.4658694267272949, -0.025405945256352425, 0.007674138993024826, 0.10064314305782318, 0.0361655130982399, -0.02194187045097351, -0.008070368319749832, 0.009179525077342987, -0.07395879924297333, 0.04918874800205231, -0.012819360010325909, 0.0378769226372242, 0.007115775719285011, 0.047722652554512024, -0.025327561423182487, 0.01809774525463581, 0.0509931780397892, 0.05166494473814964, 0.008219894021749496, -0.0036581202875822783, -0.04301409423351288, -0.03338386490941048, 0.009158821776509285, 0.033671390265226364, -0.014305097050964832, -0.01661795936524868, -0.0619099996984005, 0.02564901113510132, 0.06246562674641609, 0.02368088997900486, -0.02495891973376274, 0.07071716338396072, -0.07386835664510727, -0.04495253413915634, 0.001872729859314859, -0.022027701139450073, 0.00799704808741808, 0.018918441608548164, -0.017746783792972565, 0.017578642815351486, 0.06066511943936348, 0.030949154868721962, -0.026482850313186646, 0.018264856189489365, -0.036728259176015854, -0.021744292229413986, 0.1198882982134819, 0.03082849085330963, -0.05216872692108154, -0.015126476064324379, -0.015022743493318558, 0.0037927040830254555, 0.0034642021637409925, -0.01834721490740776, -0.04635925590991974, 0.028405403718352318, 0.008842025883495808, 0.071775421500206, -0.015427624806761742, -0.05426023155450821, 0.02733951061964035, 0.0010108137503266335, -0.02714438922703266, -0.06752599775791168, 0.028699226677417755, 0.11001726984977722, -0.04677441343665123, -0.00496583990752697, -0.008281061425805092, 0.03360792621970177, -0.06932692974805832, 0.02393253520131111, 0.003107021562755108, -0.003840515622869134, 0.011555209755897522, 0.03831692039966583, -0.035442717373371124, -0.054983705282211304, 0.024381868541240692, 0.018654733896255493, 0.010946007445454597, 0.023195698857307434, -0.012668619863688946, -0.04822055250406265, 0.008798114955425262, -0.03858831897377968, -0.08077751845121384, -0.026085415855050087, -0.025430910289287567, -0.03474656119942665, 0.00010063611989608034, 0.00218634563498199, -0.017989588901400566, -0.07898512482643127, 0.08190653473138809, -0.03488115593791008, -0.023837415501475334, 0.021966295316815376, -0.03097430057823658, -0.07421538233757019, 0.008590887300670147, -0.04864789545536041, 0.005479511339217424, -0.06942209601402283, 0.023280948400497437, -0.05377175658941269, 0.05201748386025429, 0.06484504789113998, -0.028145665302872658, 0.11027369648218155, 0.04421231150627136, 0.0020678199362009764, -0.05100281909108162, 0.0009846637258306146, 0.025853954255580902, 0.004389569163322449, -0.01553145982325077, 0.012059172615408897, 0.0004177248338237405, 0.00829078909009695, 0.03466668352484703, 0.002320670522749424, -0.0069790855050086975, -0.015592584386467934, -0.3406717777252197, -0.06015123054385185, -0.028812509030103683, 0.0009784353896975517, 0.026789281517267227, -0.0458713099360466, 0.027290338650345802, -0.009436647407710552, -0.026232022792100906, 0.01074930652976036, 0.06141828000545502, -0.008040500804781914, -0.00036502128932625055, -0.05817307159304619, 0.021533479914069176, 0.007976031862199306, -0.02183273807168007, 0.015246533788740635, -0.029813285917043686, 0.0016874801367521286, -0.011855432763695717, 0.001526814652606845, -0.007139983121305704, -0.051213618367910385, -0.005273343529552221, -0.029168618842959404, 0.10779249668121338, 0.034834831953048706, 0.052089691162109375, -0.021527862176299095, 0.014325582422316074, 0.011507822200655937, 0.03663833439350128, -0.12299568951129913, -0.007649623788893223, -0.010957636870443821, 0.0041957879438996315, -0.043103501200675964, 0.02569856122136116, -0.04432001709938049, -0.06682251393795013, 0.012993448413908482, -0.06167370453476906, -0.008670360781252384, -0.09880713373422623, 0.015814872458577156, -0.02372833900153637, -0.0075950114987790585, -0.022138725966215134, 0.06830430775880814, 0.028068002313375473, -0.016397375613451004, 0.0005089929909445345, -0.01472716685384512, -0.04554168879985809, -0.020852521061897278, -0.10308147221803665, 0.01624101772904396, -0.013557306490838528, -0.0029027240816503763, -0.013938916847109795, 0.08344623446464539, 0.028455693274736404, -0.05774635821580887, 0.0007264853920787573, 0.0037287957966327667, 0.004078309051692486, 0.04055649787187576, 0.04591874033212662, 0.0029902062378823757, -0.00365590862929821, 0.09110493957996368, -0.007958163507282734, 0.0020509653259068727, -0.002161039737984538, 0.0379868783056736, -0.01931680180132389, 0.016327036544680595, -0.006206633523106575, 0.01693236641585827, 0.03830189257860184, -0.04342145100235939, 0.017843298614025116, -0.02131086029112339, -0.001614769222214818, 0.003110855119302869, -0.0073564667254686356, -0.057037413120269775, 0.07220622152090073, 0.0061228275299072266, -0.0004052396980114281, 0.026586221531033516, -0.028418410569429398, -0.07216764241456985, 0.08471561223268509, 0.0005941023700870574, -0.23805668950080872, 0.03403223678469658, 0.060971736907958984, 0.04754539579153061, -0.026399381458759308, 0.06776540726423264, 0.02429879456758499, -0.012268331833183765, 0.014458774589002132, -0.0037366768810898066, 0.018527474254369736, 0.01326990406960249, 0.006223034113645554, 0.03598294407129288, 0.03436776623129845, -0.0074987816624343395, 0.03319445624947548, -0.0006986283115111291, 0.008204502053558826, 0.00042927192407660186, 0.003648979589343071, -0.002687326865270734, 0.13586728274822235, 0.027499280869960785, 0.024765439331531525, 0.0067536612041294575, 0.002808207646012306, 0.010076049715280533, 0.05393680930137634, -0.03484945744276047, -0.0037889115046709776, 0.0072100101970136166, -0.002362828468903899, -0.022071324288845062, 0.048792678862810135, -0.07708156853914261, -0.021573958918452263, 0.013169459067285061, 0.04147561639547348, 0.009128598496317863, 0.032333359122276306, -0.005543078295886517, -0.01838085800409317, 0.00959208607673645, 0.09281998872756958, 0.0060510640032589436, 0.011514975689351559, -0.014505601488053799, -0.0733022391796112, -0.005255862604826689, -0.03105592541396618, -0.02543741650879383, 0.013704909943044186, 0.007545832544565201, 0.01568945124745369, 0.06878574937582016, 0.03723306953907013, -0.022959351539611816, 0.00505307549610734, -0.022776776924729347, -0.040939826518297195, -0.01144315954297781, 0.09979991614818573, 0.0384366475045681, 0.03575614094734192 ]
[ -0.018825631588697433, 0.0012535277055576444, 0.027203533798456192, 0.005417268723249435, 0.014088871888816357, -0.010895172134041786, -0.002692097332328558, -0.005521056242287159, -0.00013195461360737681, 0.006463144905865192, -0.000553172780200839, 0.014938722364604473, -0.0035550545435398817, 0.0052488455548882484, -0.007584128063172102, -0.005944516509771347, -0.0042032841593027115, -0.03559809923171997, 0.022777026519179344, 0.032850127667188644, -0.016646860167384148, 0.010542615316808224, -0.01315434742718935, -0.012261811643838882, -0.024277832359075546, 0.013066877610981464, 0.005245805252343416, -0.045154161751270294, 0.044828660786151886, -0.13293884694576263, -0.033263977617025375, -0.04058729112148285, -0.020767439156770706, -0.005418977700173855, -0.011106384918093681, 0.00610476266592741, -0.000002802617927954998, 0.012142078951001167, 0.009458191692829132, -0.017216894775629044, -0.039109259843826294, -0.020411934703588486, 0.003462519496679306, 0.027264168485999107, -0.011527810245752335, -0.005107910372316837, 0.007337008602917194, -0.05873429775238037, -0.01600840501487255, -0.02589547634124756, -0.03976565971970558, -0.004582665394991636, -0.054686471819877625, 0.023974407464265823, 0.019625836983323097, 0.02506341226398945, 0.008198886178433895, -0.011946544051170349, 0.00257999449968338, 0.0072334278374910355, 0.013274992816150188, -0.020171476528048515, -0.051465269178152084, -0.03540985658764839, -0.017750371247529984, 0.004766254685819149, -0.03847988694906235, 0.01560723502188921, -0.022310374304652214, 0.011884333565831184, -0.007932164706289768, 0.009933778084814548, -0.027982361614704132, -0.022418614476919174, 0.03308819979429245, 0.015068160369992256, -0.0218167956918478, -0.02230745740234852, 0.005057774018496275, -0.018000131472945213, -0.037253063172101974, 0.01415912713855505, -0.0007875885348767042, 0.006212558131664991, 0.024567149579524994, -0.011637059040367603, 0.00525372801348567, 0.015310247428715229, 0.013737651519477367, 0.011279151774942875, -0.012823909521102905, 0.014618505723774433, -0.0059611182659864426, 0.0299997441470623, -0.08962097764015198, 0.001938152126967907, -0.034059442579746246, 0.0006701704114675522, -0.012436885386705399, 0.8651111721992493, -0.01279097143560648, 0.03474583104252815, 0.0335111990571022, -0.0036887817550450563, -0.012182919308543205, 0.018236560747027397, 0.000911193317733705, -0.016084786504507065, 0.039123084396123886, -0.0142637575045228, 0.017801446840167046, 0.009412064217031002, 0.00545848160982132, 0.028342178091406822, 0.028168704360723495, 0.012160943821072578, 0.008282069116830826, 0.03529171273112297, 0.006712555419653654, -0.0028006620705127716, 0.017894119024276733, 0.010379615239799023, -0.0004076907935086638, -0.0010165813146159053, 0.028247667476534843, -0.2148032933473587, 0.0001399438624503091, -7.806544676519184e-33, 0.0515904501080513, 0.006967728491872549, -0.014715822413563728, 0.0003661464434117079, -0.0009764966671355069, 0.0014812401495873928, 0.014051256701350212, 0.03601944074034691, -0.03280281275510788, -0.015689216554164886, 0.019415009766817093, -0.010884542018175125, -0.00461651012301445, -0.008195444010198116, 0.01222492940723896, -0.008970404975116253, 0.014151101000607014, 0.026954159140586853, -0.023409973829984665, 0.0009651914006099105, 0.04145855829119682, 0.024102868512272835, -0.010565686039626598, -0.013425108976662159, 0.01280437596142292, -0.006105220876634121, -0.01808757148683071, 0.027048243209719658, -0.00011206884664716199, -0.0392836257815361, -0.03619940206408501, 0.03947177529335022, -0.02053578570485115, -0.017367038875818253, 0.0014113265788182616, -0.03304409608244896, 0.009725047275424004, 0.00205421750433743, 0.003944976255297661, -0.03258432820439339, -0.03076714277267456, 0.03121413290500641, 0.0010005960939452052, -0.016188787296414375, 0.002043840242549777, -0.02135785110294819, 0.022830845788121223, 0.03096267767250538, 0.005184484180063009, -0.011839750222861767, -0.026751667261123657, -0.001351026352494955, 0.009748106822371483, -0.002723955549299717, -0.017606886103749275, 0.021724699065089226, 0.004287664778530598, 0.022180858999490738, -0.0020934229250997305, 0.015429111197590828, 0.03389974310994148, 0.023491809144616127, -0.008683198131620884, 0.029837599024176598, -0.00005453447374748066, 0.004788145888596773, 0.009668687358498573, 0.013821263797581196, 0.03942720219492912, 0.0000037451741263794247, -0.07166452705860138, 0.015693068504333496, -0.0017976830713450909, -0.0327254943549633, -0.004727567546069622, -0.013810094445943832, -0.006845235824584961, 0.011435562744736671, -0.01878831721842289, 0.04068992659449577, -0.008623304776847363, -0.007730015087872744, -0.011739744804799557, -0.03217574581503868, -0.0036001326516270638, 0.03149767965078354, -0.00030440272530540824, -0.0027079444844275713, -0.010620667599141598, 0.03012232482433319, 0.029092533513903618, 0.021401945501565933, -0.013488632626831532, -0.01091448962688446, -0.020671982318162918, 7.603420722065032e-33, -0.00041815228178165853, -0.017250388860702515, 0.0035628664772957563, 0.007729868870228529, 0.04129397124052048, -0.010121715255081654, 0.014734089374542236, -0.006468563340604305, -0.0533858984708786, 0.01612194813787937, -0.02782072126865387, -0.005481921602040529, -0.024325313046574593, -0.0004212629864923656, 0.015847932547330856, -0.024903055280447006, 0.01535985991358757, -0.03921850770711899, 0.022694416344165802, -0.009813951328396797, -0.013110999017953873, 0.0168361347168684, 0.0018090375233441591, -0.00671197846531868, 0.017302028834819794, 0.05492506921291351, 0.013705379329621792, 0.024730315431952477, -0.006995391100645065, 0.0005766695830971003, -0.012258234433829784, 0.005278748460114002, -0.00013753323582932353, -0.033461157232522964, -0.013978015631437302, 0.026969367638230324, -0.022572364658117294, -0.016166459769010544, 0.003101966343820095, -0.0019869788084179163, 0.01177220605313778, 0.03098299354314804, 0.009638242423534393, 0.018461672589182854, 0.02468062750995159, 0.018865292891860008, 0.00023072106705512851, -0.00014623659080825746, -0.03226752206683159, 0.022585967555642128, 0.024254465475678444, 0.02368856593966484, -0.016439281404018402, -0.04481547698378563, -0.0021508662030100822, -0.03260086849331856, -0.015026882290840149, -0.00022438933956436813, -0.0066914670169353485, 0.010583336465060711, 0.0041318610310554504, -0.008303112350404263, -0.023823579773306847, 0.015497157350182533, -0.02664378471672535, 0.02745925821363926, -0.02294648066163063, 0.02957942709326744, -0.007699382491409779, 0.02767684869468212, -0.018780400976538658, 0.00003230198490200564, 0.0073034996166825294, 0.01871352642774582, 0.01763712614774704, -0.017537444829940796, -0.018069371581077576, -0.007105585187673569, -0.001983423251658678, 0.02833370864391327, 0.01636432483792305, 0.016676556318998337, 0.031356390565633774, -0.0032079501543194056, -0.00022618506045546383, 0.0433126799762249, -0.02494105137884617, 0.049739934504032135, -0.0034766304306685925, -0.009248344227671623, -0.006926185917109251, -0.012248272076249123, 0.011905931867659092, 0.010595559142529964, -0.018664322793483734, -1.3667342813050709e-8, -0.009178481064736843, 0.014778511598706245, 0.0020127734169363976, 0.008560975082218647, 0.008154071867465973, -0.0024751434102654457, -0.003124824957922101, 0.01538139395415783, -0.020799217745661736, 0.019778650254011154, 0.020229989662766457, -0.033920519053936005, 0.013254821300506592, 0.040604185312986374, 0.03051997534930706, -0.03936778008937836, 0.015167197212576866, -0.01930859684944153, 0.018027078360319138, -0.02302287332713604, 0.028152260929346085, 0.056393206119537354, -0.010285744443535805, 0.033220116049051285, 0.009399180300533772, -0.005832418333739042, -0.004608917981386185, -0.07608085125684738, -0.017063600942492485, 0.021475424990057945, -0.00007342574099311605, -0.028193827718496323, -0.03318050876259804, 0.03210841491818428, -0.0011277893790975213, -0.03521404042840004, -0.016309846192598343, 0.016654925420880318, 0.01546669565141201, -0.009866701439023018, -0.005265130661427975, -0.01911459118127823, -0.007203700020909309, -0.009189545176923275, -0.012632273137569427, 0.022445565089583397, -0.019065575674176216, -0.018659790977835655, -0.010162875056266785, -0.017445947974920273, 0.02849598415195942, -0.036038655787706375, 0.02743992954492569, -0.013254220597445965, 0.020002594217658043, 0.011757749132812023, 0.0010407549561932683, -0.0061116828583180904, -0.05406315252184868, -0.03086720034480095, 0.019250808283686638, 0.01601260155439377, -0.040388818830251694, -0.03599407151341438 ]
thoughtworks-university-letting-people-explore
https://markhneedham.com/blog/2011/04/06/thoughtworks-university-letting-people-explore
false
2011-04-24 14:11:36
The ladder of inference
[ "communication", "discussing-the-undiscussable" ]
[ "Communication" ]
In http://www.discussingtheundiscussable.com/[Discussing the Undiscussable] William Noonan describes *the ladder of inference*, a tool which can be used to help us achieve double loop learning with respect to our interactions with other people. ____ Ladder of Inference helps people identify what information or facts are used as the basis for their reasoning process. It also helps people understand how they interpret that information and how they apply their interpretation to the issue or problem at hand. Essentially, the Ladder of Inference is a metaphorical tool designed to help people understand and describe their use of inductive reasoning. Given what we see, what conclusions do we draw? ____ image::{{<siteurl>}}/uploads/2011/04/ladder-of-inference.jpg[Ladder of inference,326] The book mainly describes the ways that we end up climbing the inference ladder ourselves but I've been thinking recently that it's quite interesting to know that in all likelihood that's how other people are thinking about the things that we do. One of the main examples of people climbing the ladder of inference in an 'agile' context is when somebody comes late to the standup in the morning. The other members of the team often jump up the ladder and come to the conclusion that the late person is lazy/doesn't care about the project or their time and is generally a bad person, all before finding out why they were late! The ladder climbing gets even worse if the person is a serial offender and even though it's unfair to that person, it's unlikely that you're going to be able to get all the other people in the team to change their way of thinking. It therefore makes sense to be aware that people may be making these inferences about our behaviour and perhaps adjust the way we act accordingly.
null
null
[ 0.015020865947008133, 0.02140478789806366, -0.01837797649204731, 0.026725223287940025, 0.07933942973613739, -0.0020569514017552137, 0.03732101991772652, 0.017639562487602234, 0.009769038297235966, -0.015726793557405472, 0.0009218596969731152, 0.01316209975630045, -0.054078854620456696, 0.021761169657111168, -0.03121836483478546, 0.07634229212999344, 0.06596013158559799, 0.005160041153430939, -0.024765409529209137, -0.004963909275829792, 0.025379039347171783, 0.05622249096632004, 0.028224637731909752, 0.03135748952627182, 0.041211750358343124, -0.00021353542979341, 0.02791985683143139, 0.0033790096640586853, -0.030844567343592644, 0.0003247133572585881, 0.02487994357943535, 0.0026298987213522196, 0.017539534717798233, -0.009564896114170551, 0.00669041508808732, -0.02226998284459114, -0.040645018219947815, 0.009679918177425861, 0.02404172532260418, 0.022644301876425743, -0.08090329170227051, 0.03310554102063179, -0.01809162087738514, 0.022411754354834557, -0.04854893684387207, -0.0033724436070770025, -0.04944748058915138, 0.022025562822818756, -0.00792461633682251, 0.00615668436512351, -0.06876116245985031, 0.03381345421075821, -0.011124463751912117, -0.017850005999207497, 0.0015632170252501965, 0.03685123473405838, -0.00551267433911562, -0.05697894096374512, 0.03244541585445404, -0.04845130443572998, -0.002819044515490532, -0.009307273663580418, 0.011167560704052448, 0.010692626237869263, 0.027439221739768982, -0.03915078938007355, 0.0007990026497282088, 0.056963592767715454, -0.03685453161597252, 0.020654037594795227, -0.023198287934064865, 0.01475298311561346, -0.028844371438026428, -0.029468460008502007, -0.006417466793209314, -0.055136993527412415, 0.011751384474337101, 0.049655988812446594, 0.03617675229907036, 0.03075973317027092, -0.02601562812924385, 0.034422487020492554, 0.018947293981909752, 0.0275492612272501, -0.011184546165168285, -0.02080278843641281, 0.005235935095697641, -0.027116553857922554, -0.08085264265537262, 0.055963803082704544, 0.009108544327318668, -0.0494551844894886, -0.008304059505462646, 0.03706047683954239, -0.021698666736483574, 0.023736538365483284, 0.05710703507065773, -0.019125381484627724, -0.019083665683865547, -0.030652659013867378, -0.02679303288459778, -0.03542592376470566, 0.03335891664028168, 0.007312987465411425, -0.07614186406135559, 0.002972247311845422, 0.002102418104186654, -0.01734258607029915, -0.02601245418190956, 0.008128311485052109, -0.04467371478676796, 0.042598798871040344, -0.01217094250023365, 0.007217471953481436, -0.08868201822042465, 0.05125254765152931, 0.025317730382084846, -0.013225942850112915, -0.006465990096330643, 0.021145086735486984, 0.05624010041356087, -0.0032152507919818163, 0.0030672121793031693, 0.08748666197061539, 0.0004560252418741584, -0.0011465856805443764, -0.027863742783665657, 0.042798954993486404, 0.0011492030462250113, -0.04629433527588844, -0.0004689765046350658, 0.04345252364873886, -0.01319893542677164, -0.005775758996605873, -0.015190806239843369, -0.04341807961463928, 0.003366143675521016, -0.0018058111891150475, 0.004596938379108906, 0.059275396168231964, -0.010259142145514488, -0.05511165410280228, 0.030763449147343636, -0.008419475518167019, 0.01508792582899332, -0.005905340425670147, 0.009763388894498348, -0.006385041866451502, -0.03559595346450806, -0.013695761561393738, 0.02069695107638836, 0.011040374636650085, 0.017025306820869446, -0.03218056261539459, 0.019592437893152237, 0.08349377661943436, 0.0397162027657032, 0.005640271585434675, 0.007912114262580872, 0.028738409280776978, 0.053722914308309555, 0.014118961058557034, 0.02606721967458725, 0.03582330793142319, 0.03635125979781151, -0.021632635965943336, 0.0026155710220336914, 0.053419727832078934, -0.024949975311756134, 0.014614345505833626, -0.046510763466358185, -0.03276374936103821, 0.052093762904405594, -0.04590354114770889, -0.016262926161289215, 0.03251552954316139, 0.06849874556064606, 0.03717133402824402, 0.041567377746105194, 0.005337961949408054, -0.07698328793048859, 0.018013646826148033, 0.003158108564093709, 0.0211491696536541, 0.015316896140575409, -0.03493816778063774, 0.06749289482831955, 0.02383699268102646, 0.016562502831220627, 0.03589477762579918, -0.07147704809904099, -0.08616858720779419, -0.020945923402905464, -0.016819298267364502, 0.07273978739976883, -0.05169648304581642, 0.017590373754501343, 0.06491892784833908, 0.004093940369784832, 0.047641027718782425, 0.015595345757901669, 0.00697791064158082, 0.029201718047261238, -0.020618466660380363, -0.05332237109541893, 0.06789091229438782, 0.03456154838204384, -0.012144288048148155, -0.021239718422293663, 0.043923359364271164, -0.02241794764995575, -0.01695873774588108, 0.028392985463142395, -0.024273265153169632, 0.026925262063741684, 0.015788650140166283, 0.062252167612314224, -0.016308721154928207, 0.0323096439242363, -0.01072619017213583, -0.020850664004683495, -0.017950914800167084, -0.007296540774405003, -0.008589535020291805, -0.005362830590456724, 0.13482186198234558, 0.0765758529305458, -0.01771516166627407, -0.030141087248921394, 0.03397857025265694, 0.022785985842347145, -0.034009017050266266, 0.020227855071425438, -0.010056205093860626, 0.011811544187366962, -0.007125119678676128, -0.05324086919426918, -0.03223002329468727, 0.016762783750891685, -0.05767695605754852, 0.010327836498618126, 0.04893292486667633, -0.029252292588353157, 0.07311291992664337, -0.00003861562436213717, -0.02485046535730362, 0.01189771480858326, -0.006094792392104864, -0.08293549716472626, 0.026383325457572937, 0.01626126654446125, -0.013530067168176174, 0.040541816502809525, -0.010442813858389854, -0.029711071401834488, -0.02723429910838604, -0.034312471747398376, 0.02223036251962185, 0.0688919946551323, 0.061987217515707016, -0.011270111426711082, 0.06792131811380386, -0.03532814607024193, 0.018789900466799736, 0.00044178537791594863, -0.0576656311750412, -0.04011395201086998, -0.03421543166041374, 0.0014130263589322567, 0.007805307861417532, 0.0478309728205204, 0.010798966512084007, 0.026459254324436188, 0.024283939972519875, -0.01182048860937357, 0.0038848852273076773, 0.043842464685440063, 0.013513882644474506, 0.01017669029533863, -0.02530817873775959, -0.029349185526371002, 0.06904186308383942, -0.016512354835867882, 0.005845735315233469, 0.019196564331650734, -0.09327331930398941, 0.043929778039455414, -0.05221724137663841, -0.03061799332499504, 0.0016527491388842463, 0.028552230447530746, 0.050829239189624786, 0.060942258685827255, 0.0001386957592330873, 0.04364001750946045, 0.010022562928497791, 0.019885720685124397, 0.005300644785165787, 0.022574227303266525, 0.03293593227863312, -0.01689995266497135, -0.017543865367770195, 0.0389271154999733, 0.0019754383247345686, 0.011518114246428013, -0.028439685702323914, 0.02668774500489235, -0.007775487378239632, -0.2779867947101593, 0.03435497358441353, 0.023377858102321625, -0.04192183166742325, 0.03263239562511444, -0.035185202956199646, 0.027178209275007248, -0.05912098288536072, -0.04300127178430557, 0.02850271202623844, -0.008993875235319138, -0.02357460744678974, -0.004002752248197794, 0.04616343975067139, 0.012218881398439407, -0.0056953527964651585, -0.014359165914356709, -0.03337608650326729, 0.027019405737519264, 0.059965044260025024, 0.0006710435845889151, -0.047343358397483826, -0.03529757633805275, 0.06122947856783867, 0.033505793660879135, 0.05640265718102455, -0.07388114184141159, 0.01722014881670475, -0.08090722560882568, -0.02124062553048134, -0.00338490167632699, -0.021764783188700676, 0.008150833658874035, -0.017484838142991066, -0.002566637471318245, -0.017769888043403625, 0.05758191645145416, -0.00481042405590415, -0.00760448444634676, 0.0279176514595747, -0.04045342281460762, -0.05294797196984291, -0.00015482235176023096, 0.01471727341413498, 0.07692841440439224, 0.03287052735686302, -0.06942684203386307, -0.007637325674295425, -0.010362409055233002, 0.06419455260038376, -0.056369099766016006, -0.012382149696350098, -0.020600736141204834, 0.009601149708032608, -0.0031199476215988398, -0.008522510528564453, -0.008426009677350521, -0.024963753297924995, -0.03754109516739845, -0.04409095272421837, -0.010947494767606258, -0.012316152453422546, -0.00208872277289629, -0.06865037232637405, -0.02242877148091793, -0.07515253871679306, -0.0786622166633606, -0.033236946910619736, 0.0790061503648758, -0.0078501608222723, -0.03139066696166992, -0.010781731456518173, -0.0017653300892561674, -0.10691262036561966, -0.019013984128832817, -0.009158234111964703, -0.03673836216330528, -0.010784688405692577, 0.014246080070734024, 0.05967368930578232, -0.03143291547894478, -0.0644923597574234, 0.017934879288077354, -0.0004904596717096865, 0.044998932629823685, -0.016206929460167885, 0.015599735081195831, 0.014710630290210247, -0.02499609813094139, 0.002675621537491679, 0.04910268262028694, 0.02314465492963791, -0.03501785546541214, -0.009351830929517746, 0.002270420780405402, 0.05299416929483414, 0.001961271045729518, -0.009044201113283634, 0.03038700670003891, 0.04943015053868294, -0.005952800158411264, -0.0641312375664711, 0.03604293242096901, -0.00030196562875062227, -0.03458264842629433, -0.01716736890375614, -0.04783482477068901, 0.027801157906651497, 0.04301993548870087, -0.016664236783981323, 0.0034781331196427345, -0.023082010447978973, 0.03822430968284607, -0.023073246702551842, -0.033452339470386505, -0.012598739005625248, -0.002933495445176959, 0.05176618695259094, 0.004037138074636459, 0.0015712518943473697, -0.06389763206243515, 0.039325159043073654, -0.02146979235112667, -0.023558933287858963, -0.05272217094898224, -0.032147254794836044, 0.0021090058144181967, -0.03262399509549141, -0.009820881299674511, 0.019116083160042763, -0.0018768127774819732, 0.027710290625691414, 0.020756874233484268, -0.02915593422949314, 0.02397913672029972, -0.029312744736671448, -0.06232638657093048, -0.044170890003442764, 0.002096252515912056, 0.00031996777397580445, -0.026138726621866226, 0.0015102822799235582, 0.00876224972307682, 0.011498422361910343, 0.04049567133188248, 0.0033271326683461666, 0.011901221238076687, -0.02715361677110195, 0.005917529109865427, 0.021697482094168663, 0.02105945348739624, -0.03569580242037773, 0.032096780836582184, -0.032691262662410736, -0.02318289875984192, 0.004139193333685398, 0.015206167474389076, -0.02249090000987053, -0.06384193897247314, -0.0426027812063694, 0.00824278499931097, -0.03646491840481758, -0.020090671256184578, -0.04320788383483887, 0.0047601619735360146, 0.06252661347389221, -0.026825429871678352, 0.011153865605592728, -0.0002030578616540879, -0.009673812426626682, 0.014546586200594902, -0.007901951670646667, -0.03651629388332367, 0.009290548041462898, 0.0041703348979353905, -0.007282875012606382, -0.004746171645820141, 0.005418148823082447, 0.011143499054014683, -0.013148386962711811, -0.01778603158891201, -0.019823091104626656, 0.0006020906148478389, 0.008046566508710384, 0.05340184271335602, 0.023290254175662994, -0.012829278595745564, -0.01056066993623972, -0.02881399169564247, -0.00889911875128746, -0.030773743987083435, -0.0041830530390143394, -0.018938200548291206, 0.008968994952738285, -0.04477423429489136, -0.0507495291531086, 0.030807066708803177, -0.010178176686167717, 0.022476408630609512, 0.02700326219201088, -0.0016683294670656323, -0.002503139665350318, -0.024829693138599396, -0.013431578874588013, 0.04174123704433441, -0.0802403911948204, 0.01162926759570837, 0.011247803457081318, -0.014808711595833302, 0.03676175698637962, -0.01792040839791298, -0.02578354813158512, -0.02625417336821556, -0.030186057090759277, 0.011552317067980766, -0.051851581782102585, -0.010525408200919628, -0.051381953060626984, 0.01302325539290905, 0.005196673329919577, 0.027363432571291924, -0.027188720181584358, -0.017339929938316345, 0.00002065922126348596, -0.016127141192555428, 0.04086773842573166, -0.03255566954612732, 0.01568324863910675, 0.04565254971385002, -0.03722676634788513, -0.02145155519247055, -0.002487167716026306, 0.02445078268647194, 0.023182816803455353, -0.05697152391076088, -0.0052485535852611065, -0.018627500161528587, 0.007587867323309183, -0.018635498359799385, 0.038614172488451004, 0.022312138229608536, -0.027319232001900673, -0.053212717175483704, -0.021694442257285118, -0.025946181267499924, 0.008189396001398563, 0.008934268727898598, -0.023416873067617416, 0.044533826410770416, 0.048915110528469086, 0.019479449838399887, -0.013216568157076836, -0.0262871365994215, -0.007701228838413954, 0.05017440393567085, -0.054942164570093155, -0.0444812998175621, -0.017409026622772217, -0.0395110547542572, 0.0006453809910453856, 0.0167993251234293, -0.00919654592871666, -0.04599243029952049, 0.038804635405540466, 0.022739838808774948, 0.01490034256130457, 0.03874920681118965, 0.026372037827968597, 0.03904180973768234, -0.05256565660238266, -0.0021722503006458282, -0.08508234471082687, -0.02342343144118786, 0.03041808120906353, -0.0017816188046708703, 0.006277977954596281, -0.0036159998271614313, -0.03752931207418442, 0.0320589616894722, -0.07694631814956665, -0.007599355652928352, 0.023932430893182755, -0.01194299478083849, -0.018310043960809708, 0.008302842266857624, -0.06322376430034637, 0.03562339022755623, 0.0005686437943950295, -0.04440421611070633, -0.03366563841700554, -0.02866010181605816, 0.05024295300245285, 0.010410458780825138, 0.013334432616829872, 0.005117512308061123, 0.005662491545081139, 0.07323018461465836, 0.055631063878536224, 0.032788921147584915, 0.03725752234458923, -0.012348059564828873, 0.03190937638282776, 0.040792644023895264, 0.016717752441763878, -0.010107415728271008, 0.01894657127559185, -0.013494838029146194, -0.07057726383209229, 0.05103664845228195, -0.019706258550286293, -0.04474136233329773, -0.041995540261268616, 0.057026151567697525, 0.02630956470966339, -0.024927329272031784, -0.04484378173947334, 0.008986100554466248, -0.039902955293655396, -0.0039122216403484344, -0.019437270238995552, 0.0016265299636870623, -0.02416740171611309, 0.050572775304317474, -0.024189844727516174, 0.020791685208678246, 0.0552174374461174, -0.0032773674465715885, -0.02415412664413452, -0.013214238919317722, 0.08686937391757965, 0.09166871756315231, 0.07422945648431778, 0.017962569370865822, 0.08276526629924774, -0.00964947510510683, -0.043218787759542465, 0.02715434692800045, 0.002967637265101075, -0.0020555381197482347, -0.030886996537446976, 0.041487134993076324, 0.052732568234205246, -0.030839379876852036, 0.055964380502700806, -0.015315390191972256, -0.01749826967716217, 0.0027728716377168894, 0.049621351063251495, 0.008990321308374405, 0.07496042549610138, 0.025071417912840843, 0.015131709165871143, -0.011541522108018398, -0.08155631273984909, 0.04601791128516197, -0.010503695346415043, -0.01281487476080656, 0.0347554013133049, -0.03356621041893959, 0.024380238726735115, 0.010232164524495602, 0.046302929520606995, 0.08916822820901871, -0.047760967165231705, -0.007146379444748163, 0.024087823927402496, 0.032574113458395004, 0.003821281250566244, -0.00003980332985520363, -0.005298087373375893, -0.007268307730555534, -0.002792741172015667, -0.039669327437877655, -0.012057937681674957, -0.011029873043298721, -0.009903963655233383, 0.022730752825737, -0.03712066262960434, -0.003700101049616933, 0.03135688975453377, 0.018822260200977325, -0.03552448749542236, -0.05417023226618767, -0.04176156222820282, -0.035417407751083374, -0.05158452317118645, -0.004095577169209719, 0.015766020864248276, -0.028529902920126915, -0.023943914100527763, -0.018019434064626694, -0.0022067795507609844, -0.027318784967064857, 0.02315180003643036, -0.04523046687245369, -0.019686084240674973, 0.03372946381568909, 0.02878669463098049, 0.013618644326925278, -0.007650993298739195, 0.04617457091808319, 0.019821830093860626, 0.019750313833355904, -0.012083849869668484, 0.02033759094774723, 0.027161480858922005, -0.007393815089017153, 0.003068565623834729, -0.07900946587324142, -0.0035595011431723833, 0.010747876949608326, -0.036588430404663086, -0.07196423411369324, 0.025508426129817963, 0.01770409382879734, 0.010924600064754486, 0.05275849252939224, -0.003581233089789748, -0.006965525448322296, -0.03625259920954704, -0.005887848790735006, -0.014505552127957344, -0.0007168484153226018, 0.03892844170331955, -0.044670987874269485, 0.08958342671394348, 0.016167236492037773, -0.013668491505086422, -0.040327779948711395, -0.028162013739347458, 0.01801154948771, -0.0012289498699828982, -0.05886411666870117, -0.016368085518479347, -0.009421399794518948, -0.1048346608877182, -0.005112455692142248, 0.024308890104293823, -0.029809366911649704, -0.055893417447805405, 0.0005135561805218458, -0.009124791249632835, -0.0078100296668708324, 0.003735223552212119, -0.057810790836811066, 0.03351222351193428, -0.03292766585946083, -0.007936409674584866, 0.017293568700551987, 0.03572319447994232, -0.004431392997503281, 0.01011926680803299, 0.008276359178125858, -0.044795792549848557, 0.007258137688040733, -0.03359411656856537, 0.02870776876807213, 0.03804066777229309, 0.004492297302931547, -0.02517664059996605 ]
[ -0.08580659329891205, 0.005844025872647762, -0.031705621629953384, -0.019570348784327507, 0.020961051806807518, -0.007147134747356176, 0.03285135328769684, 0.01658640429377556, 0.004542718641459942, -0.02930592931807041, 0.031824029982089996, -0.045646537095308304, -0.007612543646246195, 0.008834424428641796, 0.0750555694103241, 0.024223806336522102, -0.016788532957434654, -0.039376672357320786, 0.010183044709265232, 0.015760809183120728, 0.006929457653313875, -0.03366472199559212, -0.03171559423208237, 0.0021317650098353624, 0.0160206351429224, 0.023709736764431, 0.03726249188184738, -0.04186646267771721, 0.005826140288263559, -0.17608016729354858, 0.026999561116099358, 0.009436137042939663, 0.03399178013205528, -0.007176214829087257, -0.011431100778281689, 0.06961221992969513, 0.009672378189861774, 0.019969865679740906, 0.0013106317492201924, 0.047637294977903366, 0.008124218322336674, 0.02904806099832058, -0.03174608573317528, -0.019379302859306335, 0.017341215163469315, 0.03414313867688179, -0.01020375918596983, -0.02727753296494484, -0.05321400985121727, 0.004864752292633057, -0.08767189830541611, -0.020803308114409447, -0.0288617592304945, -0.009394610300660133, -0.004771002568304539, 0.04255473613739014, 0.05773217976093292, 0.05667971819639206, 0.014910513535141945, 0.02740643359720707, 0.029045823961496353, -0.005779503844678402, -0.15377415716648102, 0.07850249856710434, 0.032255154103040695, 0.046096496284008026, -0.04330803453922272, 0.009085183963179588, -0.0009321069810539484, 0.08856114000082016, 0.0177044328302145, -0.026286719366908073, 0.001599945593625307, 0.03300003707408905, 0.027763010933995247, 0.005191200878471136, -0.017694002017378807, 0.006829532794654369, 0.04292053356766701, -0.03632615879178047, -0.010306945070624352, 0.014887683093547821, -0.011774362064898014, -0.02057897299528122, -0.026819854974746704, 0.03644726052880287, -0.019271163269877434, 0.016797132790088654, 0.015941197052598, 0.023832323029637337, 0.051675956696271896, 0.0023308664094656706, -0.01163218542933464, 0.005730645265430212, -0.06692371517419815, -0.032187193632125854, -0.02156166359782219, 0.02162506990134716, -0.040471531450748444, 0.44213950634002686, -0.012272180989384651, 0.014336827211081982, 0.06425295770168304, 0.03846943378448486, -0.017545131966471672, -0.023834852501749992, -0.000411170010920614, -0.05442943796515465, 0.03334131836891174, -0.016315428540110588, 0.016024425625801086, 0.006787632126361132, 0.0648239254951477, -0.019184181466698647, 0.039723265916109085, 0.036669857800006866, 0.07809218764305115, -0.006532807368785143, -0.016580825671553612, -0.0017359544290229678, -0.03157953917980194, 0.017697622999548912, 0.028017563745379448, 0.006122184917330742, -0.029279274865984917, -0.08128941059112549, 0.003912333399057388, 0.0842636227607727, 0.03330504149198532, -0.027563128620386124, 0.06687059253454208, -0.0695400983095169, -0.057156577706336975, 0.0021987417712807655, -0.005288878921419382, 0.020678596571087837, 0.050431203097105026, -0.01535657700151205, 0.023441340774297714, 0.05770757049322128, 0.012950788252055645, 0.000052201299695298076, 0.014470076188445091, 0.003270489862188697, -0.06222865357995033, 0.12078642845153809, 0.009250134229660034, -0.042833857238292694, -0.009022142738103867, -0.013143896125257015, -0.004265668336302042, -0.0014398169005289674, -0.0205624308437109, -0.06326854974031448, 0.028814904391765594, -0.0026235715486109257, 0.09666027128696442, -0.00463139871135354, -0.07360824942588806, -0.0136982137337327, -0.06086079031229019, -0.014475509524345398, -0.06905407458543777, 0.043149497359991074, 0.07704644650220871, -0.06930653750896454, -0.022984258830547333, -0.0003893247339874506, 0.012260708957910538, -0.09507804363965988, 0.030445121228694916, -0.005923043470829725, -0.0262796338647604, 0.008054227568209171, 0.035612571984529495, -0.025807514786720276, -0.05833180621266365, 0.01666012965142727, 0.03767278417944908, 0.026501735672354698, 0.03605959936976433, -0.03307650610804558, -0.03513862565159798, -0.0074874297715723515, -0.03337101638317108, -0.06593725830316544, -0.0348549447953701, -0.03088518977165222, -0.023309258744120598, 0.007436919026076794, -0.002156223403289914, -0.018819089978933334, -0.10054393112659454, 0.06657599657773972, -0.0675935372710228, -0.04159463196992874, 0.019929243251681328, 0.009961538016796112, -0.06745758652687073, 0.010338164865970612, -0.0728149563074112, 0.02254871092736721, -0.048988569527864456, 0.02286173775792122, -0.042927682399749756, 0.047731056809425354, 0.04688684642314911, -0.04500420019030571, 0.09457635879516602, 0.023526379838585854, -0.003639879869297147, -0.04640830680727959, -0.0247763954102993, 0.03198970481753349, -0.005563743412494659, -0.018580878153443336, 0.015386996790766716, -0.003093488747254014, -0.012049727141857147, 0.0014835878973826766, -0.009423110634088516, -0.03994714468717575, -0.025526361539959908, -0.33951663970947266, -0.05271667242050171, -0.00018516750424169004, 0.011639703065156937, 0.03235674276947975, -0.043574538081884384, 0.016502628102898598, 0.001406555762514472, -0.036249179393053055, 0.013783625327050686, 0.045197099447250366, -0.011487442068755627, -0.004995790775865316, -0.07124095410108566, 0.008270484395325184, 0.01761672832071781, -0.06021956354379654, -0.019460229203104973, -0.05756743252277374, 0.014266110956668854, -0.008725888095796108, 0.0358368456363678, -0.014195105992257595, -0.08426045626401901, -0.015291562303900719, -0.024500219151377678, 0.09905914217233658, 0.035529933869838715, 0.0750197097659111, 0.00473764818161726, 0.015502320602536201, -0.010460222139954567, 0.0008988531772047281, -0.0884576067328453, 0.01724272221326828, -0.025567229837179184, -0.011528418399393559, -0.03446971997618675, 0.02359931170940399, -0.030138416215777397, -0.06133120134472847, 0.019125744700431824, -0.03504765406250954, -0.005637696012854576, -0.09263036400079727, 0.026016965508461, -0.006005977746099234, 0.01650702767074108, -0.0011024613631889224, 0.058773223310709, 0.029845843091607094, -0.0032093743793666363, -0.005408751778304577, 0.0024351920001208782, -0.03277361020445824, -0.030989032238721848, -0.10250663012266159, 0.018005989491939545, -0.021904170513153076, 0.0006679074722342193, 0.020816795527935028, 0.06652665138244629, 0.012452533468604088, -0.032525401562452316, 0.012313596904277802, 0.007895724847912788, -0.0112583814188838, -0.001162323052994907, 0.03205927461385727, -0.005229324102401733, -0.014179202727973461, 0.09743564575910568, -0.007970855571329594, -0.00804488081485033, 0.02082056552171707, 0.04143083095550537, 0.004065678454935551, -0.01847553439438343, -0.01964390091598034, -0.0005205785855650902, 0.03406164422631264, -0.0164185781031847, 0.020845772698521614, -0.0034857350401580334, -0.007567334920167923, -0.014166483655571938, 0.0018624988151714206, -0.027378220111131668, 0.07638686150312424, 0.024584555998444557, -0.02742725983262062, 0.02422216720879078, -0.043605826795101166, -0.06259671598672867, 0.07612362504005432, 0.00411763833835721, -0.27520090341567993, 0.019582100212574005, 0.048457734286785126, 0.046764254570007324, 0.005028753541409969, 0.04589628800749779, 0.04070724919438362, -0.0321049839258194, 0.007094099186360836, -0.012900460511446, 0.012797505594789982, 0.002864736830815673, 0.016389986500144005, 0.023837994784116745, 0.003769432660192251, -0.017196927219629288, 0.06732942163944244, -0.017899801954627037, 0.026132309809327126, 0.01672581396996975, 0.010242290794849396, 0.019748438149690628, 0.1674681305885315, 0.011516127735376358, 0.032173268496990204, 0.014609886333346367, 0.015799326822161674, -0.01234470959752798, 0.043991927057504654, -0.009997214190661907, -0.00890757329761982, 0.005755868274718523, 0.01500276941806078, -0.009013681672513485, 0.042264919728040695, -0.02739114686846733, -0.025884713977575302, 0.030835820361971855, 0.05217192694544792, -0.023723149672150612, 0.022126026451587677, 0.0006515617133118212, -0.009833023883402348, 0.024597404524683952, 0.085575170814991, 0.02005786821246147, 0.013581953011453152, -0.03660432621836662, -0.05951227247714996, -0.013052844442427158, -0.029385516420006752, -0.021795671433210373, -0.0055198464542627335, -0.009881064295768738, 0.013950960710644722, 0.05577315762639046, 0.04788019135594368, -0.024334639310836792, 0.0013706873869523406, -0.03865392506122589, -0.03747877478599548, 0.015739329159259796, 0.1234133318066597, 0.01762389950454235, 0.03231652081012726 ]
[ -0.05130617693066597, 0.02302413433790207, 0.0023550253827124834, -0.02847250923514366, -0.011682028882205486, -0.0019031704869121313, -0.03671066462993622, 0.02900153584778309, 0.01419689878821373, 0.04538296163082123, 0.018267253413796425, 0.039336711168289185, 0.006250613834708929, -0.0008986748289316893, 0.03235270828008652, 0.04921659454703331, -0.020633917301893234, 0.002915693446993828, 0.034409623593091965, -0.031172050163149834, -0.0057817548513412476, -0.029527563601732254, 0.011682998389005661, 0.007978135719895363, 0.003536599688231945, 0.0009820746490731835, -0.02034742943942547, 0.026664910838007927, 0.026045769453048706, -0.1419944167137146, -0.02304033935070038, -0.00939191970974207, -0.016614682972431183, 0.00729450723156333, -0.0057153538800776005, -0.025874510407447815, 0.01767452247440815, 0.0217293631285429, -0.007203410845249891, 0.01018323190510273, 0.026699068024754524, -0.005570342298597097, -0.006970957387238741, -0.03840852156281471, 0.011573144234716892, 0.001759552862495184, -0.01741601899266243, -0.012455007992684841, -0.0217454731464386, -0.003047359874472022, -0.031681135296821594, 0.008692682720720768, 0.017952580004930496, -0.023461436852812767, 0.04190404340624809, 0.02779330126941204, 0.037874460220336914, -0.0004101915401406586, 0.018701406195759773, 0.006575549952685833, 0.00009669639257481322, -0.01540957298129797, -0.0698927789926529, -0.00555926188826561, 0.002884851535782218, 0.01728370040655136, -0.036213088780641556, 0.029036901891231537, -0.015966545790433884, 0.004648310597985983, 0.01618572510778904, -0.020711081102490425, 0.0012331248726695776, -0.05032406747341156, 0.03428277745842934, -0.013645627535879612, 0.00029295909916982055, -0.010284681804478168, 0.02105766162276268, 0.0007638685056008399, -0.06394119560718536, 0.013408660888671875, -0.002136419527232647, -0.041908301413059235, -0.01671907678246498, 0.01400696486234665, -0.013485705479979515, -0.00018741261737886816, -0.002255205065011978, -0.0038238209672272205, -0.0034369626082479954, -0.024367593228816986, 0.010050482116639614, 0.047480419278144836, -0.06564759463071823, 0.025410709902644157, -0.013214273378252983, 0.0007993770996108651, -0.025145359337329865, 0.8428764343261719, 0.029706254601478577, 0.041220977902412415, 0.07229429483413696, -0.025535134598612785, 0.006898491643369198, -0.023816632106900215, 0.0408969521522522, 0.00648968992754817, 0.01665027253329754, -0.03171798959374428, 0.029863212257623672, 0.004503212403506041, 0.03184400871396065, 0.04205750301480293, 0.009181675501167774, 0.009890991263091564, 0.01100242231041193, 0.022648131474852562, -0.012945082038640976, 0.00566109549254179, 0.017432117834687233, 0.04146043583750725, 0.01960807852447033, 0.008350098505616188, -0.01616523787379265, -0.1976766139268875, -0.02548442780971527, -8.699340717492374e-33, 0.04692831262946129, 0.014540120959281921, 0.042933519929647446, -0.035983722656965256, -0.009125539101660252, 0.013047434389591217, -0.014367322437465191, -0.0015563634224236012, 0.019191717728972435, -0.004206293728202581, 0.02003473974764347, -0.009159382432699203, -0.00918702594935894, -0.006602874491363764, 0.010475990362465382, -0.007086451631039381, 0.01847575604915619, 0.020679213106632233, 0.005641038995236158, 0.022470977157354355, 0.020490296185016632, 0.0046013640239834785, -0.007576174568384886, 0.015044926665723324, 0.006059031002223492, -0.0009897795971482992, 0.04326958581805229, -0.007332052569836378, 0.005418166518211365, -0.029497236013412476, 0.0004926712135784328, 0.042364850640296936, -0.014999023638665676, -0.011889228597283363, 0.014997242018580437, -0.04189717397093773, -0.006740603595972061, 0.0020745506044477224, -0.013499158434569836, 0.01408911682665348, -0.05968807637691498, 0.006254736799746752, 0.01048945914953947, -0.018017791211605072, -0.02462412416934967, -0.05476279929280281, 0.00036106884363107383, 0.0004479247145354748, -0.0028207236900925636, -0.00031440771999768913, -0.01571664772927761, -0.001242982572875917, 0.03861363232135773, -0.00905554834753275, 0.0017244885675609112, 0.036791201680898666, -0.011499972082674503, -0.01150928158313036, 0.025371920317411423, 0.025088828057050705, 0.022250229492783546, -0.017192160710692406, -0.03338076174259186, 0.012401830404996872, -0.002090686932206154, -0.02934744954109192, 0.011305045336484909, 0.0037254211492836475, 0.03864886611700058, -0.03052852675318718, -0.04033811390399933, -0.0038728732615709305, 0.000583501358050853, -0.00042355095501989126, -0.008498846553266048, -0.01328553631901741, -0.013514801859855652, 0.0038024995010346174, 0.006434119772166014, 0.0030453954823315144, -0.007416491862386465, -0.01639818586409092, -0.004888017661869526, -0.04694436490535736, 0.019073104485869408, -0.0022193926852196455, -0.03027460165321827, -0.032680999487638474, -0.01964147761464119, 0.03135930374264717, 0.019370026886463165, 0.016898758709430695, -0.015955377370119095, -0.0018645924283191562, -0.009694195352494717, 8.225394619552274e-33, 0.026699166744947433, 0.003053653286769986, -0.018734080716967583, -0.011245577596127987, 0.03305511176586151, 0.01211438700556755, 0.02137761190533638, -0.0265449658036232, -0.05335136875510216, -0.020490212365984917, -0.008595314808189869, 0.011785781942307949, -0.019649475812911987, 0.028206026181578636, 0.08641426265239716, -0.015340263955295086, 0.04396066442131996, 0.019220061600208282, 0.017844446003437042, 0.001974380575120449, 0.04658999666571617, -0.021512547507882118, -0.025889193639159203, -0.00972225982695818, 0.03819847106933594, 0.05132720246911049, -0.0033208734821528196, -0.0072363605722785, 0.022590693086385727, 0.001008547144010663, -0.01014472171664238, -0.009458780288696289, 0.011652225628495216, -0.03945814073085785, 0.00033637750311754644, 0.011911381967365742, 0.0023937346413731575, -0.027463672682642937, -0.0007255307282321155, -0.023967724293470383, 0.005862221587449312, 0.015804121270775795, -0.011376852169632912, 0.002017740858718753, -0.004803549498319626, -0.004223544616252184, 0.010551041923463345, -0.014725994318723679, 0.0012459546560421586, -0.03065408207476139, -0.018612518906593323, 0.011236200109124184, 0.03363756462931633, 0.021506188437342644, -0.0034122152719646692, -0.053297027945518494, -0.020812969654798508, -0.007716498803347349, -0.010837923735380173, -0.008682819083333015, -0.011909003369510174, -0.004579829517751932, -0.03220796957612038, 0.0014758865581825376, -0.007808119058609009, -0.023320309817790985, -0.036432284861803055, -0.04645780101418495, -0.043872494250535965, -0.008293320424854755, -0.012236839160323143, 0.005321858916431665, -0.013646061532199383, 0.019109457731246948, 0.017876166850328445, -0.010152127593755722, -0.025239750742912292, 0.012559301219880581, -0.00671755988150835, -0.011488955467939377, 0.0151775311678648, -0.04014390707015991, 0.008332163095474243, -0.026209313422441483, -0.015665274113416672, -0.004953042138367891, 0.030280826613307, 0.04306763783097267, 0.011762972921133041, -0.032435063272714615, -0.015502101741731167, -0.02282913401722908, -0.04054618999361992, 0.04477674886584282, -0.015502958558499813, -1.3892146100147329e-8, -0.012918967753648758, 0.04592392221093178, 0.0014786752872169018, 0.021380091086030006, 0.026298556476831436, -0.0008703320636413991, -0.014841090887784958, 0.012683546170592308, -0.05350886657834053, -0.004199025221168995, 0.03699807450175285, 0.0048644752241671085, -0.0018582819029688835, 0.00011780498607549816, 0.023600971326231956, -0.016221346333622932, -0.02907116524875164, 0.002506089396774769, 0.023316457867622375, 0.02502100169658661, 0.03028181754052639, 0.036226168274879456, -0.028910502791404724, 0.03041030652821064, -0.006123741157352924, -0.010217487812042236, -0.029934782534837723, -0.07735998928546906, 0.012368547730147839, -0.0035575407091528177, -0.015590501017868519, -0.025255000218749046, 0.003114002291113138, 0.008776107802987099, -0.027445098385214806, -0.002226914744824171, 0.015361997298896313, 0.005202289205044508, 0.015084417536854744, -0.033061131834983826, -0.012489190325140953, -0.023189455270767212, -0.005144806113094091, -0.0229355301707983, -0.003763784421607852, -0.0059705800376832485, 0.00874415971338749, -0.0076502165757119656, -0.045567385852336884, -0.03355324640870094, -0.016089795157313347, 0.0007196266669780016, 0.04853532090783119, 0.047376736998558044, 0.007517837919294834, 0.059829551726579666, 0.03962630778551102, -0.017301561310887337, -0.056026190519332886, 0.0015323541592806578, 0.047923143953084946, 0.029379816725850105, -0.027656810358166695, -0.018260205164551735 ]
the-ladder-of-inference
https://markhneedham.com/blog/2011/04/24/the-ladder-of-inference