Notes on NeoBERT

4 months ago 5

The paper “NeoBERT: A Next-Generation BERT” (2025) by Lola Le Breton, Quentin Fournier, Mariam El Mezouar, John X. Morris, Sarath Chandar introduces a new encoder model with updated architecture, training data, and pre-training methods and is intended as a strong backbone model.

[W]e introduce NeoBERT, a next-generation encoder that redefines the capabilities of bidirectional models by integrating state-of-the-art advancements in architecture, modern data, and optimized pre-training methodologies.

These are the most important highlights at a first glance:

  • Performance: It performs state-of-the-art on MTEB for its parameter class against other backbone models like BERT, NomicBERT, or ModernBERT base.
  • Size: The model is medium-sized with 250M parameters
  • Sequence length: Compared to BERT and RoBERTa (512) it has an extended context length of 4,096 tokens similar to NomicBERT (2,048) and ModernBERT (8,192)
  • Speed: NeoBERT is faster than ModernBERT in inference speed, despite being 100M parameters larger than the ModernBERT base
  • Dimensions: NeoBERT maintains same hidden size as base models (768) allowing for seamless plug-and-play

And here are the relevant links:

Motivation

The motivation behind is paper is the fact that encoders have not received as much love as LLMs in recent years, although they are equally important for downstream applications, like RAG systems.

Today’s LLMs are capable of in-context learning and reasoning because of advancements in architecture, training data, pre-training, and fine-tuning. While there has been research on fine-tuning methods for pre-trained encoders (e.g., GTE or jina-embeddings), they are applied to older base models, like BERT from 2019. Therefore, the authors see a lack of updated open-source base models to apply these new fine-tuning techniques to.

As a result, there is a dire need for a new generation of BERT-like pre-trained models that incorporate up-to-date knowledge and leverage both architectural and training innovations, forming stronger backbones for these more advanced fine-tuning procedures.

Recent work on modernizing these base models are NomicBERT and ModernBERT, which this paper takes inspiration from:

Key insights

The paper covers a lot of interesting nitty-gritty details on recent advancements around architecture choice, training data selection, and pre-training methods. But if you step back, I think the key insights are that they are confirming what we already know from LLMs:

  1. Training on a lot of good data = Better models
  2. Increasing model size = Better models (even at small scale)

Training on a lot of good data = Better models

According to the paper, the modification with the biggest improvement was changing the training data:

[…] replacing Wikitext and BookCorpus with the significantly larger and more diverse RefinedWeb dataset improved the score by +3.6% […]

They trained NeoBERT on RefinedWeb, which is a 2.8 TB large dataset. It contains 600B tokens and is 18 times larger than RoBERTa’s training dataset.

Following the same trend, we pre-trained NeoBERT on RefinedWeb (Penedo et al., 2023), a massive dataset containing 600B tokens, nearly 18 times larger than RoBERTa’s.

I think it’s interesting that apparently the newer NomicBERT was trained on the same dataset as BERT with 13GB, while RoBERTa was trained on an extended dataset of 160 GB, and it’s just now that this has been done to encoders, while this has been done to generative models for a while already.

Recent generative models like the LLaMA family (Touvron et al., 2023; Dubey et al., 2024) have demonstrated that language models benefit from being trained on significantly more tokens than was previously standard. Recently, LLaMA-3.2 1B was successfully trained on up to 9T tokens without showing signs of saturation. Moreover, encoders are less sample-efficient than decoders since they only make predictions for masked tokens. Therefore, it is reasonable to believe that encoders of similar sizes can be trained on an equal or even greater number of tokens without saturating.

Increasing model size = Better models (even at small scale)

The second most impactful modification was increasing the model size and finding an optimal depth-to-width ratio for the Transformer architecture:

[…] while increasing the model size from 120M to 250M in M7 led to a +2.9% relative improvement.

So, NomicBERT and ModernBERT base both have around 150M parameters and are considered small-sized. NeoBERT with 250M parameters can be considered medium-sized, so it makes sense that it performs better than smaller models.

But what’s interesting is that they took the depth-to-width ratio into consideration when increasing the model size:

In contrast, small language models like BERT, RoBERTa, and NomicBERT are instead in a width-inefficiency regime. To maximize NeoBERT’s parameter efficiency while ensuring it remains a seamless plug-and-play replacement, we retain the original BERT base width of 768 and instead increase its depth to achieve this optimal ratio.

So, they first increased the number of parameters to 250M with a depth-to-width ratio of 16 x 1056 (too wide) and then they optimized the depth-to-width ratio to 28 x 768 (more width-efficient).

Note that to assess the impact of the depth-to-width ratio, we first scale the number of parameters in M7 to 250M while maintaining a similar ratio to BERT base, resulting in 16 layers of dimension 1056. In M8, the ratio is then adjusted to 28 layers of dimension 768.

This is nice, because by keeping the hidden size at 768, NeoBERT can be easily switched out for other base models: > NeoBERT is designed for seamless adoption: it serves as a plug-and-play replacement for existing base models

What I also think is remarkable is that it has a much faster inference speed compared to both ModernBERT models despite it’s size. There’s a nice figure in the paper showing the thoughput at different sequence length. The figure is missing NomicBERT though, which I don’t know why.

For extended sequences, NeoBERT significantly outperforms ModernBERT base, despite having 100M more parameters, achieving a 46.7% speedup on sequences of 4, 096 tokens.

Old Encoders vs. Modern Encoders

The paper features a nice overview table of different characteristics between older encoders, like BERT (2019), RoBERTa (2019), and newer encoders, like ModernBERT (2024) and NomicBERT (2025), which shows their differences. Here I’m summarizing key differences between older and newer encoders that stood out to me:

Configuration Older Encoders Newer Encoders
Position encoding and sequence lengths Absolute positional embeddings with a sequence length of 512 RoPE for handling longer sequences of 2,048 to 8,192
Masking rate 15 % Optimal masking rate was found to be between 20 to 40 % by Wettig et al.
Optimizer Adam AdamW
Training DDP FlashAttention and other
Normalization Post-Layer Normalization Pre-Layer Normalization (normalization layer is moved inside the residual connection of each feed-forward and attention block)

NeoBERT Example

Since NeoBERT is a state-of-the-art encoder, it can be used as an embedding model. Let’s take it for a spin, shall we?

I’m going to quickyl test how to create an embedding vector and then use it with the Weaviate vector database.

If you want to test it out yourself, you can open this blog as a Jupyter notebook in Colab. Open In Colab

Let’s first install the required packages. (I’m fixing the transformers version that has worked for me here.)

!pip install transformers==4.41.0 torch xformers==0.0.28.post3 !pip install -U weaviate-client

Generate a single embedding

Then, let’s try the sample code from the Hugging Face model card.

from transformers import AutoModel, AutoTokenizer model_name = "chandar-lab/NeoBERT" tokenizer = AutoTokenizer.from_pretrained(model_name, trust_remote_code=True) model = AutoModel.from_pretrained(model_name, trust_remote_code=True) # Tokenize input text text = "NeoBERT is the most efficient model of its kind!" inputs = tokenizer(text, return_tensors="pt") # Generate embeddings outputs = model(**inputs) embedding = outputs.last_hidden_state[:, 0, :]

Let’s take a look at the generated output:

Nice. It looks like a vector embedding.

embedding[0].tolist()[:5]
[-1.9510374069213867, -0.9967884421348572, -1.2037752866744995, 0.24297747015953064, -0.1231154128909111]

As you can see, NeoBERT creates vectors of dimension 768.

Use it for vector search

And last, but not least, let’s use NeoBERT for vector search. For this, we will spin up an embedded instance of Weaviate.

import weaviate, os # Connect to an embedded Weaviate instance client = weaviate.connect_to_embedded() client.is_ready()
INFO:weaviate-client:Binary /root/.cache/weaviate-embedded did not exist. Downloading binary from https://github.com/weaviate/weaviate/releases/download/v1.30.5/weaviate-v1.30.5-Linux-amd64.tar.gz INFO:weaviate-client:Started /root/.cache/weaviate-embedded: process ID 2556

To use NeoBERT with Weaviate, we’re going to use the ‘Bring your own vectors’ approach and therefore won’t specify a vectorizer during the creation of the collection. We will only specify one property field "Text" here.

import weaviate.classes.config as wc # Delete the collection if it already exists if (client.collections.exists("TestCollection")): client.collections.delete("TestCollection") collection = client.collections.create( name="TestCollection", vectorizer_config=wc.Configure.Vectorizer.none(), properties=[ wc.Property(name="Text", data_type=wc.DataType.TEXT), ] )

