486 lines
204 KiB
Plaintext
486 lines
204 KiB
Plaintext
{
|
|
"cells": [
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": 7,
|
|
"id": "0a8abbfa",
|
|
"metadata": {},
|
|
"outputs": [],
|
|
"source": [
|
|
"import os\n",
|
|
"import re\n",
|
|
"import uuid\n",
|
|
"from typing import Iterable, List, Dict, Any, Protocol\n",
|
|
"\n",
|
|
"from langchain_core.documents import Document\n",
|
|
"from langchain_elasticsearch import ElasticsearchStore\n",
|
|
"import torch\n",
|
|
"import torch.nn.functional as F\n",
|
|
"from loguru import logger\n",
|
|
"from langchain_community.embeddings import OllamaEmbeddings\n",
|
|
"\n",
|
|
"from langchain_community.llms import Ollama\n",
|
|
"from transformers import AutoTokenizer, AutoModel, AutoConfig\n",
|
|
"from elasticsearch import Elasticsearch\n",
|
|
"from elasticsearch.helpers import bulk\n",
|
|
"import nltk\n",
|
|
"from nltk.tokenize import sent_tokenize\n",
|
|
"nltk.download(\"punkt\", quiet=True)\n",
|
|
"\n",
|
|
"config = AutoConfig.from_pretrained(os.getenv(\"HF_EMBEDDING_MODEL_NAME\"))\n",
|
|
"embedding_dim = config.hidden_size\n",
|
|
"\n",
|
|
"es_index = os.getenv(\"ELASTICSEARCH_INDEX\")\n",
|
|
"embedding_model_name = os.getenv(\"HF_EMBEDDING_MODEL_NAME\")"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "markdown",
|
|
"id": "baa779f3",
|
|
"metadata": {},
|
|
"source": [
|
|
"# Functions"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "markdown",
|
|
"id": "148a4bb5",
|
|
"metadata": {},
|
|
"source": [
|
|
"## Utilities"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": 8,
|
|
"id": "3c1e4649",
|
|
"metadata": {},
|
|
"outputs": [],
|
|
"source": [
|
|
"def clean_text(text: str) -> str:\n",
|
|
" text = text.replace(\"\\u00a0\", \" \")\n",
|
|
" text = re.sub(r\"\\s+\", \" \", text).strip()\n",
|
|
" return text"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "markdown",
|
|
"id": "acecbf08",
|
|
"metadata": {},
|
|
"source": [
|
|
"## Chunking Strategies"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": 9,
|
|
"id": "8360441b",
|
|
"metadata": {},
|
|
"outputs": [],
|
|
"source": [
|
|
"class ChunkingStrategy(Protocol):\n",
|
|
" def __call__(self, text: str, **kwargs) -> List[str]:\n",
|
|
" ..."
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": 10,
|
|
"id": "bcb8862f",
|
|
"metadata": {},
|
|
"outputs": [],
|
|
"source": [
|
|
"def fixed_size_token_chunking(\n",
|
|
" text: str,\n",
|
|
" embedding_model_name: str = embedding_model_name,\n",
|
|
" chunk_size: int = 1200,\n",
|
|
" overlap: int = 200,\n",
|
|
") -> List[str]:\n",
|
|
"\n",
|
|
" if chunk_size <= overlap:\n",
|
|
" raise ValueError(\"chunk_size must be greater than overlap\")\n",
|
|
"\n",
|
|
" tokenizer = AutoTokenizer.from_pretrained(embedding_model_name, use_fast=True)\n",
|
|
" token_ids = tokenizer.encode(text, add_special_tokens=False)\n",
|
|
"\n",
|
|
" chunks: List[str] = []\n",
|
|
" start = 0\n",
|
|
" n = len(token_ids)\n",
|
|
"\n",
|
|
" while start < n:\n",
|
|
" end = min(start + chunk_size, n)\n",
|
|
" chunk_ids = token_ids[start:end]\n",
|
|
" chunks.append(tokenizer.decode(chunk_ids, skip_special_tokens=True))\n",
|
|
"\n",
|
|
" if end == n:\n",
|
|
" break\n",
|
|
"\n",
|
|
" start = end - overlap\n",
|
|
"\n",
|
|
" return chunks\n",
|
|
"\n",
|
|
"\n",
|
|
"def semantic_chunking(\n",
|
|
" text: str,\n",
|
|
" embedding_model_name: str = embedding_model_name,\n",
|
|
" similarity_threshold: float = 0.6,\n",
|
|
" max_sentences_per_chunk: int = 12,\n",
|
|
") -> List[str]:\n",
|
|
" sentences = [s.strip() for s in sent_tokenize(text) if s.strip()]\n",
|
|
" if not sentences:\n",
|
|
" return []\n",
|
|
" logger.info(f\"Semantic chunking: {len(sentences)} sentences found\")\n",
|
|
" device = \"cuda\" if torch.cuda.is_available() else \"cpu\"\n",
|
|
"\n",
|
|
" tokenizer = AutoTokenizer.from_pretrained(embedding_model_name)\n",
|
|
" model = AutoModel.from_pretrained(embedding_model_name).to(device)\n",
|
|
" model.eval()\n",
|
|
"\n",
|
|
" with torch.no_grad():\n",
|
|
" enc = tokenizer(sentences, padding=True, truncation=True, return_tensors=\"pt\").to(device)\n",
|
|
" out = model(**enc)\n",
|
|
" mask = enc[\"attention_mask\"].unsqueeze(-1)\n",
|
|
" vecs = (out.last_hidden_state * mask).sum(1) / mask.sum(1).clamp(min=1e-9)\n",
|
|
" vecs = F.normalize(vecs, p=2, dim=1)\n",
|
|
"\n",
|
|
" chunks: List[List[str]] = [[sentences[0]]]\n",
|
|
"\n",
|
|
" for i in range(1, len(sentences)):\n",
|
|
" sim = float((vecs[i - 1] * vecs[i]).sum())\n",
|
|
" logger.info(f\"Similarity between sentence {i-1} and {i}: {sim:.4f}\")\n",
|
|
" if sim < similarity_threshold or len(chunks[-1]) >= max_sentences_per_chunk:\n",
|
|
" chunks.append([])\n",
|
|
" chunks[-1].append(sentences[i])\n",
|
|
"\n",
|
|
" return [\" \".join(chunk) for chunk in chunks if chunk]"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": 11,
|
|
"id": "e2a856fe",
|
|
"metadata": {},
|
|
"outputs": [],
|
|
"source": [
|
|
"CHUNKING_REGISTRY: Dict[str, ChunkingStrategy] = {\n",
|
|
" \"fixed\": fixed_size_token_chunking,\n",
|
|
" \"semantic\": semantic_chunking,\n",
|
|
"}"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": 12,
|
|
"id": "35a937ac",
|
|
"metadata": {},
|
|
"outputs": [],
|
|
"source": [
|
|
"def build_chunks(\n",
|
|
" doc_text: str,\n",
|
|
" metadata: Dict[str, Any],\n",
|
|
" chunking_strategy: str = \"fixed\",\n",
|
|
" **chunking_kwargs,\n",
|
|
") -> List[Document]:\n",
|
|
"\n",
|
|
" if chunking_strategy not in CHUNKING_REGISTRY:\n",
|
|
" raise ValueError(\n",
|
|
" f\"Unknown chunking strategy '{chunking_strategy}'. \"\n",
|
|
" f\"Available: {list(CHUNKING_REGISTRY.keys())}\"\n",
|
|
" )\n",
|
|
"\n",
|
|
" cleaned = clean_text(doc_text)\n",
|
|
"\n",
|
|
" chunking_fn = CHUNKING_REGISTRY[chunking_strategy]\n",
|
|
"\n",
|
|
" parts = chunking_fn(cleaned, **chunking_kwargs)\n",
|
|
"\n",
|
|
" return [\n",
|
|
" Document(\n",
|
|
" id=str(uuid.uuid4()),\n",
|
|
" page_content=part,\n",
|
|
" metadata={**metadata,}\n",
|
|
" )\n",
|
|
" for i, part in enumerate(parts)\n",
|
|
" if part.strip()\n",
|
|
" ]"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "markdown",
|
|
"id": "dbb8c380",
|
|
"metadata": {},
|
|
"source": [
|
|
"## Data "
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": 13,
|
|
"id": "a2506222",
|
|
"metadata": {},
|
|
"outputs": [],
|
|
"source": [
|
|
"doc_text = \"\"\"The Impact of Distributed Computing on Scientific Research\n",
|
|
"\n",
|
|
"Distributed computing has profoundly transformed the way large-scale scientific research is conducted. Instead of relying on a single centralized supercomputer, it is now possible to coordinate thousands of interconnected machines that share complex tasks. This approach makes it possible to process massive volumes of data in significantly shorter periods of time.\n",
|
|
"\n",
|
|
"One of the best-known examples is genomic analysis. DNA sequencing generates enormous amounts of information that must be processed and compared. Thanks to distributed systems, researchers can analyze mutations, identify genetic patterns, and accelerate the development of personalized treatments.\n",
|
|
"\n",
|
|
"Beyond the medical field, particle physics also benefits enormously. Experiments such as those conducted at CERN produce petabytes of data that must be distributed among research centers around the world. Without this collaborative and distributed model, many discoveries would simply be unfeasible.\n",
|
|
"\n",
|
|
"Energy Limitations and Sustainability\n",
|
|
"\n",
|
|
"However, the expansion of computational infrastructure brings significant challenges. One of the most relevant is energy consumption. Modern data centers require massive amounts of electricity both to operate and to cool their equipment.\n",
|
|
"\n",
|
|
"This demand has driven research into energy efficiency, more sustainable architectures, and the use of renewable energy sources. Some technology companies are already installing data centers in colder regions to reduce cooling costs, while others are exploring AI-based solutions to optimize energy usage.\n",
|
|
"\n",
|
|
"Sustainability has become a strategic criterion, not only economically but also reputationally. Organizations that fail to properly manage their carbon footprint may face public and regulatory criticism.\n",
|
|
"\n",
|
|
"Language Models and Deep Learning\n",
|
|
"\n",
|
|
"At the same time, the development of large-scale language models has redefined contemporary artificial intelligence. These models, trained with billions or even trillions of parameters, can generate coherent text, translate languages, and solve complex problems.\n",
|
|
"\n",
|
|
"Training these systems requires extremely powerful distributed infrastructures. Data parallelism and model parallelism make it possible to divide the computational workload across multiple GPUs or specialized nodes.\n",
|
|
"\n",
|
|
"However, the inference phase presents different challenges. Although it is less intensive than training, large-scale inference — such as in public AI services — requires constant optimization to reduce latency and resource consumption.\n",
|
|
"\n",
|
|
"Chunking Techniques and Semantic Retrieval\n",
|
|
"\n",
|
|
"In retrieval-augmented generation (RAG) systems, the way information is segmented directly influences the quality of the generated responses. Length-based chunking alone can split ideas in half, affecting the coherence of the retrieved context.\n",
|
|
"\n",
|
|
"Semantic chunking, on the other hand, attempts to group text fragments that share meaning. This approach uses embeddings to measure similarity and determine where to divide the content.\n",
|
|
"\n",
|
|
"A similarity threshold that is too low may generate excessively large and heterogeneous chunks. Conversely, a threshold that is too high may produce small fragments and lose relevant context.\n",
|
|
"\n",
|
|
"Proper calibration depends on the text domain, the average paragraph length, and the embedding model used.\n",
|
|
"\n",
|
|
"Vertical Farming and the Urbanism of the Future\n",
|
|
"\n",
|
|
"Vertical farming proposes growing food in multi-level urban structures. This technique aims to reduce transportation dependency and optimize space usage in densely populated cities.\n",
|
|
"\n",
|
|
"Through hydroponic systems and automated nutrient control, plants can grow without traditional soil. Distributed sensors monitor humidity, temperature, and nutrient levels in real time.\n",
|
|
"\n",
|
|
"Moreover, integration with renewable energy allows these facilities to operate more sustainably. In some cases, agricultural buildings are architecturally designed to integrate seamlessly into the urban environment.\n",
|
|
"\n",
|
|
"Although it still faces economic challenges, vertical farming represents a potential solution for food security in megacities.\"\"\""
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "markdown",
|
|
"id": "39a10e99",
|
|
"metadata": {},
|
|
"source": [
|
|
"## Build Chunks"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": 14,
|
|
"id": "6dcc757b",
|
|
"metadata": {},
|
|
"outputs": [
|
|
{
|
|
"name": "stderr",
|
|
"output_type": "stream",
|
|
"text": [
|
|
"Warning: You are sending unauthenticated requests to the HF Hub. Please set a HF_TOKEN to enable higher rate limits and faster downloads.\n"
|
|
]
|
|
}
|
|
],
|
|
"source": [
|
|
"chunks = build_chunks(\n",
|
|
" doc_text=doc_text,\n",
|
|
" metadata={\"title\": \"Demo\"},\n",
|
|
" chunking_strategy=\"fixed\",\n",
|
|
" chunk_size=150,\n",
|
|
" overlap=25,\n",
|
|
")"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "markdown",
|
|
"id": "a44bf82e",
|
|
"metadata": {},
|
|
"source": [
|
|
"## Model Data"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": 15,
|
|
"id": "524cd418",
|
|
"metadata": {},
|
|
"outputs": [
|
|
{
|
|
"name": "stderr",
|
|
"output_type": "stream",
|
|
"text": [
|
|
"/tmp/ipykernel_794589/2778086579.py:1: LangChainDeprecationWarning: The class `OllamaEmbeddings` was deprecated in LangChain 0.3.1 and will be removed in 1.0.0. An updated version of the class exists in the `langchain-ollama package and should be used instead. To use it run `pip install -U `langchain-ollama` and import as `from `langchain_ollama import OllamaEmbeddings``.\n",
|
|
" embeddings = OllamaEmbeddings(\n"
|
|
]
|
|
}
|
|
],
|
|
"source": [
|
|
"embeddings = OllamaEmbeddings(\n",
|
|
" base_url=\"http://localhost:11434\", model=\"qwen2.5:1.5b\")"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "markdown",
|
|
"id": "77f6c552",
|
|
"metadata": {},
|
|
"source": [
|
|
"## Elastic Search"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": 16,
|
|
"id": "09ce3e29",
|
|
"metadata": {},
|
|
"outputs": [],
|
|
"source": [
|
|
"es = Elasticsearch(\n",
|
|
" os.getenv(\"ELASTICSEARCH_LOCAL_URL\"),\n",
|
|
" request_timeout=60,\n",
|
|
" max_retries=5,\n",
|
|
" retry_on_timeout=True,\n",
|
|
")"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": 17,
|
|
"id": "d575c386",
|
|
"metadata": {},
|
|
"outputs": [],
|
|
"source": [
|
|
"if es.indices.exists(index=es_index):\n",
|
|
" es.indices.delete(index=es_index)"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": 20,
|
|
"id": "40ea0af8",
|
|
"metadata": {},
|
|
"outputs": [
|
|
{
|
|
"name": "stdout",
|
|
"output_type": "stream",
|
|
"text": [
|
|
"avap-docs-test\n"
|
|
]
|
|
}
|
|
],
|
|
"source": [
|
|
"for index in es.indices.get(index=\"*\"):\n",
|
|
" print(index)"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": null,
|
|
"id": "1ed4c817",
|
|
"metadata": {},
|
|
"outputs": [
|
|
{
|
|
"data": {
|
|
"text/plain": [
|
|
"['efcdbc9d-5427-4efd-996f-96449ef8f0ff',\n",
|
|
" 'aa7c6310-c8b8-46d8-9ba6-f8da1c56f68d',\n",
|
|
" '7d58d6bb-2a81-4f2c-9d27-15ce06f5f4dc',\n",
|
|
" 'fb216141-4214-47b3-bfea-18f01566ff47',\n",
|
|
" '3647b2fc-8479-4ae0-aece-f41a1ca5eeeb',\n",
|
|
" '811c7fa8-772d-4c49-9052-55d9c5ef0c8e']"
|
|
]
|
|
},
|
|
"execution_count": 18,
|
|
"metadata": {},
|
|
"output_type": "execute_result"
|
|
}
|
|
],
|
|
"source": [
|
|
"db = ElasticsearchStore.from_documents(\n",
|
|
" chunks,\n",
|
|
" embeddings,\n",
|
|
" es_url=os.getenv(\"ELASTICSEARCH_LOCAL_URL\"),\n",
|
|
" index_name=os.getenv(\"ELASTICSEARCH_INDEX\"),\n",
|
|
" distance_strategy=\"COSINE\",\n",
|
|
")\n",
|
|
"\n",
|
|
"db.add_documents(chunks) "
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": 19,
|
|
"id": "74c0a377",
|
|
"metadata": {},
|
|
"outputs": [
|
|
{
|
|
"name": "stdout",
|
|
"output_type": "stream",
|
|
"text": [
|
|
"ID: efcdbc9d-5427-4efd-996f-96449ef8f0ff\n",
|
|
"Source: {'text': 'The Impact of Distributed Computing on Scientific Research Distributed computing has profoundly transformed the way large-scale scientific research is conducted. Instead of relying on a single centralized supercomputer, it is now possible to coordinate thousands of interconnected machines that share complex tasks. This approach makes it possible to process massive volumes of data in significantly shorter periods of time. One of the best-known examples is genomic analysis. DNA sequencing generates enormous amounts of information that must be processed and compared. Thanks to distributed systems, researchers can analyze mutations, identify genetic patterns, and accelerate the development of personalized treatments. Beyond the medical field, particle physics also benefits enormously. Experiments such as those conducted at CERN produce petabytes of data that must be distributed among research centers around the world. Without this collaborative', 'metadata': {'title': 'Demo'}, 'vector': [1.562381386756897, 1.8621057271957397, -4.229737281799316, 1.7261073589324951, -4.174129486083984, 0.5454558730125427, 0.04852662235498428, 0.1452786773443222, 2.1358907222747803, -3.3597095012664795, 1.7761865854263306, -3.3743319511413574, 3.8525028228759766, -1.9495118856430054, 1.153848648071289, -3.60990571975708, -0.47262513637542725, 1.2580537796020508, -0.6046991944313049, 6.729975700378418, 0.5774757266044617, 3.4782238006591797, 1.022933840751648, -0.2659662961959839, -0.9634748697280884, -0.2343788892030716, 0.09893032908439636, 4.569706439971924, 11.115592956542969, 0.11061103641986847, -0.48843276500701904, -0.07956993579864502, 1.4443531036376953, -4.671916961669922, -0.9334450364112854, 1.945709466934204, 1.3042747974395752, 1.76248037815094, -0.8189206719398499, -0.7808640003204346, -1.0804738998413086, -0.927457332611084, -0.7091649174690247, 1.1075383424758911, 0.7721036076545715, 0.5017833113670349, -1.0919206142425537, -1.3467729091644287, 1.4719014167785645, -0.0412629209458828, 0.3852744698524475, -0.01536704320460558, 0.6720132231712341, 3.4710586071014404, 0.23393771052360535, -0.13591115176677704, 2.124509572982788, 0.1781591773033142, 3.4864213466644287, -2.348222255706787, 2.1463701725006104, 0.11319513618946075, 1.9753504991531372, 0.6000713109970093, 0.5581617951393127, 0.44563817977905273, 2.2806715965270996, -0.8452110886573792, 1.5629891157150269, -0.7337735295295715, -2.926072835922241, -1.524635672569275, 0.2798449397087097, -5.813779354095459, 0.44553446769714355, -3.0393059253692627, 1.3741466999053955, -0.6383113265037537, -3.834351062774658, 0.8655581474304199, -1.2344605922698975, -0.01116650365293026, -0.7942685484886169, -17.299386978149414, 0.9276013374328613, 1.3421220779418945, -0.3130353093147278, 1.2071723937988281, -3.1037254333496094, -0.613583505153656, 0.5467053055763245, -0.9403758645057678, 0.38749292492866516, 1.6199259757995605, -0.42067793011665344, -2.8173606395721436, -0.9271039962768555, 2.86873197555542, 1.861752986907959, 1.3083168268203735, 1.3335332870483398, -6.9174485206604, -8.643716812133789, -1.6090383529663086, -2.197054386138916, 0.6580768823623657, -0.2685967981815338, -0.17323295772075653, -4.271492004394531, 0.04483247548341751, -3.8828630447387695, 0.978786289691925, -0.1651696115732193, -6.564460277557373, -0.8818686008453369, 0.9873491525650024, 0.4156816005706787, 0.7972578406333923, -1.9255908727645874, -0.9768996834754944, -0.4606953263282776, -1.8466235399246216, 2.9574224948883057, 2.7229819297790527, -1.4122865200042725, 1.7894583940505981, 2.434021234512329, 0.7000807523727417, -1.2362277507781982, 0.407072514295578, 1.7165725231170654, 0.538131594657898, 1.4807753562927246, 1.4573194980621338, -0.6211572885513306, -2.8845560550689697, -4.457790851593018, -0.5430536270141602, 4.033356666564941, -0.07723986357450485, -1.0561527013778687, 3.6998801231384277, 1.985716700553894, -1.0819685459136963, -0.4282435476779938, -0.4950461685657501, -0.4135373532772064, -6.743242263793945, 0.6253429055213928, 0.6298763155937195, -1.0399609804153442, 0.06248956918716431, 2.813612699508667, 0.8652295470237732, 20.8515625, -1.6837457418441772, 1.6402894258499146, -1.6505248546600342, -2.699726104736328, 1.9480111598968506, -0.9225233197212219, -0.25726860761642456, 1.138836145401001, -1.194651484489441, -1.3308979272842407, -0.6364667415618896, -2.176805019378662, -2.2365500926971436, 2.0136842727661133, 0.13068968057632446, 0.07315033674240112, -1.5114128589630127, -1.167697548866272, -0.390302836894989, 0.21679870784282684, -0.4027618169784546, 0.14846384525299072, -0.4160041809082031, -0.9698414206504822, 1.154335856437683, 1.9416396617889404, 0.17098714411258698, -1.0567044019699097, 0.9523047208786011, 0.06367302685976028, 1.6927977800369263, 0.9651820063591003, 1.6407281160354614, -4.262088775634766, -0.9663983583450317, -1.7896958589553833, -0.11490795016288757, -3.176691770553589, -0.8494762182235718, 0.14906898140907288, 1.280200481414795, -0.5073267817497253, -1.130401372909546, 3.4188778400421143, 0.40758660435676575, 1.4728163480758667, -1.374376654624939, 0.7415461540222168, 0.6916301250457764, -1.178543210029602, 0.10536754876375198, 1.0335463285446167, 0.14883430302143097, 4.501580238342285, 1.9286173582077026, -1.252528190612793, -1.3257522583007812, -2.9493744373321533, 0.2730512320995331, 0.5065895915031433, -0.2961706817150116, -2.1648364067077637, 1.3795312643051147, -3.217007875442505, 2.9747822284698486, -3.1999869346618652, -1.5630937814712524, -3.82869553565979, 2.5714664459228516, -4.881878852844238, -3.7109241485595703, -0.6053694486618042, -8.199051856994629, -3.270343542098999, -0.949057400226593, -1.5192948579788208, 0.053484994918107986, -3.7890005111694336, -0.42090949416160583, 1.5369113683700562, -0.4352453351020813, -2.079106569290161, -1.2857571840286255, -0.9277336597442627, -1.1572935581207275, 1.609022617340088, 1.5062793493270874, -2.4394736289978027, 1.105365514755249, -1.3785336017608643, 2.7497622966766357, 3.0769541263580322, 1.0823922157287598, -1.6768778562545776, 0.3484189212322235, -0.8607874512672424, 0.9237486124038696, 0.872738242149353, -0.4773969352245331, -1.9758050441741943, -2.646925210952759, -0.6836496591567993, 1.728489875793457, -1.159510850906372, -0.7983392477035522, -0.7744410037994385, 1.1155515909194946, 1.8267822265625, -0.7899056077003479, -1.8144655227661133, 0.1892818659543991, 0.8449769020080566, -0.18146324157714844, -1.8364689350128174, -1.3691513538360596, -0.6692450642585754, 0.5615239143371582, -0.9693628549575806, -1.8272916078567505, -6.176981449127197, -0.2749151885509491, -0.9545335173606873, 0.7089606523513794, -0.6392263770103455, 0.6090521216392517, -0.7790668606758118, -3.7342894077301025, 0.9770283102989197, -0.6115474104881287, 0.1480325609445572, -0.45999860763549805, -27.89556121826172, -0.7045514583587646, 1.675851583480835, -2.9474401473999023, 3.066664695739746, -0.5677029490470886, 3.78908109664917, -1.5666944980621338, -1.8137178421020508, -3.8962481021881104, 1.1921926736831665, 0.8417755961418152, 1.1452350616455078, 0.69627445936203, -1.6010112762451172, -0.005082480609416962, -1.0452378988265991, -0.8349635601043701, 1.5163244009017944, -0.13280101120471954, 1.392293930053711, -0.8547086715698242, -0.6365955471992493, 0.7052721977233887, 1.1951234340667725, -2.053711414337158, 1.243468999862671, -1.22380530834198, 0.7604734897613525, 1.7732013463974, 1.7343506813049316, -0.5899102687835693, -4.707822799682617, -0.924521803855896, -2.270012617111206, 2.2784554958343506, -0.7777737975120544, -0.039092328399419785, -0.5759143829345703, -0.026231905445456505, 0.36599892377853394, -0.3217591941356659, 1.4597243070602417, -1.3597759008407593, 0.15230242908000946, 1.0770461559295654, -1.5812888145446777, -2.5340723991394043, 0.6434311866760254, 5.591960430145264, -5.615814685821533, 0.47552192211151123, -1.3965075016021729, -2.519615888595581, 0.5058472156524658, 1.0195326805114746, -1.4557609558105469, 2.6245429515838623, 3.621485948562622, 0.8739917278289795, 1.1773993968963623, -1.653175711631775, -4.197134494781494, -1.6349297761917114, -1.3358885049819946, 2.5318920612335205, -1.7885668277740479, 2.714388132095337, 8.529610633850098, 2.1807963848114014, 0.8369558453559875, -0.4576682448387146, -1.8708728551864624, 7.484073638916016, 4.265707015991211, -1.353906512260437, 1.2482253313064575, -0.800942063331604, -2.908207893371582, 1.4462846517562866, 0.3302745223045349, -0.9396780729293823, -0.006716723088175058, -1.6971715688705444, -1.640795350074768, 3.6772048473358154, 2.2752089500427246, -2.4063241481781006, 2.9227938652038574, -1.127395510673523, 1.825547218322754, -2.3450191020965576, 1.1490387916564941, -0.3810946047306061, 1.1776072978973389, -1.1270285844802856, 2.5760297775268555, -2.904693841934204, 2.1867825984954834, -2.58746600151062, 1.0943641662597656, 1.8371028900146484, -1.431320071220398, -0.006668537389487028, -1.2419648170471191, -0.8546923995018005, -0.0193302221596241, 0.7561647891998291, 0.5607621669769287, -1.9503207206726074, -0.9093828201293945, 0.7770314812660217, -3.427696943283081, -0.5072581768035889, -0.632043182849884, -2.777236223220825, -2.225085496902466, 16.28224754333496, 0.43047547340393066, -0.406928151845932, 2.1704721450805664, -0.5186517834663391, 0.5087632536888123, -3.2770280838012695, 0.9805541634559631, 4.833946228027344, -0.8714825510978699, 1.1375815868377686, -3.1415560245513916, -3.6609110832214355, -2.0831141471862793, -0.4056156277656555, 0.7091262936592102, 1.9392884969711304, -0.6583212018013, 0.7183951735496521, -1.758037805557251, -0.3681451082229614, -3.040043592453003, -1.4369800090789795, -2.4986727237701416, 1.0644563436508179, 0.5295717120170593, -0.9924075603485107, -2.408799886703491, 2.9777793884277344, 2.1278076171875, -0.4155642092227936, 2.852567672729492, 1.0005043745040894, -1.6752532720565796, -7.961645126342773, 0.6014630794525146, -1.5723154544830322, 2.1868343353271484, -8.64470100402832, 1.6350480318069458, -1.3053559064865112, 0.5896257162094116, 0.7009639143943787, 1.209804892539978, 5.150722503662109, -2.5690178871154785, 0.38520145416259766, -0.7549580335617065, 0.7556776404380798, 0.6556140184402466, -0.19436001777648926, -0.3739478588104248, -0.22105509042739868, 0.3084295094013214, 1.6450797319412231, -1.0548478364944458, 1.6564475297927856, 3.601006507873535, -2.6217854022979736, -1.5306507349014282, -1.6449098587036133, -0.5665087699890137, 1.3589106798171997, -0.9207518696784973, 3.1328012943267822, 0.16238901019096375, 4.506083011627197, -1.4137500524520874, 1.127090573310852, -0.16017423570156097, 0.12576162815093994, -0.439887672662735, -3.190809965133667, -1.280569314956665, -1.1505783796310425, 0.07441457360982895, 0.7070481181144714, 0.42671918869018555, -4.15627908706665, 0.04148589447140694, -1.4196580648422241, 0.5296007394790649, -2.22884464263916, 0.2483668029308319, -2.1556005477905273, -3.5164599418640137, -0.4138891100883484, -3.6413121223449707, -1.3300765752792358, 0.565407395362854, 2.6715965270996094, 0.1432107388973236, 0.49318990111351013, 0.9052004218101501, 1.0381309986114502, 5.783336639404297, 0.2837200164794922, -0.2896271347999573, 0.6306213736534119, 1.9110736846923828, 102.86319732666016, -0.9329434037208557, -3.346068859100342, -1.1566566228866577, -3.0353071689605713, 2.2789366245269775, -0.15965670347213745, -2.261927843093872, -1.8165682554244995, 1.1461039781570435, 1.4030979871749878, 1.30509352684021, 1.7360774278640747, -1.807255744934082, 1.7884180545806885, 5.91273307800293, -0.43363168835639954, -2.8166732788085938, -2.6966540813446045, -1.9161484241485596, -2.897130250930786, 1.179219126701355, -1.0166422128677368, 3.232348680496216, -0.29792219400405884, 1.367741584777832, -0.39288604259490967, 1.4982318878173828, 1.2434300184249878, 0.8661208152770996, 3.8973355293273926, -1.1110557317733765, 0.17276030778884888, -0.6454353928565979, 6.442534923553467, 1.50276780128479, -2.6822869777679443, 1.2313648462295532, 0.7769492864608765, -0.8149737119674683, 0.414255827665329, -9.913925170898438, 0.5431447625160217, 3.3400886058807373, -3.0346829891204834, 4.7750773429870605, -0.12548676133155823, 1.4837234020233154, -0.27262839674949646, 0.8731194138526917, 95.88558959960938, -0.4696936309337616, -1.7222951650619507, 0.36892083287239075, 1.0602635145187378, 0.4832557141780853, -1.3494638204574585, -0.4325196146965027, -1.3052222728729248, 2.0366036891937256, 0.32707178592681885, 1.3249765634536743, 2.2973971366882324, 2.3491721153259277, -1.5360053777694702, -2.2027227878570557, 4.2953996658325195, -3.9208321571350098, -1.1184585094451904, 1.0113636255264282, -1.7370401620864868, -1.7895807027816772, 3.394644021987915, -2.0478837490081787, -2.7165937423706055, 0.30108997225761414, -0.05760442838072777, 0.006968757137656212, -2.028986692428589, 10.079010963439941, 0.5128490328788757, 1.371717929840088, 1.2891013622283936, -0.20964030921459198, 0.19065645337104797, -1.0156933069229126, -17.49576187133789, 1.715831995010376, 0.5102419257164001, -41.98215866088867, 1.4512765407562256, -0.7555995583534241, -0.03873693197965622, -2.2077250480651855, 1.9904118776321411, 2.487403631210327, -0.5896851420402527, 0.8680839538574219, -2.2757551670074463, 0.32197707891464233, 1.1914379596710205, -0.4814051389694214, -3.461195230484009, 2.315492630004883, 1.4078885316848755, -0.7924556136131287, 0.048675287514925, 1.0518356561660767, -8.191468238830566, 0.2327805757522583, -0.20033307373523712, -3.920050859451294, -2.1831161975860596, 1.556597113609314, 1.776637315750122, 0.4641079306602478, -0.3716883957386017, -1.1091151237487793, -1.7689101696014404, -2.0846853256225586, -2.155575752258301, 2.5488314628601074, 0.0859466940164566, -2.2301552295684814, 0.31969186663627625, 1.335961937904358, 1.8283631801605225, -4.006300449371338, 0.2358260452747345, 0.9362626671791077, 19.602025985717773, 0.24342277646064758, -0.24291425943374634, -0.8149235248565674, -4.550381183624268, 0.7593603730201721, -2.8280375003814697, 1.6043778657913208, 0.8950297236442566, -0.977189838886261, 1.857167363166809, 3.045870304107666, -0.7670220136642456, 1.62016761302948, -1.620049238204956, 0.7516970634460449, -2.689791679382324, -0.49863478541374207, -4.122448444366455, -0.6041974425315857, -0.27420341968536377, 1.412990927696228, -1.327980875968933, -1.0942589044570923, -0.3951650857925415, -0.1991986334323883, 2.5932869911193848, -0.431821346282959, -0.030249621719121933, 0.8855899572372437, -2.831252098083496, 0.9045504927635193, 1.8167439699172974, -2.6190683841705322, 0.5603773593902588, -0.39871424436569214, -4.964000701904297, -2.5903122425079346, 0.37395361065864563, -1.4378433227539062, -1.3039747476577759, -0.7539021372795105, -0.48928460478782654, -0.781152069568634, -2.601757287979126, 2.2941222190856934, 1.3669320344924927, 1.1540075540542603, 1.1983088254928589, 1.5779492855072021, -0.5633115172386169, -1.785494327545166, 4.982343673706055, 0.7243523597717285, -3.2032158374786377, -1.3633042573928833, -0.46803468465805054, 1.2073909044265747, 1.030319094657898, -1.8839993476867676, 1.1268948316574097, -1.937463402748108, 0.35957854986190796, 2.6608569622039795, 0.6670485734939575, -2.2322254180908203, -1.0139813423156738, -1.3437663316726685, -2.7216203212738037, 0.1496068388223648, 3.8375625610351562, 3.483407735824585, 1.0964223146438599, -2.163541078567505, 0.6864272356033325, -1.5059272050857544, -3.5196399688720703, 1.607865333557129, 0.06177062541246414, 2.464273691177368, -16.439300537109375, 0.11181572824716568, 0.7068520188331604, -0.045093655586242676, -1.2345088720321655, 1.630831241607666, -0.5314151644706726, 3.993450880050659, 2.812814950942993, 8.512067794799805, 2.968439817428589, -0.7817531228065491, -1.2888654470443726, 0.6143516898155212, 1.7835478782653809, -0.8303995132446289, 1.2173398733139038, 1.0092653036117554, -1.1681609153747559, 0.9263232350349426, -0.1667991578578949, 1.6206080913543701, -13.661166191101074, 3.7750539779663086, 1.6047810316085815, -2.669022560119629, -0.5639364123344421, -2.5689520835876465, 0.4770198464393616, -1.832489252090454, 0.032028570771217346, -1.0147510766983032, 0.47923994064331055, 0.5748501420021057, -0.10878194868564606, 0.9890953302383423, -0.13844528794288635, 5.954826354980469, 0.041511207818984985, -4.97654390335083, -0.5678057670593262, -2.31754732131958, 0.5734803676605225, 1.0573028326034546, -3.692857027053833, -0.5705885291099548, -1.3402365446090698, 1.293321132659912, -0.1358778178691864, -0.1817457526922226, -1.8437702655792236, -2.6129045486450195, -0.8594570159912109, 0.6359564661979675, 0.6541619896888733, 0.5418173670768738, 6.542416572570801, 1.0473039150238037, -1.1215885877609253, 1.6393226385116577, 3.8024587631225586, -0.025344805791974068, 0.8492989540100098, 1.5198041200637817, 3.118114471435547, 0.0852520689368248, -0.20328812301158905, 0.33094915747642517, 0.27766162157058716, -2.2383458614349365, 0.6795102953910828, 5.055487632751465, 0.7848849296569824, 0.9213557243347168, -1.9132533073425293, -1.475411295890808, -0.2661275267601013, -0.38971444964408875, -4.536837577819824, 1.5122817754745483, 3.688960075378418, -0.5196041464805603, -0.5001650452613831, 2.282191753387451, -1.5387718677520752, -0.701653003692627, -0.036392733454704285, 2.401887893676758, -1.7896519899368286, -2.766000747680664, -0.10021303594112396, -0.4532640278339386, 0.42315706610679626, -4.521267890930176, -2.6324102878570557, 0.2332114279270172, -2.2601094245910645, -0.7156388759613037, 1.402318000793457, -1.6121234893798828, 0.40250393748283386, 0.6923769116401672, -4.210526466369629, -1.6698999404907227, 0.7353562712669373, -5.273597717285156, -0.12859715521335602, 1.7631309032440186, -0.30039429664611816, -1.8421363830566406, -1.6057020425796509, -2.877241611480713, 0.7735234498977661, 0.6725355982780457, -0.41434401273727417, -3.9895246028900146, 3.671590566635132, 1.128054141998291, 0.7964264750480652, 1.0190513134002686, -5.475179672241211, -1.5885108709335327, 1.2380797863006592, 1.4770560264587402, 2.882617950439453, -0.4069822430610657, 0.12643833458423615, 1.3220148086547852, -1.5714014768600464, -2.3901686668395996, -1.010029673576355, -2.2076597213745117, 5.829586982727051, -0.05175672844052315, -2.472083806991577, -2.3876969814300537, 1.9790871143341064, -2.3858509063720703, 1.2127628326416016, 1.3005082607269287, 6.411479949951172, -2.9387307167053223, -1.3901439905166626, 0.03773731738328934, 2.3165454864501953, 0.2841586172580719, -1.3676596879959106, -0.2211204469203949, -2.297360897064209, 0.15537129342556, 2.4972851276397705, 1.9264321327209473, -1.440111517906189, 1.7470752000808716, 0.16460394859313965, -2.848311185836792, -0.80933678150177, -4.778187274932861, -0.2819807231426239, 3.091123580932617, 2.007920265197754, 1.0641709566116333, -0.29658350348472595, -0.9055288434028625, 0.7138031125068665, -3.719357490539551, 0.6643013954162598, -0.04560423642396927, 1.105409860610962, 0.8579221963882446, -0.22931568324565887, 1.0263471603393555, 1.8093113899230957, -0.11571913212537766, -0.5999150276184082, -2.1392946243286133, -2.216719150543213, 1.274265170097351, -0.8168351650238037, 0.7876662015914917, 0.5055942535400391, -3.1576807498931885, -0.8890337347984314, -2.618014335632324, -0.20320288836956024, 2.267850160598755, 0.58333820104599, 0.8858933448791504, -1.3294397592544556, -6.406368732452393, -2.1377971172332764, -1.1870638132095337, -1.8595750331878662, 1.5878022909164429, 1.1446102857589722, 1.206799864768982, -61.648338317871094, 1.431926965713501, 2.2800660133361816, -2.0893776416778564, 1.410477876663208, 4.8671488761901855, -0.05477341264486313, -2.4333157539367676, -0.7641497850418091, 0.1803055852651596, 1.9381581544876099, -2.020721673965454, -1.8504613637924194, 1.6190555095672607, 0.5741401314735413, -3.819507360458374, -1.8150714635849, -0.007230181246995926, -3.9542503356933594, -0.14384526014328003, 12.429996490478516, 1.9880719184875488, -2.8608829975128174, 6.307380199432373, 1.1922919750213623, -0.9247798919677734, 1.396018147468567, 0.6573653817176819, 1.6334822177886963, -8.67605972290039, 0.010814868845045567, -2.36609148979187, 3.1865627765655518, -0.7221136689186096, 1.5654569864273071, -1.9113250970840454, -1.1664681434631348, -1.7233209609985352, 5.073344707489014, -0.9171867370605469, -0.4389599859714508, -1.1150082349777222, -1.0896559953689575, -3.4917471408843994, 1.4126776456832886, 1.3685367107391357, 1.0495116710662842, -0.524239718914032, -1.26255202293396, -2.9813451766967773, -2.0199034214019775, 0.6122255921363831, -1.065544843673706, 2.8199288845062256, 1.1005347967147827, 4.449885368347168, 0.6401857733726501, -4.530941963195801, -1.0452815294265747, -0.1812550574541092, 0.4566713869571686, 2.481940269470215, -1.202882170677185, -2.231606960296631, -0.7896468639373779, -1.986962914466858, 1.7067538499832153, 2.4834799766540527, 0.2893875241279602, -0.1771467924118042, 1.1494008302688599, 5.487353324890137, -1.460184097290039, -1.0597573518753052, -0.47999125719070435, 2.794440507888794, -0.837248682975769, -0.6310214996337891, -1.940729022026062, -2.373389959335327, -1.0244115591049194, 1.2806119918823242, -0.3810218274593353, -0.9556258320808411, -0.9646631479263306, 1.892385482788086, 3.9014859199523926, 0.25949206948280334, 1.4215120077133179, 3.079007625579834, -12.582743644714355, 0.5922026038169861, -3.353370189666748, -7.7636895179748535, 0.16989943385124207, -1.6822624206542969, -0.1287134885787964, 0.1171460673213005, -3.275771379470825, -2.3064823150634766, -0.5994182825088501, 0.10764038562774658, 0.17221494019031525, 1.7718387842178345, 0.8276063799858093, 0.8725054860115051, 0.7188082337379456, -0.9990707635879517, -3.898008346557617, 1.8549697399139404, -1.5698769092559814, 2.005244016647339, 13.156495094299316, -1.0881049633026123, 0.02738008089363575, 1.5276786088943481, -1.8110179901123047, -1.231675624847412, 0.40987011790275574, 0.13832834362983704, 1.692864179611206, 3.3322503566741943, 0.5075692534446716, -4.1142258644104, -1.0194947719573975, -2.117922306060791, 1.8499195575714111, 0.4567418694496155, 0.29624485969543457, 0.680517315864563, -3.839081287384033, -1.102701187133789, -1.8811978101730347, 0.4073653221130371, 0.9580426812171936, 1.399219036102295, -2.3270082473754883, 2.338331937789917, 1.497819185256958, 0.6534696221351624, -4.1810173988342285, -3.347790479660034, -1.5293036699295044, -0.478340208530426, -0.5578200817108154, -0.20267488062381744, -0.7384178638458252, 1.0733256340026855, -0.12727561593055725, 1.5213325023651123, -2.3578338623046875, -4.492404937744141, -3.652289628982544, -1.7876125574111938, 2.167145252227783, -0.8885365724563599, 1.3219960927963257, 2.927781343460083, -0.13489070534706116, 6.578249454498291, 0.4893071949481964, -0.3024429380893707, 0.14464245736598969, 4.0647406578063965, -4.875973701477051, -1.0237263441085815, -0.15185755491256714, -0.3488400876522064, -0.8715256452560425, 0.0756223127245903, -1.9757285118103027, -3.746565818786621, -4.634003162384033, 3.800762414932251, -1.1171526908874512, -1.2987051010131836, 0.6757615804672241, -0.2116609811782837, 0.3353506922721863, 0.7619381546974182, -1.7853188514709473, -2.343438148498535, -3.768892526626587, -4.501735210418701, -8.865082740783691, -0.523169755935669, -4.553011417388916, -2.0058834552764893, -0.26604515314102173, -0.6622239351272583, -0.9099321365356445, 0.7047069072723389, -0.13067255914211273, -0.8554227352142334, 2.518463373184204, 0.6716198325157166, -29.91039276123047, -0.025256993249058723, -1.1445564031600952, 3.320105791091919, -1.1171314716339111, -1.442183494567871, 3.2532551288604736, 0.3834073543548584, 0.5195751786231995, -2.3250415325164795, 1.5078277587890625, -0.4963788092136383, -1.1683717966079712, -3.7941062450408936, 0.588266909122467, 5.2008209228515625, -3.344191789627075, -0.8183056712150574, 0.6995986104011536, 0.06573502719402313, -0.9342328906059265, 2.0236353874206543, 1.025842308998108, -3.289585590362549, -1.3501818180084229, -2.0521674156188965, 0.24140559136867523, -1.3597663640975952, 1.4407336711883545, -2.095248222351074, -1.282957911491394, -2.6130549907684326, -1.7417165040969849, -1.8608514070510864, 3.060333013534546, 1.687537670135498, 0.976152241230011, 0.6402090787887573, 2.8394687175750732, -1.1523128747940063, -0.8441102504730225, 0.06921529024839401, -0.4717249572277069, -5.422123908996582, -0.35705408453941345, -0.6225790977478027, 1.0185205936431885, -1.6068488359451294, 0.03295251727104187, -3.450486421585083, 0.26417550444602966, -1.3189435005187988, -0.8438541889190674, -2.0636720657348633, -0.5923147797584534, 0.2666926980018616, -12.057947158813477, -0.6865749359130859, -0.5034692883491516, -0.5058552026748657, 1.1117581129074097, -1.7755513191223145, 0.01705869473516941, 1.4469152688980103, -6.772866725921631, 2.5644004344940186, 2.4896459579467773, -1.1626169681549072, -6.597409725189209, 1.9376870393753052, 1.2532716989517212, 1.2020620107650757, 5.654918670654297, -0.37855732440948486, 2.3894479274749756, -1.0591078996658325, -1.7561798095703125, -1.7913755178451538, -0.5867388844490051, -1.0107923746109009, 1.843714714050293, 1.2203340530395508, -0.48620137572288513, 0.6670806407928467, -1.865731120109558, 2.4907333850860596, 1.000635027885437, 0.4838705062866211, -1.3193060159683228, 1.383772850036621, -2.5982372760772705, 8.622026443481445, -1.7730169296264648, -3.4681501388549805, -0.5342620611190796, 0.028634194284677505, -1.2649182081222534, -1.2705873250961304, 0.7077603936195374, 0.4677251875400543, -1.1397686004638672, -0.9480271339416504, -1.1141045093536377, -1.3744515180587769, 2.1694798469543457, 1.408405065536499, 3.621217966079712, 0.868964433670044, 1.9680660963058472, -3.385866403579712, -3.5132439136505127, 1.3292427062988281, 0.7807549834251404, 3.466465473175049, 3.05558443069458, -4.377846717834473, 1.9302210807800293, 1.729638695716858, -0.9228199124336243, -0.49570953845977783, -0.744003415107727, 1.4243205785751343, -1.5347131490707397, -0.8755578398704529, 24.647682189941406, -0.8232342600822449, 0.9530957341194153, -0.6488966345787048, 0.5143252611160278, -1.1428745985031128, 2.3975753784179688, 1.0833396911621094, 1.1058826446533203, -0.044828157871961594, 0.909293532371521, 0.6775907278060913, -0.853653073310852, 0.4637238085269928, -2.0610618591308594, 0.9597212076187134, 2.3200061321258545, -0.10520844161510468, 0.8469930291175842, 12.02112865447998, 2.2794995307922363, 3.102739095687866, 0.26748478412628174, 2.180929183959961, 0.30271321535110474, 1.39055597782135, 0.685731053352356, -0.9912307858467102, -2.4579718112945557, -1.2186877727508545, -0.40530988574028015, -0.11420726031064987, 2.058929681777954, 0.344037801027298, 0.9167169332504272, -0.8747174143791199, 1.1071021556854248, 2.67986798286438, 0.3163006901741028, 1.5018274784088135, 0.5696820020675659, 0.6403486728668213, 1.8830689191818237, -42.56077194213867, -1.13238525390625, -0.8558974266052246, -1.3433319330215454, -2.1789538860321045, 0.031111598014831543, -1.1017333269119263, 0.641075849533081, 1.1663092374801636, -1.177557110786438, -3.9819610118865967, 0.9356033802032471, -1.3252960443496704, -2.851910352706909, 1.0486822128295898, 0.6393269300460815, 3.1428205966949463, 1.4735828638076782, -1.8956705331802368, -0.4744645953178406, 0.9499281644821167, 0.9727116227149963, 0.3507766127586365, 1.4500845670700073, -1.6502013206481934, 2.9058125019073486, -0.4958597421646118, -0.5663554668426514, -2.576159954071045, 7.591678142547607, -0.5259076952934265, -0.14073260128498077, 1.5646380186080933, 0.8019103407859802, -0.043568309396505356, 0.2783130407333374, 2.153045654296875, 0.7420311570167542, -1.5588655471801758, 1.6272168159484863, 0.9880872964859009, 0.3783685564994812, -0.1167546734213829, -1.3358407020568848, 0.27412939071655273, 1.24680757522583, -0.616274893283844, -3.2293169498443604, -0.6382029056549072, 4.2701921463012695, -1.481002688407898, -1.8919219970703125, 2.072436809539795, -1.2519053220748901, 2.1077568531036377, -1.744974970817566, -0.5596141219139099, -1.0867737531661987, 0.8244979381561279, 1.8549447059631348, -1.566906452178955, -2.329867124557495, 0.679873526096344, -0.004835444036871195, 2.4047207832336426, 0.32829728722572327, 3.84891939163208, -2.2561073303222656, -1.3695106506347656, 0.7807995080947876, -1.1751909255981445, 6.394045829772949, -0.2894579768180847, 0.073227159678936, -3.0072989463806152, -0.8005300760269165, -4.813324451446533, -2.7864303588867188, -0.5048713684082031, -0.28025224804878235, 2.2692110538482666, -0.04615383967757225, 0.7844170928001404, 0.7029268741607666, 5.476064682006836, -0.05332059785723686, 0.12849989533424377, -1.4181901216506958, 7.806881904602051, 17.020584106445312, -2.9616873264312744, 1.4343622922897339, 2.5596325397491455, -0.05343640595674515, -0.814884603023529, 1.6730173826217651, 2.165628433227539, 0.5081725716590881, 0.5423585176467896, 0.5207462310791016, -1.4155763387680054, -0.6700584292411804, -0.4195640981197357, 0.6856027841567993, -1.4112657308578491, 0.6527633666992188, -1.7402403354644775, 1.6674492359161377, -0.5369951128959656, 1.835695743560791, -0.37895485758781433, -0.9276461005210876, -0.9420535564422607, -2.9862232208251953, 1.1389046907424927, -4.314942359924316, -1.2002986669540405, -1.998060941696167, 0.19207242131233215, -1.30453622341156, 2.7410104274749756, 2.8699212074279785, 0.09714626520872116, 8.146461486816406, 0.7887434363365173, -0.23477372527122498, 1.3739264011383057, 2.4215710163116455, -2.268219232559204, -0.31826213002204895, -1.1356867551803589, 1.80738365650177, -0.2651064693927765, 2.0212771892547607, -1.9149664640426636, -2.0200722217559814, -3.166098117828369, -1.6249933242797852, -0.38032349944114685, -2.5147035121917725, -2.3937950134277344, -0.24356095492839813, 9.241143226623535, 1.898661494255066, -0.3015322685241699, -1.0546315908432007, -0.0020644725300371647, -1.5980207920074463, 0.5893581509590149, -0.30296218395233154, -3.4572105407714844, 8.398091316223145, -0.06205272674560547, -1.0978240966796875, 0.9607828855514526, -2.9741384983062744, 4.482892990112305, -0.5485386252403259, 0.36276209354400635, -0.20174464583396912, -0.2670723497867584, -3.5465261936187744, 0.5171007513999939, -3.750947952270508, 1.0584619045257568, -1.0992876291275024, 0.6990726590156555, 0.19664955139160156, 3.6467833518981934, -1.4646999835968018, -0.336497038602829, 0.3752822279930115, 3.148477554321289, 2.1004445552825928, 4.777831077575684, -1.4405614137649536, -1.7751275300979614, -0.5917660593986511, 0.0009731625323183835, 1.0725297927856445, -0.8063518404960632, 2.1017050743103027, -2.2680823802948, -1.8393303155899048, -1.1644858121871948, 1.440101146697998, -6.575344085693359, -1.3889234066009521, -1.967538595199585, -2.484389305114746, -1.6730395555496216, -3.2385308742523193, 1.3868885040283203, -0.4561043679714203, 0.5440394878387451, -1.4395705461502075, -4.734128952026367, 0.33812668919563293, -3.6789145469665527, -9.954371452331543, -0.45156702399253845, 2.2451999187469482, 0.08738186210393906, -0.7312626242637634, -2.55450439453125, -5.345451354980469, -1.7469555139541626, 0.5568848848342896, 2.8240809440612793, 1.9252121448516846, -2.505983352661133, 0.250901460647583, -0.026241660118103027, -0.6066734790802002, -1.4228614568710327, -2.5773744583129883, -0.516120970249176, 1.348419189453125, -0.8203961849212646, 0.897146999835968, 2.4798924922943115, 0.05735107511281967, 2.7155520915985107, -2.0135059356689453, 1.1950750350952148, -1.0848901271820068, 1.8614773750305176, 6.50958776473999, 6.739560127258301, -2.0897421836853027, 0.21984411776065826, -0.16756395995616913, 1.5475683212280273, -2.7259981632232666, -3.2333359718322754, 2.2427706718444824, 2.10422945022583, -1.1371924877166748, -1.956601619720459, -0.39366111159324646, -3.215916633605957, -4.547297954559326, 2.8112661838531494, -0.9258129596710205, 1.875839114189148, 1.6505838632583618, 1.4787392616271973, 0.337028831243515, 3.417188882827759, 1.6004016399383545, 0.40883129835128784, -0.12817531824111938, 8.892778396606445, 2.041978597640991, 4.610080718994141, -1.4265849590301514, 1.5858770608901978, -0.03212636709213257, -0.6558477282524109, 1.7023372650146484, -1.1819835901260376, 0.39089491963386536, -2.083716630935669, 0.33667972683906555]}\n",
|
|
"----------------------------------------\n",
|
|
"ID: aa7c6310-c8b8-46d8-9ba6-f8da1c56f68d\n",
|
|
"Source: {'text': ' as those conducted at CERN produce petabytes of data that must be distributed among research centers around the world. Without this collaborative and distributed model, many discoveries would simply be unfeasible. Energy Limitations and Sustainability However, the expansion of computational infrastructure brings significant challenges. One of the most relevant is energy consumption. Modern data centers require massive amounts of electricity both to operate and to cool their equipment. This demand has driven research into energy efficiency, more sustainable architectures, and the use of renewable energy sources. Some technology companies are already installing data centers in colder regions to reduce cooling costs, while others are exploring AI-based solutions to optimize energy usage. Sustainability has become a strategic criterion, not only economically but also reputationally. Organizations that fail to properly manage', 'metadata': {'title': 'Demo'}, 'vector': [1.9666762351989746, -0.08231626451015472, 1.6052480936050415, -1.6700795888900757, 2.1091856956481934, -2.390474319458008, 0.050096217542886734, -0.7816622853279114, -0.47229108214378357, 2.093726634979248, -2.972412586212158, -1.8557511568069458, -0.7090780735015869, -0.565629780292511, -1.2209758758544922, -1.0761733055114746, 0.613246500492096, -0.6177024841308594, -0.09298837184906006, -0.7614652514457703, -0.7588480114936829, -2.173964023590088, -2.1426985263824463, -1.0433100461959839, 0.17513896524906158, 2.7038681507110596, 2.247978687286377, -1.4705102443695068, 5.961959362030029, -1.2956125736236572, 2.3813507556915283, 3.584108829498291, -2.861495018005371, 3.0719714164733887, -0.33461979031562805, -0.9078097939491272, 2.380018711090088, 1.9308042526245117, 4.595912456512451, 1.0919086933135986, 1.1001803874969482, 1.979243278503418, -2.3470184803009033, 1.4519460201263428, 0.959178626537323, -1.872025966644287, 1.2193812131881714, -1.0131962299346924, 3.0542380809783936, -0.6498935222625732, -0.673189640045166, -4.190240859985352, -0.6477836966514587, -1.431321382522583, -0.5288779139518738, -1.0765938758850098, 1.811882495880127, 1.1866813898086548, -0.6398965716362, -2.391934394836426, 1.5128562450408936, 1.10457181930542, 4.02987003326416, -2.25549578666687, 2.268385410308838, 0.04632839187979698, 1.7239526510238647, 1.8662093877792358, -1.48044753074646, 2.200568199157715, -0.5455765724182129, -1.4129250049591064, -0.09815331548452377, -0.8061713576316833, -3.0357139110565186, 1.573248267173767, -1.5148029327392578, -0.2387665957212448, -3.5472559928894043, 1.3047853708267212, 2.664336681365967, -0.7033578157424927, 0.5484472513198853, -17.308610916137695, 1.0892122983932495, -1.1657308340072632, 3.465388774871826, -0.2829889953136444, -2.0064337253570557, 0.6002976894378662, -0.6248895525932312, 2.7309796810150146, 0.8476545810699463, -1.8822593688964844, -0.6864014267921448, -1.6099648475646973, -1.6802847385406494, -1.4515116214752197, 0.557771623134613, 2.0003457069396973, -1.0735598802566528, -3.1806156635284424, 0.11548864096403122, 1.6853713989257812, -0.8262396454811096, -0.5144980549812317, 0.29056110978126526, 1.8856111764907837, -4.69578218460083, -1.2110835313796997, -0.24657654762268066, -1.0968378782272339, -0.906102180480957, -4.883558750152588, 3.860701322555542, 2.106786012649536, 0.23893266916275024, 2.7048065662384033, -0.9941600561141968, 0.3306801915168762, -0.6791983842849731, 0.878919780254364, -1.0172452926635742, -1.0434584617614746, 1.5100914239883423, -0.5454012155532837, -0.6060852408409119, -1.3137937784194946, 0.6651720404624939, 0.15571576356887817, 0.6382877826690674, 1.672066569328308, 2.359586238861084, -2.1576335430145264, -1.5273104906082153, 0.7090203762054443, -2.439894914627075, 1.6789778470993042, 2.4751391410827637, 1.297827959060669, -0.22698965668678284, 1.998268723487854, 3.277841329574585, 0.17026609182357788, -0.06186366826295853, 0.5168107748031616, -0.3918932378292084, -1.2412623167037964, -0.33977124094963074, 0.9637904763221741, 0.3054564595222473, 1.049133539199829, 3.102900505065918, -2.3107869625091553, 19.865703582763672, -6.444069862365723, 1.5222300291061401, -2.8814425468444824, -0.0926787480711937, 0.8305947780609131, 0.25255945324897766, 5.0737810134887695, 0.7993291616439819, 0.1900164932012558, -2.677506446838379, -1.3325401544570923, 0.7107023596763611, -4.451908111572266, 2.2043650150299072, -2.7337799072265625, -1.7177201509475708, -2.204012870788574, 0.7426939606666565, 1.117185354232788, -3.2823867797851562, 3.134873867034912, -0.6089330315589905, -1.5314397811889648, 0.7148450613021851, 0.33158403635025024, -2.6887400150299072, 0.8254538178443909, -0.1899469643831253, 1.6939244270324707, 1.6393194198608398, 0.9280080199241638, 2.1803829669952393, -0.5703827142715454, -5.245043754577637, 0.12335313111543655, -1.03591787815094, -0.8820021748542786, -1.0941187143325806, 0.7887126207351685, 0.10181620717048645, 0.5480750203132629, -1.4716476202011108, -3.390418767929077, 1.381765604019165, -1.1520910263061523, -3.012928009033203, -1.7431687116622925, 2.0945143699645996, 1.503415584564209, 0.9040133357048035, 0.48499053716659546, 0.9369995594024658, -0.24227575957775116, -0.12706305086612701, 0.7311683893203735, 0.8625547885894775, -1.0040113925933838, -4.875644207000732, -0.3933870494365692, 0.4696757197380066, 2.9884192943573, 0.29671385884284973, -0.4912979304790497, -1.573822021484375, 3.0901331901550293, 0.8094398379325867, 2.1822502613067627, -9.617569923400879, 0.1954764723777771, -0.08997249603271484, -0.7820777297019958, 0.4760954976081848, -4.197931289672852, -8.126419067382812, 1.6054654121398926, -1.5045446157455444, -1.6197874546051025, -1.5062459707260132, 0.646513819694519, -0.353982150554657, -3.6388139724731445, 2.077533483505249, -0.46716153621673584, -2.3505890369415283, -0.5272392630577087, 3.287795305252075, -0.15190041065216064, -0.1341574639081955, 0.3872525990009308, -2.641968250274658, -2.6207118034362793, -2.644692897796631, 1.392967939376831, -2.091501235961914, -0.32068127393722534, 1.397094488143921, -0.3252786099910736, -0.29223760962486267, -1.4273240566253662, -1.1150304079055786, 0.22988280653953552, -2.596036911010742, 0.4939071238040924, -4.07145357131958, -1.5683642625808716, 0.6060409545898438, 0.23858381807804108, 1.911605954170227, -4.565544128417969, -3.4177515506744385, -0.008918844163417816, 3.766906499862671, -1.902326226234436, -0.7984468340873718, 0.5587950944900513, 2.0277767181396484, -0.08384335786104202, 2.487006425857544, -0.8835066556930542, -9.132201194763184, 4.172316074371338, -1.3644517660140991, 0.7009276151657104, 2.1192033290863037, 0.42602458596229553, -3.083801746368408, 0.9982054233551025, 2.2835259437561035, -1.114890456199646, 1.8390560150146484, -0.6204215884208679, -28.674657821655273, -0.84140944480896, -0.821002185344696, 1.804543375968933, -3.4637153148651123, 1.1752874851226807, -1.0270549058914185, 0.18287430703639984, 7.295934200286865, -0.659273087978363, -0.6099227666854858, -2.8948869705200195, -0.7157750129699707, -0.10607735067605972, 0.8748026490211487, -1.4835457801818848, 1.0920476913452148, -1.7668612003326416, -1.683653473854065, 0.3132607042789459, 0.5251836180686951, 0.07805632799863815, -0.761552631855011, -0.011368800885975361, -1.626091480255127, 2.1604626178741455, 2.6051371097564697, 3.0834858417510986, -1.0667505264282227, 0.774320125579834, -0.776592493057251, 1.245516300201416, 2.364727020263672, -1.7589789628982544, 0.541279137134552, -2.345257043838501, -0.717237114906311, -2.9684510231018066, 0.8151038289070129, 0.8144197463989258, -1.5207041501998901, 0.6968891620635986, 2.528412103652954, -1.7790625095367432, -0.8880274295806885, 0.3075685501098633, 1.2790863513946533, 0.017322607338428497, -1.8115482330322266, 3.199180841445923, -5.294429302215576, -0.2436356395483017, -1.1204689741134644, -0.9417866468429565, -3.915848970413208, 1.8654072284698486, 1.3297299146652222, 1.987883448600769, 1.9461032152175903, 2.927380084991455, 0.3835485577583313, -0.6731064319610596, 0.0749334841966629, -2.1467881202697754, -1.4421085119247437, 0.2593817412853241, -2.739229679107666, -1.8928229808807373, 24.855182647705078, -1.8957569599151611, 0.47890567779541016, 2.105466365814209, -0.0008923109853640199, 1.1368377208709717, 7.074703216552734, -1.9512649774551392, 1.6010555028915405, -1.6264591217041016, -1.3156323432922363, -0.17184031009674072, -1.190685749053955, -1.3942407369613647, -1.9279239177703857, 0.055917367339134216, -3.0630319118499756, 4.111704349517822, 0.6187962889671326, -1.863662838935852, 3.1952826976776123, -3.6597397327423096, -1.4584888219833374, -0.8367770314216614, -1.1195112466812134, 4.327272891998291, 1.4139050245285034, -0.5461768507957458, 2.8883440494537354, 0.9464890956878662, 1.7731504440307617, 2.174983024597168, 3.7420129776000977, -0.23907870054244995, -0.7235668301582336, -0.6453242301940918, 0.35843101143836975, -0.9388042092323303, 0.9780106544494629, 1.2256333827972412, -2.6031649112701416, 0.6707795858383179, 1.5686383247375488, 10.050394058227539, 0.732439398765564, -0.3128695487976074, -0.719387412071228, -1.3166747093200684, -0.008074210025370121, 4.026081085205078, -2.6660001277923584, 1.209126353263855, 0.5643912553787231, -0.37670472264289856, 1.749198317527771, 0.7644999027252197, -1.8819867372512817, 4.046499252319336, -2.240687131881714, 0.7170542478561401, -1.913310170173645, 3.3575146198272705, 0.3247385621070862, -1.2361795902252197, -1.4196388721466064, -1.8248708248138428, 1.63894784450531, -3.22576642036438, -1.3028936386108398, 0.4265604615211487, 0.09659473598003387, 0.15270115435123444, 0.22394263744354248, 1.8656485080718994, -1.4610520601272583, 2.052267551422119, -1.9336901903152466, 1.1827585697174072, -1.1683831214904785, -0.6994734406471252, 2.460601806640625, -2.3245387077331543, -1.661743402481079, -3.0540294647216797, 0.23532642424106598, -1.1209750175476074, 1.1038520336151123, -7.784789085388184, 4.254717826843262, -0.2645903527736664, -1.2764323949813843, -0.32760608196258545, -1.5229662656784058, 2.815700054168701, -1.5371127128601074, -3.528545379638672, 0.02925081178545952, -0.5083487033843994, 0.8395341038703918, -0.1687902808189392, 2.065706968307495, 0.7815396785736084, -1.328319787979126, 0.39554736018180847, 0.6557536721229553, -1.627181887626648, 3.582974910736084, -0.3188193440437317, 1.6652964353561401, 0.018437594175338745, -2.9104368686676025, -0.16288883984088898, -2.06803035736084, 0.14664895832538605, 0.4428643584251404, -1.0900253057479858, -0.11006233841180801, -1.838504433631897, -4.362720489501953, -1.6949125528335571, -2.227172613143921, -1.3908092975616455, 0.47696179151535034, -5.400027275085449, 1.4728996753692627, 1.638319492340088, 1.0940006971359253, -0.954941987991333, 1.5041416883468628, -0.12158554792404175, -0.10609579086303711, -0.26105251908302307, -3.963042974472046, -0.525160551071167, 2.8713626861572266, 0.9046533107757568, -7.818042755126953, -3.1466431617736816, 2.1430490016937256, 0.5822809934616089, -0.49003127217292786, -1.4764074087142944, -3.6066501140594482, -1.936555027961731, -0.36573636531829834, 2.110813856124878, -2.5684375762939453, 0.270169734954834, 0.3742876946926117, 103.85799407958984, -1.5521401166915894, -0.5801085233688354, 0.5860926508903503, -1.8302996158599854, 0.7162399291992188, 0.9024174809455872, -2.3532330989837646, -1.767685055732727, 2.0645811557769775, 3.014159679412842, -1.0774836540222168, -3.2365996837615967, 1.7493512630462646, 0.6370571851730347, 12.644699096679688, -0.35280922055244446, 1.5730122327804565, -1.1228461265563965, 2.57709002494812, -0.292377233505249, -2.827338695526123, -4.554487228393555, -2.4956045150756836, -0.9530179500579834, 0.9460318088531494, 0.5051407814025879, 3.758378267288208, 1.5950617790222168, -0.47877323627471924, 0.29642874002456665, -1.6311655044555664, -1.9524881839752197, -0.9722458720207214, 5.680064678192139, -1.7613719701766968, 0.1376809924840927, -0.5869231820106506, 0.691447913646698, -2.875840425491333, 1.8920515775680542, 12.616862297058105, -1.8564425706863403, 0.16470186412334442, 2.2288105487823486, -0.8157398104667664, 2.739985466003418, 2.8660271167755127, -3.577765941619873, 2.2300167083740234, 104.4809341430664, -0.9368479251861572, 0.64848792552948, 1.604119062423706, 2.286724328994751, 0.49110907316207886, -2.406677484512329, 0.6106138825416565, -1.335106611251831, 1.0884530544281006, 1.0155867338180542, 2.30647611618042, -2.131509780883789, 1.1606553792953491, 0.6852627396583557, -3.8581690788269043, -0.6580175757408142, -2.2039873600006104, -1.563826322555542, -2.807605743408203, 0.9974592328071594, 4.021854877471924, -0.7013492584228516, -2.580491304397583, 0.1564970463514328, -0.022105231881141663, -2.4730019569396973, -0.38329508900642395, 0.9637451171875, 1.8585937023162842, -1.6168437004089355, 3.129378080368042, 3.106400489807129, -1.9921787977218628, 0.44860705733299255, 0.6753311157226562, -12.886228561401367, 0.7235135436058044, -0.04524120315909386, -39.71226501464844, -1.202292799949646, 4.181701183319092, -1.3838598728179932, 2.298522472381592, 0.9827677011489868, -0.862086296081543, -2.3829410076141357, -0.19671837985515594, -0.25457894802093506, -1.9723317623138428, -0.6773831844329834, 1.1108230352401733, 2.604560613632202, -0.13521160185337067, -0.14854513108730316, -0.37676647305488586, 0.053870223462581635, -2.294675827026367, -9.689355850219727, -0.04527638480067253, 0.6165468096733093, -4.990229606628418, 1.8375955820083618, -0.006524398922920227, 0.9393055438995361, 0.4316839277744293, 3.095276117324829, -1.6127840280532837, 1.9167412519454956, -1.5194289684295654, 0.75877445936203, -1.0803934335708618, -1.9319195747375488, -3.0626330375671387, -0.03856080025434494, -1.7640329599380493, 3.9964582920074463, -2.676928758621216, -3.110002279281616, -0.09179739654064178, 17.352554321289062, 0.03613431379199028, -2.416721820831299, 0.07700913399457932, 3.4784903526306152, -2.2917985916137695, -1.820215106010437, 1.453645944595337, -0.938856840133667, -2.6750235557556152, 1.0302150249481201, -3.0156540870666504, 2.547628164291382, 2.7358055114746094, 2.037043571472168, -1.580588698387146, 1.0991601943969727, 1.8346309661865234, -1.7553340196609497, -0.7272394895553589, 4.941595077514648, 0.01177949458360672, 0.2116292417049408, 1.3494707345962524, 1.184606671333313, 2.4396119117736816, -0.6528481841087341, -0.020738977938890457, -1.372824788093567, -0.36052194237709045, 1.7930856943130493, -2.262693166732788, 0.8990857601165771, 1.1849615573883057, 2.584911346435547, -3.030611991882324, -2.076066493988037, -2.068145990371704, 2.943321943283081, -0.649741530418396, 1.814523696899414, 4.5765156745910645, -1.1142021417617798, 0.6566600799560547, -2.245532274246216, -0.19084793329238892, 0.5664384961128235, -0.6643245220184326, -1.5923194885253906, 2.6807312965393066, 2.524498462677002, 1.652896761894226, 3.4424142837524414, -2.1202409267425537, 0.3014962077140808, -2.6360435485839844, -2.646883726119995, 1.555751919746399, 3.451249837875366, 0.2204226851463318, 1.310905933380127, -0.06760280579328537, -1.3326689004898071, -1.3214712142944336, 1.590735912322998, 0.36506664752960205, 1.3676702976226807, -0.7711977958679199, -2.3220674991607666, 1.4653576612472534, 3.515964984893799, 1.7265334129333496, -0.6002942323684692, 2.2198827266693115, 1.4433237314224243, -0.6937907338142395, 0.4919813275337219, 0.2736721336841583, -1.8970518112182617, -1.235080361366272, -6.383378982543945, 1.015566110610962, -2.0583877563476562, -0.6488926410675049, 0.7386668920516968, -0.9281986951828003, -1.2613255977630615, 4.649228096008301, 1.6153523921966553, 2.33152174949646, 0.6216087341308594, 0.34650471806526184, 1.794649362564087, -0.6631432771682739, -0.17246657609939575, -1.980342149734497, -0.5310363173484802, 3.1123807430267334, -0.6403574347496033, 1.2742774486541748, 1.9117820262908936, -0.6682546138763428, 7.405429363250732, 0.5329710841178894, -1.7175730466842651, -1.3474807739257812, -0.49576935172080994, -0.840828001499176, 0.17487972974777222, -0.22109496593475342, -3.1613636016845703, 1.2126784324645996, -1.1384291648864746, -0.7578296661376953, -0.47053974866867065, 1.7000454664230347, 3.9719583988189697, 10.263693809509277, 0.22383281588554382, 1.103326439857483, -1.9588863849639893, -2.1722583770751953, 0.4833246171474457, -0.5238478779792786, -1.7925481796264648, 1.272544026374817, 1.55948805809021, 1.8903971910476685, -0.6162357330322266, 1.1979169845581055, 0.1366129219532013, 3.277233600616455, -1.384867548942566, 2.6093173027038574, 3.606576919555664, -1.888524055480957, 3.1577835083007812, 0.37668001651763916, -2.716871500015259, 0.7985543012619019, -2.0007216930389404, -0.08973964303731918, 2.329108476638794, -1.4751523733139038, -0.3675104081630707, -0.8146636486053467, 8.597702026367188, 3.604344367980957, -0.8058961629867554, 1.8795617818832397, 2.732774496078491, -2.92553448677063, -4.732099533081055, -0.22221171855926514, -2.3714776039123535, -0.60020911693573, 0.9182388186454773, -0.4917164742946625, -0.4748954772949219, -0.20465236902236938, 0.7828317880630493, 2.5042836666107178, 0.7384604215621948, 0.39473778009414673, -0.12895216047763824, 0.09884251654148102, -5.321761131286621, -0.7610921859741211, 0.6292101740837097, -7.583248138427734, 0.5905188322067261, -2.3153815269470215, 1.1770540475845337, -9.307108879089355, -2.0501322746276855, -1.0677536725997925, 1.2664761543273926, 5.761143207550049, 1.220337986946106, 1.1734591722488403, -3.01515531539917, 2.289031744003296, -0.5138356685638428, 1.1735035181045532, 0.6600831151008606, -0.996366560459137, -0.49351218342781067, 1.6615405082702637, -0.8000226020812988, -1.4697226285934448, -2.3104422092437744, -0.3486275374889374, -4.65158748626709, 3.3332090377807617, 0.03355842083692551, -1.0608383417129517, 7.320075035095215, -1.1731464862823486, 3.549586534500122, -3.515054941177368, -0.4344233274459839, 1.4005755186080933, 2.514596462249756, 0.3342198431491852, 5.351648330688477, 1.910059928894043, 0.2166222631931305, 0.2164928913116455, -0.803359866142273, 1.380608081817627, -1.0108705759048462, 1.9321056604385376, 9.621329307556152, -1.4564334154129028, -2.972181558609009, -1.4011540412902832, 0.19477425515651703, 0.8341284394264221, -0.13530254364013672, 0.5651296973228455, 6.026921272277832, 0.18332332372665405, -2.6073038578033447, -0.9264439344406128, 0.17370687425136566, 2.515881299972534, 0.29271939396858215, 2.792733907699585, -0.41286927461624146, -1.3315647840499878, -0.003745755646377802, 1.085068702697754, -1.0483894348144531, 0.6261200308799744, 0.6416695713996887, -1.3653680086135864, -1.1887677907943726, -1.954322338104248, -0.5132113099098206, -0.14409363269805908, -0.19072969257831573, 2.909472942352295, 1.302727222442627, -0.6559620499610901, 0.7612960338592529, -1.3081496953964233, 1.140489101409912, 0.5793196558952332, -2.036046028137207, 0.8585352897644043, 5.245357513427734, -1.4531296491622925, 1.1399152278900146, -0.46450328826904297, -1.5679125785827637, 0.48131105303764343, -0.14358410239219666, 1.2595330476760864, -0.28741374611854553, -1.772727131843567, -1.82797372341156, -4.880085468292236, 1.342566728591919, 0.4770323932170868, 1.2477864027023315, 1.7709559202194214, 1.033302664756775, -0.04171489551663399, 1.4643675088882446, -3.6249639987945557, 0.874913215637207, 2.2322587966918945, -3.736858367919922, -0.7604680061340332, 0.5442060232162476, 3.184736967086792, -57.70210647583008, -0.08741848915815353, -1.1549183130264282, -1.4288887977600098, -3.2369885444641113, -1.8421818017959595, 1.4338504076004028, -1.3012428283691406, -2.512042999267578, -2.257214307785034, -0.07984790951013565, 1.5582176446914673, -2.9894461631774902, -0.7465152144432068, 0.6148356199264526, -1.689630150794983, -1.6922355890274048, 2.2464656829833984, -2.4886035919189453, -2.9807612895965576, 19.906822204589844, -1.470144510269165, 0.10739026963710785, 0.6869426965713501, 1.1082838773727417, -0.010681998915970325, 4.315230369567871, 1.3049614429473877, -0.4083389937877655, -3.3353471755981445, -1.634395956993103, 2.4737846851348877, -0.011156164109706879, 0.422735333442688, 0.32071366906166077, -0.780853807926178, -4.148057460784912, -0.196522057056427, 0.7354832887649536, -0.8347340226173401, 2.17352557182312, -0.14740757644176483, 0.3082054555416107, 3.7181081771850586, 1.9556632041931152, -0.611017644405365, -0.8866377472877502, 2.5399749279022217, -1.943021297454834, 6.326035976409912, -2.85978627204895, -2.0194692611694336, -1.2466176748275757, -0.06642618775367737, -0.2215871810913086, -0.9208159446716309, -0.9937134385108948, -0.5991659164428711, 0.3584077060222626, 0.3575005531311035, 4.917123794555664, -0.022577691823244095, 1.6420496702194214, 1.8072036504745483, -0.8017256259918213, 2.613398790359497, 0.5188744068145752, 2.077507734298706, -0.8628036379814148, -2.4278695583343506, 1.1291179656982422, -1.891191005706787, -2.585477352142334, 1.0150871276855469, -0.10495122522115707, -2.254894733428955, 0.9976123571395874, 0.24220287799835205, 2.7855417728424072, -1.1815162897109985, -0.021772192791104317, 0.4149807095527649, 0.11302034556865692, -0.6197752356529236, 0.7496162056922913, -0.5293363332748413, -0.5294506549835205, 0.8152087926864624, -3.322314739227295, 0.8282730579376221, -11.852743148803711, 3.1503894329071045, 1.3264755010604858, 0.8963831663131714, 2.026674747467041, -1.106041669845581, 2.2615807056427, 0.9836831092834473, 1.7534061670303345, -6.619994163513184, 1.7841908931732178, -3.1803905963897705, 1.9027855396270752, 1.6477017402648926, 1.1004959344863892, -1.9349174499511719, -2.679903268814087, -0.20969928801059723, -1.994193196296692, 3.9112489223480225, -2.095468521118164, -0.3531286418437958, 9.353303909301758, 1.4833590984344482, -0.8578968644142151, 3.0976195335388184, 0.4292915165424347, -2.5358753204345703, 0.9497672319412231, 2.3773367404937744, 0.8589839935302734, -0.6288368105888367, 0.5227290987968445, 1.601546287536621, -0.11947613954544067, -4.923141002655029, -0.8893769383430481, 0.723050594329834, 3.396416425704956, 2.137805461883545, -1.752545952796936, -5.238224029541016, 2.4932096004486084, -1.3300310373306274, -0.13264496624469757, 0.4483136236667633, 0.10211687535047531, 2.162735939025879, -3.1022825241088867, -0.08948349207639694, 0.1767406016588211, -0.14165902137756348, 0.11692386120557785, -1.783608317375183, 0.7284498810768127, 1.134475827217102, -0.8477188944816589, -0.4800023138523102, -0.03152760490775108, -1.1881824731826782, 2.0855069160461426, -6.230492115020752, -0.4853745996952057, -4.5663533210754395, 2.6155030727386475, 0.424966961145401, -1.985607624053955, -1.006965160369873, -1.6129040718078613, -2.0876588821411133, 0.11652316898107529, -3.341841220855713, -0.3990626037120819, 3.0300168991088867, 2.5659544467926025, -1.5051177740097046, -0.4093813896179199, 6.726954460144043, 0.4625805914402008, -0.7400538921356201, -2.6389169692993164, -1.7343542575836182, -0.20066455006599426, 4.36653470993042, -2.9075605869293213, 0.39539217948913574, 0.30111730098724365, -2.8898699283599854, -1.9698412418365479, 0.4171624481678009, 4.261990070343018, -1.6334795951843262, -0.9899634718894958, -4.914507865905762, -2.0345075130462646, -0.44183826446533203, -1.0518062114715576, -0.5744455456733704, -0.5028011798858643, 0.998053789138794, 1.1144087314605713, 1.1783605813980103, 0.5314453840255737, -0.38369107246398926, 2.1649835109710693, -0.5042068958282471, -2.488429069519043, 3.7581610679626465, -1.8024455308914185, 1.7238091230392456, -0.3776058256626129, -0.05829586088657379, 4.934410095214844, -0.887893557548523, 0.6919253468513489, 3.5845108032226562, -0.8202282190322876, -0.8672208189964294, -1.89076566696167, -1.7600687742233276, -3.786876678466797, 4.983339309692383, 1.8202040195465088, -1.4461233615875244, 2.012012004852295, 1.0651718378067017, -0.8650579452514648, 2.436394691467285, -0.6802424192428589, -2.3281424045562744, 2.5001866817474365, -1.2841777801513672, 1.3988255262374878, -1.1313663721084595, 3.952700138092041, 0.6768544316291809, -0.7457013726234436, 0.8269698023796082, -2.285451889038086, 1.0115548372268677, 0.21177367866039276, -1.0137953758239746, -3.447922706604004, -0.20329098403453827, 1.5869766473770142, 0.17539988458156586, 0.9083510041236877, -0.6569862365722656, -1.4424340724945068, -2.3319904804229736, -2.351624011993408, -1.3145474195480347, -0.08293440192937851, 3.2143163681030273, 2.288004159927368, -0.3831782341003418, -1.9423813819885254, 2.311264991760254, -0.13265688717365265, 3.0721795558929443, -1.0058763027191162, -0.3045778274536133, -8.184708595275879, -0.4600354731082916, 0.7283519506454468, 2.668104887008667, 3.1088192462921143, -1.4976805448532104, -1.6365324258804321, -2.6904983520507812, 0.9285832643508911, 0.16279157996177673, -1.679479956626892, 0.15972933173179626, 6.619742393493652, -0.20526324212551117, -2.976017951965332, -0.35717517137527466, -0.4680183529853821, 0.6402967572212219, -0.32012349367141724, -0.15396757423877716, 1.4055050611495972, -7.715120315551758, -0.4843698740005493, -0.4224071204662323, -1.0545109510421753, 0.7043103575706482, -0.5660934448242188, 1.198089361190796, 1.4927067756652832, -0.029627058655023575, -0.956215500831604, 2.8551244735717773, -1.4281890392303467, 1.411753535270691, 0.7874444127082825, -0.6404604315757751, 0.6281516551971436, -0.7922897338867188, -0.9648280143737793, 3.131253719329834, -2.3777384757995605, -0.3087087571620941, -3.3162364959716797, -0.2800178825855255, 1.298091173171997, 2.410102128982544, -0.3330642580986023, -1.589560627937317, -0.028769684955477715, -0.8379825949668884, 1.7667267322540283, 2.6715242862701416, 0.3227425217628479, -5.617776393890381, -8.27661418914795, 1.4176088571548462, -4.019784450531006, -1.5848345756530762, -2.644183874130249, -0.8104676604270935, 1.0432547330856323, 1.0732431411743164, -2.5337369441986084, 2.1672842502593994, 1.6599640846252441, 2.0712006092071533, -3.378554105758667, 1.8082362413406372, 24.85236167907715, -0.21552149951457977, 0.6226547956466675, 0.6984130144119263, -2.1665940284729004, -1.5458093881607056, -0.42784446477890015, -1.0797427892684937, -3.170363187789917, -0.7882940173149109, 2.576150417327881, 2.0051140785217285, -4.960086345672607, -0.5325979590415955, 0.16813142597675323, 0.6343429684638977, 3.4651246070861816, -5.736023902893066, 2.8873636722564697, 15.59206771850586, -1.8402448892593384, 1.9693639278411865, 1.0743563175201416, 2.494623899459839, 0.7043977379798889, 2.3901870250701904, 0.7416486144065857, 1.1237561702728271, 0.7464357018470764, 1.20108163356781, -1.983012080192566, 0.33475619554519653, 1.2957572937011719, -0.8539799451828003, -0.017200537025928497, -1.6513913869857788, 2.0819876194000244, 5.435920715332031, 1.5097466707229614, 1.5756345987319946, -1.3829604387283325, -0.8986141085624695, -0.25493237376213074, -36.445709228515625, 0.3097652196884155, 1.433059811592102, -1.2525837421417236, -3.1794440746307373, 4.46917724609375, -2.517752170562744, -2.6181366443634033, 4.671017646789551, -3.9300475120544434, -1.2154783010482788, 1.0304114818572998, -1.575316309928894, -0.15474456548690796, 0.0709804892539978, 0.42706090211868286, 0.07686887681484222, -1.0822714567184448, 1.111740231513977, 1.4860670566558838, 2.2705626487731934, 0.2557370662689209, -0.5644974708557129, 1.9253886938095093, -0.05318957567214966, -1.5780922174453735, -0.6295697093009949, -2.776002883911133, 0.7067649364471436, 2.747574806213379, -1.9791876077651978, 1.3405423164367676, 0.13373538851737976, 4.984323978424072, -1.9424612522125244, -3.8129842281341553, 0.7945536375045776, -2.8639228343963623, 1.1105806827545166, 2.394000291824341, 0.3856137692928314, -0.3637239634990692, -1.8977731466293335, 2.163250207901001, -1.6090182065963745, 0.03822310268878937, -3.6884732246398926, -4.872024059295654, -1.1854866743087769, -0.5077114105224609, -0.9632312655448914, 1.4086477756500244, 2.4145777225494385, -0.7577548027038574, 0.5292561054229736, 1.8850104808807373, 1.3318678140640259, -0.2774617373943329, 1.0641762018203735, -1.3646832704544067, 0.3210626244544983, -1.9601624011993408, 0.314479261636734, -1.2744907140731812, -1.2609597444534302, -2.424412965774536, 1.9531546831130981, -2.2071762084960938, -1.5092885494232178, 0.778247594833374, -0.13566099107265472, 3.805300235748291, 0.6430545449256897, 0.9054270386695862, -1.052908182144165, 1.9553295373916626, 2.931469678878784, -1.6929020881652832, -0.23113314807415009, 1.310577154159546, 0.9625310301780701, 0.6495205760002136, -0.04390248283743858, 1.6021071672439575, 2.601036787033081, 1.20039701461792, 1.5673521757125854, 2.2985119819641113, 6.250235557556152, 17.641334533691406, 0.876392662525177, 2.013258218765259, -0.3318839371204376, -0.18385498225688934, 0.6671072244644165, -0.7814904451370239, -0.6549240946769714, 0.7046642303466797, -0.4632740914821625, -1.6839452981948853, 0.9982333183288574, -2.7580947875976562, 0.17215858399868011, 2.8059897422790527, 0.017203042283654213, -1.4617866277694702, -1.7570202350616455, 0.7207651138305664, 2.777562141418457, 0.7277974486351013, 2.4470977783203125, 0.4112730324268341, -0.900010883808136, -2.064619302749634, 0.27066799998283386, 0.05167795717716217, 0.9915380477905273, 0.9801262617111206, 1.5228052139282227, -2.04364275932312, 1.705451250076294, 3.1083598136901855, 0.45467379689216614, 4.111588478088379, 0.7022602558135986, -1.7985671758651733, 0.8961367607116699, 2.1231095790863037, 1.8470087051391602, 1.7579714059829712, 1.2418131828308105, 1.6935309171676636, -0.3802372217178345, -3.4732441902160645, -3.7666523456573486, 0.8252660036087036, -0.34747475385665894, -2.51019024848938, -0.11631754040718079, -5.395151138305664, 1.448546051979065, 0.40417423844337463, -3.9902820587158203, 0.4335309565067291, 0.02838183380663395, 0.38026124238967896, 5.013893127441406, 0.639544665813446, 1.2915127277374268, -0.31512847542762756, -0.06434248387813568, 11.630939483642578, -0.003717477899044752, -0.8307980298995972, 0.30952513217926025, 0.563504695892334, -1.4347364902496338, -1.5114253759384155, 1.757028341293335, 2.2415826320648193, -0.3262920081615448, 4.0352277755737305, 0.8254979848861694, -3.6680946350097656, 0.3133868873119354, 1.231379508972168, -1.4357430934906006, 4.039409160614014, 0.014805587008595467, 0.9140169024467468, -1.023239254951477, 1.2750213146209717, 2.300398588180542, 1.2209572792053223, 3.0797791481018066, -0.2531195282936096, -3.2569005489349365, 2.6805951595306396, -0.37380313873291016, -1.5330451726913452, -2.5164990425109863, 0.8652521967887878, 2.6019086837768555, -1.4036356210708618, 0.10389713943004608, -2.0139272212982178, -5.315333366394043, -0.402739942073822, -0.35597744584083557, -0.5306740999221802, 2.48949933052063, -1.7848438024520874, 4.518632888793945, -1.7393436431884766, -0.9167846441268921, -4.502406120300293, -13.707440376281738, -0.8029474020004272, 0.24685241281986237, -10.74884033203125, 0.12688598036766052, 2.225977897644043, 1.5736196041107178, 1.0118732452392578, 0.47236737608909607, -2.938591241836548, 0.7872664332389832, 2.3595540523529053, 0.5475754737854004, -0.22770802676677704, -2.1499853134155273, -1.3304686546325684, 0.6337934136390686, 0.7581201195716858, -3.105463981628418, 2.899857997894287, 0.20146508514881134, 4.357858180999756, -3.056804656982422, 2.4422597885131836, -3.553689479827881, 2.2235283851623535, -2.8327815532684326, 4.293822765350342, -1.5347412824630737, -2.2302470207214355, -2.6997554302215576, 1.1432644128799438, 8.525635719299316, -2.145310401916504, 2.4397501945495605, -0.8635010719299316, 0.36565354466438293, 0.4449549615383148, -0.5080536007881165, 0.00846959836781025, -0.8555551767349243, 0.8651242256164551, -2.1198270320892334, 0.5199095010757446, 0.9240115880966187, -0.2616850435733795, -0.0049784230068326, -0.3016167879104614, 2.1965320110321045, -2.245608329772949, -2.0907018184661865, -0.3454495966434479, 0.549747884273529, -0.1969795972108841, 1.3310794830322266, 0.8678079843521118, -3.8107504844665527, 0.5156893730163574, -2.521869421005249, 2.6614010334014893, 4.558259963989258, -0.6836742162704468, 0.12800434231758118, 0.06278170645236969, 0.0495501272380352, 0.08012102544307709, 2.412541389465332, 1.285801887512207]}\n",
|
|
"----------------------------------------\n",
|
|
"ID: 7d58d6bb-2a81-4f2c-9d27-15ce06f5f4dc\n",
|
|
"Source: {'text': ' optimize energy usage. Sustainability has become a strategic criterion, not only economically but also reputationally. Organizations that fail to properly manage their carbon footprint may face public and regulatory criticism. Language Models and Deep Learning At the same time, the development of large-scale language models has redefined contemporary artificial intelligence. These models, trained with billions or even trillions of parameters, can generate coherent text, translate languages, and solve complex problems. Training these systems requires extremely powerful distributed infrastructures. Data parallelism and model parallelism make it possible to divide the computational workload across multiple GPUs or specialized nodes. However, the inference phase presents different challenges. Although it is less intensive than training, large-scale inference — such as in public AI services — requires constant optimization to reduce', 'metadata': {'title': 'Demo'}, 'vector': [0.5715106129646301, 1.2193870544433594, 2.1910033226013184, 1.3965251445770264, 3.7018537521362305, -3.1100473403930664, 1.0490186214447021, -0.11281079053878784, -3.143134593963623, 0.09786562621593475, -4.162356853485107, 0.6382427215576172, 0.4424968957901001, -0.407357782125473, -2.1971874237060547, -4.656476020812988, 2.0187785625457764, -2.43424391746521, -2.611267566680908, -1.4472657442092896, -2.801133394241333, 0.9561447501182556, -4.382007598876953, 2.812941312789917, -2.9839370250701904, -2.7633326053619385, -0.49523690342903137, -1.4987289905548096, 6.616941452026367, -0.969501256942749, 3.664731740951538, 1.6555057764053345, 0.02352411299943924, 5.224208831787109, -3.525472640991211, 1.524864673614502, 0.46614283323287964, 2.9999492168426514, 5.0319294929504395, 1.5375510454177856, 0.8891085386276245, -1.524783968925476, -4.7200164794921875, -2.390158176422119, 0.13296709954738617, 0.4902189373970032, 3.7206034660339355, -1.3996827602386475, -0.18902039527893066, -1.3696904182434082, -1.1924968957901, -1.4418244361877441, 1.1503561735153198, -4.142341613769531, -0.7762291431427002, 1.0686519145965576, -4.676802635192871, 0.40805068612098694, 2.4258017539978027, -1.913343071937561, 1.4923440217971802, 0.8244935274124146, 2.017143726348877, -3.6165685653686523, 2.0604963302612305, -1.1980113983154297, -1.3434171676635742, 0.3808509111404419, 1.148564338684082, 1.7560290098190308, -2.3488152027130127, -0.3389038145542145, 0.21291281282901764, -2.553459405899048, -0.021699367091059685, 1.6536359786987305, -0.08225490152835846, 0.2984854280948639, -2.5685060024261475, 0.7035078406333923, 2.5823616981506348, 0.013689087703824043, 0.6962812542915344, -17.195768356323242, 1.7058665752410889, -2.5977871417999268, 2.140475273132324, -0.3152279555797577, -2.9891397953033447, -2.482529401779175, -0.745148241519928, -1.0686997175216675, 2.2978310585021973, -2.684763193130493, -0.37006622552871704, -1.8131822347640991, -2.1747453212738037, -2.76478910446167, 3.623875856399536, -2.8695991039276123, 0.7733346223831177, -4.627291679382324, 1.1169860363006592, -0.5247885584831238, 2.9195449352264404, -0.9233211278915405, 1.0605189800262451, 1.2502987384796143, -6.275402545928955, -4.129672527313232, 0.7892619967460632, 0.18643499910831451, 2.8101165294647217, -3.550290584564209, 4.285443305969238, 0.6025270223617554, -2.5183157920837402, 0.7408933639526367, -1.2257758378982544, -1.570037603378296, -1.4391101598739624, -0.9904159903526306, -0.1875535398721695, 5.923543453216553, -1.9145972728729248, 1.0374634265899658, 3.1743249893188477, -0.30345267057418823, -0.06390312314033508, -0.8412450551986694, 3.454186201095581, 0.17181852459907532, 2.8699607849121094, 1.7480305433273315, 1.7854855060577393, 2.6260509490966797, -0.7685921788215637, 1.8902169466018677, 3.868201494216919, -0.4115062654018402, -0.015365825034677982, -1.2668673992156982, 3.017350673675537, -2.030729055404663, 0.961877167224884, 0.5022393465042114, 1.9690430164337158, 1.4680570363998413, 0.11063035577535629, -0.9491939544677734, -0.3512951731681824, 2.3177859783172607, -1.4860823154449463, -5.789133548736572, 21.371654510498047, -2.730217695236206, 1.860223650932312, -0.9865049719810486, -2.9850239753723145, -1.6075515747070312, -1.2092015743255615, 0.660486102104187, -0.35931238532066345, -0.30117589235305786, -2.8818728923797607, -2.823124408721924, -1.1774895191192627, -0.4183245003223419, 3.263561964035034, -1.0915513038635254, 2.6301474571228027, 2.74812650680542, -1.0916166305541992, 1.8470978736877441, -1.067671537399292, 3.2485194206237793, -1.6523913145065308, 1.8651007413864136, 2.798450469970703, -0.09140437841415405, 0.5214788913726807, 1.4272456169128418, -0.5956600308418274, 0.8748417496681213, 1.2460154294967651, 2.709780216217041, 1.3657664060592651, -0.7241659164428711, -4.469541549682617, 0.9634666442871094, 0.10072191059589386, -4.174315452575684, 0.6276488304138184, 1.0977702140808105, 0.8872005343437195, 4.982620716094971, -0.25708648562431335, -2.142350912094116, -0.2117108851671219, -1.8671019077301025, -1.4830156564712524, -1.081653356552124, 0.12181903421878815, 7.188412666320801, 2.23990797996521, 2.140448808670044, -1.0990617275238037, 0.21937833726406097, 1.6156433820724487, 2.1916310787200928, -3.02720046043396, 0.08661044389009476, -3.6961073875427246, 0.9085041284561157, 3.90682315826416, 0.9658135175704956, -1.9816758632659912, 2.3567302227020264, -4.241292953491211, 8.768362045288086, -2.0268917083740234, 0.21212734282016754, -9.917858123779297, -0.3249720633029938, 2.151402473449707, -2.375131130218506, -2.859071969985962, 3.4728174209594727, -5.488701343536377, 2.855865955352783, 2.099919319152832, -1.8589367866516113, 2.1056180000305176, -0.5159691572189331, 0.5985627174377441, -2.804670810699463, -2.58791446685791, 0.0809355080127716, -2.9820613861083984, 1.0969675779342651, 1.135370135307312, -1.226374626159668, 2.162585735321045, 0.08792470395565033, -3.2685513496398926, -0.5475724339485168, 2.957308769226074, -1.1062854528427124, -1.501246690750122, 4.99295711517334, -0.06506750732660294, -1.5242632627487183, 0.8679576516151428, -1.6588352918624878, 0.94701087474823, 1.046104907989502, 1.4567519426345825, -3.7100162506103516, -0.6384711265563965, -1.1642946004867554, 0.7864235043525696, 6.685088634490967, -2.7308082580566406, -1.2990154027938843, -0.42071565985679626, 0.8887724876403809, 2.161616802215576, 1.82280695438385, -1.431389570236206, 1.413618564605713, -0.7855815887451172, 2.917874813079834, 2.598884105682373, 0.9321919679641724, -1.3699201345443726, 3.064657211303711, -0.016270693391561508, -0.94561767578125, 1.4873234033584595, -0.7773133516311646, -3.312166213989258, -2.5068531036376953, 0.3705349862575531, 3.349552869796753, -4.660256385803223, 0.02855364978313446, -14.61011028289795, -3.395340919494629, -0.9337896704673767, -0.7380633354187012, 0.8515732884407043, -0.9205400347709656, 0.3143663704395294, -0.32929325103759766, 5.317659378051758, -1.8837709426879883, -2.213667392730713, -3.3498873710632324, -0.8529165387153625, -1.6367465257644653, -0.0670672282576561, -0.5351599454879761, 0.9723639488220215, -0.8101885914802551, -0.22295238077640533, -0.7125925421714783, 0.5696542859077454, -5.7655768394470215, 0.9400815367698669, 0.12706837058067322, 0.2551459074020386, -0.332633912563324, 2.84744930267334, 2.665557622909546, -1.1488670110702515, -0.511984646320343, 0.05644282326102257, 0.4299561083316803, 1.1634068489074707, -3.585611343383789, 1.0263477563858032, 0.31825366616249084, -1.90882408618927, -3.504849910736084, 0.23775124549865723, -3.911874771118164, 2.1462888717651367, 1.1914525032043457, 4.677032947540283, -1.5669976472854614, -0.8732677698135376, 1.412056565284729, -0.9466370940208435, -0.5053914785385132, -1.251518964767456, 4.557616233825684, -4.7189621925354, -0.6393109560012817, -1.2417073249816895, -0.681360125541687, -2.145907163619995, 0.5435535311698914, 0.2900237739086151, 0.06876873970031738, 2.3359827995300293, -0.1736963391304016, 0.9507108926773071, 1.5010446310043335, -2.387441873550415, -2.415266990661621, 2.4616713523864746, 0.7081769108772278, -0.21789009869098663, -1.3315500020980835, 21.989322662353516, -1.1127430200576782, 0.572940468788147, 3.6212668418884277, 1.6064716577529907, -1.2945414781570435, 2.25697922706604, -2.0922374725341797, -0.9331604838371277, 1.4765366315841675, -0.7695602774620056, 1.7571731805801392, 0.3894194960594177, -0.6770760416984558, -2.0334489345550537, 1.609289526939392, -0.6644626259803772, 1.3533381223678589, 0.19641198217868805, -1.1753625869750977, 4.732611656188965, 0.921516478061676, -1.708510160446167, -0.5417667627334595, 0.25853368639945984, -0.6208236813545227, 2.696367025375366, 0.20320187509059906, 3.6367876529693604, -1.1389292478561401, -1.661695122718811, 0.7715036273002625, 3.6122512817382812, -1.1923037767410278, -2.554774284362793, 0.7542448043823242, -3.44026780128479, -4.035953998565674, 1.6552380323410034, -3.6277170181274414, 2.165964365005493, -1.1487133502960205, 4.903597354888916, 7.649775981903076, -0.7215912938117981, -1.8388631343841553, -1.2914481163024902, -1.4039570093154907, -2.8322696685791016, 9.477737426757812, -0.7375286221504211, 0.46928727626800537, -1.0363436937332153, -1.7254091501235962, 0.7270698547363281, -2.749601364135742, -2.241868495941162, 2.4441347122192383, -0.906320333480835, -0.7682374715805054, 2.5744664669036865, 3.532381534576416, -0.4204307496547699, -1.517122507095337, -5.508912086486816, -1.6995995044708252, 3.0981526374816895, -1.8355780839920044, -4.1326141357421875, 5.455901622772217, 0.06766627728939056, 1.8196462392807007, -2.3618874549865723, -0.7339563369750977, -1.8191826343536377, 1.4973526000976562, -2.015157699584961, 3.5856919288635254, -0.40088337659835815, 3.779226541519165, -0.9209615588188171, -2.9244415760040283, -3.6210174560546875, 2.753293752670288, 0.42033177614212036, 0.7119739651679993, 5.159914493560791, -12.623870849609375, 5.645717620849609, -2.8293087482452393, 1.0793269872665405, 1.4619966745376587, -0.02103346586227417, -1.3239617347717285, -3.417581796646118, -2.764690399169922, -0.8112280368804932, -1.3249117136001587, -2.151517868041992, 0.46362078189849854, -6.324701309204102, -0.1614018678665161, -0.083364337682724, 1.977325439453125, -1.055928349494934, 0.9710988998413086, -0.6334114074707031, -2.305358648300171, 2.443554162979126, 3.8076443672180176, 0.7990663051605225, 0.7767400145530701, -8.691165924072266, 0.6811122894287109, -0.14329731464385986, -0.8512143492698669, -4.336767673492432, -0.6680119633674622, -4.695261478424072, -2.694080352783203, -1.3926732540130615, 1.7148559093475342, 0.811151385307312, -3.699918746948242, -1.230720043182373, -1.1739970445632935, 2.106435537338257, -0.5690920948982239, 1.9847241640090942, 1.9400055408477783, -2.349607467651367, -3.9008705615997314, -0.7879500389099121, -3.2053520679473877, -0.1632009893655777, 1.9821465015411377, -6.606987953186035, -3.6218881607055664, 4.19557523727417, 4.833352565765381, -1.2538425922393799, -3.3525006771087646, -2.344456434249878, 0.41343066096305847, 2.9746346473693848, 4.059897422790527, 0.019931698217988014, 0.8436979055404663, -0.9344184994697571, 97.91304016113281, -0.36627718806266785, -0.030144285410642624, -2.4261739253997803, -2.2297520637512207, -4.5855512619018555, 2.0973551273345947, -2.036787271499634, -2.027987480163574, 1.0255212783813477, -3.3295774459838867, 0.10337644070386887, -3.014596700668335, -1.1787470579147339, -0.6933331489562988, 11.429405212402344, 1.0381299257278442, -3.0184075832366943, 1.4076725244522095, 2.3330039978027344, 3.7567403316497803, -0.9083847403526306, -2.6523261070251465, 1.8125073909759521, -0.9140966534614563, -1.193534255027771, 2.483290195465088, -0.2782025933265686, 0.2781449556350708, -0.5648707747459412, 1.0141589641571045, 1.5875990390777588, -0.5981945395469666, -0.9993167519569397, 7.411561012268066, 1.5745524168014526, 1.6312384605407715, 1.2633079290390015, 1.404819130897522, 2.9084112644195557, 5.820501327514648, 3.2979981899261475, 0.5164584517478943, 0.23604252934455872, 4.301640510559082, 1.1234571933746338, 2.315418243408203, 2.656956195831299, 0.16706718504428864, 0.5131527781486511, 101.59187316894531, 1.122309923171997, 0.15773580968379974, 1.1944612264633179, 0.7433300614356995, -3.1182749271392822, 0.8788082003593445, -0.7637313008308411, 2.7136425971984863, -1.8662675619125366, -1.1931865215301514, 0.5730199217796326, -3.6203863620758057, -0.37731653451919556, 2.2112603187561035, -1.9262601137161255, 0.5839488506317139, -4.507272720336914, -3.09445858001709, 2.6324243545532227, 0.468652606010437, 3.38146710395813, 2.7694151401519775, 0.5983874201774597, 2.6702170372009277, 0.6561654806137085, -0.8983939290046692, -0.4801410436630249, 0.5076665282249451, 13.606123924255371, 0.2604422867298126, 4.0041327476501465, 0.5114519596099854, 0.3414832353591919, 1.7612196207046509, -1.1018726825714111, -19.52033805847168, 1.4369165897369385, -3.223435640335083, -35.45632553100586, -1.813987374305725, 0.8383316993713379, 0.6297435164451599, -0.9566314220428467, 4.087033748626709, -0.37949997186660767, 2.3485052585601807, -0.14114831387996674, -2.8207573890686035, 0.12369482219219208, 0.21477010846138, 0.29646751284599304, 0.15304647386074066, -0.5445906519889832, -2.3204312324523926, -1.8934203386306763, 0.04608214274048805, -0.7157530784606934, -12.422015190124512, 0.4457757771015167, -2.9404518604278564, -4.020225524902344, 0.28815722465515137, 2.177116870880127, 5.204007625579834, -1.2809863090515137, 2.7182610034942627, 1.3369139432907104, -0.024003464728593826, 0.011234577745199203, 0.9829660654067993, 0.08382153511047363, -0.586072564125061, -1.5116208791732788, -0.6140320897102356, -0.11144263297319412, 7.642000675201416, 0.4509790539741516, 0.1212245523929596, -0.19241082668304443, 21.071063995361328, 1.5032618045806885, 1.8038843870162964, -2.0993893146514893, -1.243062973022461, 2.0169198513031006, 0.3851017951965332, -4.852341175079346, -0.4893999397754669, -0.7878388166427612, 3.8268401622772217, -0.5567017197608948, 4.43623161315918, -0.22199609875679016, 1.84885573387146, -0.023858577013015747, 1.3533341884613037, 0.9307501912117004, -0.24320542812347412, -2.0082435607910156, 0.45515891909599304, 0.46153637766838074, 5.525587558746338, 1.2796036005020142, 0.5670841932296753, 3.3700010776519775, -0.9754673838615417, -0.9740908145904541, -0.8257206678390503, -0.9913725256919861, -0.5278801321983337, -2.9813718795776367, -1.4680678844451904, 0.7458154559135437, 4.908349990844727, -0.2200295776128769, 4.003430366516113, -1.6012217998504639, 0.011173599399626255, -1.7447514533996582, -0.7791717052459717, 4.309963703155518, -0.9282511472702026, 0.8026266098022461, 0.4251592755317688, 1.599435806274414, 6.634955406188965, -0.3566177785396576, -0.4202350378036499, 3.8350532054901123, 0.7259422540664673, 0.28207623958587646, 1.1957252025604248, -0.5145180821418762, -3.4677557945251465, -3.5237884521484375, 0.9116233587265015, 2.1333277225494385, 2.1790759563446045, -0.2652827501296997, -0.14880050718784332, 2.133427381515503, -1.5650498867034912, 1.872046947479248, -0.9515523314476013, -2.322314500808716, -0.02493339590728283, 1.210904836654663, -0.34381526708602905, -0.4562966227531433, -2.2030692100524902, 3.413266897201538, -1.381769061088562, 4.861989498138428, -1.0901519060134888, 2.824069023132324, -4.425099849700928, -0.677317202091217, -3.309206008911133, -0.10747279971837997, -6.443112850189209, 0.27343717217445374, -0.4699150323867798, 0.4800947606563568, -4.0846123695373535, -0.0717231035232544, 3.3634085655212402, 0.9344494342803955, 0.5155397057533264, 7.11729621887207, -0.12851324677467346, -2.4966814517974854, -0.627386212348938, -0.9530792832374573, -4.846131324768066, 0.21896444261074066, 0.8334602117538452, -2.3173987865448, -0.4398399889469147, 0.6270379424095154, 1.71453058719635, -1.782222032546997, 1.5609948635101318, -2.309671401977539, -1.3946934938430786, -4.0883612632751465, -3.2081820964813232, -1.599281668663025, 0.2694603502750397, -2.83132004737854, -5.502102851867676, 2.8885838985443115, 1.129068374633789, 0.4680076837539673, 1.9601927995681763, -1.1692607402801514, 1.9492672681808472, 5.607529163360596, -0.1941276341676712, -1.8366820812225342, -0.2792028486728668, 0.8147878050804138, 5.274692058563232, 1.6288222074508667, -2.5134177207946777, -0.11786634474992752, -1.4422049522399902, 4.442984580993652, -2.8079428672790527, 2.637619972229004, -0.169479101896286, 1.5733674764633179, -0.7773274779319763, 1.9696840047836304, 0.44726336002349854, -0.2276788353919983, -0.645512580871582, -0.7285647988319397, -4.5274529457092285, 0.4940207600593567, -2.615410566329956, -1.7892200946807861, 5.442099094390869, 2.080117702484131, 0.999963104724884, 0.29730263352394104, 5.420654773712158, 3.9854955673217773, 0.795624315738678, 2.748347043991089, 3.5929291248321533, 0.07545027136802673, 1.0343868732452393, -0.06437308341264725, 0.8319721817970276, 2.138941526412964, 4.37652063369751, -1.5970475673675537, -1.6261307001113892, 1.1597528457641602, 1.5813112258911133, -0.22497376799583435, 0.5661169290542603, 1.07023024559021, -2.975011110305786, -1.0937947034835815, 1.8811559677124023, -0.28727737069129944, -1.9946308135986328, -6.541542053222656, -4.8016438484191895, -2.3714325428009033, 0.5005751252174377, -6.453104019165039, -1.5722925662994385, -0.9222633242607117, -2.4343621730804443, -2.579709053039551, -2.3312675952911377, 4.079899787902832, -1.5603913068771362, 1.7473262548446655, -3.448399305343628, 1.6088606119155884, 0.3857283294200897, 0.6430184841156006, -1.4276927709579468, -1.0655964612960815, 0.6710380911827087, 0.8461263179779053, -2.2910306453704834, -2.451457977294922, -0.9727330207824707, 2.495901346206665, 0.9943453073501587, -2.8677425384521484, 4.697052955627441, 2.190770149230957, -2.4220354557037354, -3.6859934329986572, -1.9182627201080322, -1.1473058462142944, 1.3280019760131836, 0.3112848401069641, 5.485693454742432, -2.0135600566864014, -1.2855294942855835, 1.3900047540664673, -0.02158658392727375, -2.291707992553711, 3.4863839149475098, -0.19146251678466797, 10.69663143157959, -3.1216323375701904, -1.5243544578552246, -1.421055555343628, -0.18313555419445038, -0.9210163950920105, 1.3196455240249634, 0.8952168822288513, 3.836049795150757, -0.5363476872444153, -0.25727611780166626, -1.1615393161773682, 0.15216509997844696, 4.051441669464111, -0.740007221698761, 2.900409460067749, -5.591189861297607, 0.7212090492248535, 2.1215176582336426, 1.4205045700073242, -0.6685526371002197, 1.229238748550415, 2.691427707672119, -2.84576416015625, -4.26390266418457, -5.9924211502075195, -1.1901206970214844, -3.5774338245391846, -1.1964163780212402, 2.817512273788452, 5.383439540863037, -0.9211682081222534, -1.1755375862121582, -2.61472225189209, 0.760345458984375, -1.8889713287353516, 0.6402860283851624, 3.2854371070861816, 1.2913384437561035, -0.16309523582458496, -1.308171272277832, 3.651299238204956, -2.3018176555633545, -1.8206337690353394, 0.2508170008659363, 3.4784491062164307, -2.210127353668213, 0.2034239023923874, -0.026936247944831848, -2.4179370403289795, -0.9057367444038391, -0.48992490768432617, 0.339182585477829, 1.3100297451019287, -0.49095380306243896, 0.3554016947746277, 0.012689662165939808, -0.9228641986846924, -1.1055577993392944, 1.7253841161727905, -1.9020543098449707, -2.7231643199920654, 1.5355304479599, 0.4208931028842926, -47.94917678833008, 2.2758970260620117, 0.5425872802734375, 0.08647520840167999, -1.196031093597412, 3.3822433948516846, 2.073112726211548, -1.777017593383789, -1.8739291429519653, -1.4420713186264038, -0.8907257318496704, 0.38613662123680115, 0.7950214743614197, 0.6459926962852478, -2.8946094512939453, -0.9405856728553772, -1.6619951725006104, -3.869810104370117, -1.2950949668884277, -2.1558096408843994, 16.960773468017578, -0.5346786975860596, 6.0282182693481445, -2.0785257816314697, 0.23718883097171783, -0.10109566152095795, 1.1620564460754395, 4.878910541534424, -1.114965796470642, 0.8008508086204529, -3.29475474357605, -1.2214707136154175, -0.4000038206577301, 1.6649762392044067, 1.7303556203842163, -0.5084918737411499, -2.777775764465332, -0.5858999490737915, 3.9870998859405518, 0.04136313498020172, 1.2454493045806885, 1.1063238382339478, -2.1009833812713623, 3.2622692584991455, 1.3204503059387207, -0.5100972056388855, -0.5514227151870728, 5.7112908363342285, 3.475750207901001, -0.4239194095134735, -0.8715715408325195, 0.7141940593719482, -1.7156587839126587, -3.070723056793213, -3.859854221343994, -1.6142176389694214, 1.7064692974090576, -4.00234842300415, 2.4112045764923096, -1.7703616619110107, 6.3244452476501465, 3.0624115467071533, 1.3596973419189453, -2.3265788555145264, 1.4647308588027954, -0.7012314200401306, 0.060855504125356674, -0.7486353516578674, -2.398806095123291, -3.9166178703308105, -2.99514102935791, -0.8130248785018921, 3.20294451713562, 0.8007281422615051, -2.2670371532440186, 0.19000814855098724, 1.8593111038208008, -2.4362142086029053, 0.9586912393569946, 0.5638073086738586, -2.2727787494659424, 1.066855788230896, 0.34782806038856506, -1.9192699193954468, -0.5526271462440491, -0.7468541264533997, -4.9936065673828125, 0.2896960377693176, -1.2682619094848633, 1.3448801040649414, -14.935933113098145, 2.091536521911621, 0.42403995990753174, 0.7617686986923218, 4.33075475692749, 1.177872657775879, -2.060927152633667, 1.174005389213562, 3.831554412841797, -5.05237340927124, 4.65301513671875, -3.157837390899658, 3.0137457847595215, -1.2625292539596558, -0.44124335050582886, 2.6451001167297363, -5.146962642669678, 0.361351877450943, -3.7406833171844482, 8.056259155273438, -3.3710787296295166, -1.7694934606552124, 12.210850715637207, 1.603491187095642, 1.1856635808944702, 0.9308929443359375, 0.311943382024765, -1.512612223625183, -0.5001216530799866, 2.7577462196350098, 1.5619693994522095, 3.1105077266693115, -0.7947214245796204, -1.1422754526138306, 0.8904363512992859, -5.574154853820801, 0.8976044058799744, 1.6468251943588257, 1.1031570434570312, 1.4563347101211548, -2.577176570892334, -4.697332859039307, 0.5425000786781311, -0.6081227660179138, 1.136169195175171, -0.5991637110710144, -2.031235933303833, -5.210782527923584, -0.5021833777427673, -1.026940941810608, -1.2323848009109497, -3.5266826152801514, 0.7604857087135315, -0.41656336188316345, -1.3213229179382324, 2.967541456222534, 0.7622659206390381, 0.418557733297348, -0.9147970080375671, -2.0581178665161133, -1.7568674087524414, -1.9853094816207886, -2.3261778354644775, -5.319035053253174, 0.22198930382728577, 0.6916632652282715, -1.082573652267456, 3.624141216278076, -1.2249785661697388, -5.971251010894775, -1.1046686172485352, -0.03965063765645027, -0.47663116455078125, 0.9156675934791565, -2.937769651412964, -2.7075729370117188, -2.284090518951416, 5.75726842880249, 3.6792500019073486, -2.9135851860046387, -3.128726005554199, -2.778559923171997, 2.1303045749664307, 2.228954315185547, 1.2918338775634766, -2.036242723464966, 0.7508610486984253, -3.4114739894866943, 0.41279336810112, -1.430036187171936, -0.7748595476150513, 3.034074544906616, -0.9097065925598145, -3.454167127609253, -3.469702959060669, -0.7175101637840271, 1.7978403568267822, -0.3935060501098633, 1.5387849807739258, -0.7779752016067505, 2.597512722015381, 0.2728089392185211, 0.06069285050034523, 0.11364465206861496, -1.562940001487732, -3.463987112045288, -5.387668132781982, -1.6643192768096924, 2.6223416328430176, 0.7559563517570496, 0.9539938569068909, -2.885240077972412, 1.245108723640442, -0.10152649879455566, 1.8024811744689941, -2.208024740219116, 0.18768593668937683, 1.1829180717468262, -1.8578404188156128, -5.3518967628479, -0.3187716007232666, 2.232409954071045, 1.8857256174087524, -1.440346360206604, -1.2595562934875488, 1.6197271347045898, -0.883864164352417, -2.622335433959961, -3.7213635444641113, -6.375760555267334, -1.2876912355422974, -1.0656059980392456, 2.976824998855591, 0.30031806230545044, 3.7405385971069336, -1.078010082244873, 0.3788703978061676, -3.9470717906951904, -3.280493974685669, 0.9495447874069214, -0.518649160861969, 2.946784257888794, 0.663471519947052, -3.6008291244506836, 4.22830057144165, 0.5491257309913635, 1.4726603031158447, -4.139034271240234, -0.8080691695213318, 3.32370662689209, -1.02021324634552, -1.8291391134262085, -1.499249815940857, 0.15406468510627747, 0.9977308511734009, 1.3145722150802612, 0.9125168323516846, -0.7526707649230957, 2.3936665058135986, 0.38363274931907654, -0.8482917547225952, 1.5806635618209839, -9.764459609985352, -2.586977481842041, -0.9580565690994263, 5.275057792663574, 0.9834218621253967, -1.2183828353881836, -5.06692361831665, 0.7290537357330322, -5.997018814086914, -3.1721131801605225, -1.6486629247665405, -1.0993107557296753, 0.8382605314254761, 1.8645702600479126, 0.09276244789361954, -2.487485647201538, -0.2765914499759674, -0.6796908974647522, 3.697997570037842, -0.7842724919319153, 3.001756191253662, 0.24727986752986908, -0.21742185950279236, -0.016936928033828735, -1.0784432888031006, -0.2787758409976959, -0.0577642098069191, 0.7524876594543457, 0.7047663331031799, -1.3209786415100098, -1.6666383743286133, 0.189998060464859, -1.4844449758529663, 0.06350404769182205, -2.0206193923950195, -1.9188183546066284, 0.9089939594268799, -0.016734648495912552, -1.818651795387268, 1.4112663269042969, -1.8276515007019043, -2.0159783363342285, 2.026601791381836, 1.2896848917007446, -1.1670780181884766, -0.646283745765686, -0.14793667197227478, -1.3140125274658203, -0.7246310114860535, -0.8178766369819641, 0.719001829624176, -0.6883168816566467, 1.4300999641418457, -0.4730363190174103, -6.0370330810546875, -3.1983072757720947, -6.274282455444336, -0.3655867874622345, 2.047595262527466, -3.650836706161499, -0.21589936316013336, 0.9118527770042419, -2.937119960784912, 2.4723317623138428, -2.8387451171875, 2.1047706604003906, -1.471744179725647, -4.368082523345947, 4.351511478424072, -3.783627510070801, 1.2001818418502808, 3.017854928970337, 1.7899950742721558, -3.4105308055877686, -2.802295684814453, -0.24552513659000397, -4.011971473693848, 0.8545688986778259, 5.306204795837402, -0.02184128388762474, -1.5393552780151367, -0.7930421829223633, -0.7406444549560547, -2.1778671741485596, 0.5374958515167236, -0.010803733952343464, 1.300538420677185, 18.741979598999023, -2.1083357334136963, 2.038708448410034, -0.9346871376037598, 0.785588264465332, -0.16061370074748993, 0.059578560292720795, -0.829788327217102, 0.9082427620887756, -0.12948200106620789, -2.1133241653442383, -0.4642293155193329, 3.4981689453125, 0.16845205426216125, 1.2399325370788574, 2.3049123287200928, 0.7513978481292725, 4.630558013916016, 3.906752109527588, 0.851415753364563, 1.5644503831863403, 1.2391663789749146, -2.1924686431884766, 2.443631172180176, -38.26283645629883, -1.805789589881897, 1.4885972738265991, 0.4568152129650116, -0.7388340830802917, 0.7592689394950867, -0.7402184009552002, -3.255854368209839, 2.019541025161743, -1.8391741514205933, 1.198060154914856, -2.0095255374908447, 1.3463784456253052, -1.7039400339126587, -0.2516748905181885, 3.547278881072998, 0.9597170948982239, 0.571641743183136, -0.4003378748893738, 3.207223892211914, -1.1857306957244873, 0.9310641884803772, -0.22264905273914337, 3.406057834625244, -2.4501793384552, -0.10250242054462433, -0.773469865322113, -2.6990468502044678, -0.14249621331691742, 12.353681564331055, -2.10931134223938, 0.7614176869392395, 0.8044898509979248, 2.9505746364593506, -2.190575122833252, -3.344738245010376, 5.165570259094238, -2.3866641521453857, -0.4823800325393677, 1.7822115421295166, 1.576828956604004, -1.2968422174453735, -3.674140453338623, 0.27281028032302856, -0.2678960859775543, 0.3248986005783081, -1.1050224304199219, -2.145352840423584, 0.21086981892585754, -0.02607095055282116, -3.668579578399658, 0.2779585123062134, 0.7218979597091675, 1.2285444736480713, 1.0935649871826172, 0.9401391744613647, 0.18501336872577667, -1.2160602807998657, 0.11124464124441147, -1.0096548795700073, -2.296104907989502, -2.905639171600342, 2.5937137603759766, -0.5948503017425537, -0.7002457976341248, 0.687208354473114, 2.1480913162231445, -0.20954425632953644, -1.8230632543563843, 1.04087495803833, -0.3760559558868408, 2.968255043029785, 3.177868604660034, -0.45523694157600403, -0.6228956580162048, 1.4342411756515503, -2.3201112747192383, -0.8600132465362549, 0.2617144286632538, -0.9703783392906189, -3.681002378463745, -1.6524181365966797, -0.1732955276966095, 1.6296488046646118, -0.06547295302152634, 1.966793179512024, 0.21294668316841125, -0.27585795521736145, 3.15038800239563, 16.21910858154297, 3.505959987640381, -0.1081136018037796, 1.6435511112213135, -2.903721809387207, -0.4923143982887268, -1.3884896039962769, -1.6123236417770386, -3.8651256561279297, -1.908288598060608, -1.2878378629684448, 0.9771690964698792, -0.34702783823013306, -2.6074061393737793, 5.759448528289795, -0.80988609790802, 3.1722631454467773, -2.964000940322876, -1.1360127925872803, 1.4661234617233276, 1.3794126510620117, 1.540177345275879, 2.4249064922332764, -3.1308207511901855, -0.5217757225036621, 1.275557041168213, -1.9134557247161865, 2.1131880283355713, -1.333147644996643, -0.8931617736816406, 6.500545501708984, 1.1947271823883057, 1.2561116218566895, -0.6649528741836548, 15.149736404418945, -0.15514205396175385, 0.5754452347755432, 4.361852169036865, 2.2688393592834473, 0.4216674566268921, 2.2390401363372803, 1.3058366775512695, -3.4919886589050293, 1.0267173051834106, -0.5483239889144897, 1.0407739877700806, 1.269126534461975, 1.9651459455490112, -4.440591812133789, -0.11584468930959702, -2.82450795173645, 4.236687183380127, 2.090271472930908, -1.0980623960494995, 2.0269696712493896, -1.377066969871521, 2.240929126739502, 2.3207428455352783, -0.14241459965705872, -2.286332368850708, -0.2861610949039459, -1.337300181388855, 4.620620250701904, -0.046878550201654434, -0.8343609571456909, 2.9505972862243652, 0.1128021702170372, 7.86586856842041, -1.0322095155715942, 0.743182361125946, 3.6995632648468018, -0.12542341649532318, 2.2103147506713867, -1.8526989221572876, -0.33524227142333984, 0.0914614126086235, 2.669795036315918, -0.5609513521194458, -0.262630820274353, 0.49231404066085815, -1.8533015251159668, -3.4846606254577637, -0.46899181604385376, -0.3938167095184326, 3.968263626098633, 2.8911356925964355, 1.6433504819869995, 0.5262138843536377, -1.3894987106323242, -0.2787098288536072, -1.815112829208374, 1.087554693222046, -0.10012705624103546, -1.336847186088562, 0.5609434843063354, 4.1638641357421875, -3.841534376144409, -1.8337801694869995, -1.4660241603851318, -0.3121582567691803, 2.432006597518921, 6.433065891265869, 2.168738842010498, -1.0361931324005127, 0.5349957346916199, 2.5881967544555664, -2.3697221279144287, -14.11780834197998, 0.31799596548080444, -1.8790644407272339, -9.786358833312988, -5.578742504119873, 0.3145379424095154, 3.481780767440796, -2.0413386821746826, -0.17916911840438843, -4.013662338256836, -2.0061280727386475, 2.082977533340454, 4.853799343109131, -2.337801218032837, -4.190268516540527, 0.4471999406814575, -4.635873794555664, -1.1515299081802368, -1.8470242023468018, 2.395451307296753, -0.6803026795387268, 2.166959524154663, -3.421621322631836, 2.1549489498138428, -0.5778543949127197, -1.9567062854766846, -0.25956496596336365, -3.0168063640594482, -2.7845630645751953, -0.8001452088356018, -0.6656069755554199, 3.1142022609710693, 2.4989700317382812, -1.4080640077590942, 1.1882284879684448, -2.223233938217163, 2.0316572189331055, 4.853885173797607, 0.35340970754623413, -1.3658581972122192, 2.3930790424346924, 2.6164586544036865, 3.541386365890503, 2.5689778327941895, 1.0811835527420044, -2.5044596195220947, 1.5198848247528076, -6.7055344581604, -0.4576224386692047, 0.950721263885498, -0.045282743871212006, 2.03173565864563, -2.7036824226379395, -1.0456775426864624, 0.6068803668022156, 2.3680455684661865, -4.486222743988037, 0.6174970865249634, -1.1603286266326904, 0.47534501552581787, 6.257845878601074, -0.5110514760017395, 1.2160372734069824, 2.244946002960205, -1.6433302164077759, 3.141953706741333, 1.0307368040084839, -1.7769443988800049]}\n",
|
|
"----------------------------------------\n",
|
|
"ID: fb216141-4214-47b3-bfea-18f01566ff47\n",
|
|
"Source: {'text': '. Although it is less intensive than training, large-scale inference — such as in public AI services — requires constant optimization to reduce latency and resource consumption. Chunking Techniques and Semantic Retrieval In retrieval-augmented generation (RAG) systems, the way information is segmented directly influences the quality of the generated responses. Length-based chunking alone can split ideas in half, affecting the coherence of the retrieved context. Semantic chunking, on the other hand, attempts to group text fragments that share meaning. This approach uses embeddings to measure similarity and determine where to divide the content. A similarity threshold that is too low may generate excessively large and heterogeneous chunks. Conversely, a threshold that is too high may produce small fragments and lose relevant context. Proper calibration depends', 'metadata': {'title': 'Demo'}, 'vector': [-1.2536227703094482, 0.9908225536346436, 0.3985726535320282, 1.934456706047058, -2.002378463745117, -1.1120796203613281, -1.3334803581237793, -0.9485729336738586, -0.047735635191202164, -2.787208080291748, -0.21348904073238373, -1.5534700155258179, 3.2723512649536133, -1.7284289598464966, 0.533720850944519, 1.718554973602295, 0.7848790884017944, -1.7669211626052856, -3.3279504776000977, -1.160097599029541, -0.0034405498299747705, -0.1844935268163681, -2.402470827102661, 1.3417322635650635, 2.2837302684783936, -4.190154075622559, -1.0950703620910645, 0.6862344145774841, -0.34348779916763306, -3.2822182178497314, 1.4347935914993286, 4.872992992401123, 2.482126235961914, 0.5189890265464783, 1.4527738094329834, 1.9639313220977783, -1.2253754138946533, -1.984421730041504, 2.771735191345215, -0.7041175365447998, -0.560418426990509, 3.5921406745910645, 1.4627703428268433, -0.7396613955497742, 1.2799575328826904, -2.035890579223633, 1.693161129951477, 1.7472730875015259, -2.420389175415039, -1.0925730466842651, 1.6689417362213135, 0.6702237129211426, -1.171648383140564, -1.3798035383224487, -2.1036970615386963, -1.413319706916809, -2.663156509399414, 1.1318634748458862, 1.4482553005218506, -1.0126439332962036, 0.7354617714881897, -0.46444687247276306, 0.5099085569381714, 0.29076871275901794, 1.8012933731079102, -0.07813415676355362, 0.35065343976020813, 0.2919827997684479, 0.6044139266014099, 0.43053898215293884, 0.489008367061615, 4.608965873718262, 0.10740867257118225, -2.921933889389038, -3.5493764877319336, -2.3765907287597656, -1.498292088508606, 0.6436980962753296, 2.0218427181243896, 1.6225476264953613, -1.5825382471084595, 0.8180196285247803, -3.149505853652954, -11.114786148071289, -2.1725730895996094, -1.6763310432434082, 6.290921211242676, 0.7136512398719788, -3.741611957550049, -1.7947832345962524, -0.06720458716154099, 4.738916873931885, 2.123373508453369, -1.637058973312378, -1.8176169395446777, 1.1089894771575928, 1.9689346551895142, 3.5771145820617676, -0.08020714670419693, -1.7471251487731934, -1.2698190212249756, 2.035432815551758, -7.182200908660889, -1.7118778228759766, 1.0281190872192383, 3.594120502471924, 0.5258293151855469, 0.1858750432729721, 5.014840602874756, 0.7688373327255249, -0.6785343885421753, -1.8002078533172607, -1.0128014087677002, -8.931258201599121, -0.7969390749931335, 0.767661988735199, 0.7074133157730103, -0.6288357377052307, -0.7574082016944885, 1.4737114906311035, -0.019727719947695732, 1.3248997926712036, 1.0434904098510742, 1.9970585107803345, 1.5927084684371948, 2.813854932785034, 1.0809195041656494, -0.238126739859581, 0.6671699285507202, 1.2717223167419434, 0.6261706948280334, 1.146865963935852, 0.2494124472141266, -1.0299019813537598, -0.5560792684555054, 0.3575805127620697, -4.013301849365234, -3.169384479522705, 1.15961492061615, -0.7974848747253418, 1.590330958366394, 1.9705466032028198, 2.1728169918060303, -2.4915547370910645, -0.7620872259140015, 0.7037661671638489, 2.9394028186798096, 3.315823793411255, -0.9561545252799988, 0.8339056372642517, -0.7072110176086426, -0.5503127574920654, 2.4811601638793945, -0.20790697634220123, 5.1278300285339355, -3.1468722820281982, 1.7991728782653809, 2.400268793106079, -1.4791170358657837, 0.9731448888778687, -2.1638638973236084, -0.07576486468315125, 0.17118559777736664, -1.6225481033325195, 0.7828452587127686, -2.2649753093719482, -0.6541249752044678, -1.9356813430786133, 2.8030476570129395, 0.19693046808242798, -1.5854531526565552, -1.0032355785369873, 0.3982559144496918, -0.476561039686203, 0.17621885240077972, -0.8007708191871643, 0.039690811187028885, -3.1711537837982178, 3.824033737182617, -1.2829265594482422, -1.578705906867981, 3.998852014541626, -0.34781044721603394, -1.3770387172698975, 0.24321827292442322, 1.384783148765564, 2.4742825031280518, 0.9214342832565308, 5.133890628814697, 0.1924401819705963, -0.4562067985534668, -0.46995413303375244, 1.5649718046188354, -0.5063872337341309, -1.303601622581482, -2.1957430839538574, -3.3059709072113037, 2.0526626110076904, 1.5218541622161865, 1.8001092672348022, 0.8987582921981812, -0.7446222901344299, -2.701414108276367, 1.3788912296295166, -1.092966079711914, -3.680281162261963, 0.2070310264825821, 2.5361526012420654, 1.0606204271316528, -1.6070539951324463, 0.04233657941222191, -0.5972744226455688, 1.2661170959472656, -1.9154396057128906, 1.200993299484253, -0.997582197189331, -0.4018539786338806, -0.9691272974014282, -0.16626808047294617, 3.0025501251220703, 0.07737039774656296, -0.1985892653465271, -13.516169548034668, 1.5112453699111938, -1.0224778652191162, -0.9168373942375183, -3.154217481613159, 0.7644602656364441, 1.4932795763015747, 0.4984365403652191, -2.5672824382781982, -0.25772878527641296, -1.3821114301681519, -2.442244052886963, -0.615331768989563, 0.8512683510780334, 1.7952157258987427, 0.44424310326576233, 0.8582404851913452, 0.5774798393249512, 1.1699496507644653, 5.094895839691162, -2.16965389251709, -0.13733085989952087, -1.8770012855529785, -1.5040366649627686, -2.8455729484558105, 1.846716046333313, -0.4321848452091217, -0.70464026927948, 0.4553872346878052, -4.172836780548096, 1.9289451837539673, 0.6049648523330688, 0.8703726530075073, 4.459205150604248, -3.1679561138153076, 1.9297080039978027, 1.0844231843948364, -1.511706829071045, 2.679597854614258, 0.59810471534729, 2.8220338821411133, 0.02850668877363205, -1.3319380283355713, 1.5261950492858887, -0.8749071359634399, 1.496979832649231, -2.066709041595459, -1.0842410326004028, -0.7936102747917175, 0.9957866668701172, 0.7974252700805664, 1.8497668504714966, -2.1526260375976562, 1.9181257486343384, -0.9417744278907776, -1.7566783428192139, -2.1740357875823975, -0.4177080988883972, 0.04195503517985344, 2.0301496982574463, 3.6166481971740723, 0.16457043588161469, -1.221354603767395, 0.6713116765022278, -17.8823184967041, -2.1336145401000977, -2.754934072494507, 2.1915977001190186, 0.6395036578178406, 0.5818732380867004, 2.514047384262085, 0.791100263595581, -3.384592294692993, -2.048914670944214, -0.33792319893836975, 0.5057026743888855, 0.13582555949687958, -2.3995182514190674, -1.2582570314407349, -2.8570632934570312, 1.4594894647598267, 0.6060923933982849, -0.44426149129867554, -0.9389246106147766, 3.1263301372528076, -2.789156198501587, 0.43061038851737976, 1.5440565347671509, 0.5221607685089111, 1.1595224142074585, 1.9682438373565674, 2.497394561767578, 0.9734979867935181, 0.5958569049835205, 0.8983091115951538, -0.9299007058143616, -1.0420081615447998, -2.651729106903076, -0.9773491024971008, -1.4432615041732788, -0.7461077570915222, -2.8142383098602295, 0.9215145707130432, -0.7433887720108032, 2.2361481189727783, 1.5713670253753662, 0.7899404764175415, 2.2771878242492676, -0.5646343231201172, 2.9619240760803223, -1.4707967042922974, -0.02576335147023201, -1.3326126337051392, 5.340322971343994, -2.125241756439209, -0.43860429525375366, 0.2469416856765747, -2.224386692047119, 1.2407816648483276, 0.2770780920982361, -1.8629006147384644, -0.6128844618797302, 0.03203051537275314, 0.6287350654602051, 1.9093761444091797, -1.4806426763534546, -1.2282090187072754, 0.7580497860908508, -0.809901237487793, 1.5607534646987915, -1.3770463466644287, -1.102766513824463, 3.1947903633117676, -1.55972421169281, -0.9135001301765442, 2.063443899154663, -2.8951539993286133, 0.12059621512889862, 1.5634007453918457, -0.3122602105140686, -0.6398837566375732, 0.24679717421531677, -0.3893059492111206, -1.5509275197982788, -2.6878888607025146, 0.5527533292770386, 0.3463909327983856, 2.4653263092041016, 2.9320051670074463, 0.9413681626319885, -1.740182876586914, 4.788077354431152, -1.0110275745391846, -1.9022647142410278, 0.2785651981830597, -2.669325828552246, -1.913253903388977, -1.7395472526550293, 2.6033239364624023, 2.5217370986938477, -0.1701398491859436, 0.9624574780464172, 1.5064082145690918, 1.4519805908203125, 3.221242904663086, -0.16802798211574554, -0.06309735774993896, 1.4623239040374756, 0.6165415644645691, -2.853999614715576, 0.9174587726593018, 0.33659568428993225, 0.5452326536178589, -2.030831813812256, -2.100813865661621, 2.0640103816986084, -1.0342252254486084, 0.9737414717674255, 0.1880769431591034, -1.4619677066802979, -1.3414406776428223, -7.423943519592285, -0.6597327589988708, 1.466976284980774, 1.8255321979522705, 0.4737520217895508, 2.4472196102142334, 0.128025621175766, 2.6055545806884766, -0.41705483198165894, -0.06673739850521088, 0.15866608917713165, -2.4241139888763428, -0.3555818200111389, -1.4468920230865479, -0.5341870188713074, -3.8554651737213135, 0.1860940158367157, 1.6685588359832764, 2.9846818447113037, -0.12886448204517365, 3.370229959487915, 1.1953271627426147, -1.5983326435089111, -1.4866524934768677, 0.06262955069541931, 1.2972679138183594, -0.3992635905742645, -0.898193895816803, -0.3460267186164856, -0.5358266234397888, 1.3821282386779785, 1.4159846305847168, -1.002224087715149, -2.120211124420166, 3.3576815128326416, 0.6161061525344849, -0.6077464818954468, -0.5688532590866089, -8.499536514282227, 5.1518683433532715, -1.7638189792633057, -2.8669772148132324, 0.019917331635951996, -2.5148398876190186, 1.8106930255889893, -2.7763407230377197, -0.23400753736495972, 1.0421401262283325, 1.8199745416641235, 3.087186813354492, -1.018723964691162, -1.856935977935791, -0.12341924011707306, 0.7525485754013062, 0.49868103861808777, -2.7954046726226807, -1.9255053997039795, 0.27970045804977417, -1.5580062866210938, -1.7612967491149902, 2.457219362258911, 1.2313601970672607, 1.053862452507019, -7.342972278594971, -2.29754900932312, 0.5825048089027405, 3.187152862548828, 3.825270652770996, -1.199329137802124, -6.098517417907715, 4.326211452484131, 2.063429355621338, -1.1385140419006348, 2.0580687522888184, -3.394624948501587, 0.8273333311080933, -0.7685925960540771, -0.06600692123174667, 0.6082656979560852, 0.988029956817627, -1.0108683109283447, -3.7205779552459717, 1.8701239824295044, -0.8268173336982727, 0.7407904267311096, -2.737144947052002, 0.6265209913253784, -9.337188720703125, 1.7246986627578735, 0.4729677140712738, 1.0539734363555908, -0.5961453914642334, 0.7322092056274414, -1.033587098121643, 0.8863224983215332, 1.6442818641662598, 2.779695987701416, 0.14936083555221558, 0.32705798745155334, 0.9038507342338562, 124.55045318603516, 0.4241047501564026, -2.0533039569854736, 0.6599234342575073, -0.794038712978363, 4.433802127838135, 0.8143507242202759, 4.295149803161621, -1.9503302574157715, 3.793921709060669, -0.3321468234062195, 1.450654149055481, 5.890581130981445, -2.703958749771118, -0.08124154061079025, 12.062566757202148, 1.8023320436477661, -1.640687346458435, 2.904803991317749, 1.7974426746368408, 3.5584404468536377, 0.6492609977722168, -3.490936279296875, 10.430537223815918, -2.503199577331543, -2.4529178142547607, 0.9449754357337952, 4.193757057189941, -2.854048728942871, -0.8055967092514038, -0.5861522555351257, 1.4566068649291992, -1.202704906463623, -1.4960575103759766, 5.555145263671875, -1.337003469467163, -0.8862385153770447, -0.1984843909740448, -2.095379114151001, 1.8165202140808105, -2.248138189315796, -12.292661666870117, -0.14155441522598267, -1.867597222328186, 1.7918177843093872, -0.568024218082428, -2.110178232192993, 1.6766674518585205, 5.979224681854248, 0.8018739223480225, 62.888153076171875, -0.8604472875595093, 1.276611089706421, -1.3011075258255005, 1.0032758712768555, 0.3059726655483246, 0.6530159711837769, 0.6639076471328735, 2.009082794189453, 1.3583531379699707, -1.1880289316177368, 0.5512771010398865, 3.2379374504089355, -0.33938971161842346, 2.3776872158050537, 0.24631153047084808, 0.8638453483581543, -2.060924768447876, -1.5363867282867432, -1.7529786825180054, 0.20102357864379883, 0.8893730640411377, -2.6247379779815674, -0.2794889807701111, 0.3576289415359497, -1.1552881002426147, -3.4657609462738037, -0.7072685360908508, -4.152283191680908, 9.830042839050293, -0.19608575105667114, -1.2293925285339355, -4.489179611206055, 0.4809698164463043, -0.24760110676288605, 2.0130460262298584, -9.499829292297363, 3.438711166381836, 0.4160923957824707, -39.81401062011719, -2.7745561599731445, 5.216561317443848, -0.4491008520126343, 1.9736557006835938, -0.18946591019630432, -1.2679511308670044, -2.239680528640747, -1.8545016050338745, 0.5766242146492004, -0.49237456917762756, -1.395803451538086, -1.3332483768463135, -0.7841417193412781, -0.034853748977184296, -4.472864151000977, 0.06952507793903351, 0.059880517423152924, 3.909912586212158, -11.297473907470703, -0.8509513139724731, -1.1984994411468506, -2.185516357421875, 1.9896913766860962, -1.395142674446106, -0.3639981150627136, 2.2256853580474854, -0.5606219172477722, -2.4772262573242188, -3.6469929218292236, -5.52748441696167, 1.7968292236328125, -0.759181022644043, 2.287841320037842, -2.5182933807373047, 1.3343217372894287, -0.4831884801387787, 0.8740657567977905, 0.7232943773269653, -2.380009174346924, -0.34491613507270813, 14.072957038879395, -0.5194818377494812, -1.6698092222213745, 0.3505575358867645, -1.0023020505905151, 0.7868210673332214, 3.050328254699707, 1.47080659866333, -0.4164831340312958, -2.6293752193450928, -1.3918137550354004, 1.102002739906311, 2.171708583831787, -1.3274545669555664, 1.455336332321167, -2.613537311553955, -0.9782761931419373, 3.363739490509033, -0.3563351333141327, -2.414189100265503, 6.446964740753174, 0.8995664119720459, -0.6164615154266357, -1.6151126623153687, -1.708911657333374, 2.886481761932373, -1.8166042566299438, -1.3280271291732788, 4.799813747406006, 2.292858123779297, 3.283888101577759, -5.2799882888793945, 1.5748080015182495, -0.6014673709869385, 1.8702502250671387, -3.8220043182373047, 1.3557766675949097, -0.7827754020690918, 2.7458300590515137, 0.40570923686027527, -1.3989017009735107, 2.01693058013916, 2.4535512924194336, 1.2408936023712158, 0.8235345482826233, 0.0630991980433464, 3.7596497535705566, -2.0526068210601807, -1.4120043516159058, 2.936933755874634, -2.1080162525177, -2.8689050674438477, 2.254634141921997, -2.55489444732666, -0.6409737467765808, 3.3793532848358154, -2.9069039821624756, -1.4930773973464966, 2.225771903991699, 0.8800248503684998, -0.6765348315238953, 3.065436363220215, 1.8465614318847656, -0.6565266251564026, -0.38669493794441223, -3.5005500316619873, 0.5375590920448303, 0.6735331416130066, -0.8222501277923584, -5.586276054382324, 5.057460784912109, -0.3493209183216095, -0.7118379473686218, -1.386950969696045, -1.0755975246429443, -1.2166531085968018, -1.2296725511550903, 0.6330340504646301, -0.515282154083252, 2.4627861976623535, -7.428020477294922, 0.8947130441665649, -0.3397870659828186, -1.018663763999939, -2.936065435409546, -1.0781035423278809, 1.0639400482177734, 4.077480316162109, -0.14087608456611633, 9.998185157775879, 0.2996574640274048, -3.5158910751342773, -0.12453266233205795, 1.3451058864593506, -1.1096621751785278, 0.22237062454223633, -0.4461158215999603, -0.471244752407074, -0.29420939087867737, -1.297804832458496, -1.2091857194900513, -3.3665895462036133, 4.960570812225342, 0.6365686058998108, -2.192850351333618, 2.3728833198547363, -0.9142213463783264, 3.2893199920654297, 0.46010950207710266, -0.28558871150016785, 2.1032485961914062, 2.4050912857055664, -0.9637144804000854, 0.21089796721935272, 0.5060275793075562, -0.5739831924438477, 0.6826255917549133, 7.020822048187256, 0.1594146192073822, 3.3834218978881836, -3.6801435947418213, -2.591386556625366, 0.4742796719074249, 0.5486672520637512, 0.9765534996986389, 2.7174081802368164, -2.125178098678589, -0.050797633826732635, -0.9658917784690857, 1.5946767330169678, -0.8110538721084595, -1.8818747997283936, 2.309941053390503, -0.109049491584301, 0.8755588531494141, -0.8236506581306458, 1.3483706712722778, 1.5190343856811523, -1.737194538116455, -1.5201517343521118, 3.935455560684204, -1.1791894435882568, -0.8245776295661926, -0.3825128674507141, 0.07034236192703247, -0.6562559604644775, 4.900087833404541, 3.96516752243042, -0.7231828570365906, 0.7788060307502747, 0.8521023988723755, 0.892669141292572, 0.5645675659179688, 2.1737864017486572, -1.5022016763687134, 2.181281089782715, -1.559056043624878, 0.12344267219305038, 1.7518372535705566, 0.7883371114730835, 2.608950138092041, 0.5066348314285278, -0.8225946426391602, 1.0944522619247437, -0.44580018520355225, 2.384626626968384, 0.8192484974861145, 2.9783434867858887, 3.157416820526123, -9.878174781799316, -1.5664490461349487, 2.0830037593841553, -1.3919477462768555, -1.7833595275878906, 1.9654171466827393, -0.5129684209823608, -0.7351441979408264, 0.4248723089694977, -1.5181318521499634, 0.2678263783454895, 0.7818030118942261, 0.8959515690803528, -3.037118673324585, -1.3442646265029907, -0.304115891456604, 3.0203211307525635, 1.7723623514175415, -1.097761631011963, -0.5752233266830444, -3.695328712463379, -2.059079170227051, 0.13804751634597778, 1.2118444442749023, -1.1381784677505493, 0.7866344451904297, -2.0638253688812256, -4.131518840789795, -1.8011471033096313, 3.036113977432251, 0.9090792536735535, 0.6872811317443848, -2.6066741943359375, 1.8746654987335205, 0.7884373664855957, 1.4941871166229248, 0.28440535068511963, -0.800947904586792, 0.6340638399124146, -0.9359260201454163, -3.17895245552063, -1.8813486099243164, 0.4960440397262573, 5.040367126464844, 2.054645299911499, -2.0485053062438965, 0.18034759163856506, -1.2110246419906616, -0.540878415107727, -1.5726606845855713, 0.5163235068321228, -1.4016387462615967, -0.655080258846283, 2.6106722354888916, 0.6346259117126465, 4.101621150970459, -4.843019008636475, 1.354749321937561, -0.8639042377471924, -1.3895219564437866, -1.6453007459640503, 0.3992430865764618, 0.022788001224398613, -0.17395441234111786, 0.7850304841995239, -1.791855812072754, -0.9425378441810608, 0.6629392504692078, -3.4062416553497314, 1.5777589082717896, -5.86320161819458, -0.15123268961906433, 3.980651617050171, -1.3613896369934082, -0.31855064630508423, 1.0744222402572632, -3.0570473670959473, 1.8980207443237305, 0.1422336995601654, 0.8005914688110352, 1.2639825344085693, -0.3646232783794403, -1.4676995277404785, -1.5869184732437134, 0.6999296545982361, -0.5029417872428894, 0.7591410279273987, -1.9054244756698608, -0.8814594745635986, -0.4329289197921753, 2.346417188644409, -1.1290181875228882, -0.4662192165851593, 4.329484939575195, 0.9622582793235779, 1.1352810859680176, 0.9630880951881409, -0.9068596363067627, -0.3616734743118286, -0.21923550963401794, -5.041180610656738, 2.055943489074707, -0.11848617345094681, -1.5906764268875122, 2.5750575065612793, 0.8637717366218567, -0.9327871203422546, -63.5045166015625, -1.375105857849121, -0.4251265525817871, 1.1787867546081543, 1.5099388360977173, 3.562037944793701, 0.9647165536880493, -0.3207240104675293, -0.30376291275024414, 1.1299762725830078, 1.6503773927688599, -0.17389044165611267, -1.2278550863265991, 3.2449164390563965, -3.9878337383270264, 5.0060224533081055, 0.23772381246089935, -3.554652690887451, 0.1920715570449829, 0.6899154186248779, 20.500030517578125, -1.855744481086731, 0.6125039458274841, -2.4248838424682617, 1.6860814094543457, -2.937241792678833, 0.8282260894775391, -0.8702384829521179, 1.3668596744537354, 2.486147403717041, 1.0925819873809814, 0.21922068297863007, -1.8058698177337646, 2.907954454421997, 1.3938435316085815, -4.154227256774902, -3.3817873001098633, -1.314618706703186, -1.0006049871444702, -0.4886966347694397, 0.5967004895210266, -0.8196667432785034, -3.2533233165740967, 0.7442321181297302, 1.1034138202667236, 2.860666513442993, 0.6377688050270081, -1.4878233671188354, -1.4597342014312744, -0.2477491796016693, 0.0682598203420639, 1.1276466846466064, 3.450612783432007, -3.90010142326355, -0.8070883750915527, -4.510364532470703, -1.6050877571105957, -1.3120014667510986, 0.5746657252311707, 1.9027082920074463, 0.5470317602157593, -1.4027459621429443, -0.4196566641330719, -1.0898091793060303, 0.03464590385556221, 0.012686098925769329, 0.8290460705757141, -2.021718740463257, -1.0624628067016602, 0.9350078105926514, 0.04405480995774269, -1.877500295639038, 4.126745223999023, -2.885183334350586, -3.32419490814209, -2.034552812576294, -1.7190946340560913, -1.2598148584365845, 1.146448016166687, -3.6247453689575195, 2.198307991027832, 0.7087321877479553, -0.0022678449749946594, 0.9662883281707764, 0.07818883657455444, 1.4238427877426147, -0.848190188407898, -0.5440113544464111, -0.5671358108520508, 1.5329383611679077, -11.804097175598145, 1.5234713554382324, 0.49482011795043945, -1.355194330215454, 0.33569860458374023, 1.9383041858673096, 1.3679862022399902, -2.3372085094451904, 0.8560494184494019, -3.1769580841064453, -0.932148277759552, 0.24830256402492523, 0.049174316227436066, -0.9226549863815308, -0.3594209551811218, -2.0242722034454346, 1.0446386337280273, -0.8750320672988892, 0.4990300238132477, 4.591843128204346, 2.418004035949707, -3.0470452308654785, 11.824332237243652, -2.74521803855896, 1.9870966672897339, 4.952671051025391, 1.1280312538146973, -0.19743406772613525, 1.0257452726364136, 0.1992446780204773, -4.398565292358398, 1.3252921104431152, 0.905570924282074, -1.5589169263839722, -0.4814721941947937, -3.1675589084625244, -1.1480292081832886, 1.7543174028396606, -0.44819754362106323, 0.4889586567878723, -1.3874667882919312, -0.2899971008300781, -1.3316584825515747, 0.17010042071342468, -1.6305493116378784, -0.4102468192577362, 3.778623580932617, 0.08847474306821823, -2.117527961730957, 1.8180286884307861, -1.4858548641204834, -2.8291015625, -1.9130382537841797, 2.650965452194214, -1.57546067237854, 1.1087408065795898, 0.34166720509529114, 4.701377868652344, -0.2478494495153427, -0.5455737113952637, -0.5220772624015808, -2.987393856048584, -1.1038551330566406, -1.7676163911819458, 2.23760724067688, 1.9464689493179321, -0.88880854845047, 1.5289868116378784, -1.3125581741333008, -2.046119451522827, -1.0443363189697266, -1.6710902452468872, -0.1424919068813324, -1.1938326358795166, -4.6337890625, 0.44931384921073914, -0.27594277262687683, 10.88106632232666, 0.7339946627616882, 0.10916032642126083, 0.08211550861597061, -4.72139310836792, 2.923617124557495, 4.9167704582214355, 2.501596450805664, -1.62696373462677, -0.7343237400054932, -0.25890210270881653, -0.2522915303707123, -0.2401634156703949, -0.6755543947219849, 1.369867205619812, -2.4214882850646973, -0.41376185417175293, -4.6020121574401855, -3.004852771759033, -0.6980985403060913, -4.245835781097412, 0.6473487615585327, -0.5479757785797119, -4.52885627746582, 1.8743938207626343, 3.1154119968414307, 0.9706330299377441, 2.352797508239746, 0.31240853667259216, -12.761068344116211, -1.1078038215637207, 1.5449827909469604, -1.573398232460022, -1.3443050384521484, 1.645782232284546, -1.8588570356369019, -1.4350223541259766, 0.447750985622406, 0.3455526530742645, 3.163691759109497, -0.02029525861144066, 1.8243036270141602, -1.2780201435089111, 0.12306208163499832, 1.3007234334945679, 2.839489698410034, 0.4567328095436096, -2.737069606781006, 0.876227617263794, 0.6585498452186584, -1.9231529235839844, 2.558866262435913, -1.143166184425354, -2.1403748989105225, -1.529198169708252, 3.720050096511841, 0.5172967314720154, 0.8406870365142822, -2.5484399795532227, -3.1737611293792725, -1.2969179153442383, -0.75579434633255, 1.6343390941619873, 0.34731388092041016, -1.7891042232513428, 1.6967064142227173, 1.9098213911056519, 0.25667622685432434, -0.3127327859401703, -0.043895334005355835, -1.078693151473999, 0.2203311175107956, -1.191078782081604, -0.8415157794952393, 1.0891278982162476, -1.1856845617294312, -1.903098702430725, -1.9099453687667847, -3.6626248359680176, -1.8828758001327515, -0.7978078722953796, 1.9904812574386597, -0.2778354287147522, -2.144326686859131, -3.6760764122009277, -3.501807928085327, 0.9940384030342102, 1.681613802909851, -2.896449089050293, -0.5527703166007996, -3.5775632858276367, -0.689586341381073, 1.1375243663787842, -4.102194309234619, 2.122002363204956, 2.6205062866210938, -2.023618698120117, -4.853676795959473, -1.0660349130630493, -1.362640619277954, 0.9488577246665955, 0.5533709526062012, -3.061201810836792, 0.6778210997581482, -2.3829052448272705, -0.7122476100921631, 4.348479270935059, 0.15703009068965912, 0.23807542026042938, -0.930468738079071, -0.6253088116645813, 0.39172449707984924, -1.8566129207611084, -1.2943024635314941, 0.22670984268188477, 0.16474267840385437, 1.7739514112472534, 1.2628101110458374, 2.1761574745178223, -2.821833848953247, 0.3241187036037445, 0.26738637685775757, 3.077061891555786, -1.4552311897277832, 1.8724254369735718, -0.695262610912323, -1.4196357727050781, 0.9626931548118591, -1.3463428020477295, 0.7405953407287598, 0.14112576842308044, -0.7416423559188843, -0.42289015650749207, -1.345050573348999, -0.5788026452064514, -0.47762638330459595, 1.5977834463119507, 0.7433624267578125, -5.2779388427734375, -6.694007873535156, -2.2032222747802734, -1.017399549484253, 1.7253152132034302, 5.688384056091309, -1.3041725158691406, -0.5683266520500183, 6.731031894683838, -1.0159631967544556, 1.0543309450149536, 4.732604503631592, -1.4810696840286255, -0.5848516225814819, -1.1422995328903198, 8.797106742858887, -1.7589037418365479, 2.193183660507202, 0.17919769883155823, 0.07865574210882187, 0.3624423146247864, -1.5147732496261597, -0.8287968039512634, -1.8461865186691284, -3.537198781967163, 2.353989601135254, 1.4438713788986206, 2.0881800651550293, -0.6517369151115417, -0.2704252600669861, -0.8969910144805908, 2.0334856510162354, -4.798152446746826, 0.5243762135505676, 19.78603172302246, -0.08936019986867905, 1.2489701509475708, -0.25390589237213135, -2.392880439758301, -0.160821795463562, -0.3517688512802124, -1.148181676864624, -0.9124978184700012, 3.203165054321289, 0.29200857877731323, 1.037534236907959, -0.35255005955696106, 2.5617403984069824, 0.45597559213638306, 2.04264760017395, 0.6107727289199829, 1.863720417022705, -1.6094081401824951, 1.0352169275283813, -1.690711498260498, 0.4250764548778534, -1.9377765655517578, 1.1549980640411377, -34.00141143798828, 1.6311854124069214, -0.8576151132583618, -1.2309209108352661, -1.6373412609100342, -3.2971677780151367, -1.2459118366241455, -1.8852922916412354, 2.9153683185577393, 0.706453800201416, -4.12788200378418, 0.11590509861707687, 1.578820824623108, 0.7035527229309082, 0.8559557199478149, 5.302158832550049, 3.316908359527588, 2.839883327484131, -3.484955072402954, -1.262518286705017, -0.7795873284339905, 0.3595227897167206, -1.565005898475647, 2.8304975032806396, -0.33707016706466675, 1.334821105003357, 2.087822198867798, -1.544069766998291, 0.9052535891532898, 24.810012817382812, 0.6015067100524902, -0.12387197464704514, 0.012018068693578243, -0.278433620929718, 1.440056562423706, -1.014625072479248, -4.026927471160889, 0.5186403393745422, -0.24832502007484436, 0.5402752757072449, 1.0821858644485474, -0.5450507402420044, -1.7248847484588623, 1.1969478130340576, 2.198143482208252, 0.31819286942481995, -1.3982861042022705, 2.432002305984497, -1.6552139520645142, -2.7133281230926514, 1.4176011085510254, 2.1722466945648193, 0.5012096762657166, 0.9812194108963013, -0.9914149045944214, 0.43570664525032043, -2.45388126373291, 2.060936689376831, 1.225227952003479, 0.03675711154937744, 0.47146809101104736, -1.5134817361831665, 0.5287048816680908, 0.3062562048435211, 0.7116948962211609, 1.9294418096542358, 3.9130139350891113, 0.9827135801315308, 0.4342404007911682, -0.8542014360427856, 3.980484962463379, -1.4681466817855835, 1.6385403871536255, -0.534422755241394, -0.3313314616680145, -0.3028925359249115, -10.186710357666016, -0.08424455672502518, 0.6442753672599792, -2.478898763656616, 0.08182762563228607, -3.455291509628296, 0.43774497509002686, 0.5353696942329407, -0.34923380613327026, -2.245058298110962, 0.8063525557518005, -0.5125761032104492, -1.8543134927749634, 13.15569019317627, 0.29406845569610596, 2.73864483833313, 1.5351945161819458, -2.667534112930298, 1.8585457801818848, -0.5126821994781494, -3.542808771133423, 0.8593038320541382, 1.356177568435669, -2.2936758995056152, 1.4887558221817017, -1.453386664390564, -0.2438155859708786, 2.067272663116455, 0.32956963777542114, -1.3709402084350586, 0.6532894372940063, 2.041034698486328, 0.47156772017478943, -1.0931740999221802, -0.6443873047828674, 0.1527925282716751, 0.34127572178840637, -4.133462429046631, -4.879815578460693, -1.089416265487671, 2.1411664485931396, 1.6340669393539429, -0.678001880645752, -0.20006044209003448, 2.700857162475586, 0.3953857719898224, 0.3773745894432068, 10.467652320861816, -1.8560420274734497, 1.933936357498169, -1.324058175086975, -0.6714419722557068, -0.6408630013465881, 0.25645899772644043, 0.5349082350730896, -0.33439961075782776, -0.6752926111221313, -0.07328151166439056, 0.7603237628936768, -1.0504674911499023, -0.4120664894580841, -2.3327951431274414, -2.105058431625366, -1.2407442331314087, 0.06201812997460365, -1.1087273359298706, -5.08742618560791, 1.0392402410507202, 1.3938089609146118, 1.325093150138855, -1.9755486249923706, -3.2290241718292236, -0.9848170280456543, -0.36636120080947876, 2.5345685482025146, 5.050273418426514, 0.04267048090696335, 1.3588602542877197, 1.404006004333496, -0.20789878070354462, 2.7452239990234375, -1.4061211347579956, -1.4091320037841797, -0.5603430271148682, 1.0274136066436768, 0.30943185091018677, 0.6809061765670776, 1.8114192485809326, 1.635233759880066, -2.0490219593048096, -2.5215003490448, -0.8032653331756592, 1.38918137550354, 0.4002103805541992, 2.199906349182129, 2.174908399581909, -0.4667617380619049, -1.7561125755310059, 5.526026725769043, -1.361649513244629, -0.1855514943599701, -1.8678263425827026, -0.5714011192321777, 3.4934396743774414, -0.6117006540298462, -1.734717845916748, -0.9866974353790283, -2.3404555320739746, 2.4573800563812256, 0.20141179859638214, 0.29290077090263367, -2.301769733428955, 2.5428414344787598, 1.4363484382629395, 1.577946662902832, 1.2097517251968384, 2.517937183380127, -1.8806099891662598, -2.823444128036499, 1.330358862876892, -8.766922950744629, -3.65368914604187, 2.8084778785705566, 6.787826061248779, -0.2801904082298279, 0.49166062474250793, 3.5498809814453125, 1.6269947290420532, 0.6379140615463257, -3.189540386199951, -0.7326184511184692, 3.706141233444214, 1.5058480501174927, 2.517754316329956, -1.3962913751602173, 2.1092514991760254, -2.089298725128174, -0.23118990659713745, -3.245483875274658, -2.4067325592041016, -1.6550514698028564, 1.4493937492370605, -1.021011233329773, -0.11767789721488953, -0.1905142068862915, -0.6295597553253174, -2.109527826309204, 0.20614959299564362, 1.8216512203216553, 14.592228889465332, -0.140599325299263, 1.3344151973724365, 0.6336569786071777, 0.7928052544593811, 0.20258450508117676, -2.2413930892944336, 0.6161463260650635, 0.8703709840774536, -1.413249135017395, 0.15635526180267334, 0.6358026266098022, 1.5803964138031006, -4.252792835235596, 0.8290112614631653, 3.0365211963653564, 0.9090009927749634, -1.4376555681228638, -1.5278016328811646, -1.0936615467071533, -1.819000005722046, -1.777922511100769, 2.8153882026672363, 0.16773885488510132, -3.123718500137329, -3.626837968826294, 0.5449579954147339, 2.8520450592041016, -0.5577317476272583, -1.8633087873458862, 2.16951847076416, 4.58833122253418, 1.1472432613372803, -0.3632275462150574, -1.6276928186416626, 1.0250462293624878, 0.40955084562301636, 2.219583749771118, 0.3527434766292572]}\n",
|
|
"----------------------------------------\n",
|
|
"ID: 3647b2fc-8479-4ae0-aece-f41a1ca5eeeb\n",
|
|
"Source: {'text': ' large and heterogeneous chunks. Conversely, a threshold that is too high may produce small fragments and lose relevant context. Proper calibration depends on the text domain, the average paragraph length, and the embedding model used. Vertical Farming and the Urbanism of the Future Vertical farming proposes growing food in multi-level urban structures. This technique aims to reduce transportation dependency and optimize space usage in densely populated cities. Through hydroponic systems and automated nutrient control, plants can grow without traditional soil. Distributed sensors monitor humidity, temperature, and nutrient levels in real time. Moreover, integration with renewable energy allows these facilities to operate more sustainably. In some cases, agricultural buildings are architecturally designed to integrate seamlessly into the urban environment. Although it still faces economic challenges, vertical', 'metadata': {'title': 'Demo'}, 'vector': [0.4273831844329834, 0.21704453229904175, -0.6134556531906128, 5.2341108322143555, 1.0143766403198242, -0.3113130033016205, -1.2518233060836792, 2.6777944564819336, 0.5087330341339111, -3.883100986480713, -0.27264291048049927, 1.6279470920562744, 0.74882572889328, -1.9729721546173096, 1.0228991508483887, -0.9331468343734741, 1.1679702997207642, -2.1251871585845947, -1.8651484251022339, 4.83168888092041, -2.2528815269470215, -0.004312818869948387, -2.145352602005005, -0.28374138474464417, 1.3984848260879517, 3.160086154937744, 1.351203203201294, 0.49462899565696716, 1.3863074779510498, 0.7857784032821655, 0.4982573986053467, 2.6007862091064453, 0.839114785194397, -2.8178322315216064, 0.27763551473617554, 2.4656083583831787, 4.294302940368652, -0.34386929869651794, -0.8641725778579712, -4.206951141357422, 1.5947169065475464, 0.6325629353523254, -0.3802716135978699, 0.5045272707939148, 0.6690313816070557, 1.370080590248108, -2.1965484619140625, -0.4800539016723633, -2.456451177597046, -2.2441625595092773, 0.1375710368156433, 0.919153094291687, -1.4555732011795044, 1.1181058883666992, 0.2867918908596039, -2.3308284282684326, -1.912044644355774, 1.9265049695968628, 1.0985195636749268, -1.3648892641067505, 3.4401979446411133, -1.2342157363891602, -0.653684139251709, -1.2982112169265747, -1.696509599685669, 0.6047386527061462, 3.0297532081604004, 1.7241668701171875, -0.5354776978492737, 0.004871309269219637, -1.4585555791854858, 0.1749352216720581, -1.0833711624145508, 0.4002133011817932, -1.9851654767990112, -4.491779804229736, -0.6586608290672302, -3.6531014442443848, -2.402888059616089, 2.170487642288208, -1.8145403861999512, 0.962788462638855, 0.8616744875907898, -10.338682174682617, 0.6685634851455688, 1.4033550024032593, 3.34443736076355, 1.7267285585403442, -1.0075634717941284, -0.5377448201179504, 0.05678178369998932, -0.4605520963668823, -1.4174240827560425, -0.038925424218177795, -3.0722219944000244, -0.19507309794425964, 1.80372953414917, -1.1111892461776733, -0.7167966961860657, 1.5583221912384033, 1.6547175645828247, -3.4591100215911865, -4.133587837219238, -2.851311683654785, 0.4632318615913391, 0.9072989225387573, 1.4950003623962402, -1.7114109992980957, -0.8792468309402466, 3.4905812740325928, -0.27761325240135193, 0.2534346878528595, -0.8292260766029358, -0.20826415717601776, 1.4459935426712036, 1.6412678956985474, -2.004025459289551, 1.1005405187606812, -3.2263681888580322, -0.17378459870815277, -0.6202282905578613, 1.3884536027908325, 0.8197965621948242, 1.0207387208938599, 1.3271514177322388, -1.0890570878982544, 0.8441903591156006, 2.167057991027832, 0.8228622078895569, 0.14823418855667114, -2.0830235481262207, -2.734403610229492, 1.9514034986495972, -0.8670312166213989, -2.056802749633789, -1.1105210781097412, -2.9517877101898193, -0.3112933337688446, 3.864839792251587, 1.9780800342559814, 0.8073199391365051, 0.6850851774215698, 0.8031162619590759, 0.391491562128067, -0.8428662419319153, 1.0231419801712036, -0.3486909866333008, -4.963591575622559, -0.3175489902496338, -0.43173444271087646, -1.1672613620758057, 0.20859341323375702, -0.9816713333129883, 3.0164783000946045, 17.349767684936523, -0.37279248237609863, 1.4518911838531494, 0.23493410646915436, 0.4834941029548645, 3.090111255645752, 0.4328381419181824, 2.1455187797546387, 1.4930338859558105, 0.29993200302124023, 2.59517240524292, -1.3002877235412598, 0.8844630122184753, 0.03434023633599281, -0.7395496964454651, -0.615596354007721, -1.8596348762512207, 1.245013952255249, 1.8175469636917114, -1.1904300451278687, 2.2152481079101562, 0.3503303527832031, -4.542845726013184, 0.683635950088501, 0.7329334616661072, -0.11373770982027054, -1.3366481065750122, -2.9514107704162598, 0.8842688202857971, 2.5577991008758545, -1.8146287202835083, -0.6401049494743347, 2.219705104827881, -0.44280385971069336, 0.7873843908309937, 0.06404189020395279, -0.9407408833503723, -3.7159459590911865, -1.4483505487442017, -1.2880526781082153, 2.5740034580230713, 0.43453162908554077, -2.1656646728515625, -4.859853744506836, 0.9837057590484619, 0.7335208058357239, -1.5873231887817383, -0.9371469616889954, -2.776601791381836, -1.9558640718460083, -1.7251298427581787, 0.7352830171585083, 0.011288980953395367, -0.03550523892045021, 4.136866092681885, 1.9545173645019531, -0.6317119002342224, -1.3960185050964355, -1.2683786153793335, -0.7515140771865845, -1.2787760496139526, 1.166567325592041, -2.049933433532715, 2.90084171295166, 0.3407089412212372, 1.6971333026885986, -0.07949940115213394, 0.37357819080352783, -12.929160118103027, 0.6501947045326233, -0.2781674861907959, -0.6604650616645813, 0.19975091516971588, -3.6123335361480713, 5.601668357849121, 1.4969968795776367, -0.9708232283592224, -0.3158915638923645, -2.444387912750244, 0.47759711742401123, 3.352956771850586, -1.9115571975708008, 1.8200042247772217, 3.4206960201263428, 1.3434715270996094, 0.10816839337348938, 0.13784481585025787, -0.7411636710166931, 0.0730578675866127, 0.3651934564113617, -1.1668680906295776, 1.8687800168991089, -2.323026180267334, 3.0718462467193604, -1.2649309635162354, -3.291318655014038, -0.741664707660675, 3.4556522369384766, 1.2384141683578491, 0.4680863320827484, 0.8521624207496643, -1.2599838972091675, -0.281511127948761, -0.6265134215354919, -0.24313984811306, -0.04873894527554512, 0.8262590169906616, -0.6909547448158264, 2.35323429107666, -2.8222925662994385, -0.10825374722480774, -0.3027222454547882, -2.1109795570373535, -0.25188761949539185, 0.7280279994010925, -2.93449330329895, 1.8077689409255981, -1.7725543975830078, 1.7214056253433228, 1.1455358266830444, -5.567143440246582, -0.2785705626010895, -1.0993300676345825, -0.6009562015533447, -1.8829922676086426, 0.9081301689147949, 1.1369582414627075, -2.04205584526062, -1.980741262435913, -3.8393707275390625, -1.9086757898330688, 2.84133243560791, -14.807806015014648, -0.3127979338169098, 0.42968013882637024, -1.1133900880813599, -1.4483413696289062, -1.0585670471191406, 0.46575140953063965, -4.2794342041015625, 0.7047207951545715, -2.937042474746704, 2.755272626876831, 3.0513689517974854, -0.9788712859153748, -0.9670304656028748, 1.39524507522583, -3.2520663738250732, 0.14754585921764374, 1.0095165967941284, -2.596660852432251, -1.3882566690444946, -0.793355405330658, -1.5780935287475586, 1.5172358751296997, 2.4075253009796143, 0.01024678535759449, -1.6696597337722778, 2.050708532333374, 0.30237624049186707, 1.5351511240005493, 0.9291428923606873, -0.7190771102905273, 0.047939665615558624, 0.2612975537776947, -2.911189317703247, -0.32296743988990784, 0.21623367071151733, -0.09500126540660858, 4.704678535461426, -1.3017321825027466, 0.9373689889907837, 0.06293916702270508, 2.0102474689483643, 1.0315003395080566, 5.006870746612549, -1.7601253986358643, -0.012226657010614872, -1.3940478563308716, -1.4524532556533813, 1.1904124021530151, 5.890670299530029, -0.8022000789642334, -0.8779594302177429, -0.28500452637672424, -3.393049716949463, 1.4144185781478882, -1.7481192350387573, 1.495257019996643, 1.918933629989624, -1.1716288328170776, 1.4394044876098633, -1.763868808746338, 4.106682777404785, -1.2791839838027954, 0.2990603744983673, 3.894394636154175, -2.1131505966186523, -6.296164512634277, 2.4001924991607666, 6.888343811035156, 0.7704393267631531, 1.2388348579406738, -0.044912271201610565, -2.1884689331054688, -1.1178427934646606, 4.373023509979248, -0.7133005857467651, 1.8585999011993408, 0.10144112259149551, -1.9842283725738525, -0.663293182849884, 0.6320825815200806, 0.5798898935317993, 0.8653076887130737, 1.585808515548706, -1.4191131591796875, -1.6056442260742188, 1.6661765575408936, -4.043698310852051, 4.14683198928833, -0.8702747821807861, 2.372270345687866, -1.5060935020446777, 0.1369018852710724, -0.6290785670280457, 1.291306734085083, -1.1149232387542725, 2.222224235534668, -3.15667986869812, 2.7078537940979004, -1.8506712913513184, -1.498090147972107, -0.10932460427284241, 2.0935840606689453, -2.95982027053833, 0.2562851011753082, -1.090427279472351, 0.19487133622169495, 1.5172513723373413, -2.153137683868408, -2.239254951477051, -3.145216464996338, 1.8866082429885864, -1.5066758394241333, -0.13112524151802063, 2.5946407318115234, -0.3808387815952301, 0.4866051971912384, 7.445200443267822, -0.9444493055343628, -0.3479839563369751, -0.08164886385202408, 0.19051583111286163, 2.2984931468963623, -2.00482439994812, 0.8260191679000854, 2.0781381130218506, -1.5566792488098145, -1.6003977060317993, 2.0311834812164307, -0.8515526652336121, -1.1629217863082886, -1.3957091569900513, 1.1332042217254639, -0.3192259669303894, 1.8807449340820312, 2.0025415420532227, -0.7540126442909241, -5.407547473907471, 0.5857088565826416, 1.8414981365203857, -5.376657009124756, -2.150970458984375, -0.04110158607363701, -0.6390111446380615, 0.1843692660331726, -1.3462423086166382, -0.1647385209798813, -0.029565580189228058, -2.27671480178833, 1.1753525733947754, 3.450976610183716, -3.7548470497131348, -0.1746753603219986, -1.8242744207382202, 1.6212348937988281, -5.3019232749938965, 3.8918018341064453, 0.31584030389785767, -1.2405860424041748, -0.8661884069442749, -2.371936082839966, -0.45000556111335754, 0.335548460483551, 1.898260235786438, -0.7174948453903198, -0.48827064037323, 3.4592795372009277, -3.317142963409424, -2.4249963760375977, -0.17202338576316833, 1.322668194770813, 0.2937797009944916, -2.9276139736175537, 0.9510722756385803, -0.8929641246795654, -0.9320591688156128, 1.5178457498550415, 0.058592040091753006, 0.692870020866394, -0.2987686097621918, -4.170228481292725, 0.9697082042694092, -1.5776212215423584, 1.1305389404296875, -0.9385637640953064, 0.3676424026489258, -2.6101386547088623, 2.5140128135681152, 3.7748732566833496, -3.7210915088653564, 0.19931289553642273, -2.2767186164855957, 1.466055989265442, 0.10886719077825546, 0.5688301920890808, 1.6252061128616333, 4.643815994262695, -0.6532350778579712, -1.4170429706573486, -4.891888618469238, 0.7127483487129211, -3.123414993286133, 0.688927173614502, 0.11272305250167847, 1.6599810123443604, -1.129334807395935, 1.238204836845398, -0.4044193923473358, -0.11492286622524261, 2.068904399871826, -0.1622694432735443, 1.6342002153396606, 0.947803258895874, -0.7608660459518433, -0.5665805339813232, 0.5359014272689819, -3.424659013748169, 79.23242950439453, -2.4025192260742188, -1.0327532291412354, -0.49364104866981506, 1.35447359085083, -2.4957659244537354, 0.24449960887432098, -5.740873336791992, 1.930793285369873, 2.1748085021972656, 1.942486047744751, -1.3907195329666138, -0.06117290258407593, 0.8408308029174805, -0.2311657816171646, 0.09118971973657608, -1.326061725616455, -0.9797853231430054, 1.3988794088363647, -1.190934658050537, -4.694367408752441, 1.6977252960205078, -4.7708740234375, -2.813772439956665, 0.2599439024925232, 0.16556695103645325, -1.9171680212020874, 9.965749740600586, 2.6093969345092773, 1.5240228176116943, -1.377468228340149, -1.7376950979232788, -1.5524355173110962, 0.36470311880111694, 5.571490287780762, 0.4408426582813263, -2.3113150596618652, -0.4304090142250061, 1.6022777557373047, -1.4554370641708374, -2.2258968353271484, 2.5981252193450928, 3.164729118347168, -1.595226526260376, -2.070969581604004, 3.141000747680664, 3.0339701175689697, -2.8276238441467285, 0.3640473484992981, 2.386012315750122, 89.36724090576172, 1.3208194971084595, -2.3732919692993164, -1.9943134784698486, -0.770388662815094, 3.147840976715088, 0.9596392512321472, 1.113276720046997, -1.4452340602874756, -0.051177166402339935, -2.4744629859924316, -0.09211239218711853, 0.008343756198883057, 0.7543385028839111, 1.8933945894241333, -3.8062641620635986, 2.044503688812256, -4.429544925689697, 0.7765427827835083, 0.9660000801086426, -0.4379344582557678, -2.1510608196258545, 1.1754083633422852, -0.4915412366390228, -2.969499349594116, 0.7546703815460205, -4.58529806137085, -2.164052963256836, 1.058444857597351, 0.13966277241706848, -2.668621063232422, -2.631019115447998, -3.4355697631835938, -0.2676137387752533, 1.0905811786651611, -0.052944038063287735, -5.831117153167725, 0.4901563227176666, 1.2600324153900146, -23.90241813659668, 0.9992411732673645, -0.23064465820789337, -0.702649712562561, -0.8298951387405396, 2.0871925354003906, 2.2953758239746094, -0.39619043469429016, -0.4023522734642029, 0.2714654803276062, -0.06638915091753006, -1.8516137599945068, 1.3464628458023071, -2.353663682937622, -0.775576651096344, -1.9632488489151, -1.613405704498291, 0.0773085504770279, -1.825294017791748, -3.731908082962036, 2.3979105949401855, 2.7095611095428467, 2.1607091426849365, -3.3269248008728027, 4.631467342376709, 0.46699029207229614, 2.496279001235962, 0.612047016620636, 0.3292475640773773, -2.0412468910217285, -2.65594744682312, 2.5799126625061035, -1.279520869255066, -1.2858954668045044, -0.7138243317604065, 1.7072162628173828, 2.752072811126709, -0.7442541122436523, 0.7442415356636047, 0.3616470992565155, 0.7176485061645508, 14.10019588470459, -1.523170828819275, -1.176544189453125, 0.2555167078971863, -0.3154386281967163, -2.6219897270202637, 0.44005075097084045, -1.0526305437088013, -2.291132688522339, 0.14633481204509735, -3.132615089416504, -0.6992759108543396, -1.0251213312149048, 1.4987528324127197, 0.08982793986797333, 3.351217269897461, 0.48292624950408936, 2.548206329345703, -2.7538254261016846, -0.4775266945362091, 1.9704891443252563, -2.0587832927703857, -2.537655830383301, -2.8206303119659424, 0.09860799461603165, 1.1119153499603271, 0.5072345733642578, -1.2641661167144775, 5.74090576171875, -0.4646705687046051, 0.15945351123809814, -1.3799093961715698, -0.4333077073097229, -1.9762015342712402, -2.8065378665924072, -1.968935489654541, 0.6066246628761292, 2.5187439918518066, -1.2819398641586304, -1.5319757461547852, -1.361676812171936, -0.5221657156944275, 0.5635454654693604, -0.1752673089504242, 0.03457088768482208, 1.0126560926437378, -0.7486488819122314, 0.44142404198646545, 2.3751471042633057, 0.657657265663147, 0.3541218042373657, 1.4248244762420654, 1.0727206468582153, -0.541226327419281, -3.188401222229004, -2.179692506790161, -2.9763481616973877, 1.8971498012542725, -2.268669366836548, -1.6032010316848755, -1.8775264024734497, 2.5867574214935303, 1.4437708854675293, 1.7293452024459839, 0.902932345867157, 2.021143913269043, -4.269402027130127, 1.3446601629257202, -3.496058464050293, 0.07498735934495926, 2.692135810852051, -1.8885600566864014, 1.0473698377609253, 0.39605289697647095, -0.08794162422418594, -1.790939211845398, 2.773615837097168, -0.5277232527732849, -1.258231282234192, 2.706163167953491, -14.239100456237793, 0.7038314342498779, 4.2720441818237305, 0.993461549282074, -2.6242287158966064, 0.09429432451725006, 2.1360831260681152, 4.5907769203186035, 1.943935513496399, 1.0775489807128906, 0.23699313402175903, 1.4847297668457031, -0.9794161319732666, 0.9603656530380249, 1.5830813646316528, -3.4197487831115723, 0.8685187101364136, -0.48206591606140137, -0.20133718848228455, 0.5355966091156006, 3.9920129776000977, -2.1224045753479004, 6.943968296051025, -1.2356607913970947, -0.5614877939224243, -0.11480449140071869, 0.024702677503228188, -1.360204815864563, 3.4185433387756348, -0.12563762068748474, 1.7363638877868652, 2.5156092643737793, 0.12005212903022766, 2.014967918395996, -0.5418938994407654, -0.4965865910053253, 1.7817720174789429, 7.473652362823486, 0.5520155429840088, -1.9039009809494019, 0.0594438873231411, -1.978083848953247, 0.9292942881584167, -1.6579077243804932, -4.160823822021484, 4.069649696350098, -2.6391851902008057, -1.932630181312561, -0.8829469084739685, 1.4706789255142212, 1.368947982788086, 2.5958542823791504, -2.262960910797119, 1.8455199003219604, -0.3663341999053955, -2.2651455402374268, 1.2023683786392212, 2.591531753540039, -1.2602444887161255, 3.3370041847229004, -1.3784611225128174, 0.46477118134498596, -0.07869353145360947, -0.1878422200679779, 3.4407427310943604, -0.7160340547561646, 5.527345657348633, 2.2251384258270264, -2.2229135036468506, -2.1773338317871094, 1.6166237592697144, 0.23393875360488892, -2.914285659790039, 0.18270540237426758, 0.0325758196413517, -1.685549259185791, -4.195940971374512, -0.202982097864151, 0.7208740711212158, 3.2299277782440186, 1.8655762672424316, 2.481328248977661, -0.8766962289810181, 1.142598271369934, 8.015731811523438, 0.8544808626174927, -1.6087563037872314, 1.9297149181365967, -0.6086153388023376, -0.379673570394516, 0.49781665205955505, 0.1621948927640915, -0.8497239947319031, -0.46992993354797363, -0.6125911474227905, -1.381479024887085, 0.7127045392990112, 4.638960361480713, 0.44835618138313293, 2.0241200923919678, -2.3595502376556396, -0.3908816874027252, 0.7987027764320374, 0.13768601417541504, 1.1564067602157593, 0.6836437582969666, 0.4476141929626465, 1.5329228639602661, 0.8499568104743958, 0.12037259340286255, -0.520915150642395, -2.413771629333496, -0.6939557194709778, 5.002416610717773, -1.0144683122634888, -0.5975049138069153, 3.915863037109375, -1.7045323848724365, 2.2387502193450928, -0.1975512057542801, -2.8158364295959473, -0.8910740613937378, 2.2092819213867188, -0.012975768186151981, 4.903437614440918, 0.06710698455572128, -1.508741021156311, 0.795634925365448, 0.22426581382751465, 2.796250581741333, -0.6812243461608887, -1.8186455965042114, 4.845363140106201, -0.9157008528709412, -0.506966233253479, 1.0015708208084106, 0.9994086623191833, -1.8805307149887085, -1.2484766244888306, 2.8413283824920654, 1.0315377712249756, -1.758131504058838, 1.3422298431396484, 0.8334089517593384, 0.7612190842628479, -3.11855411529541, 0.9293554425239563, -0.556722104549408, 1.0406608581542969, 0.5036494731903076, -2.0914433002471924, 1.1248559951782227, -2.4162580966949463, 0.12460911273956299, 1.149107813835144, -0.3546988368034363, -0.575501561164856, 1.2401866912841797, 3.0909430980682373, -3.933746576309204, -1.5514901876449585, 0.4483761489391327, 0.9922669529914856, -1.9180837869644165, 1.061296820640564, 2.4333715438842773, -4.164341926574707, 0.7694282531738281, 0.2698267102241516, 0.6375117301940918, -0.3464406132698059, 2.9471426010131836, 0.31515660881996155, 1.510183572769165, -0.26503071188926697, 0.8638444542884827, -0.2835899591445923, 2.618281841278076, -0.71067214012146, 2.5605289936065674, -0.7204139828681946, -4.096014022827148, 1.4391164779663086, 0.6476316452026367, -2.290949583053589, -0.9193859100341797, -0.18238261342048645, 0.40315574407577515, 1.2468630075454712, -5.6489176750183105, -0.550717830657959, -1.6218361854553223, -2.2072715759277344, 0.7984746694564819, -1.4834922552108765, 1.5164823532104492, -43.40608215332031, 1.5924710035324097, 1.3890187740325928, -2.0296730995178223, 3.2323572635650635, 0.043876610696315765, -1.1436347961425781, -0.5049691796302795, -1.298939824104309, -0.20211590826511383, 0.9852478504180908, -0.2512986361980438, -3.2576286792755127, 0.28419917821884155, 2.0348610877990723, 3.7311697006225586, -0.9476581811904907, 2.654510259628296, -1.7744706869125366, -0.41902896761894226, 10.726590156555176, 0.6048958897590637, -1.0488581657409668, 2.0801150798797607, 1.0518501996994019, 1.9411051273345947, -0.7108616828918457, -2.6180262565612793, -1.1339045763015747, -5.613182544708252, 0.44274473190307617, -1.9718798398971558, -1.64283287525177, 2.447821617126465, -3.0391037464141846, 0.8983368873596191, -0.7879835963249207, 0.4658319652080536, -0.8747708201408386, 3.274113416671753, -1.8876218795776367, -0.023395458236336708, -0.11794619262218475, -0.4193095266819, 1.034480333328247, -0.9669486284255981, -1.1189680099487305, 1.3823264837265015, 1.6725255250930786, -2.3945674896240234, 0.1269475221633911, 0.8904252648353577, -1.5801424980163574, -0.8064625859260559, 0.8946092128753662, 0.32737597823143005, -2.1752023696899414, 1.163070559501648, -2.6880953311920166, -0.3756198287010193, 6.207455158233643, -0.11553589999675751, -0.014963778667151928, -0.8371922373771667, -1.156975269317627, 0.8290188312530518, 0.6752352714538574, 1.6086751222610474, -2.484448194503784, 3.667746067047119, 0.3413849472999573, 3.832512855529785, -0.7797957062721252, 1.5016810894012451, 1.3911352157592773, 1.261587142944336, -1.4370089769363403, -1.7877275943756104, -2.600309133529663, -1.552414059638977, 4.415635108947754, -0.16072678565979004, -0.8223671913146973, -1.8748869895935059, 1.31088125705719, 0.33581727743148804, -1.9223226308822632, -0.9707047343254089, 1.4984915256500244, 3.826368808746338, -10.913667678833008, 2.103602647781372, 1.9022252559661865, -1.3828195333480835, -1.3406630754470825, 0.21149936318397522, 1.6582541465759277, 0.5042333006858826, 3.058563232421875, -1.1734129190444946, 1.2340549230575562, 1.858195185661316, 0.08124376833438873, 1.2017756700515747, 1.673143982887268, 0.7204881310462952, 0.49649760127067566, 0.48212406039237976, -2.528531074523926, -2.2720277309417725, 3.293370485305786, 0.9949978590011597, 8.878698348999023, -0.8223979473114014, 1.0068897008895874, 1.4983189105987549, -0.9054359197616577, -1.3040350675582886, -2.6917715072631836, 2.305945634841919, 0.8163706064224243, 1.6926506757736206, 0.16629396378993988, -0.2631099820137024, 0.27067479491233826, -1.3289177417755127, -0.29998528957366943, -0.5766159296035767, 0.24789495766162872, 0.1283053606748581, -1.0781307220458984, -0.7180193662643433, -1.6246355772018433, 2.1352882385253906, -0.4954357445240021, -0.0022358596324920654, 4.154306888580322, 0.98159259557724, -0.22708876430988312, -0.5286906957626343, -0.14812196791172028, 3.749343156814575, -1.9826068878173828, -3.5906097888946533, -0.9483844637870789, 1.7049909830093384, -0.5464434027671814, -1.2506728172302246, -0.36430492997169495, -1.7034590244293213, -0.40434539318084717, -4.915252208709717, -3.028693914413452, -3.8639180660247803, 3.3121283054351807, 4.465959072113037, 2.2662250995635986, 0.3968343436717987, -3.012932062149048, -2.379739761352539, 1.3287192583084106, 1.2411483526229858, -3.580552816390991, 0.577028751373291, 0.051660191267728806, -1.623333215713501, -0.06284214556217194, -2.179962396621704, -1.2950232028961182, 1.1295028924942017, -2.0582501888275146, -1.474590539932251, -4.325238227844238, 1.0401818752288818, 0.4289052486419678, 1.206803798675537, -2.8715567588806152, -1.413393259048462, -0.6672734022140503, 1.2527235746383667, -0.9380955100059509, 1.4313099384307861, -0.47687098383903503, -2.158275842666626, -1.8763705492019653, 0.38463127613067627, -2.5221850872039795, -0.44720885157585144, 2.929060459136963, -1.2607892751693726, -1.654007077217102, -2.45873761177063, 1.020127296447754, -0.3809928894042969, 0.5918073058128357, -1.3992995023727417, 4.034513473510742, 1.1582839488983154, 0.045750223100185394, -1.1909457445144653, -2.485107183456421, 1.0446343421936035, -1.47288978099823, -1.8192634582519531, -1.949941873550415, -0.3901808559894562, -0.8324596881866455, 1.851313829421997, 1.723812222480774, 0.0010026333620771766, -0.4602290689945221, 4.875173091888428, 1.2596887350082397, -0.6923583149909973, 1.1494033336639404, 0.10661908239126205, -2.9641430377960205, 1.1157358884811401, -3.177506923675537, -1.1570791006088257, -0.9462628960609436, 0.8515379428863525, -1.6362857818603516, -0.4086180329322815, -0.2753845155239105, 0.7843067646026611, 1.8467727899551392, 0.7798134684562683, 2.5358264446258545, 1.1798248291015625, -0.14681415259838104, -0.2125471532344818, 2.349379777908325, -0.22358638048171997, 3.954832077026367, 2.359724521636963, 4.51677942276001, 2.0293939113616943, -1.8716219663619995, 0.30965322256088257, 2.4944612979888916, -0.04466443136334419, -0.5584962368011475, 0.920089602470398, -1.881884217262268, 0.257254034280777, -0.23841002583503723, -0.28747832775115967, -2.7584338188171387, -0.14681591093540192, 0.31371551752090454, -0.3708915114402771, 1.4532763957977295, -0.7146158814430237, -0.1360841989517212, 0.01188610028475523, 1.6859991550445557, 1.2789098024368286, -1.8693182468414307, 2.9285051822662354, -4.66256856918335, 2.6992905139923096, -0.13905136287212372, -1.8035671710968018, -9.804279327392578, 0.3881191611289978, 0.47323668003082275, -0.29988178610801697, 1.0432183742523193, -1.3606685400009155, 2.086433172225952, -2.0228826999664307, -0.3625155985355377, -7.810578346252441, -0.574390709400177, 1.1880393028259277, -0.3635613024234772, -2.0300161838531494, 0.06099158525466919, -1.8601089715957642, 1.3649770021438599, 0.5959267616271973, -1.7687655687332153, 2.66603946685791, -1.7192894220352173, -2.9967808723449707, -2.418238639831543, -2.568140983581543, 1.931071400642395, 2.6491806507110596, 0.13162441551685333, 1.3324111700057983, 2.2121903896331787, -0.7956375479698181, 1.6799720525741577, 2.8799750804901123, -2.9874539375305176, 3.0399513244628906, 1.7072092294692993, -0.8567899465560913, 0.7889121770858765, 0.5194513201713562, -0.026595456525683403, -1.1286112070083618, 0.32326188683509827, 0.9380718469619751, -2.078728199005127, 0.17913402616977692, -0.0040122331120073795, -1.7860217094421387, 0.02072923071682453, -2.62463641166687, 0.6685482263565063, -6.12917423248291, -0.6480492949485779, -0.9078829884529114, -1.6793051958084106, 1.5272830724716187, 1.2675502300262451, 1.556642770767212, 8.601479530334473, -2.0242245197296143, 1.482146978378296, -2.40252423286438, -0.3215171992778778, -2.0962908267974854, -2.262592077255249, -2.3105597496032715, -1.5465248823165894, 0.21839235723018646, 1.1022874116897583, 0.6681514978408813, -1.2397688627243042, -2.4615213871002197, 1.227858066558838, 2.525981903076172, -0.2355782836675644, 1.2825971841812134, 0.4396762251853943, 7.919780254364014, 1.0269886255264282, -0.18144473433494568, -1.2693496942520142, 1.3963053226470947, -0.16727516055107117, -0.45086556673049927, 4.213620662689209, 0.2332548201084137, -2.0309886932373047, -0.532120406627655, 0.2381904423236847, 1.596542239189148, 2.9637646675109863, -0.035793840885162354, 1.0526841878890991, -2.2610604763031006, -0.47318175435066223, -1.8586804866790771, 0.8274168968200684, -0.8060144186019897, -0.2696995735168457, 2.5015196800231934, 1.0028167963027954, -46.038604736328125, 2.385807752609253, -0.08920830488204956, 1.3618974685668945, -0.6446563601493835, -5.693868160247803, -0.8872313499450684, 0.13058020174503326, 0.4058015048503876, -0.4525766670703888, 2.055321216583252, 0.4043673276901245, -2.08141827583313, -2.6807053089141846, 0.5743985772132874, -1.2684638500213623, 0.8933627009391785, 1.986788034439087, -1.2720630168914795, -0.7907160520553589, -2.337496519088745, 0.4697808027267456, -0.0851513147354126, -0.3023883104324341, 0.9223712086677551, 1.2752001285552979, 1.6406264305114746, -3.7503602504730225, -0.8405323028564453, -6.570030689239502, -0.816219687461853, -0.9356123208999634, 2.1415324211120605, -0.5541523098945618, 1.9484591484069824, -0.9526087045669556, 5.233145713806152, -2.29319429397583, 3.8839938640594482, 1.2050533294677734, -0.26282140612602234, 0.11784829199314117, -0.7843965888023376, -0.9276118278503418, -1.1807572841644287, 0.936028003692627, -0.39831432700157166, 0.9498441219329834, -0.40302833914756775, -1.347758173942566, -1.2939903736114502, -0.6992456316947937, -0.7030360102653503, -0.9983167052268982, 2.701439142227173, -2.605940103530884, -2.735974073410034, -4.318010330200195, 2.1262075901031494, -3.4655942916870117, 0.5918704271316528, -1.1915857791900635, -2.942477226257324, 0.36033710837364197, -0.46949833631515503, -0.4095546305179596, -0.6310949921607971, -2.722687005996704, -4.389821529388428, -0.8428694605827332, 1.6909891366958618, 2.0918056964874268, 1.5286070108413696, -0.8648567199707031, 1.548230528831482, -2.453342914581299, -1.9329301118850708, 0.44221585988998413, 2.463974952697754, 1.5703932046890259, 0.5214086174964905, 1.1174640655517578, -0.6418870091438293, 0.4507279396057129, 1.7740793228149414, 0.11032684892416, -0.003992739133536816, 2.423279285430908, 2.8787341117858887, 14.076944351196289, 0.6491275429725647, -0.8289927244186401, 2.654953956604004, 3.717954635620117, 3.176992416381836, -0.7527438998222351, 2.957179546356201, 0.6337236166000366, -2.215657949447632, 0.2450384944677353, -3.008725643157959, -4.217581272125244, 1.428614854812622, 1.0866780281066895, 3.7448558807373047, -5.40142297744751, -0.7498347759246826, -0.9632043838500977, 0.9081733226776123, -0.10098501294851303, -1.3712427616119385, 1.3184655904769897, 0.3230247497558594, -1.1084734201431274, 1.4844635725021362, 1.6029366254806519, 0.7418971061706543, -0.7056159377098083, -0.4982577860355377, -1.5921844244003296, -0.7240283489227295, 2.582631826400757, -0.42153850197792053, -5.384727954864502, 0.32239335775375366, 1.1805933713912964, -0.13222500681877136, -3.850914239883423, 1.1051968336105347, 3.9677369594573975, 1.1146233081817627, 1.9230340719223022, -0.42601385712623596, -0.6935033798217773, -0.8020264506340027, -1.1667195558547974, 0.8650283217430115, -3.18369722366333, -1.3320857286453247, -2.9883646965026855, -1.6263713836669922, -0.9848504662513733, 4.988443374633789, -0.4994608461856842, 2.342604160308838, -1.2055273056030273, -3.8911972045898438, -0.7709338665008545, 1.5417653322219849, -0.4621991813182831, -1.6654266119003296, 11.575255393981934, 0.07578667253255844, -2.013174533843994, 2.003052234649658, 0.36510366201400757, -12.275649070739746, -2.4440035820007324, -3.7044565677642822, 2.9562387466430664, -2.116163730621338, -1.6079366207122803, 0.11559708416461945, -2.8018798828125, 1.1185111999511719, -0.7650174498558044, 1.531246542930603, -2.2861549854278564, 2.0561113357543945, 1.2526919841766357, 0.5603612065315247, 0.8653098344802856, 2.4368062019348145, -0.09100976586341858, -1.099935531616211, 1.751585602760315, 2.60721492767334, 1.8661104440689087, 4.396410942077637, 0.9969777464866638, -1.9198777675628662, 0.9478814005851746, -1.7403178215026855, -1.6893119812011719, 1.2669686079025269, 4.521322250366211, 3.0601069927215576, 2.8886585235595703, -2.056494951248169, -1.7715725898742676, -0.3954763412475586, -2.585840940475464, 2.7336483001708984, 3.11637020111084, 1.9827253818511963, -2.9413933753967285, -3.9001054763793945, -1.6854453086853027, 0.36296314001083374, 3.837158441543579, 0.8220391273498535, 1.6927400827407837, 0.036546412855386734, 2.068173408508301, -1.4323301315307617, -0.057603366672992706, -0.21364083886146545, 1.1241466999053955, -0.7820414900779724, 2.1980881690979004, -2.379958152770996, -0.7206583619117737, 2.625251293182373, -0.04676985740661621, -5.601353645324707, -0.6983423233032227, 0.8697452545166016, 0.8841241002082825, -2.232219934463501, 0.042988371104002, 3.3381309509277344, 0.2757820785045624, 1.0259764194488525, 2.413994312286377, 2.568291664123535, -3.4462740421295166, -2.194810628890991, 1.5089149475097656, 6.116754531860352, 1.4220715761184692, 0.07018774002790451, -1.0763823986053467, 0.41301876306533813, -2.525749444961548, -0.35576900839805603, 0.43184152245521545, 1.197895884513855, 1.9684252738952637, -0.17206895351409912, -0.11787545680999756, 1.521565556526184, -1.291546106338501, 2.09450364112854, -3.9586572647094727, 1.1578004360198975, -2.4920241832733154, -2.8478903770446777, -1.3440871238708496, -0.6705751419067383, -0.4224510192871094, 0.5859470367431641, 1.1156121492385864, 4.420317649841309, -2.9759953022003174, 4.270182132720947, 1.720941424369812, -4.156536102294922, 0.7130223512649536, 2.5706846714019775, -1.597715973854065, 2.3836143016815186, -0.7269643545150757, -3.0174715518951416, -0.8394836187362671]}\n",
|
|
"----------------------------------------\n",
|
|
"ID: 811c7fa8-772d-4c49-9052-55d9c5ef0c8e\n",
|
|
"Source: {'text': ' some cases, agricultural buildings are architecturally designed to integrate seamlessly into the urban environment. Although it still faces economic challenges, vertical farming represents a potential solution for food security in megacities.', 'metadata': {'title': 'Demo'}, 'vector': [0.4235854148864746, 0.6667653322219849, 1.2984883785247803, 0.33965742588043213, 1.8272265195846558, -2.0624070167541504, -1.183016300201416, -0.9769448041915894, -1.0043574571609497, -1.6613045930862427, -1.3008445501327515, 3.917346239089966, -0.9353180527687073, 0.6156148314476013, -0.8094739317893982, -1.0396380424499512, 3.7860281467437744, 1.1313722133636475, -0.005790283437818289, 3.6529366970062256, 0.9963875412940979, -0.24717314541339874, -0.6890127658843994, 0.4821999967098236, 2.922889232635498, 1.1855380535125732, 1.1036065816879272, -1.9860855340957642, -2.9196243286132812, -0.5733229517936707, 2.1260335445404053, 1.4901533126831055, 0.049569204449653625, 1.2203378677368164, 1.2517296075820923, -0.8855319619178772, 2.195295810699463, -1.0586999654769897, -1.6583974361419678, -0.2248302400112152, -1.3899924755096436, -0.7118862867355347, 0.10648742318153381, -0.6870496869087219, 0.8730377554893494, 0.14385178685188293, -3.5719592571258545, -0.5014729499816895, -0.9945802092552185, -1.655570149421692, -1.5508670806884766, 0.3648949861526489, -1.844091534614563, -1.0254883766174316, -1.0382850170135498, 1.3795626163482666, -0.7831860780715942, 0.9803267121315002, -0.7915347218513489, -0.3826703727245331, 4.3171706199646, 2.8950459957122803, 1.6740894317626953, -0.7059658765792847, -2.0368154048919678, -0.906424343585968, 2.1154470443725586, -1.9175159931182861, 0.518635630607605, -0.37825822830200195, 0.7637605667114258, -0.5479810237884521, 0.18320871889591217, -1.9013136625289917, -4.177654266357422, -3.0686442852020264, -0.5991668701171875, -0.4015960395336151, -0.06558045744895935, 1.4530187845230103, 0.5613732933998108, -0.5883244276046753, 2.554600954055786, -15.337121963500977, 0.9338510036468506, -0.0559021458029747, -0.2667756676673889, 1.11280357837677, 2.0494441986083984, -0.6751094460487366, -1.385895848274231, -1.6038779020309448, -0.11582779884338379, -1.0791640281677246, -1.4344451427459717, 1.576434850692749, 0.21803812682628632, 0.0569876991212368, 1.64446222782135, 4.400620460510254, -2.9323391914367676, 4.497152328491211, -2.4248151779174805, -1.1223748922348022, -1.4677238464355469, 0.25212541222572327, 0.937315046787262, -1.6195001602172852, -0.8344762325286865, 0.9441043138504028, -2.5163004398345947, 0.5651551485061646, -0.06362569332122803, -5.899040222167969, -0.3666808009147644, 1.2332998514175415, 1.1410493850708008, 0.2716219127178192, -0.5376297831535339, 1.8661068677902222, -0.29729825258255005, 0.6948960423469543, 3.685349464416504, -0.6281994581222534, 0.05956853926181793, -0.20103469491004944, -0.8909423351287842, 0.025375351309776306, -0.20531193912029266, 0.004467432852834463, -0.5657053589820862, -0.1601995825767517, 0.8309586048126221, -2.1791539192199707, 1.5966172218322754, -0.3512287735939026, 0.04088222235441208, -1.3765449523925781, 5.587714672088623, 0.22491714358329773, 1.6666396856307983, -0.06077956035733223, 0.02433421090245247, -1.6407406330108643, -2.7764453887939453, 4.172297954559326, 2.1466407775878906, -11.677254676818848, -3.0797066688537598, 1.8091847896575928, -0.09507128596305847, -0.3446301817893982, 2.169806718826294, 1.6102662086486816, 22.190462112426758, -3.2663373947143555, 2.1147215366363525, 1.0837273597717285, -0.8652534484863281, 1.3635982275009155, 5.515347003936768, -2.6930696964263916, -0.41250017285346985, -0.09997906535863876, 0.10823215544223785, 0.4734646677970886, 0.24478347599506378, -3.3593966960906982, -0.5819719433784485, 1.5474656820297241, 0.3989139795303345, 0.021793020889163017, 2.902545690536499, -0.7275623083114624, 0.22228580713272095, 0.0747038722038269, -3.508082151412964, 2.180072546005249, -0.12620951235294342, 0.04006095230579376, -1.0971659421920776, -4.844079971313477, 2.381852388381958, 1.88656747341156, -2.8948326110839844, -2.5041298866271973, 0.23485049605369568, -0.20363685488700867, 5.506593704223633, -0.4618091881275177, 1.2319145202636719, -1.2921390533447266, -0.40948060154914856, -1.6708199977874756, 2.540318250656128, -0.07373921573162079, -1.2017202377319336, -3.207604169845581, 1.3064912557601929, -0.8111295104026794, -2.971038579940796, -1.413679838180542, 1.4706733226776123, 0.21607741713523865, -0.47156357765197754, 0.9080072045326233, -0.1372258961200714, 1.2644293308258057, 1.5903993844985962, 1.0962706804275513, 0.5268507599830627, 0.6078087091445923, 1.125598430633545, -3.187100887298584, -0.433912068605423, 0.6647709608078003, -0.6218114495277405, 1.1745470762252808, -0.14312346279621124, 1.6600496768951416, -1.0547981262207031, 0.26440608501434326, -19.24018669128418, 0.586314857006073, -0.4208897650241852, 0.5884090662002563, 1.2735642194747925, -4.105978965759277, 1.0427706241607666, 0.18988388776779175, -4.221902370452881, -0.16581648588180542, -3.1826939582824707, 1.6425855159759521, 2.302338123321533, 0.4874226748943329, 0.6540930271148682, 2.0306527614593506, 0.8054866194725037, 0.707909345626831, 0.6671310067176819, -0.0457620732486248, 0.683806836605072, -0.9818180799484253, -0.15802566707134247, -0.10899559408426285, -0.351713627576828, -0.5272864699363708, -4.044061183929443, -1.0226848125457764, 0.7602114081382751, 2.809056282043457, 0.024907875806093216, 1.6263552904129028, -0.5216034650802612, 5.531985759735107, 1.7627620697021484, -1.0702052116394043, 0.46612560749053955, -0.21681277453899384, 0.941442608833313, 1.3634916543960571, 3.522073268890381, -2.539872646331787, -0.9606660604476929, 0.5708296298980713, -0.8456223607063293, 2.5875654220581055, -1.5219194889068604, -0.7906568646430969, -0.3397116959095001, -2.028820514678955, 3.0171327590942383, 0.2515006363391876, -2.494291067123413, -1.1717761754989624, 1.2921819686889648, 0.04678777605295181, -1.7897285223007202, 2.0700912475585938, 1.7381772994995117, -3.606043815612793, -2.64931058883667, -2.271453619003296, -1.1291943788528442, 1.8276370763778687, -24.026412963867188, -1.1587566137313843, 0.17747244238853455, 0.4600656032562256, -1.6758168935775757, 1.0197664499282837, 1.151054859161377, -0.9820547699928284, 1.5202910900115967, -0.30714187026023865, 2.297159433364868, 1.7477368116378784, -1.8411531448364258, -0.8601096868515015, -0.0785217434167862, -1.1394991874694824, 1.4808577299118042, -0.5778791308403015, -1.4987014532089233, 0.9852328300476074, 0.5251306891441345, -1.393357515335083, 2.804537534713745, 0.287123441696167, -2.6808552742004395, -1.2102515697479248, -0.923446774482727, -1.1520748138427734, 0.20145133137702942, -0.31543681025505066, -0.5426279306411743, -2.2207131385803223, 0.5523297786712646, -0.8994148969650269, 1.5115028619766235, 0.5799840688705444, -0.4962256848812103, -1.5992987155914307, 1.2636919021606445, 0.8148426413536072, -2.56420636177063, 0.194159597158432, 0.133835569024086, -0.43601474165916443, -1.2627123594284058, 1.3149888515472412, -0.5159848928451538, -2.6009562015533447, 3.251095771789551, 2.960019826889038, 0.16346174478530884, -0.3301897346973419, -1.2039176225662231, -2.117645025253296, -4.639124870300293, -3.2646656036376953, 4.388211727142334, 1.4961841106414795, 1.9407001733779907, 2.2044949531555176, -1.4912183284759521, 1.5272212028503418, -1.0522935390472412, -1.039152979850769, 1.3890787363052368, 2.810908079147339, -9.417534828186035, -0.9482924342155457, -0.5617850422859192, 1.6555029153823853, -0.6512103080749512, 0.015640797093510628, -2.9324119091033936, 2.8964831829071045, 4.766087532043457, 2.8222053050994873, -0.32293838262557983, 1.3477526903152466, -1.4094740152359009, 1.0918811559677124, -1.1808501482009888, 0.10337144136428833, -1.825727939605713, -1.5465623140335083, 0.6686140298843384, -2.665254831314087, 1.9696323871612549, -4.364190101623535, 0.3835606276988983, 1.775011658668518, -0.6171504259109497, -0.5765393972396851, -0.28841525316238403, 2.133415460586548, 1.4252593517303467, -0.19521227478981018, 4.024647235870361, -1.4069464206695557, 2.1324870586395264, 0.5774163603782654, 0.9793495535850525, 2.464442729949951, 1.8750849962234497, 0.8623842000961304, -2.983335494995117, 1.959739089012146, 1.9125021696090698, -0.6627841591835022, -1.2415539026260376, 0.756960391998291, -1.4186757802963257, 4.933498859405518, -1.8299329280853271, 0.08702074736356735, 0.4369359016418457, -0.03366286680102348, -0.9943104982376099, -15.334362983703613, 0.7548679113388062, 0.14173895120620728, -2.2585742473602295, -0.7849620580673218, 2.0400071144104004, -1.4489209651947021, -2.213632822036743, 1.0745049715042114, -1.1273623704910278, -0.6249982714653015, 2.959496021270752, 1.0858196020126343, -1.1971487998962402, -1.4661613702774048, 1.984641432762146, 0.35911405086517334, -0.0002257229934912175, -0.3289654850959778, 0.42735111713409424, -2.715029001235962, 5.319320201873779, -1.3661015033721924, -2.337420701980591, -1.6966310739517212, -0.17093847692012787, -0.13727056980133057, 2.58347749710083, 0.14475439488887787, -2.4047770500183105, 1.16964852809906, -4.0238566398620605, 0.3356085419654846, 0.2945432960987091, -0.0980387032032013, -1.3294730186462402, 1.0289918184280396, 0.22380931675434113, 4.8210015296936035, 3.4814698696136475, 0.21847385168075562, -1.7288765907287598, -0.5803285241127014, 0.41384822130203247, -1.1511234045028687, 0.6426900029182434, -0.39698413014411926, -1.344058871269226, -2.630704879760742, 0.17405350506305695, -2.1011006832122803, -0.05506877973675728, -0.8729583621025085, 0.16673681139945984, -0.3807084560394287, -1.2017707824707031, -1.0700700283050537, -3.7989814281463623, -0.05327107384800911, -1.9846645593643188, 1.4528437852859497, -0.1778368055820465, -0.4528607130050659, -6.054305553436279, 2.943112373352051, -0.5197802186012268, 1.2554212808609009, 1.5451738834381104, -0.6848562359809875, -1.6305382251739502, -0.3577353060245514, 0.5775607824325562, -3.4854469299316406, -0.1926225870847702, -1.0694016218185425, -1.1706922054290771, 0.010754212737083435, -0.20431533455848694, 0.8213979005813599, 1.2834303379058838, 1.419244647026062, -3.3809075355529785, -1.2191945314407349, 1.368072748184204, 2.9236648082733154, -0.6409434676170349, 0.6702499389648438, 0.5626065135002136, -2.1236743927001953, -0.2803439795970917, -0.7507981061935425, -0.493390828371048, 0.9773138761520386, -0.21039018034934998, -0.31906065344810486, 0.44858258962631226, 1.0964250564575195, 0.5038163065910339, -0.09077296406030655, -1.1055516004562378, 94.87157440185547, -2.650751829147339, -3.36206316947937, 0.14580388367176056, 0.268504798412323, -1.1565641164779663, 1.817172884941101, -0.8302351832389832, -0.12283483147621155, 1.6854963302612305, 1.3568838834762573, 1.4426369667053223, 0.820959746837616, 0.8722461462020874, -0.026717273518443108, 25.134807586669922, -1.911474347114563, 1.3395761251449585, 1.4461262226104736, 0.7071085572242737, -1.5634757280349731, -0.28773123025894165, -2.5044105052948, 12.915194511413574, -2.2650840282440186, -0.12950770556926727, -2.101627826690674, 9.635831832885742, -3.1636271476745605, -0.20647397637367249, 1.3210326433181763, -1.4599196910858154, -0.7582299113273621, -0.2908598780632019, -0.783932089805603, -1.4786057472229004, 0.393760621547699, 0.14103193581104279, -0.6370038390159607, 1.5610737800598145, 0.14585328102111816, -2.4473249912261963, -0.08576633781194687, -0.25721976161003113, -1.7640937566757202, 0.14043794572353363, 0.39360228180885315, -1.0245354175567627, 0.6063947677612305, 0.6260368227958679, 100.6097183227539, -1.1580513715744019, -1.7660927772521973, -0.7362410426139832, -1.2278519868850708, 2.4540834426879883, 0.5467763543128967, -1.1060563325881958, -0.2503597140312195, 0.3824692666530609, -2.2488038539886475, -0.3225308954715729, 1.1592296361923218, 0.20764046907424927, 1.0928531885147095, -2.45519757270813, 0.017393378540873528, -4.859440803527832, 0.49470359086990356, 2.513361692428589, -0.07978997379541397, 2.0979650020599365, 1.112043857574463, 1.3857289552688599, -2.5697648525238037, -0.10745909065008163, -1.5556440353393555, -1.2830508947372437, 4.182798862457275, 5.575978755950928, -1.5757602453231812, 0.05280309170484543, -0.5907225012779236, 1.2092543840408325, -0.09718650579452515, -1.6350102424621582, -17.669511795043945, 0.8781129717826843, 1.2377549409866333, -34.534122467041016, -1.851741909980774, 0.29905015230178833, -1.5681977272033691, -1.4187759160995483, 0.9316810965538025, 1.3230652809143066, -1.3571081161499023, 0.6145928502082825, 0.027194269001483917, -0.2644849419593811, -2.2811813354492188, 2.362109422683716, -0.3036594092845917, 1.3169910907745361, 0.14831528067588806, -1.1165410280227661, 0.05668306723237038, 0.4267759323120117, -28.116125106811523, 0.770336925983429, 2.2286765575408936, -0.7449913620948792, 0.5073773860931396, 1.23116135597229, -0.8764772415161133, 2.963679313659668, 4.605011463165283, -0.634017288684845, -1.9253225326538086, -1.6756519079208374, -0.6522854566574097, 1.555824875831604, -0.8459984660148621, -1.3844062089920044, 0.068381667137146, -2.1608026027679443, -1.5108237266540527, 0.3536205291748047, -1.1702169179916382, -1.1798893213272095, 36.41189956665039, -0.5139256119728088, -0.6396804451942444, 0.5923962593078613, -0.09560185670852661, -2.9186980724334717, -0.1922382116317749, 2.277930498123169, 0.48371800780296326, 0.1869804412126541, -0.30849945545196533, 0.026550259441137314, 0.12964582443237305, 1.1150217056274414, 1.4891985654830933, 2.48122239112854, 3.541114091873169, -0.061011139303445816, -2.0232553482055664, -0.31950047612190247, -3.308966636657715, 0.1728556603193283, 0.91206955909729, 0.17832748591899872, -0.6121985912322998, 1.6145505905151367, -2.0832161903381348, 0.240077942609787, 2.2621517181396484, -1.5615293979644775, 0.26998111605644226, -0.3971055746078491, 1.1747095584869385, -2.8015685081481934, -0.257845938205719, -3.505312204360962, 3.3590333461761475, -0.47312554717063904, 2.155768871307373, -0.9449940323829651, 0.7463589310646057, 2.9574501514434814, 1.8279523849487305, 0.17737025022506714, 0.2763504385948181, -0.1945282369852066, 0.23144762217998505, -0.16435015201568604, -1.7415518760681152, 2.29384446144104, 0.7039194703102112, 0.7181028723716736, 0.5799273252487183, -1.1872732639312744, -1.9791911840438843, -0.8809237480163574, -1.3276313543319702, -1.374373197555542, 0.3238782286643982, 1.1269348859786987, -0.6537620425224304, 1.4071861505508423, -0.7009459137916565, 1.0161675214767456, -0.5212827920913696, -0.22957175970077515, -1.643821120262146, 1.504992961883545, 0.7283348441123962, 0.3504858911037445, 3.271747350692749, 0.30937460064888, -0.17821501195430756, -2.252420663833618, 0.49312397837638855, -0.9200546145439148, 1.1821613311767578, 1.4890799522399902, -2.1603095531463623, -0.5029882788658142, 7.320901870727539, -0.9646766781806946, -0.6910105347633362, 0.5019459128379822, -0.508750855922699, 1.4669456481933594, 1.79240882396698, 1.3065215349197388, -1.9345563650131226, 0.1965935081243515, 1.092374563217163, -0.9777387976646423, -0.10309416800737381, -0.010002918541431427, 0.4558650255203247, -0.5492280721664429, 1.582747220993042, 0.5258517265319824, 1.0038424730300903, -0.45318347215652466, 2.469848155975342, -1.8346151113510132, -1.3229297399520874, -2.5652503967285156, -0.6869593858718872, -0.6154064536094666, -1.641391396522522, 0.7541303038597107, 0.6525046229362488, -0.3822898268699646, 1.2062653303146362, 3.2853097915649414, -0.48457685112953186, 0.07364760339260101, -2.951136589050293, -1.3935490846633911, 0.5830301642417908, 7.6182355880737305, -0.25823691487312317, 5.072749137878418, -2.161555528640747, -1.5467160940170288, 0.6762271523475647, -0.46438339352607727, 0.4480857253074646, 0.48223206400871277, -2.4492697715759277, 0.4338817894458771, -0.2953849732875824, -0.17724363505840302, 0.1397365778684616, -0.3221563398838043, -0.26508280634880066, -0.35164573788642883, -0.5536167621612549, -0.9202826619148254, 1.91047203540802, -0.9844108819961548, 2.241147756576538, 0.48760172724723816, 0.10171199589967728, 2.3434934616088867, -0.9214417338371277, -0.37826603651046753, 2.5910377502441406, -1.320542335510254, 5.027833461761475, -0.07623337209224701, -1.9127739667892456, 2.604970932006836, 0.322851300239563, 0.6940352320671082, -2.475752830505371, -0.9452915787696838, 0.12131863832473755, -0.3518522381782532, -1.1170343160629272, 0.13802798092365265, -1.6186165809631348, 0.46190696954727173, 0.113130122423172, 1.6765646934509277, 0.31684592366218567, 5.715796947479248, 4.065946102142334, 0.9610400199890137, -3.4510116577148438, 1.3980517387390137, -0.38787752389907837, -3.469895839691162, -0.8942405581474304, -0.16430898010730743, 1.614848017692566, 0.14322564005851746, -0.00016811105888336897, 0.556023895740509, 1.780985713005066, 3.001121759414673, -1.5149623155593872, 0.49653521180152893, -0.8175063729286194, 1.2286194562911987, -2.87772536277771, 0.26031294465065, -0.9772953391075134, -0.7631902694702148, 0.2301543653011322, -1.0487425327301025, -0.5308791399002075, 0.6170567274093628, -0.281754732131958, -0.6867040395736694, 0.7975997924804688, 2.072572946548462, 2.20428466796875, -0.5186808109283447, 0.5595372319221497, -0.46106523275375366, 2.4567203521728516, -0.1957566887140274, -2.481416702270508, -0.2972351610660553, -0.6061659455299377, -0.9327967166900635, 1.1395628452301025, -0.8554322123527527, -1.1235206127166748, 1.8307273387908936, 0.9488188624382019, 1.6433491706848145, -1.687952995300293, -0.8044675588607788, 4.038262367248535, 1.1992323398590088, 0.6562197208404541, 2.648409128189087, 0.037530988454818726, 1.4691095352172852, -1.3025840520858765, 1.8439373970031738, -0.6121741533279419, -0.692875325679779, 0.9100585579872131, -1.2529420852661133, 5.665064811706543, -7.08015775680542, 1.297036051750183, -0.3187200725078583, 0.4017268717288971, 0.5405113697052002, 1.6410489082336426, -0.20705829560756683, -1.1994832754135132, 2.058988571166992, 0.13687558472156525, -0.8654578328132629, 0.5669280290603638, -3.1532764434814453, 0.3962143659591675, -9.268335342407227, -1.9494526386260986, -0.03302324563264847, -0.9566203951835632, -1.637424111366272, -0.1680794358253479, 2.9568159580230713, -2.0613582134246826, 0.500776469707489, 2.211034059524536, -0.21214410662651062, 1.6972428560256958, -1.4736095666885376, 1.9863500595092773, 0.006177391856908798, 2.4565932750701904, -0.6028742790222168, -0.2021513432264328, 2.0516114234924316, -1.3474059104919434, 0.3001048266887665, 0.5453341007232666, -0.5344275236129761, 1.4184211492538452, 0.4180575907230377, -0.07950690388679504, -0.0625852420926094, -1.0182298421859741, -1.391115427017212, 2.7047038078308105, -1.9923148155212402, 0.585982620716095, 3.4713010787963867, -4.413415908813477, 2.541973352432251, 1.0357586145401, 2.322077751159668, -72.5571517944336, -0.9393808841705322, 2.924725294113159, -0.33898624777793884, 3.4912197589874268, 1.6824692487716675, -0.20357421040534973, 2.721052646636963, -1.2599304914474487, -0.2337399274110794, 0.43673092126846313, 0.4408271610736847, -1.7254747152328491, -0.13888166844844818, 0.3357408344745636, 1.3399749994277954, 0.19168342649936676, -0.15529516339302063, 1.774664044380188, -0.1760348677635193, 19.050186157226562, 0.06520593911409378, 1.4242947101593018, -0.7750484347343445, 0.1740882247686386, 1.3111355304718018, -0.42482730746269226, -0.5407012104988098, 0.27262812852859497, -1.2500706911087036, -1.1416691541671753, -1.7993582487106323, -1.0622807741165161, 3.2131869792938232, 2.0484490394592285, 6.208617210388184, -1.139075756072998, -1.87021803855896, -1.4005684852600098, -1.2629685401916504, -0.5391652584075928, -2.163594961166382, -0.11317037045955658, 0.12229494005441666, 0.14194297790527344, -2.6120095252990723, -1.764037847518921, -0.15828104317188263, 1.6262816190719604, 3.2294628620147705, -0.34197160601615906, 0.634696900844574, 0.6311860084533691, 0.40616682171821594, 0.4671013653278351, -0.610736072063446, -0.8855514526367188, -2.169292688369751, -0.0535828173160553, -2.0236079692840576, -1.0664660930633545, 0.38353365659713745, -0.36647456884384155, -0.7148386836051941, -1.2724316120147705, 4.621868133544922, 0.9227407574653625, 0.9798524975776672, 1.7062458992004395, 1.6815447807312012, 0.8183848261833191, 0.3140833377838135, 0.6078435778617859, -0.3509635031223297, -0.8231053948402405, 0.21169959008693695, -1.467330813407898, -1.7976855039596558, -1.306584358215332, 0.9814788699150085, 0.8624917268753052, 0.1984989047050476, -0.5161757469177246, 0.8149959444999695, 0.3508037030696869, 2.0179429054260254, -0.5467125177383423, -0.2368057519197464, -0.9602144360542297, 3.33396053314209, -11.201475143432617, 2.0952272415161133, 0.5816918015480042, 0.9198538661003113, 0.6004414558410645, 0.7761039137840271, 0.05424853041768074, 1.3005751371383667, 0.5278300642967224, -2.945324659347534, 1.7315751314163208, -1.0367457866668701, 0.23024199903011322, -2.5644710063934326, 2.016098737716675, -0.6334006190299988, -0.09941916912794113, 0.6150912046432495, -1.4459798336029053, -3.4345250129699707, -0.06356420367956161, -0.9467952251434326, 18.85732650756836, -0.604963481426239, -1.9445298910140991, 0.47228193283081055, -0.07618550956249237, -3.4811508655548096, 0.7082789540290833, 1.388728141784668, 0.8286000490188599, 1.3119605779647827, -1.8384315967559814, 1.5619944334030151, -1.7422910928726196, 0.17035676538944244, -3.456838369369507, 0.236115500330925, -0.6256308555603027, 0.3152337074279785, 2.2733025550842285, 2.016103506088257, 0.12089557200670242, 0.11800266802310944, 0.4403131902217865, -0.46198174357414246, 1.6221048831939697, -0.4359493553638458, 1.3465887308120728, -1.496667742729187, -0.3932846784591675, 1.875469446182251, 0.7141874432563782, -3.8362820148468018, 2.662806510925293, 2.433042049407959, 0.1596955806016922, -1.66702139377594, 1.3480340242385864, 0.3393266201019287, 0.6421000957489014, -4.0564117431640625, -1.227821946144104, -2.8841352462768555, 1.7843502759933472, 2.1245975494384766, 1.6911205053329468, 0.01595092937350273, 1.1780580282211304, -5.779129505157471, 2.0026257038116455, 2.3235771656036377, -0.5042767524719238, 1.0482059717178345, 0.5579304695129395, -0.8687909841537476, -1.1613647937774658, 20.883962631225586, -0.3011378347873688, 2.356182813644409, -3.3346660137176514, -0.9227592349052429, -3.5442521572113037, 0.6798869967460632, 2.9455952644348145, 1.0275403261184692, -0.804655134677887, -0.8759669661521912, 0.268619179725647, -0.2822284996509552, -0.27628129720687866, -0.27707427740097046, 0.8389127254486084, -3.6581482887268066, -2.5199403762817383, -0.4666984975337982, -1.7389994859695435, -2.029202938079834, 2.138716220855713, -1.8432382345199585, -5.455257892608643, 0.09047161042690277, -0.40253376960754395, 0.10151895880699158, 0.664103627204895, -0.9153514504432678, -20.52466583251953, 1.80527663230896, 0.3883509337902069, -0.5531867742538452, 0.2111554741859436, 0.25073012709617615, -0.11954747885465622, 0.302083820104599, -0.0506662055850029, 0.02076822705566883, -0.542029857635498, -2.6119911670684814, 2.6490516662597656, -2.9150609970092773, 0.06464607268571854, 2.843945264816284, -1.1188645362854004, 0.48480215668678284, 1.8216266632080078, 0.7724992036819458, 1.3039358854293823, -0.8463262319564819, -3.7744603157043457, -1.441766619682312, -1.5432353019714355, -0.09759916365146637, -0.8791059851646423, -0.6205117702484131, 2.2994959354400635, 0.7699066400527954, 1.024902582168579, 1.895781397819519, -2.4202756881713867, 1.931679368019104, 0.17032255232334137, 0.2968946099281311, 0.9064648747444153, 0.20286430418491364, -0.314857542514801, 0.8612820506095886, 0.8801032304763794, -1.8123666048049927, -0.25707873702049255, 2.165698766708374, 0.9817565083503723, -0.49742424488067627, -0.07699992507696152, -1.2113924026489258, 3.1054177284240723, -0.519324779510498, -0.4108600616455078, -0.304080992937088, 0.8991852402687073, 1.6884210109710693, -1.8129315376281738, -2.5334930419921875, -16.746444702148438, -1.7628084421157837, 0.5571511387825012, -1.4183982610702515, 1.5504463911056519, 0.6911795735359192, -3.649590492248535, 2.022327423095703, -2.5500311851501465, 2.213998317718506, 2.615809679031372, -0.9091132879257202, 1.0820329189300537, 1.7998085021972656, -0.8423323035240173, -2.095799207687378, 1.9464964866638184, -1.056363821029663, -0.09578755497932434, -0.638064444065094, 1.5618929862976074, -5.815789699554443, -0.3543508052825928, 2.3502936363220215, -1.093563437461853, -1.3723341226577759, -0.6136690974235535, -2.4332292079925537, 1.1628696918487549, 0.3116433620452881, 1.5328223705291748, 0.5648418664932251, 0.9740066528320312, -0.9202966094017029, -1.4854629039764404, -1.2050803899765015, 2.659079074859619, -1.1692568063735962, 1.1759611368179321, 4.120394706726074, 2.610076904296875, -0.14936979115009308, -1.875211477279663, 0.8212597966194153, -1.9211053848266602, -1.4175941944122314, -0.5846256613731384, -0.690183162689209, -1.1378169059753418, -1.4250489473342896, 1.1673277616500854, 0.040956493467092514, 1.9475429058074951, 0.7353234887123108, -2.9224069118499756, -1.3293306827545166, -2.316905975341797, -2.0420708656311035, 2.7564311027526855, -1.7019257545471191, -0.2830526828765869, 1.2794867753982544, 0.4474509656429291, -0.003247612388804555, 0.01786811463534832, 0.602853536605835, -1.4508010149002075, -0.3065791726112366, -2.882059335708618, 1.4577745199203491, 0.6909635066986084, -3.7453293800354004, -1.204262375831604, -1.3935039043426514, -4.170105934143066, 0.17500697076320648, -1.3496121168136597, 0.4040686786174774, 0.9590083360671997, -1.7751587629318237, -1.9968565702438354, -1.4002957344055176, -1.2603455781936646, -1.3798226118087769, 0.9693700671195984, 2.020787000656128, 2.225487470626831, 17.021141052246094, 0.28371766209602356, -1.3550068140029907, 0.44467592239379883, -0.07240370661020279, -1.019081473350525, -1.1304168701171875, -0.2447797656059265, -0.024730583652853966, 1.1860013008117676, -0.7542895674705505, 3.1227612495422363, 0.057108279317617416, -0.9136328101158142, -0.7105880975723267, -0.7073333263397217, -0.17020267248153687, 2.4232122898101807, 0.8117231130599976, -1.2885031700134277, -0.41253969073295593, 1.081378698348999, 0.4956728219985962, 1.576138973236084, 20.33367347717285, -2.4663820266723633, 1.1140756607055664, 0.43186208605766296, -0.7559896111488342, -1.800964117050171, -1.1249206066131592, -0.5887366533279419, -1.0336761474609375, -1.0780752897262573, -0.5961395502090454, -0.65133136510849, -2.0802321434020996, -0.4343656301498413, -0.3255230188369751, -0.6215301156044006, 0.9980890154838562, 1.468843698501587, 0.6822357773780823, -1.5308525562286377, -0.9684828519821167, -0.7561096549034119, -0.2894931733608246, -0.6245543360710144, -0.44178861379623413, -0.34920328855514526, 0.1061822921037674, -1.0787301063537598, -0.6818966865539551, 14.104609489440918, -1.574560284614563, -0.4810059368610382, -1.6917762756347656, -0.07452910393476486, 0.9325471520423889, -1.3594282865524292, 5.495889186859131, 0.6995756030082703, 2.5825297832489014, -1.3854477405548096, 1.05087149143219, -0.43976864218711853, -0.4205496907234192, 0.940244734287262, -0.2286333441734314, 0.5026404857635498, -3.3141536712646484, 1.907901406288147, 0.4133322834968567, 1.2172785997390747, -3.030632734298706, 2.5061028003692627, -0.7122790217399597, 0.8139922618865967, 0.4686121344566345, 1.206977128982544, 0.41199833154678345, -0.9777191877365112, 0.14933376014232635, 0.3062911927700043, 0.8790693879127502, -0.03787629306316376, -0.3482292890548706, -2.5406408309936523, -0.7065497636795044, -0.5193964242935181, -1.2267956733703613, -1.2872369289398193, -2.1541247367858887, -0.38793426752090454, 3.163083076477051, -0.698985755443573, -0.08101636916399002, -1.2095668315887451, 1.938093662261963, -1.9921988248825073, -5.662814617156982, 2.209376335144043, 1.6432373523712158, 0.5128673911094666, -0.8650946021080017, -0.05187083035707474, 0.5707094669342041, -0.42076778411865234, 2.127638101577759, 0.7087818384170532, 0.7163520455360413, -0.7872103452682495, -0.0659162700176239, 12.733528137207031, 0.6076675653457642, -0.4052138328552246, -0.8571019172668457, -1.2588001489639282, 1.1796274185180664, -0.9018959403038025, -1.3887475728988647, -1.4703518152236938, -0.9198132157325745, 0.0017395259346812963, -2.4795238971710205, -0.8793751001358032, -0.17470379173755646, 1.979001522064209, -1.5632424354553223, -2.4458253383636475, -0.7320452332496643, 1.4285404682159424, 0.027471497654914856, -1.0296635627746582, -1.0334621667861938, 2.437871217727661, 0.2087571918964386, -2.6004738807678223, 1.2773337364196777, 1.6191483736038208, 1.3386059999465942, 0.8897913694381714, -0.5490239262580872, -3.9719667434692383, 2.129037857055664, 2.087528944015503, -2.15431809425354, 29.20159339904785, -0.935662567615509, 0.8156343698501587, 1.0961204767227173, -0.30121421813964844, -0.8296844959259033, 0.09584176540374756, -0.8832710385322571, 0.30333980917930603, -1.5649670362472534, 0.07232993096113205, 0.5676826238632202, -1.9176114797592163, -0.2453525960445404, -1.3423376083374023, 0.07404948025941849, -1.4510717391967773, 7.438153266906738, -1.2263362407684326, 1.3182612657546997, -0.17456232011318207, 1.8569121360778809, -0.2389189451932907, -5.073421955108643, 3.0422446727752686, -0.3770614564418793, -0.34761375188827515, -0.09597090631723404, 12.46324634552002, 0.019513068720698357, -1.4786548614501953, 0.22139210999011993, -1.6869349479675293, -6.283942222595215, -2.0099050998687744, -0.7931303977966309, 1.0584547519683838, 0.0870506688952446, -0.5977337956428528, 1.039803385734558, -0.02410551905632019, 0.5429665446281433, -1.468873381614685, -1.5603673458099365, -1.9927208423614502, 1.1622651815414429, -0.4652099907398224, 0.15406781435012817, 1.5193439722061157, -0.304821252822876, 0.7404569983482361, 0.3143632709980011, 2.1954448223114014, -0.6052741408348083, 1.006996989250183, 0.6849672794342041, 0.7933135032653809, 0.6244187951087952, 2.1794655323028564, -1.1531487703323364, -0.8216773271560669, 1.3448415994644165, -1.2206007242202759, 1.5017073154449463, 2.567746162414551, -3.13846755027771, -1.379941463470459, -1.8363101482391357, -2.1611671447753906, 1.6202806234359741, -2.3520689010620117, -0.20300859212875366, -3.1621053218841553, -3.493645191192627, -0.33599206805229187, -4.029370307922363, 2.7445454597473145, -3.039252996444702, 3.506478786468506, -1.2451955080032349, -0.30757272243499756, -1.3103997707366943, 4.898952960968018, 0.8130592107772827, 1.2969497442245483, 2.9647724628448486, -0.5148171782493591, -3.5259039402008057, 0.33536702394485474, 2.7986841201782227, -0.44587966799736023, -1.0687172412872314, 0.36274707317352295, 0.45437049865722656, 0.9930498003959656, 0.9613242745399475, -1.3470255136489868, 0.060425035655498505, -0.045690570026636124, -0.19884879887104034, 2.5177135467529297, 0.7583354711532593, -2.377901315689087, 1.1640945672988892, -0.43149805068969727, 7.291849613189697, 2.0005970001220703, -1.2000147104263306, -0.49700936675071716, 0.6483381986618042, 1.2571351528167725, -0.3531379997730255, 2.014600992202759, 0.34171468019485474, 2.587174654006958, 0.1277480274438858, -0.06114566698670387, 1.06635320186615, -2.035268545150757, 0.2742825150489807, 0.3228655755519867, 1.445804476737976, 2.31427001953125, 0.14605289697647095, 0.5331995487213135, 1.9181835651397705, -0.10385754704475403, 1.7656514644622803, 1.7828038930892944, 6.644048690795898, 0.19457484781742096, -0.1682659238576889, 1.6182514429092407, -2.4955360889434814, -1.2815250158309937, -1.8229694366455078, -2.5223028659820557, 0.4497615396976471, 2.3588433265686035, -0.9117630124092102, 0.8565409779548645]}\n",
|
|
"----------------------------------------\n"
|
|
]
|
|
}
|
|
],
|
|
"source": [
|
|
"index_name = os.getenv(\"ELASTICSEARCH_INDEX\")\n",
|
|
"\n",
|
|
"response = es.search(\n",
|
|
" index=index_name,\n",
|
|
" body={\n",
|
|
" \"query\": {\"match_all\": {}},\n",
|
|
" \"size\": 10 \n",
|
|
" }\n",
|
|
")\n",
|
|
"\n",
|
|
"for hit in response[\"hits\"][\"hits\"]:\n",
|
|
" print(\"ID:\", hit[\"_id\"])\n",
|
|
" print(\"Source:\", hit[\"_source\"])\n",
|
|
" print(\"-\" * 40)"
|
|
]
|
|
}
|
|
],
|
|
"metadata": {
|
|
"kernelspec": {
|
|
"display_name": "assistance-engine",
|
|
"language": "python",
|
|
"name": "python3"
|
|
},
|
|
"language_info": {
|
|
"codemirror_mode": {
|
|
"name": "ipython",
|
|
"version": 3
|
|
},
|
|
"file_extension": ".py",
|
|
"mimetype": "text/x-python",
|
|
"name": "python",
|
|
"nbconvert_exporter": "python",
|
|
"pygments_lexer": "ipython3",
|
|
"version": "3.12.11"
|
|
}
|
|
},
|
|
"nbformat": 4,
|
|
"nbformat_minor": 5
|
|
}
|