Since we are not using an automatic vectorizer, we have to write a small function to generate embeddings manually.

tokenizer = AutoTokenizer.from_pretrained(model_name, trust_remote_code=True) model = AutoModel.from_pretrained(model_name, trust_remote_code=True) def get_embedding(source_text: str): inputs = tokenizer(text, return_tensors="pt") # Generate embeddings outputs = model(**inputs) embedding = outputs.last_hidden_state[:, 0, :] return embedding[0].tolist()

Since we’re just playing around with NeoBERT, we will load a small toy dataset of Jeopardy questions into the database.

import weaviate.classes as wvc import requests, json url = 'https://raw.githubusercontent.com/weaviate/weaviate-examples/main/jeopardy_small_dataset/jeopardy_tiny.json' resp = requests.get(url) data = json.loads(resp.text) objs = [] for i, d in enumerate(data): objs.append(wvc.data.DataObject( properties={ "Text": d["Question"], }, vector=get_embedding(d["Question"]) )) collection.data.insert_many(objs)
BatchObjectReturn(_all_responses=[UUID('87425cb6-95cf-412a-aad5-576eb041f428'), UUID('1376af87-61fc-443f-8461-e8ebf7dd894f'), UUID('935d6a44-8fa6-4bd2-a867-8c2252426562'), UUID('51d06b87-e592-472b-a130-d6d32410134a'), UUID('b909dfb4-859b-4c5a-bad4-4bef34f19911'), UUID('9dd808f2-ab6a-4ee4-9782-cf4027f82d1b'), UUID('5dc9a795-4641-4cc3-82a6-b3d0118fdb39'), UUID('51e34d78-68e8-4fdb-bf08-908cfe7742c0'), UUID('edce80a1-a891-41dd-a4a4-5e82d4f58827'), UUID('bbc13949-0237-4e36-af94-36ab6eafd9a9')], elapsed_seconds=0.0041272640228271484, errors={}, uuids={0: UUID('87425cb6-95cf-412a-aad5-576eb041f428'), 1: UUID('1376af87-61fc-443f-8461-e8ebf7dd894f'), 2: UUID('935d6a44-8fa6-4bd2-a867-8c2252426562'), 3: UUID('51d06b87-e592-472b-a130-d6d32410134a'), 4: UUID('b909dfb4-859b-4c5a-bad4-4bef34f19911'), 5: UUID('9dd808f2-ab6a-4ee4-9782-cf4027f82d1b'), 6: UUID('5dc9a795-4641-4cc3-82a6-b3d0118fdb39'), 7: UUID('51e34d78-68e8-4fdb-bf08-908cfe7742c0'), 8: UUID('edce80a1-a891-41dd-a4a4-5e82d4f58827'), 9: UUID('bbc13949-0237-4e36-af94-36ab6eafd9a9')}, has_errors=False)

Now, we’re all set and we can run a simple search query with the near_vector method.

response = collection.query.near_vector( near_vector=get_embedding("African animal"), limit=3, include_vector = True ) for item in response.objects: print("ID:", item.uuid) print("Data:", item.properties) print("Vector:", item.vector, "\n")
ID: 51d06b87-e592-472b-a130-d6d32410134a Data: {'text': 'Weighing around a ton, the eland is the largest species of this animal in Africa'} Vector: {'default': [-1.9510374069213867, -0.9967884421348572, -1.2037752866744995, 0.24297747015953064, -0.1231154128909111, 1.15748131275177, -1.6040924787521362, -1.8666054010391235, -0.5423393249511719, -1.5033859014511108, 2.1337497234344482, -1.035761833190918, 0.6672560572624207, 0.8548232316970825, 1.4260377883911133, 1.7781187295913696, 0.49215567111968994, -1.5952364206314087, 3.0107059478759766, 0.8425706028938293, -0.02023920789361, -0.17652419209480286, 1.5272082090377808, -1.5370515584945679, -2.210336446762085, 1.9915522336959839, -0.47231099009513855, -1.5976117849349976, -1.3054083585739136, -1.3994256258010864, 2.627300500869751, 0.892441987991333, 2.0996060371398926, -0.9450390934944153, -1.0044033527374268, -3.512587547302246, 3.1640431880950928, 0.6829001307487488, -0.7545009851455688, -2.748605728149414, -1.1117602586746216, 3.820294141769409, -0.6118199229240417, -4.169648170471191, -0.20399853587150574, 0.04584604874253273, -1.794206142425537, 3.6624789237976074, 1.9612842798233032, -0.8079001903533936, 0.8611488938331604, 1.970404028892517, -2.0746397972106934, 0.6212611794471741, 0.09081880003213882, 0.3589556813240051, 1.0936559438705444, 0.05384676903486252, 0.13561850786209106, 0.33500587940216064, -2.1379926204681396, 1.0990654230117798, -0.7454580068588257, 1.1493661403656006, -2.2396271228790283, 1.200670838356018, 0.5334605574607849, 2.0730907917022705, -3.8102240562438965, -1.7811174392700195, 1.5553592443466187, 4.6831135749816895, -1.5346370935440063, 0.2897852063179016, -1.6732357740402222, -0.37982890009880066, -2.197277307510376, 1.5002318620681763, 0.9553156495094299, 0.12446501851081848, -0.4533895254135132, -0.7779607176780701, -0.44921961426734924, -1.2619357109069824, -0.18769554793834686, 2.6683144569396973, 3.1060047149658203, 0.29372313618659973, 3.194973945617676, 0.7302703857421875, -0.7462695837020874, -4.160582065582275, -0.7957040071487427, 2.632079839706421, 2.1082663536071777, 0.05493159964680672, 2.8450498580932617, 1.4144870042800903, -3.445063352584839, 2.011417865753174, 3.3159267902374268, 0.45921799540519714, -1.435811161994934, 1.7353001832962036, 3.2457525730133057, -0.7271069288253784, -1.1395553350448608, -0.5462174415588379, -2.9822988510131836, 0.745682418346405, 2.3378994464874268, -1.715441107749939, -1.4774346351623535, -2.035811185836792, -1.1470719575881958, -6.32465934753418, 6.107190132141113, 1.0972281694412231, 0.8394855260848999, 1.4468222856521606, 2.6018848419189453, 0.9425144791603088, 2.0747787952423096, -0.8610297441482544, 0.3246554434299469, -0.7474703192710876, -1.0116767883300781, 1.324621558189392, 1.298416018486023, 0.21829338371753693, -0.22418776154518127, -0.5592461824417114, 1.1745902299880981, -0.423655241727829, -0.14830003678798676, 0.8796787261962891, -1.2291816473007202, 1.8488223552703857, 0.9456120133399963, -1.2758890390396118, 2.1551265716552734, 1.6010459661483765, 1.2982678413391113, -2.553619623184204, -0.007142047863453627, 0.9428684711456299, 1.5242507457733154, -0.5405881404876709, -2.2761621475219727, 3.3263776302337646, -0.9998684525489807, 2.4311559200286865, -0.6154475808143616, -2.773056983947754, -3.8294572830200195, 0.6005435585975647, -0.1725737601518631, -0.5224359035491943, -1.3919191360473633, 2.4707624912261963, -1.5516084432601929, -2.40134334564209, 1.143546223640442, 3.1847410202026367, 2.3178656101226807, -1.1403664350509644, -0.3558688163757324, 2.3394010066986084, -0.9989381432533264, -3.461531162261963, 1.1927400827407837, 0.20484872162342072, -2.1683969497680664, -1.8746532201766968, -2.635221004486084, -2.5902597904205322, 2.2528276443481445, 1.1554158926010132, 0.32717567682266235, -1.4028855562210083, -0.5075865387916565, 4.17388391494751, 4.330104827880859, 2.143197536468506, 17.097064971923828, -0.31826120615005493, 0.7135065197944641, 2.02114200592041, 0.002058938378468156, -1.6952272653579712, 0.9258185625076294, -1.3470032215118408, 1.2906181812286377, -0.141681969165802, 1.33379328250885, 1.0947147607803345, 1.3687101602554321, -1.1491458415985107, 1.672888159751892, 0.3461308777332306, 1.116531491279602, 3.041752815246582, -1.5486258268356323, 2.089513063430786, 0.007287302985787392, 2.016051769256592, 0.052647657692432404, -0.5051586031913757, -1.0886359214782715, -0.29027456045150757, -0.5975868105888367, -0.966127336025238, -2.947037696838379, -3.345940589904785, -1.437461256980896, 2.1820552349090576, 2.9887454509735107, -1.9341332912445068, 2.9948713779449463, -0.7662598490715027, 0.9505520462989807, 1.877440094947815, 0.7437080144882202, -0.0784115120768547, -0.20706039667129517, 0.8294994831085205, -1.4751330614089966, -1.2449923753738403, -3.6871442794799805, -1.6031888723373413, 1.0694630146026611, 1.4705328941345215, -1.961687445640564, -2.9775846004486084, -1.9727998971939087, 1.8294742107391357, 2.3485512733459473, 3.2571163177490234, -0.5940772294998169, 0.11373110115528107, 0.5288851857185364, 1.9128135442733765, 2.0884382724761963, -0.40383726358413696, 0.43922436237335205, 1.028336763381958, -0.8053091168403625, 1.846055030822754, 0.07598721981048584, -2.6138672828674316, -1.6098421812057495, -1.4955695867538452, -0.9167624115943909, 0.08310585469007492, -2.417745590209961, 2.0583581924438477, -0.9196177124977112, -0.6528652310371399, 0.7655075788497925, 0.8044053912162781, 0.1867145150899887, 1.2677427530288696, -0.9047883749008179, -0.8625851273536682, -1.2130341529846191, -0.7192506194114685, 1.4745512008666992, -2.4845521450042725, -0.3675612509250641, 2.608403444290161, 2.6098597049713135, 3.5911834239959717, -0.4333766996860504, 3.830160617828369, -0.5260956883430481, -1.6186370849609375, -0.2003614455461502, 2.470811367034912, -1.6866719722747803, 2.401365041732788, 1.656844973564148, 3.455519914627075, 3.473375082015991, 2.401684284210205, -1.4892094135284424, -0.42803800106048584, -1.247750163078308, 0.35349345207214355, -2.8591976165771484, -1.0824309587478638, 1.7293133735656738, -0.30569061636924744, -5.072286605834961, 1.195874810218811, -0.530290424823761, 4.479702949523926, -0.36548465490341187, 1.9964656829833984, -1.7601752281188965, -2.107971429824829, -1.2710049152374268, 1.4003304243087769, -0.45677006244659424, 2.2505462169647217, -2.888376235961914, -0.5457501411437988, 1.7091118097305298, -2.151557207107544, 1.059717059135437, 2.394317865371704, 1.0686516761779785, -2.817033529281616, 0.180204376578331, -2.2952992916107178, 0.05557467043399811, 0.25743937492370605, -1.3631857633590698, 4.199581623077393, -1.6239782571792603, 1.0005333423614502, -0.9151018261909485, -3.3731143474578857, -0.3810237944126129, -2.812373638153076, 2.3933804035186768, 1.2495907545089722, 1.0209927558898926, -0.04413863644003868, 0.27346912026405334, 1.1107107400894165, 0.9063902497291565, 0.5842305421829224, -0.6555060744285583, -1.0481547117233276, -2.594743490219116, -2.0305356979370117, 0.9288702011108398, 1.237075924873352, 2.941380262374878, 0.2993914484977722, -0.1999698132276535, -1.4729993343353271, -0.8533242344856262, -2.6673519611358643, 2.335071086883545, 2.0907623767852783, -2.1871695518493652, 1.2120919227600098, 0.20936818420886993, 2.1800854206085205, 0.28720203042030334, -1.0962697267532349, -0.0746733546257019, 2.5197720527648926, -2.5641608238220215, 0.14983272552490234, -6.109929084777832, 0.862467885017395, -3.4633820056915283, -0.6031206250190735, -1.8848248720169067, -2.4293620586395264, 1.7941571474075317, 3.232050657272339, -2.913620948791504, 1.7095786333084106, 3.708261251449585, 2.1537129878997803, 3.9322526454925537, -0.33245649933815, -1.5113869905471802, 1.2643473148345947, 0.6749638319015503, -1.0179070234298706, -1.6864113807678223, 0.1439145803451538, -0.9772970676422119, 0.5145910382270813, -0.06341981887817383, -5.908222198486328, 0.8523079752922058, -0.06971875578165054, -3.5796525478363037, -1.0678892135620117, -0.07242831587791443, 1.8156660795211792, -1.8438706398010254, -0.767185389995575, 1.7557263374328613, 1.3585333824157715, -0.28102269768714905, 0.09332103282213211, 1.965685486793518, -0.77394700050354, -2.989877462387085, -5.311213970184326, -0.4354499876499176, -0.7905680537223816, 0.09712280333042145, -0.190561905503273, -0.028867261484265327, 0.712779700756073, -0.5622200965881348, -0.12739217281341553, 1.1794960498809814, -0.11855033040046692, -1.1172930002212524, 2.2423324584960938, -3.2176685333251953, 0.051828764379024506, 0.28844955563545227, -1.9138017892837524, -2.8670716285705566, 1.8268048763275146, 0.22661438584327698, 0.21833741664886475, 0.23121508955955505, -3.093465566635132, -1.7885326147079468, 1.1198428869247437, -1.0875412225723267, 0.37333303689956665, 2.7680606842041016, -0.3310585021972656, -0.3137025535106659, 1.3295855522155762, -0.43171942234039307, -0.03317412734031677, -1.7492806911468506, -0.11611911654472351, 0.02766634337604046, 2.0097522735595703, -0.37202319502830505, 0.9883524179458618, 3.1337199211120605, 1.1430268287658691, -2.847959518432617, -3.1732051372528076, -0.9202126860618591, 1.943743109703064, 1.8822453022003174, 0.46361178159713745, -0.36585453152656555, 2.9185938835144043, 3.1928205490112305, -0.11437763273715973, -1.0216009616851807, 1.476100206375122, 0.1162816509604454, -2.1454436779022217, 1.0965267419815063, -1.744897723197937, -1.5851377248764038, -0.8415526747703552, 1.261776328086853, -0.9355809092521667, 0.9711889624595642, 1.137488842010498, 0.9192944169044495, 1.8698736429214478, 0.33803266286849976, 1.4266993999481201, 2.2037017345428467, -0.4513522982597351, -0.8393474817276001, -4.183722496032715, 1.8719890117645264, -2.54687237739563, -1.6096925735473633, -0.6002196669578552, -1.7088531255722046, -0.19528833031654358, -1.3781253099441528, 11.572685241699219, -0.13162241876125336, -1.079646348953247, 0.444850355386734, -2.8317244052886963, -0.6937937140464783, -1.4358347654342651, -0.2701602578163147, -2.165357828140259, 0.7055133581161499, -0.33920204639434814, 1.2089382410049438, 3.261748790740967, 0.3232521116733551, -3.6458470821380615, 0.5423383116722107, 1.2651888132095337, -0.5063796639442444, 0.15639494359493256, -2.053332567214966, -2.9245591163635254, 4.527102947235107, 0.6485835909843445, 1.0888546705245972, -18.309452056884766, -1.0573822259902954, 0.16370552778244019, 0.9822609424591064, -0.5813179612159729, -2.5811831951141357, -3.450139045715332, 0.6820874214172363, 0.001285651233047247, 1.1328973770141602, -0.25533172488212585, 0.372991144657135, 3.208691120147705, 0.08555620163679123, 4.818619251251221, -1.6743290424346924, 0.522559404373169, 1.1719691753387451, 2.094691514968872, -0.8150692582130432, -0.8436501622200012, -1.6881173849105835, 3.5024096965789795, 1.1100151538848877, 2.077838897705078, -2.7626116275787354, 0.8729161620140076, 1.3432278633117676, -0.5501181483268738, -3.813225507736206, -4.0319695472717285, -1.6406543254852295, 1.1709080934524536, 1.3835645914077759, 2.3104910850524902, 3.9382786750793457, -0.08974433690309525, -0.9907834529876709, 0.3070928752422333, -1.5483031272888184, -2.727789878845215, 1.3298689126968384, 0.00944982748478651, -0.026013685390353203, -0.15562580525875092, 0.7518805861473083, 2.0396292209625244, -0.2617340683937073, 0.5915235877037048, 0.829230010509491, -1.202825903892517, -2.053178071975708, -2.3058359622955322, 1.6815171241760254, 2.2468791007995605, 0.9869866967201233, -1.8887137174606323, 0.25274357199668884, -1.687451720237732, 0.3005923926830292, -0.1509246975183487, -2.849752902984619, 0.5601741671562195, 1.7649779319763184, 3.337275266647339, -1.1549197435379028, -0.8942487239837646, -0.13587835431098938, -1.075811505317688, -3.1729018688201904, 2.957338333129883, -0.7568892240524292, -0.4898259937763214, 1.8160371780395508, -1.8915503025054932, -1.4338425397872925, 1.978043556213379, -0.129222571849823, 0.8156449198722839, 4.9731550216674805, -2.0159201622009277, -1.54999577999115, -0.6302304863929749, 2.4337880611419678, -0.36187392473220825, -0.13726961612701416, -0.39466750621795654, -0.1621161550283432, -0.5563005805015564, -0.8721724152565002, -2.379082441329956, -0.2697134017944336, 1.9724682569503784, -1.256096363067627, -1.8014767169952393, 1.5402930974960327, 0.7518300414085388, -1.8417719602584839, -0.912102222442627, 1.810524344444275, -2.839303731918335, -2.9414913654327393, -2.821345806121826, -2.99043869972229, -2.715848445892334, 1.12844717502594, -2.4285244941711426, 0.9713903665542603, 0.09353060275316238, 0.14163215458393097, -126.29313659667969, 0.4244332015514374, 1.4461277723312378, -3.771785259246826, -2.5761985778808594, 0.0972684919834137, 0.6268396377563477, -1.0165945291519165, 0.6395916938781738, -2.9752304553985596, 0.7431031465530396, 2.450723886489868, 0.4415939152240753, -1.5305174589157104, -0.2796171009540558, 3.913437604904175, -0.214386984705925, 2.814523220062256, -1.099212884902954, -0.3765789270401001, -0.6691469550132751, -0.6497750878334045, 0.7991846799850464, -2.108097791671753, 1.256473183631897, -0.7622600793838501, 0.8435328602790833, 0.6649778485298157, -4.189129829406738, -2.0330617427825928, -0.4192144274711609, 0.3235378861427307, -1.3224989175796509, -0.910811722278595, 0.2029293179512024, -0.18687549233436584, 1.6860575675964355, 1.0581176280975342, 0.044766027480363846, -0.9842323660850525, -2.4233615398406982, 1.3862437009811401, -2.031564474105835, 0.7887241244316101, -3.5324642658233643, 0.895975649356842, 2.9004881381988525, -1.0965290069580078, 1.3066152334213257, -1.5137362480163574, 0.5673431158065796, 1.030881643295288, -2.054670572280884, 3.116612672805786, -2.53090763092041, 4.7007904052734375, 2.1665828227996826, 1.0710949897766113, -2.039201498031616, 1.5061107873916626, 0.03380826488137245, -1.1632637977600098, -0.03971463069319725, -1.0887703895568848, 0.28566598892211914, -1.2248389720916748, 1.5684596300125122, -0.9473371505737305, 1.4455089569091797, 0.7132840752601624, -1.1759768724441528, -4.17590856552124, 0.7037174105644226, 2.040761709213257, 3.4362242221832275, 1.8944907188415527, 0.3207864463329315, -2.364039659500122, -2.430129051208496, 1.5824830532073975, 1.1856601238250732, -1.635430097579956, 0.3260684013366699, 0.13575738668441772, -2.4230501651763916, -1.333537220954895, -2.7320759296417236, 0.11229265481233597, 0.7417711019515991, 0.01093832403421402, 102.42485046386719, -0.5861223936080933, 0.8734258413314819, 6.480677127838135, -2.744865655899048, -0.7003287076950073, -0.6193812489509583, -0.8737050294876099, 1.998567819595337, -2.9519693851470947, 1.2709882259368896, 2.3629722595214844, 0.05607001110911369, -2.014233112335205, 2.726271390914917, 1.454806923866272, 0.4868341386318207, -0.02554745227098465, 0.15310446918010712, 0.39097416400909424, -0.5810178518295288, 0.4017719626426697, 2.152547836303711, -0.5836227536201477, -2.1116397380828857, -1.8802520036697388, -0.20884208381175995, 1.4026402235031128, -2.7184011936187744, 3.2027359008789062, -1.4775570631027222, -5.233639240264893, 0.5957650542259216, -2.577702760696411, 0.06723350286483765, 0.16866105794906616, 0.511646032333374, -0.9582839608192444, -3.108691453933716, 2.029698610305786, -0.18050670623779297, 0.27460870146751404, -1.9929769039154053, 1.584368348121643, -1.4436864852905273, -2.3413898944854736, -2.559253454208374, -1.1915161609649658, 2.7177484035491943, 1.124476671218872, 0.890935480594635, -0.33799344301223755, 0.230157732963562, 0.5731549263000488, 2.181067943572998, 0.5823280811309814, -1.1592750549316406, -2.4023375511169434, 0.8312026262283325, 2.3310561180114746, -1.0464282035827637, 0.6004327535629272, -2.4577083587646484, 1.8743242025375366, 0.008516146801412106, -0.11222909390926361, 1.4914697408676147, 1.861946702003479, 0.2868080139160156, 4.361971855163574, 2.160325765609741]} ID: b909dfb4-859b-4c5a-bad4-4bef34f19911 Data: {'text': 'Heaviest of all poisonous snakes is this North American rattlesnake'} Vector: {'default': [-1.9510374069213867, -0.9967884421348572, -1.2037752866744995, 0.24297747015953064, -0.1231154128909111, 1.15748131275177, -1.6040924787521362, -1.8666054010391235, -0.5423393249511719, -1.5033859014511108, 2.1337497234344482, -1.035761833190918, 0.6672560572624207, 0.8548232316970825, 1.4260377883911133, 1.7781187295913696, 0.49215567111968994, -1.5952364206314087, 3.0107059478759766, 0.8425706028938293, -0.02023920789361, -0.17652419209480286, 1.5272082090377808, -1.5370515584945679, -2.210336446762085, 1.9915522336959839, -0.47231099009513855, -1.5976117849349976, -1.3054083585739136, -1.3994256258010864, 2.627300500869751, 0.892441987991333, 2.0996060371398926, -0.9450390934944153, -1.0044033527374268, -3.512587547302246, 3.1640431880950928, 0.6829001307487488, -0.7545009851455688, -2.748605728149414, -1.1117602586746216, 3.820294141769409, -0.6118199229240417, -4.169648170471191, -0.20399853587150574, 0.04584604874253273, -1.794206142425537, 3.6624789237976074, 1.9612842798233032, -0.8079001903533936, 0.8611488938331604, 1.970404028892517, -2.0746397972106934, 0.6212611794471741, 0.09081880003213882, 0.3589556813240051, 1.0936559438705444, 0.05384676903486252, 0.13561850786209106, 0.33500587940216064, -2.1379926204681396, 1.0990654230117798, -0.7454580068588257, 1.1493661403656006, -2.2396271228790283, 1.200670838356018, 0.5334605574607849, 2.0730907917022705, -3.8102240562438965, -1.7811174392700195, 1.5553592443466187, 4.6831135749816895, -1.5346370935440063, 0.2897852063179016, -1.6732357740402222, -0.37982890009880066, -2.197277307510376, 1.5002318620681763, 0.9553156495094299, 0.12446501851081848, -0.4533895254135132, -0.7779607176780701, -0.44921961426734924, -1.2619357109069824, -0.18769554793834686, 2.6683144569396973, 3.1060047149658203, 0.29372313618659973, 3.194973945617676, 0.7302703857421875, -0.7462695837020874, -4.160582065582275, -0.7957040071487427, 2.632079839706421, 2.1082663536071777, 0.05493159964680672, 2.8450498580932617, 1.4144870042800903, -3.445063352584839, 2.011417865753174, 3.3159267902374268, 0.45921799540519714, -1.435811161994934, 1.7353001832962036, 3.2457525730133057, -0.7271069288253784, -1.1395553350448608, -0.5462174415588379, -2.9822988510131836, 0.745682418346405, 2.3378994464874268, -1.715441107749939, -1.4774346351623535, -2.035811185836792, -1.1470719575881958, -6.32465934753418, 6.107190132141113, 1.0972281694412231, 0.8394855260848999, 1.4468222856521606, 2.6018848419189453, 0.9425144791603088, 2.0747787952423096, -0.8610297441482544, 0.3246554434299469, -0.7474703192710876, -1.0116767883300781, 1.324621558189392, 1.298416018486023, 0.21829338371753693, -0.22418776154518127, -0.5592461824417114, 1.1745902299880981, -0.423655241727829, -0.14830003678798676, 0.8796787261962891, -1.2291816473007202, 1.8488223552703857, 0.9456120133399963, -1.2758890390396118, 2.1551265716552734, 1.6010459661483765, 1.2982678413391113, -2.553619623184204, -0.007142047863453627, 0.9428684711456299, 1.5242507457733154, -0.5405881404876709, -2.2761621475219727, 3.3263776302337646, -0.9998684525489807, 2.4311559200286865, -0.6154475808143616, -2.773056983947754, -3.8294572830200195, 0.6005435585975647, -0.1725737601518631, -0.5224359035491943, -1.3919191360473633, 2.4707624912261963, -1.5516084432601929, -2.40134334564209, 1.143546223640442, 3.1847410202026367, 2.3178656101226807, -1.1403664350509644, -0.3558688163757324, 2.3394010066986084, -0.9989381432533264, -3.461531162261963, 1.1927400827407837, 0.20484872162342072, -2.1683969497680664, -1.8746532201766968, -2.635221004486084, -2.5902597904205322, 2.2528276443481445, 1.1554158926010132, 0.32717567682266235, -1.4028855562210083, -0.5075865387916565, 4.17388391494751, 4.330104827880859, 2.143197536468506, 17.097064971923828, -0.31826120615005493, 0.7135065197944641, 2.02114200592041, 0.002058938378468156, -1.6952272653579712, 0.9258185625076294, -1.3470032215118408, 1.2906181812286377, -0.141681969165802, 1.33379328250885, 1.0947147607803345, 1.3687101602554321, -1.1491458415985107, 1.672888159751892, 0.3461308777332306, 1.116531491279602, 3.041752815246582, -1.5486258268356323, 2.089513063430786, 0.007287302985787392, 2.016051769256592, 0.052647657692432404, -0.5051586031913757, -1.0886359214782715, -0.29027456045150757, -0.5975868105888367, -0.966127336025238, -2.947037696838379, -3.345940589904785, -1.437461256980896, 2.1820552349090576, 2.9887454509735107, -1.9341332912445068, 2.9948713779449463, -0.7662598490715027, 0.9505520462989807, 1.877440094947815, 0.7437080144882202, -0.0784115120768547, -0.20706039667129517, 0.8294994831085205, -1.4751330614089966, -1.2449923753738403, -3.6871442794799805, -1.6031888723373413, 1.0694630146026611, 1.4705328941345215, -1.961687445640564, -2.9775846004486084, -1.9727998971939087, 1.8294742107391357, 2.3485512733459473, 3.2571163177490234, -0.5940772294998169, 0.11373110115528107, 0.5288851857185364, 1.9128135442733765, 2.0884382724761963, -0.40383726358413696, 0.43922436237335205, 1.028336763381958, -0.8053091168403625, 1.846055030822754, 0.07598721981048584, -2.6138672828674316, -1.6098421812057495, -1.4955695867538452, -0.9167624115943909, 0.08310585469007492, -2.417745590209961, 2.0583581924438477, -0.9196177124977112, -0.6528652310371399, 0.7655075788497925, 0.8044053912162781, 0.1867145150899887, 1.2677427530288696, -0.9047883749008179, -0.8625851273536682, -1.2130341529846191, -0.7192506194114685, 1.4745512008666992, -2.4845521450042725, -0.3675612509250641, 2.608403444290161, 2.6098597049713135, 3.5911834239959717, -0.4333766996860504, 3.830160617828369, -0.5260956883430481, -1.6186370849609375, -0.2003614455461502, 2.470811367034912, -1.6866719722747803, 2.401365041732788, 1.656844973564148, 3.455519914627075, 3.473375082015991, 2.401684284210205, -1.4892094135284424, -0.42803800106048584, -1.247750163078308, 0.35349345207214355, -2.8591976165771484, -1.0824309587478638, 1.7293133735656738, -0.30569061636924744, -5.072286605834961, 1.195874810218811, -0.530290424823761, 4.479702949523926, -0.36548465490341187, 1.9964656829833984, -1.7601752281188965, -2.107971429824829, -1.2710049152374268, 1.4003304243087769, -0.45677006244659424, 2.2505462169647217, -2.888376235961914, -0.5457501411437988, 1.7091118097305298, -2.151557207107544, 1.059717059135437, 2.394317865371704, 1.0686516761779785, -2.817033529281616, 0.180204376578331, -2.2952992916107178, 0.05557467043399811, 0.25743937492370605, -1.3631857633590698, 4.199581623077393, -1.6239782571792603, 1.0005333423614502, -0.9151018261909485, -3.3731143474578857, -0.3810237944126129, -2.812373638153076, 2.3933804035186768, 1.2495907545089722, 1.0209927558898926, -0.04413863644003868, 0.27346912026405334, 1.1107107400894165, 0.9063902497291565, 0.5842305421829224, -0.6555060744285583, -1.0481547117233276, -2.594743490219116, -2.0305356979370117, 0.9288702011108398, 1.237075924873352, 2.941380262374878, 0.2993914484977722, -0.1999698132276535, -1.4729993343353271, -0.8533242344856262, -2.6673519611358643, 2.335071086883545, 2.0907623767852783, -2.1871695518493652, 1.2120919227600098, 0.20936818420886993, 2.1800854206085205, 0.28720203042030334, -1.0962697267532349, -0.0746733546257019, 2.5197720527648926, -2.5641608238220215, 0.14983272552490234, -6.109929084777832, 0.862467885017395, -3.4633820056915283, -0.6031206250190735, -1.8848248720169067, -2.4293620586395264, 1.7941571474075317, 3.232050657272339, -2.913620948791504, 1.7095786333084106, 3.708261251449585, 2.1537129878997803, 3.9322526454925537, -0.33245649933815, -1.5113869905471802, 1.2643473148345947, 0.6749638319015503, -1.0179070234298706, -1.6864113807678223, 0.1439145803451538, -0.9772970676422119, 0.5145910382270813, -0.06341981887817383, -5.908222198486328, 0.8523079752922058, -0.06971875578165054, -3.5796525478363037, -1.0678892135620117, -0.07242831587791443, 1.8156660795211792, -1.8438706398010254, -0.767185389995575, 1.7557263374328613, 1.3585333824157715, -0.28102269768714905, 0.09332103282213211, 1.965685486793518, -0.77394700050354, -2.989877462387085, -5.311213970184326, -0.4354499876499176, -0.7905680537223816, 0.09712280333042145, -0.190561905503273, -0.028867261484265327, 0.712779700756073, -0.5622200965881348, -0.12739217281341553, 1.1794960498809814, -0.11855033040046692, -1.1172930002212524, 2.2423324584960938, -3.2176685333251953, 0.051828764379024506, 0.28844955563545227, -1.9138017892837524, -2.8670716285705566, 1.8268048763275146, 0.22661438584327698, 0.21833741664886475, 0.23121508955955505, -3.093465566635132, -1.7885326147079468, 1.1198428869247437, -1.0875412225723267, 0.37333303689956665, 2.7680606842041016, -0.3310585021972656, -0.3137025535106659, 1.3295855522155762, -0.43171942234039307, -0.03317412734031677, -1.7492806911468506, -0.11611911654472351, 0.02766634337604046, 2.0097522735595703, -0.37202319502830505, 0.9883524179458618, 3.1337199211120605, 1.1430268287658691, -2.847959518432617, -3.1732051372528076, -0.9202126860618591, 1.943743109703064, 1.8822453022003174, 0.46361178159713745, -0.36585453152656555, 2.9185938835144043, 3.1928205490112305, -0.11437763273715973, -1.0216009616851807, 1.476100206375122, 0.1162816509604454, -2.1454436779022217, 1.0965267419815063, -1.744897723197937, -1.5851377248764038, -0.8415526747703552, 1.261776328086853, -0.9355809092521667, 0.9711889624595642, 1.137488842010498, 0.9192944169044495, 1.8698736429214478, 0.33803266286849976, 1.4266993999481201, 2.2037017345428467, -0.4513522982597351, -0.8393474817276001, -4.183722496032715, 1.8719890117645264, -2.54687237739563, -1.6096925735473633, -0.6002196669578552, -1.7088531255722046, -0.19528833031654358, -1.3781253099441528, 11.572685241699219, -0.13162241876125336, -1.079646348953247, 0.444850355386734, -2.8317244052886963, -0.6937937140464783, -1.4358347654342651, -0.2701602578163147, -2.165357828140259, 0.7055133581161499, -0.33920204639434814, 1.2089382410049438, 3.261748790740967, 0.3232521116733551, -3.6458470821380615, 0.5423383116722107, 1.2651888132095337, -0.5063796639442444, 0.15639494359493256, -2.053332567214966, -2.9245591163635254, 4.527102947235107, 0.6485835909843445, 1.0888546705245972, -18.309452056884766, -1.0573822259902954, 0.16370552778244019, 0.9822609424591064, -0.5813179612159729, -2.5811831951141357, -3.450139045715332, 0.6820874214172363, 0.001285651233047247, 1.1328973770141602, -0.25533172488212585, 0.372991144657135, 3.208691120147705, 0.08555620163679123, 4.818619251251221, -1.6743290424346924, 0.522559404373169, 1.1719691753387451, 2.094691514968872, -0.8150692582130432, -0.8436501622200012, -1.6881173849105835, 3.5024096965789795, 1.1100151538848877, 2.077838897705078, -2.7626116275787354, 0.8729161620140076, 1.3432278633117676, -0.5501181483268738, -3.813225507736206, -4.0319695472717285, -1.6406543254852295, 1.1709080934524536, 1.3835645914077759, 2.3104910850524902, 3.9382786750793457, -0.08974433690309525, -0.9907834529876709, 0.3070928752422333, -1.5483031272888184, -2.727789878845215, 1.3298689126968384, 0.00944982748478651, -0.026013685390353203, -0.15562580525875092, 0.7518805861473083, 2.0396292209625244, -0.2617340683937073, 0.5915235877037048, 0.829230010509491, -1.202825903892517, -2.053178071975708, -2.3058359622955322, 1.6815171241760254, 2.2468791007995605, 0.9869866967201233, -1.8887137174606323, 0.25274357199668884, -1.687451720237732, 0.3005923926830292, -0.1509246975183487, -2.849752902984619, 0.5601741671562195, 1.7649779319763184, 3.337275266647339, -1.1549197435379028, -0.8942487239837646, -0.13587835431098938, -1.075811505317688, -3.1729018688201904, 2.957338333129883, -0.7568892240524292, -0.4898259937763214, 1.8160371780395508, -1.8915503025054932, -1.4338425397872925, 1.978043556213379, -0.129222571849823, 0.8156449198722839, 4.9731550216674805, -2.0159201622009277, -1.54999577999115, -0.6302304863929749, 2.4337880611419678, -0.36187392473220825, -0.13726961612701416, -0.39466750621795654, -0.1621161550283432, -0.5563005805015564, -0.8721724152565002, -2.379082441329956, -0.2697134017944336, 1.9724682569503784, -1.256096363067627, -1.8014767169952393, 1.5402930974960327, 0.7518300414085388, -1.8417719602584839, -0.912102222442627, 1.810524344444275, -2.839303731918335, -2.9414913654327393, -2.821345806121826, -2.99043869972229, -2.715848445892334, 1.12844717502594, -2.4285244941711426, 0.9713903665542603, 0.09353060275316238, 0.14163215458393097, -126.29313659667969, 0.4244332015514374, 1.4461277723312378, -3.771785259246826, -2.5761985778808594, 0.0972684919834137, 0.6268396377563477, -1.0165945291519165, 0.6395916938781738, -2.9752304553985596, 0.7431031465530396, 2.450723886489868, 0.4415939152240753, -1.5305174589157104, -0.2796171009540558, 3.913437604904175, -0.214386984705925, 2.814523220062256, -1.099212884902954, -0.3765789270401001, -0.6691469550132751, -0.6497750878334045, 0.7991846799850464, -2.108097791671753, 1.256473183631897, -0.7622600793838501, 0.8435328602790833, 0.6649778485298157, -4.189129829406738, -2.0330617427825928, -0.4192144274711609, 0.3235378861427307, -1.3224989175796509, -0.910811722278595, 0.2029293179512024, -0.18687549233436584, 1.6860575675964355, 1.0581176280975342, 0.044766027480363846, -0.9842323660850525, -2.4233615398406982, 1.3862437009811401, -2.031564474105835, 0.7887241244316101, -3.5324642658233643, 0.895975649356842, 2.9004881381988525, -1.0965290069580078, 1.3066152334213257, -1.5137362480163574, 0.5673431158065796, 1.030881643295288, -2.054670572280884, 3.116612672805786, -2.53090763092041, 4.7007904052734375, 2.1665828227996826, 1.0710949897766113, -2.039201498031616, 1.5061107873916626, 0.03380826488137245, -1.1632637977600098, -0.03971463069319725, -1.0887703895568848, 0.28566598892211914, -1.2248389720916748, 1.5684596300125122, -0.9473371505737305, 1.4455089569091797, 0.7132840752601624, -1.1759768724441528, -4.17590856552124, 0.7037174105644226, 2.040761709213257, 3.4362242221832275, 1.8944907188415527, 0.3207864463329315, -2.364039659500122, -2.430129051208496, 1.5824830532073975, 1.1856601238250732, -1.635430097579956, 0.3260684013366699, 0.13575738668441772, -2.4230501651763916, -1.333537220954895, -2.7320759296417236, 0.11229265481233597, 0.7417711019515991, 0.01093832403421402, 102.42485046386719, -0.5861223936080933, 0.8734258413314819, 6.480677127838135, -2.744865655899048, -0.7003287076950073, -0.6193812489509583, -0.8737050294876099, 1.998567819595337, -2.9519693851470947, 1.2709882259368896, 2.3629722595214844, 0.05607001110911369, -2.014233112335205, 2.726271390914917, 1.454806923866272, 0.4868341386318207, -0.02554745227098465, 0.15310446918010712, 0.39097416400909424, -0.5810178518295288, 0.4017719626426697, 2.152547836303711, -0.5836227536201477, -2.1116397380828857, -1.8802520036697388, -0.20884208381175995, 1.4026402235031128, -2.7184011936187744, 3.2027359008789062, -1.4775570631027222, -5.233639240264893, 0.5957650542259216, -2.577702760696411, 0.06723350286483765, 0.16866105794906616, 0.511646032333374, -0.9582839608192444, -3.108691453933716, 2.029698610305786, -0.18050670623779297, 0.27460870146751404, -1.9929769039154053, 1.584368348121643, -1.4436864852905273, -2.3413898944854736, -2.559253454208374, -1.1915161609649658, 2.7177484035491943, 1.124476671218872, 0.890935480594635, -0.33799344301223755, 0.230157732963562, 0.5731549263000488, 2.181067943572998, 0.5823280811309814, -1.1592750549316406, -2.4023375511169434, 0.8312026262283325, 2.3310561180114746, -1.0464282035827637, 0.6004327535629272, -2.4577083587646484, 1.8743242025375366, 0.008516146801412106, -0.11222909390926361, 1.4914697408676147, 1.861946702003479, 0.2868080139160156, 4.361971855163574, 2.160325765609741]} ID: 9dd808f2-ab6a-4ee4-9782-cf4027f82d1b Data: {'text': "2000 news: the Gunnison sage grouse isn't just another northern sage grouse, but a new one of this classification"} Vector: {'default': [-1.9510374069213867, -0.9967884421348572, -1.2037752866744995, 0.24297747015953064, -0.1231154128909111, 1.15748131275177, -1.6040924787521362, -1.8666054010391235, -0.5423393249511719, -1.5033859014511108, 2.1337497234344482, -1.035761833190918, 0.6672560572624207, 0.8548232316970825, 1.4260377883911133, 1.7781187295913696, 0.49215567111968994, -1.5952364206314087, 3.0107059478759766, 0.8425706028938293, -0.02023920789361, -0.17652419209480286, 1.5272082090377808, -1.5370515584945679, -2.210336446762085, 1.9915522336959839, -0.47231099009513855, -1.5976117849349976, -1.3054083585739136, -1.3994256258010864, 2.627300500869751, 0.892441987991333, 2.0996060371398926, -0.9450390934944153, -1.0044033527374268, -3.512587547302246, 3.1640431880950928, 0.6829001307487488, -0.7545009851455688, -2.748605728149414, -1.1117602586746216, 3.820294141769409, -0.6118199229240417, -4.169648170471191, -0.20399853587150574, 0.04584604874253273, -1.794206142425537, 3.6624789237976074, 1.9612842798233032, -0.8079001903533936, 0.8611488938331604, 1.970404028892517, -2.0746397972106934, 0.6212611794471741, 0.09081880003213882, 0.3589556813240051, 1.0936559438705444, 0.05384676903486252, 0.13561850786209106, 0.33500587940216064, -2.1379926204681396, 1.0990654230117798, -0.7454580068588257, 1.1493661403656006, -2.2396271228790283, 1.200670838356018, 0.5334605574607849, 2.0730907917022705, -3.8102240562438965, -1.7811174392700195, 1.5553592443466187, 4.6831135749816895, -1.5346370935440063, 0.2897852063179016, -1.6732357740402222, -0.37982890009880066, -2.197277307510376, 1.5002318620681763, 0.9553156495094299, 0.12446501851081848, -0.4533895254135132, -0.7779607176780701, -0.44921961426734924, -1.2619357109069824, -0.18769554793834686, 2.6683144569396973, 3.1060047149658203, 0.29372313618659973, 3.194973945617676, 0.7302703857421875, -0.7462695837020874, -4.160582065582275, -0.7957040071487427, 2.632079839706421, 2.1082663536071777, 0.05493159964680672, 2.8450498580932617, 1.4144870042800903, -3.445063352584839, 2.011417865753174, 3.3159267902374268, 0.45921799540519714, -1.435811161994934, 1.7353001832962036, 3.2457525730133057, -0.7271069288253784, -1.1395553350448608, -0.5462174415588379, -2.9822988510131836, 0.745682418346405, 2.3378994464874268, -1.715441107749939, -1.4774346351623535, -2.035811185836792, -1.1470719575881958, -6.32465934753418, 6.107190132141113, 1.0972281694412231, 0.8394855260848999, 1.4468222856521606, 2.6018848419189453, 0.9425144791603088, 2.0747787952423096, -0.8610297441482544, 0.3246554434299469, -0.7474703192710876, -1.0116767883300781, 1.324621558189392, 1.298416018486023, 0.21829338371753693, -0.22418776154518127, -0.5592461824417114, 1.1745902299880981, -0.423655241727829, -0.14830003678798676, 0.8796787261962891, -1.2291816473007202, 1.8488223552703857, 0.9456120133399963, -1.2758890390396118, 2.1551265716552734, 1.6010459661483765, 1.2982678413391113, -2.553619623184204, -0.007142047863453627, 0.9428684711456299, 1.5242507457733154, -0.5405881404876709, -2.2761621475219727, 3.3263776302337646, -0.9998684525489807, 2.4311559200286865, -0.6154475808143616, -2.773056983947754, -3.8294572830200195, 0.6005435585975647, -0.1725737601518631, -0.5224359035491943, -1.3919191360473633, 2.4707624912261963, -1.5516084432601929, -2.40134334564209, 1.143546223640442, 3.1847410202026367, 2.3178656101226807, -1.1403664350509644, -0.3558688163757324, 2.3394010066986084, -0.9989381432533264, -3.461531162261963, 1.1927400827407837, 0.20484872162342072, -2.1683969497680664, -1.8746532201766968, -2.635221004486084, -2.5902597904205322, 2.2528276443481445, 1.1554158926010132, 0.32717567682266235, -1.4028855562210083, -0.5075865387916565, 4.17388391494751, 4.330104827880859, 2.143197536468506, 17.097064971923828, -0.31826120615005493, 0.7135065197944641, 2.02114200592041, 0.002058938378468156, -1.6952272653579712, 0.9258185625076294, -1.3470032215118408, 1.2906181812286377, -0.141681969165802, 1.33379328250885, 1.0947147607803345, 1.3687101602554321, -1.1491458415985107, 1.672888159751892, 0.3461308777332306, 1.116531491279602, 3.041752815246582, -1.5486258268356323, 2.089513063430786, 0.007287302985787392, 2.016051769256592, 0.052647657692432404, -0.5051586031913757, -1.0886359214782715, -0.29027456045150757, -0.5975868105888367, -0.966127336025238, -2.947037696838379, -3.345940589904785, -1.437461256980896, 2.1820552349090576, 2.9887454509735107, -1.9341332912445068, 2.9948713779449463, -0.7662598490715027, 0.9505520462989807, 1.877440094947815, 0.7437080144882202, -0.0784115120768547, -0.20706039667129517, 0.8294994831085205, -1.4751330614089966, -1.2449923753738403, -3.6871442794799805, -1.6031888723373413, 1.0694630146026611, 1.4705328941345215, -1.961687445640564, -2.9775846004486084, -1.9727998971939087, 1.8294742107391357, 2.3485512733459473, 3.2571163177490234, -0.5940772294998169, 0.11373110115528107, 0.5288851857185364, 1.9128135442733765, 2.0884382724761963, -0.40383726358413696, 0.43922436237335205, 1.028336763381958, -0.8053091168403625, 1.846055030822754, 0.07598721981048584, -2.6138672828674316, -1.6098421812057495, -1.4955695867538452, -0.9167624115943909, 0.08310585469007492, -2.417745590209961, 2.0583581924438477, -0.9196177124977112, -0.6528652310371399, 0.7655075788497925, 0.8044053912162781, 0.1867145150899887, 1.2677427530288696, -0.9047883749008179, -0.8625851273536682, -1.2130341529846191, -0.7192506194114685, 1.4745512008666992, -2.4845521450042725, -0.3675612509250641, 2.608403444290161, 2.6098597049713135, 3.5911834239959717, -0.4333766996860504, 3.830160617828369, -0.5260956883430481, -1.6186370849609375, -0.2003614455461502, 2.470811367034912, -1.6866719722747803, 2.401365041732788, 1.656844973564148, 3.455519914627075, 3.473375082015991, 2.401684284210205, -1.4892094135284424, -0.42803800106048584, -1.247750163078308, 0.35349345207214355, -2.8591976165771484, -1.0824309587478638, 1.7293133735656738, -0.30569061636924744, -5.072286605834961, 1.195874810218811, -0.530290424823761, 4.479702949523926, -0.36548465490341187, 1.9964656829833984, -1.7601752281188965, -2.107971429824829, -1.2710049152374268, 1.4003304243087769, -0.45677006244659424, 2.2505462169647217, -2.888376235961914, -0.5457501411437988, 1.7091118097305298, -2.151557207107544, 1.059717059135437, 2.394317865371704, 1.0686516761779785, -2.817033529281616, 0.180204376578331, -2.2952992916107178, 0.05557467043399811, 0.25743937492370605, -1.3631857633590698, 4.199581623077393, -1.6239782571792603, 1.0005333423614502, -0.9151018261909485, -3.3731143474578857, -0.3810237944126129, -2.812373638153076, 2.3933804035186768, 1.2495907545089722, 1.0209927558898926, -0.04413863644003868, 0.27346912026405334, 1.1107107400894165, 0.9063902497291565, 0.5842305421829224, -0.6555060744285583, -1.0481547117233276, -2.594743490219116, -2.0305356979370117, 0.9288702011108398, 1.237075924873352, 2.941380262374878, 0.2993914484977722, -0.1999698132276535, -1.4729993343353271, -0.8533242344856262, -2.6673519611358643, 2.335071086883545, 2.0907623767852783, -2.1871695518493652, 1.2120919227600098, 0.20936818420886993, 2.1800854206085205, 0.28720203042030334, -1.0962697267532349, -0.0746733546257019, 2.5197720527648926, -2.5641608238220215, 0.14983272552490234, -6.109929084777832, 0.862467885017395, -3.4633820056915283, -0.6031206250190735, -1.8848248720169067, -2.4293620586395264, 1.7941571474075317, 3.232050657272339, -2.913620948791504, 1.7095786333084106, 3.708261251449585, 2.1537129878997803, 3.9322526454925537, -0.33245649933815, -1.5113869905471802, 1.2643473148345947, 0.6749638319015503, -1.0179070234298706, -1.6864113807678223, 0.1439145803451538, -0.9772970676422119, 0.5145910382270813, -0.06341981887817383, -5.908222198486328, 0.8523079752922058, -0.06971875578165054, -3.5796525478363037, -1.0678892135620117, -0.07242831587791443, 1.8156660795211792, -1.8438706398010254, -0.767185389995575, 1.7557263374328613, 1.3585333824157715, -0.28102269768714905, 0.09332103282213211, 1.965685486793518, -0.77394700050354, -2.989877462387085, -5.311213970184326, -0.4354499876499176, -0.7905680537223816, 0.09712280333042145, -0.190561905503273, -0.028867261484265327, 0.712779700756073, -0.5622200965881348, -0.12739217281341553, 1.1794960498809814, -0.11855033040046692, -1.1172930002212524, 2.2423324584960938, -3.2176685333251953, 0.051828764379024506, 0.28844955563545227, -1.9138017892837524, -2.8670716285705566, 1.8268048763275146, 0.22661438584327698, 0.21833741664886475, 0.23121508955955505, -3.093465566635132, -1.7885326147079468, 1.1198428869247437, -1.0875412225723267, 0.37333303689956665, 2.7680606842041016, -0.3310585021972656, -0.3137025535106659, 1.3295855522155762, -0.43171942234039307, -0.03317412734031677, -1.7492806911468506, -0.11611911654472351, 0.02766634337604046, 2.0097522735595703, -0.37202319502830505, 0.9883524179458618, 3.1337199211120605, 1.1430268287658691, -2.847959518432617, -3.1732051372528076, -0.9202126860618591, 1.943743109703064, 1.8822453022003174, 0.46361178159713745, -0.36585453152656555, 2.9185938835144043, 3.1928205490112305, -0.11437763273715973, -1.0216009616851807, 1.476100206375122, 0.1162816509604454, -2.1454436779022217, 1.0965267419815063, -1.744897723197937, -1.5851377248764038, -0.8415526747703552, 1.261776328086853, -0.9355809092521667, 0.9711889624595642, 1.137488842010498, 0.9192944169044495, 1.8698736429214478, 0.33803266286849976, 1.4266993999481201, 2.2037017345428467, -0.4513522982597351, -0.8393474817276001, -4.183722496032715, 1.8719890117645264, -2.54687237739563, -1.6096925735473633, -0.6002196669578552, -1.7088531255722046, -0.19528833031654358, -1.3781253099441528, 11.572685241699219, -0.13162241876125336, -1.079646348953247, 0.444850355386734, -2.8317244052886963, -0.6937937140464783, -1.4358347654342651, -0.2701602578163147, -2.165357828140259, 0.7055133581161499, -0.33920204639434814, 1.2089382410049438, 3.261748790740967, 0.3232521116733551, -3.6458470821380615, 0.5423383116722107, 1.2651888132095337, -0.5063796639442444, 0.15639494359493256, -2.053332567214966, -2.9245591163635254, 4.527102947235107, 0.6485835909843445, 1.0888546705245972, -18.309452056884766, -1.0573822259902954, 0.16370552778244019, 0.9822609424591064, -0.5813179612159729, -2.5811831951141357, -3.450139045715332, 0.6820874214172363, 0.001285651233047247, 1.1328973770141602, -0.25533172488212585, 0.372991144657135, 3.208691120147705, 0.08555620163679123, 4.818619251251221, -1.6743290424346924, 0.522559404373169, 1.1719691753387451, 2.094691514968872, -0.8150692582130432, -0.8436501622200012, -1.6881173849105835, 3.5024096965789795, 1.1100151538848877, 2.077838897705078, -2.7626116275787354, 0.8729161620140076, 1.3432278633117676, -0.5501181483268738, -3.813225507736206, -4.0319695472717285, -1.6406543254852295, 1.1709080934524536, 1.3835645914077759, 2.3104910850524902, 3.9382786750793457, -0.08974433690309525, -0.9907834529876709, 0.3070928752422333, -1.5483031272888184, -2.727789878845215, 1.3298689126968384, 0.00944982748478651, -0.026013685390353203, -0.15562580525875092, 0.7518805861473083, 2.0396292209625244, -0.2617340683937073, 0.5915235877037048, 0.829230010509491, -1.202825903892517, -2.053178071975708, -2.3058359622955322, 1.6815171241760254, 2.2468791007995605, 0.9869866967201233, -1.8887137174606323, 0.25274357199668884, -1.687451720237732, 0.3005923926830292, -0.1509246975183487, -2.849752902984619, 0.5601741671562195, 1.7649779319763184, 3.337275266647339, -1.1549197435379028, -0.8942487239837646, -0.13587835431098938, -1.075811505317688, -3.1729018688201904, 2.957338333129883, -0.7568892240524292, -0.4898259937763214, 1.8160371780395508, -1.8915503025054932, -1.4338425397872925, 1.978043556213379, -0.129222571849823, 0.8156449198722839, 4.9731550216674805, -2.0159201622009277, -1.54999577999115, -0.6302304863929749, 2.4337880611419678, -0.36187392473220825, -0.13726961612701416, -0.39466750621795654, -0.1621161550283432, -0.5563005805015564, -0.8721724152565002, -2.379082441329956, -0.2697134017944336, 1.9724682569503784, -1.256096363067627, -1.8014767169952393, 1.5402930974960327, 0.7518300414085388, -1.8417719602584839, -0.912102222442627, 1.810524344444275, -2.839303731918335, -2.9414913654327393, -2.821345806121826, -2.99043869972229, -2.715848445892334, 1.12844717502594, -2.4285244941711426, 0.9713903665542603, 0.09353060275316238, 0.14163215458393097, -126.29313659667969, 0.4244332015514374, 1.4461277723312378, -3.771785259246826, -2.5761985778808594, 0.0972684919834137, 0.6268396377563477, -1.0165945291519165, 0.6395916938781738, -2.9752304553985596, 0.7431031465530396, 2.450723886489868, 0.4415939152240753, -1.5305174589157104, -0.2796171009540558, 3.913437604904175, -0.214386984705925, 2.814523220062256, -1.099212884902954, -0.3765789270401001, -0.6691469550132751, -0.6497750878334045, 0.7991846799850464, -2.108097791671753, 1.256473183631897, -0.7622600793838501, 0.8435328602790833, 0.6649778485298157, -4.189129829406738, -2.0330617427825928, -0.4192144274711609, 0.3235378861427307, -1.3224989175796509, -0.910811722278595, 0.2029293179512024, -0.18687549233436584, 1.6860575675964355, 1.0581176280975342, 0.044766027480363846, -0.9842323660850525, -2.4233615398406982, 1.3862437009811401, -2.031564474105835, 0.7887241244316101, -3.5324642658233643, 0.895975649356842, 2.9004881381988525, -1.0965290069580078, 1.3066152334213257, -1.5137362480163574, 0.5673431158065796, 1.030881643295288, -2.054670572280884, 3.116612672805786, -2.53090763092041, 4.7007904052734375, 2.1665828227996826, 1.0710949897766113, -2.039201498031616, 1.5061107873916626, 0.03380826488137245, -1.1632637977600098, -0.03971463069319725, -1.0887703895568848, 0.28566598892211914, -1.2248389720916748, 1.5684596300125122, -0.9473371505737305, 1.4455089569091797, 0.7132840752601624, -1.1759768724441528, -4.17590856552124, 0.7037174105644226, 2.040761709213257, 3.4362242221832275, 1.8944907188415527, 0.3207864463329315, -2.364039659500122, -2.430129051208496, 1.5824830532073975, 1.1856601238250732, -1.635430097579956, 0.3260684013366699, 0.13575738668441772, -2.4230501651763916, -1.333537220954895, -2.7320759296417236, 0.11229265481233597, 0.7417711019515991, 0.01093832403421402, 102.42485046386719, -0.5861223936080933, 0.8734258413314819, 6.480677127838135, -2.744865655899048, -0.7003287076950073, -0.6193812489509583, -0.8737050294876099, 1.998567819595337, -2.9519693851470947, 1.2709882259368896, 2.3629722595214844, 0.05607001110911369, -2.014233112335205, 2.726271390914917, 1.454806923866272, 0.4868341386318207, -0.02554745227098465, 0.15310446918010712, 0.39097416400909424, -0.5810178518295288, 0.4017719626426697, 2.152547836303711, -0.5836227536201477, -2.1116397380828857, -1.8802520036697388, -0.20884208381175995, 1.4026402235031128, -2.7184011936187744, 3.2027359008789062, -1.4775570631027222, -5.233639240264893, 0.5957650542259216, -2.577702760696411, 0.06723350286483765, 0.16866105794906616, 0.511646032333374, -0.9582839608192444, -3.108691453933716, 2.029698610305786, -0.18050670623779297, 0.27460870146751404, -1.9929769039154053, 1.584368348121643, -1.4436864852905273, -2.3413898944854736, -2.559253454208374, -1.1915161609649658, 2.7177484035491943, 1.124476671218872, 0.890935480594635, -0.33799344301223755, 0.230157732963562, 0.5731549263000488, 2.181067943572998, 0.5823280811309814, -1.1592750549316406, -2.4023375511169434, 0.8312026262283325, 2.3310561180114746, -1.0464282035827637, 0.6004327535629272, -2.4577083587646484, 1.8743242025375366, 0.008516146801412106, -0.11222909390926361, 1.4914697408676147, 1.861946702003479, 0.2868080139160156, 4.361971855163574, 2.160325765609741]}
Back to top
Read Entire Article