LLM之RAG实战(十四)| 利用LongContextRetriver克服RAG中的中间丢失现象

81 篇文章 11 订阅

       人类和大型语言模型(LLM)都有一个共同的行为模式:他们往往擅长处理位于给定内容开头或结尾的信息,而中间的信息往往会被忽视。

       来自斯坦福大学、加州大学伯克利分校和Samaya AI的研究人员在论文《Lost in the Middle: How Language Models Use Long Contexts》中发现了一种类似于人类首要/近因效应的现象。这意味着,像人类一样,LLM更有可能回忆起位于输入开始或结束的信息,并倾向于忽略在中间的内容。

      根据他们的发现,当这些模型检索信息时,当相关数据位于输入的开始或结束时,它们的性能是最优的。然而,当相关信息处于在中间时,性能会显著下降。当模型被要求回答要求从多个来源提取信息的问题时,这种下降尤其明显,类似于学生在几本书中搜索相关细节以进行考试。

       研究表明,模型批处理的数据越多,其性能就越差。在高效处理大量信息至关重要的现实世界场景中,这可能会带来挑战。

       此外,研究表明,LLM利用额外信息的有效性是有限的,警告不要使用带有过于详细说明的“mega-prompts”,因为它们可能会适得其反。

       这种“中间丢失”现象不仅出现在传统LLM,支持长上下文的模型也会出现这种现象,比如GPT-4 32K或具有100Ktokens上下文窗口的Claude。研究测试了七种语言模型,包括开源大模型和闭源大模型,包括新的GPT-3.5 16K和Claude 1.3 100K,它们的性能都显示出U型曲线模式,对于在文本开头或结尾找到解决方案的任务,效果更好。

       这就提出了关于具有大上下文窗口的模型的实用性的问题,当通过在较小的分段中处理上下文可以获得更好的结果时。即使是领先的型号GPT-4也表现出了这种效果,尽管总体性能水平更高。

一、检索增强生成

       当我们不想微调模型,但仍想从自定义知识库中生成答案时,RAG特别有用。想象一下,我们有多个音频和视频,那么我们如何使用一种机制来帮助从这些来源检索信息,并根据用户查询生成见解。

RAG由检索和生成组件组成:

  • 对于检索,我们使用一种称为语义搜索的技术;
  • 对于Generation,我们使用大型语言模型来查看检索到的块,并生成类似人类的响应。

       无论我们使用什么样的大模型,当检索到10多个文档时,都会出现显著的性能下降。简言之:当模型必须在长上下文中访问相关信息时,它们往往会忽略所提供的文档。

二、实现更好的RAG系统以避免LIM(中间丢失)的技术

  • 为每个文档创建一个知识库是不可取的,这样基于语义相似性的检索模型难以正确检索到相关的上下文集合;
  • 为了在一定程度上避免LIM问题,我们将创建不同的VectorStore,并使用merge Retriever将其合并在一起;
  • 然后,我们将使用LongContextReorder重新排序结果以避免性能下降

三、合并检索器

      MergerRetriever以列表的形式输入多个检索器,并将通过get_relevant_documents()方法获取的结果合并到一个列表中。合并后的结果将是与查询相关的文档列表,这些文档已由不同的检索器进行了排序。

        MergerRetriever类可以通过多种方式用于提高文档检索的准确性:

  • 首先,它可以组合多个检索器的结果,这有助于降低结果中出现偏差的风险;
  • 其次,它可以对不同检索器的结果进行排序,这有助于确保首先返回最相关的文档。

四、准备工作

Chromadb:用于存储文本嵌入的矢量存储。

三种不同的嵌入模型促进高级语义分析,模型如下:

BAAI/bge-small-en-v1.5Sentence-transformers/all-MiniLM-L6-v2 OpenAI Embeddigs

Langchain:使用大型语言模型(LLM)进行应用程序开发的框架。

Zephyr-7B Beta:作为应用程序核心组件的大型语言模型。

上下文压缩:通过基于查询上下文压缩和过滤文档来解决检索中的挑战。在检索过程中涉及一个基本检索器和一个文档压缩器。

五、代码实现

5.1 安装所需的包

%%capture!pip install -qU langchain chromadb huggingface_hub sentence-transformers pypdf cohere openai tiktoken

5.2 导入所需的包

import osfrom langchain.document_transformers import (    EmbeddingsClusteringFilter,    EmbeddingsRedundantFilter,)from langchain.embeddings import HuggingFaceEmbeddings, OpenAIEmbeddings,HuggingFaceBgeEmbeddingsfrom langchain.retrievers import ContextualCompressionRetrieverfrom langchain.retrievers.document_compressors import DocumentCompressorPipelinefrom langchain.document_transformers import LongContextReorderfrom langchain.retrievers.merger_retriever import MergerRetrieverfrom langchain.text_splitter import RecursiveCharacterTextSplitterfrom langchain.vectorstores import FAISS,Chromafrom langchain.document_loaders import PyPDFLoader

5.3 设置OpenAI Key

import osfrom getpass import getpassimport openai#OPENAI_API_KEY = os.getenv("OPENAI_API_KEY")if not OPENAI_API_KEY:    OPENAI_API_KEY = getpass("Enter your OpenAI API key: ")openai.api_key = OPENAI_API_KEY

5.4 设置Embedding模型

hf_embeddings = HuggingFaceEmbeddings(model_name="sentence-transformers/all-MiniLM-L6-v2",                                      model_kwargs={"device":"cpu"},                                      encode_kwargs = {'normalize_embeddings': False})hf_bge_embeddings = HuggingFaceBgeEmbeddings(model_name="BAAI/bge-large-en",                                             model_kwargs={"device":"cpu"},                                             encode_kwargs = {'normalize_embeddings': False})openai_embeddings = OpenAIEmbeddings(openai_api_key=OPENAI_API_KEY)

5.5 数据处理

loader_mh  = PyPDFLoader("/content/mental_health_Document.pdf")documnet_mh = loader_mh.load()print(len(documnet_mh))loader_esops = PyPDFLoader("/content/Employee-Stock-Option-Plans-ESOP-Best-Practices-2.pdf")documnet_esops = loader_esops.load()print(len(documnet_esops))#####OUTPUT############1344

5.6 把文档split为块

text_splitter = RecursiveCharacterTextSplitter(chunk_size=1000,chunk_overlap=200)text_mh = text_splitter.split_documents(documnet_mh)text_esops = text_splitter.split_documents(documnet_esops)print(len(text_mh))print(len(text_esops))########OUTPUT########5650

5.7 实例化两个Chromadb索引,每一个都使用不同的embedding

import chromadbABS_PATH = os.path.dirname(os.path.abspath("."))DB_DIR = os.path.join(ABS_PATH, "db")#client_settings = chromadb.config.Settings(    is_persistent=True,    persist_directory=DB_DIR,    anonymized_telemetry=False,)#mh_vectorstore = Chroma.from_documents(text_mh,                                       hf_bge_embeddings,                                       client_settings=client_settings,                                       collection_name="mental_health",                                       collection_metadata={"hnsw":"cosine"},                                       persist_directory="/store/mental_health")esops_vectorstore = Chroma.from_documents(text_esops,                                          hf_embeddings ,                                          client_settings=client_settings,                                          collection_name="esops",                                          collection_metadata={"hnsw":"cosine"},                                          persist_directory="/store/mental_health")

5.8 加载VectorStore

定义具有两个不同嵌入和不同搜索类型的两个不同检索器。

retriever_mh = mh_vectorstore.as_retriever(search_type="mmr",                                  search_kwargs={"k": 5, "include_metadata": True}                                  )retriever_esops = esops_vectorstore.as_retriever(search_type="mmr",                                        search_kwargs={"k": 5, "include_metadata": True}

5.9 合并所有检索器

保存两个检索器的输出,并且可以使用在不同类型chain上的任何其他检索器。

      Langchain中的EnsembleRetrieverMergerRetriever(LOTR)具有相似的功能,因为它们都组合了多个检索器的结果。但是,它们处理输出合并的方式不同。

      EnsembleRetriever使用一种称为倒数融合(RRF)的技术来组合结果,它将检索器列表和相应的权重列表作为输入。如果没有提供权重,则默认为所有检索器的权重相等。每份文件的RRF分数计算为权重乘以排名的倒数加上常数“c”。最终结果是按加权RRF分数降序排列的项目列表

       MergerRetriever(LOTR)以循环方式合并来自不同检索器的输出。它首先从所有检索器获取相关文档,然后合并它们,合并后的结果将是与查询相关的文档列表,这些文档已由不同的检索器进行了排序。来自合并检索器的冗余结果可以使用具有其他嵌入的EmbeddingsRedundantFilter来删除。文档也可以分为意义的簇或“中心”,可以选择离该中心最近的文档作为最终结果。这可以使用EmbeddingsClusteringFilter来完成。

      EnsembleRetriever可用于通过为检索器分配不同的权重来调整不同检索器对最终结果的影响。

      另一方面,MergerRetriever可用于降低结果中存在偏差的风险,并确保首先返回最相关的文档。

lotr = MergerRetriever(retrievers=[retriever_mh, retriever_esops])#for chunks in lotr.get_relevant_documents("What is esops?"):    print(chunks.page_content)
See discussions, st ats, and author pr ofiles f or this public ation at : https://www .researchgate.ne t/public ation/255657987Defining mental health and mental illnessArticle  · Januar y 2009CITATIONS9READS141,1762 author s, including:Some o f the author s of this public ation ar e also w orking on these r elat ed pr ojects:Cultural P sychiatr y View pr ojectDiversifying the medic al curriculum  View pr ojectNisha Dogr aUniv ersity of L eicester152 PUBLICA TIONS    2,847  CITATIONS    SEE PROFILEAll c ontent f ollo wing this p age was uplo aded b y Nisha Dogr a on 20 May 2014.The user has r equest ed enhanc ement of the do wnlo aded file.ESOPS FOR THE LONG TERM  Part IVare useful as they relate to ‘societal ’ expectations of children.Different de finitions are used to de fine mental ill health. The WHO uses the term ‘mentaldisorders ’ broadly, to include mental illness, intellectual disability, personality disorder, sub-stance dependence and adjustment to adverse life events (WHO 1992). The WHO acknowledgesthat the word ‘disorder ’ is used to avoid perceived greater dif ficulties associated with ‘illness ’ –for example, stigma and the emphasis on a medical model. Meltzer et al.  (2000) use the term‘mental disorders ’ in reference to emotional, conduct, hyperkinetic and less common disordersas de fined by the ICD (International Classi fication of Diseases) 10 and DSM ( Diagnostic andStatistical Manual of Mental Disorders ) IV. Jorm (2000) focuses speci fically on depression andpsychosis. Meanwhile, Rowling et al. (2002) use the terms ‘mental illness ’ and ‘mental disorder ’What is an ESOP?  •An Employee Stock Options Plan (ESOP)   •An allocation  of shares that will be granted to employees in the future in the form of stock options  –How much equity should we set aside for employees?   •A plan for how these options will be distributed:  –How many shares will individual employees receive?  –What terms will govern these grants?   •The plan is as important as the allocation!ing prevalence rates of diagnosable mental disorder among 11 –15-year-olds: depression 1.8 percent; anxiety 4.6 per cent; conduct disorder 6.2 per cent (Meltzer et al.  2000). Moreover, theprevalence of serious mental illness increases greatly during adolescence (Davidson and Manion1996; Smith and Leon 2001; Rickwood et al. 2005). Such problems have a negative impact on anindividual ’s development across all areas of their lives – i.e. self-esteem, relationships, academicsuccess, career options and lifestyle (Mental Health Foundation 1999; Meltzer et al.  2000).Furthermore, the burden of adolescent mental health problems and illness involves enormousfinancial costs to individuals, families and society. These include loss of earnings for parentsand adolescents, and social care, health service, education and Home Of fice costs (AppletonLate-VC Flush with capital,  startups at this stage begin to steadily ramp -up hiring, yet employees still want equity  Important to have standardized the  ESOP and the amount of equity granted to new hires at each level  Growth  Company is aggressively pursuing growth and hiring; likely to have exhausted most of the ESOP  Most of the ESOP is gone, but shares remaining are more valuable; use them to allow  new hires to share in the upside  Make employee equity allocations and set up an ESOP sometime between the pre -seed and early -VC stageKendall, R. (1988) Diagnosis and classi fication, in R. Kendall and A. Zealley (eds) Companion to PsychiatricStudies . Edinburgh: Churchill Livingstone.Leighton, S. (2006) Pilot thesis: ‘What do I think? Where do I go? ’ Exploring adolescents ’ understanding ofmental health issues and their attitudes towards seeking help for mental health problems. Unpublisheddoctoral assignment.16 Nursing in child and adolescent mental healthLegal Advice  When structuring an ESOP, engage an experienced startup lawyer with regional expertise to standardize the terms and languageof the Jewish people by the Nazis (Link and Phelan 2001). Stigma was de fined by Goffman(1970) as the position of the individual who is disquali fied from full social acceptance. It isperceived as the outcome of a process of social labelling which singles out difference, names thisdifference inferiority, subsequently blames those who are different for their otherness andcontributes to the creation of a spoilt identity (Goffman 1970). Since that seminal develop-ment, the concept has evolved. For example, stigma can be described with reference to therelationships between a set of interrelated concepts, rather than focusing solely on personalattributes – i.e. stigma exists when elements of labelling, stereotyping, separation, status lossand discrimination occur together in a power situation that allows these processes to happen(Link and Phelan 2001).The nature and extent of stigmatization in adult mental illnessThe defining difference between Silicon Valley companies and almost every other industry in the U.S. is the virtually universal practice among tech companies of distributing meaningful equity (usually in the form of stock options) to ordinary employees .  A Defining Characteristic of Startup Culture  Steven Johnson, Technology Writer  •Startups are a unique case . Unlike at larger corporations, employee ownership is an essential element of startup communities and culture  –As high -risk/high -reward enterprises, startups use options to align employee compensation with the risk -prone mentality of the business  –Startups seeking to achieve a “big exit” use options to align all employees to drive toward this desired outcome
for chunks in lotr.get_relevant_documents("What is consequence of stigma?"):    print(chunks.page_content)######OUTPUT###########applicable to children.Consequences of stigmaStigmatization of the mentally ill is understood to be prejudicial to them, injurious to all aspectsof their treatment in mental health services and damaging to their role as members of society(Hinshaw 2005). Stigmatization leads to individual and social discrimination against the stig-matized person. Several authors identify that the discriminatory behaviour displayed can behostile or avoidant and that it operates throughout personal and social relationships, pervadingthe home, workplace, local community, health and social welfare systems. This can result inincreased feelings of shame, increased personal and social impairment and isolation, perpetu-ation and worsening of an illness, reluctance to access health care and infringement of humanrights (Link and Phelan 2001; Crisp 2004; Hinshaw 2005).Children, mental illness and stigmaSocial Impact Considerations  •Companies focused on social impact goals and/or in developing markets may have unique ESOP considerations  •Consider two possible scenarios:  –Financial Inclusion Goals : Employee -friendly hiring practices and ESOPs can help build local financial inclusion. If this is part of your corporate mandate, consider the added social impact value of offering your options program to all levels of employees  –Local Ownership Culture : Conversely, in certain regions stock options may have negligible value to employees, either because of risk aversion, lack of liquidity, or lack of understanding. If this is the case, it is not worth extensively offering options to employees who would rather be paid in cash1997; Crisp et al. 2000; Sartorius 2002; Gureje et al. 2005).Definition of the concept of stigmaStigma can be viewed as a social construct. Setting people apart from other members of societyhas a long history. In ancient Greece members of tainted groups – for example, slaves andDefining mental health and mental illness 11THE FINE PRINT – TERMS  Part IIITwo large-scale literature reviews have suggested that the media can be regarded as animportant in fluence on community attitudes towards mental illness. It is considered thatthere is a complex and circular relationship between mass media representation of mentalillness and public understanding, with negative media images promoting negative attitudesand resultant media coverage feeding off an already negative public perception. It is alsothought that negative images will have a greater effect on public attitudes than positive por-trayals (Francis et al.  2001; Edney 2004). Work by Wahl (2003) suggests that this is equally...perceived as the outcome of a process of social labelling which singles out difference, names thisdifference inferiority, subsequently blames those who are different for their otherness andcontributes to the creation of a spoilt identity (Goffman 1970). Since that seminal develop-ment, the concept has evolved. For example, stigma can be described with reference to therelationships between a set of interrelated concepts, rather than focusing solely on personalattributes – i.e. stigma exists when elements of labelling, stereotyping, separation, status lossand discrimination occur together in a power situation that allows these processes to happen(Link and Phelan 2001).The nature and extent of stigmatization in adult mental illnessESOPS FOR THE LONG TERM  Part IV

5.10 从合并的检索器中删除多余的结果

EmbeddingsRedundantFilter通过比较冗余文档的嵌入来删除冗余文档

filter = EmbeddingsRedundantFilter(embeddings=openai_embeddings)pipeline = DocumentCompressorPipeline(transformers=[filter])compression_retriever = ContextualCompressionRetriever(base_compressor=pipeline,                                                       base_retriever=lotr)

5.11 通过原始检索器分数排序,来获得最终文档

  • 这个过滤器将把文档向量划分为聚类或意义的“中心”;
  • 然后,将为最终结果选择离该中心最近的文档;
  • 默认情况下,结果文档将按簇进行排序/分组;
  • 如果希望最终文档按原始检索器分数排序,需要将“排序”参数添加为True
filter_ordered_by_retriever = EmbeddingsClusteringFilter(    embeddings=openai_embeddings,    num_clusters=10,    num_closest=1,    sorted=True,)pipeline = DocumentCompressorPipeline(transformers=[filter_ordered_by_retriever])compression_retriever = ContextualCompressionRetriever(    base_compressor=pipeline, base_retriever=lotr)

5.12 重新排序结果以避免性能下降

lotr = MergerRetriever(retrievers=[retriever_mh, retriever_esops])query = "What is ESOPS?"docs = lotr.get_relevant_documents(query)docs#####OUTPUT#######[Document(page_content='See discussions, st ats, and author pr ofiles f or this public ation at : https://www .researchgate.ne t/public ation/255657987\nDefining mental health and mental illness\nArticle  · Januar y 2009\nCITATIONS\n10READS\n151,087\n2 author s, including:\nNisha Dogr a\nUniv ersity of L eicester\n152 PUBLICA TIONS \xa0\xa0\xa02,974  CITATIONS \xa0\xa0\xa0\nSEE PROFILE\nAll c ontent f ollo wing this p age was uplo aded b y Nisha Dogr a on 20 May 2014.\nThe user has r equest ed enhanc ement of the do wnlo aded file.', metadata={'source': 'Defining_mental_health_and_mental_illness.pdf', 'page': 0}), Document(page_content='ESOPS FOR THE LONG TERM  Part IV', metadata={'source': 'Employee-Stock-Option-Plans-ESOP-Best-Practices-2.pdf', 'page': 34}), Document(page_content='of the Jewish people by the Nazis (Link and Phelan 2001). Stigma was de fined by Goffman\n(1970) as the position of the individual who is disquali fied from full social acceptance. It is\nperceived as the outcome of a process of social labelling which singles out difference, names thisdifference inferiority, subsequently blames those who are different for their otherness andcontributes to the creation of a spoilt identity (Goffman 1970). Since that seminal develop-ment, the concept has evolved. For example, stigma can be described with reference to therelationships between a set of interrelated concepts, rather than focusing solely on personalattributes – i.e. stigma exists when elements of labelling, stereotyping, separation, status loss\nand discrimination occur together in a power situation that allows these processes to happen(Link and Phelan 2001).\nThe nature and extent of stigmatization in adult mental illness', metadata={'source': 'Defining_mental_health_and_mental_illness.pdf', 'page': 6}), Document(page_content='The defining difference between Silicon Valley companies and almost \nevery other industry in the U.S. is the virtually universal practice among \ntech companies of distributing meaningful equity (usually in the form of \nstock options) to ordinary employees .  A Defining Characteristic of Startup Culture  \nSteven Johnson, Technology Writer  \n•Startups are a unique case . Unlike at larger corporations, employee \nownership is an essential element of startup communities and culture  \n–As high -risk/high -reward enterprises, startups use options to align \nemployee compensation with the risk -prone mentality of the \nbusiness  \n–Startups seeking to achieve a “big exit” use options to align all \nemployees to drive toward this desired outcome', metadata={'source': 'Employee-Stock-Option-Plans-ESOP-Best-Practices-2.pdf', 'page': 8}), Document(page_content='provide a useful starting point from which to discuss mental health issues with children andtheir families.\nDefinitions of child mental health\nDefinitions of mental health as they relate speci fically to children have been provided by the\nHealth Advisory Service (HAS) (1995) and the Mental Health Foundation (1999). These def-initions bear similarities to those provided by Ryff and Singer (1998) and Rowling et al. (2002),\nwhile recognizing the developmental context of childhood – i.e. the ability to develop psycho-\nlogically, emotionally, creatively, intellectually and spiritually; initiate, develop and sustainmutually satisfying personal relationships; use and enjoy solitude; become aware of others andempathize with them; play and learn; develop a sense of right and wrong; and resolve problemsand setbacks and learn from them (HAS 1995; Mental Health Foundation 1999). Such de finitions\nare useful as they relate to ‘societal ’ expectations of children.', metadata={'source': 'Defining_mental_health_and_mental_illness.pdf', 'page': 3}), Document(page_content='What is an ESOP?  \n•An Employee Stock Options Plan (ESOP)  \n \n•An allocation  of shares that will be granted to employees in the future \nin the form of stock options  \n–How much equity should we set aside for employees?  \n \n•A plan for how these options will be distributed:  \n–How many shares will individual employees receive?  \n–What terms will govern these grants?  \n \n•The plan is as important as the allocation!', metadata={'source': 'Employee-Stock-Option-Plans-ESOP-Best-Practices-2.pdf', 'page': 3}), Document(page_content='ing prevalence rates of diagnosable mental disorder among 11 –15-year-olds: depression 1.8 per\ncent; anxiety 4.6 per cent; conduct disorder 6.2 per cent (Meltzer et al.  2000). Moreover, the\nprevalence of serious mental illness increases greatly during adolescence (Davidson and Manion1996; Smith and Leon 2001; Rickwood et al. 2005). Such problems have a negative impact on an\nindividual ’s development across all areas of their lives – i.e. self-esteem, relationships, academic\nsuccess, career options and lifestyle (Mental Health Foundation 1999; Meltzer et al.  2000).\nFurthermore, the burden of adolescent mental health problems and illness involves enormousfinancial costs to individuals, families and society. These include loss of earnings for parents\nand adolescents, and social care, health service, education and Home Of fice costs (Appleton', metadata={'source': 'Defining_mental_health_and_mental_illness.pdf', 'page': 5}), Document(page_content='Legal Advice  \nWhen structuring an ESOP, engage an experienced \nstartup lawyer with regional expertise to standardize the \nterms and language', metadata={'source': 'Employee-Stock-Option-Plans-ESOP-Best-Practices-2.pdf', 'page': 33}), Document(page_content='Mental health literacy\nFinally, in this section, it is also worth considering how the mental health ‘literacy ’ of adults\nand children in the general population varies from that of professionals. In all phases of a recentresearch project, conceptual confusion was identi fied in the literature review and among ado-\nlescent participants (Leighton 2006, 2008). Focus group participants did not find the single\ncontinuum model suggested by the WHO (2000) helpful (Leighton 2006). Furthermore, in thefocus group feedback session, participants suggested that labelling serious mental illnesses suchas schizophrenia and major depression, as ‘mental health problems ’, diminishes the seriousness\nof mental illness, with implications for attitudes towards, and treatment of, those with mentalillness (Leighton 2006). It is also evident that there is considerable confusion for young peoplebetween the terms ‘mental health ’, ‘mental illness ’ and ‘learning disability ’ (Dogra et al.  2007;\nRose et al. 2007).', metadata={'source': 'Defining_mental_health_and_mental_illness.pdf', 'page': 5}), Document(page_content='Late-VC Flush with capital,  startups at this stage \nbegin to steadily ramp -up hiring, yet \nemployees still want equity  Important to have standardized the  \nESOP and the amount of equity granted \nto new hires at each level  \nGrowth  Company is aggressively pursuing \ngrowth and hiring; likely to have \nexhausted most of the ESOP  Most of the ESOP is gone, but shares \nremaining are more valuable; use them \nto allow  new hires to share in the upside  Make employee equity allocations and set up an ESOP sometime \nbetween the pre -seed and early -VC stage', metadata={'source': 'Employee-Stock-Option-Plans-ESOP-Best-Practices-2.pdf', 'page': 10})]

5.13 重新排序的文档(处理中间丢失的文档)

reordering = LongContextReorder()reordered_docs = reordering.transform_documents(docs)reordered_docs#####OUTPUT###[Document(page_content='ESOPS FOR THE LONG TERM  Part IV', metadata={'source': 'Employee-Stock-Option-Plans-ESOP-Best-Practices-2.pdf', 'page': 34}), Document(page_content='The defining difference between Silicon Valley companies and almost \nevery other industry in the U.S. is the virtually universal practice among \ntech companies of distributing meaningful equity (usually in the form of \nstock options) to ordinary employees .  A Defining Characteristic of Startup Culture  \nSteven Johnson, Technology Writer  \n•Startups are a unique case . Unlike at larger corporations, employee \nownership is an essential element of startup communities and culture  \n–As high -risk/high -reward enterprises, startups use options to align \nemployee compensation with the risk -prone mentality of the \nbusiness  \n–Startups seeking to achieve a “big exit” use options to align all \nemployees to drive toward this desired outcome', metadata={'source': 'Employee-Stock-Option-Plans-ESOP-Best-Practices-2.pdf', 'page': 8}), Document(page_content='What is an ESOP?  \n•An Employee Stock Options Plan (ESOP)  \n \n•An allocation  of shares that will be granted to employees in the future \nin the form of stock options  \n–How much equity should we set aside for employees?  \n \n•A plan for how these options will be distributed:  \n–How many shares will individual employees receive?  \n–What terms will govern these grants?  \n \n•The plan is as important as the allocation!', metadata={'source': 'Employee-Stock-Option-Plans-ESOP-Best-Practices-2.pdf', 'page': 3}), Document(page_content='Legal Advice  \nWhen structuring an ESOP, engage an experienced \nstartup lawyer with regional expertise to standardize the \nterms and language', metadata={'source': 'Employee-Stock-Option-Plans-ESOP-Best-Practices-2.pdf', 'page': 33}), Document(page_content='Late-VC Flush with capital,  startups at this stage \nbegin to steadily ramp -up hiring, yet \nemployees still want equity  Important to have standardized the  \nESOP and the amount of equity granted \nto new hires at each level  \nGrowth  Company is aggressively pursuing \ngrowth and hiring; likely to have \nexhausted most of the ESOP  Most of the ESOP is gone, but shares \nremaining are more valuable; use them \nto allow  new hires to share in the upside  Make employee equity allocations and set up an ESOP sometime \nbetween the pre -seed and early -VC stage', metadata={'source': 'Employee-Stock-Option-Plans-ESOP-Best-Practices-2.pdf', 'page': 10}), Document(page_content='Mental health literacy\nFinally, in this section, it is also worth considering how the mental health ‘literacy ’ of adults\nand children in the general population varies from that of professionals. In all phases of a recentresearch project, conceptual confusion was identi fied in the literature review and among ado-\nlescent participants (Leighton 2006, 2008). Focus group participants did not find the single\ncontinuum model suggested by the WHO (2000) helpful (Leighton 2006). Furthermore, in thefocus group feedback session, participants suggested that labelling serious mental illnesses suchas schizophrenia and major depression, as ‘mental health problems ’, diminishes the seriousness\nof mental illness, with implications for attitudes towards, and treatment of, those with mentalillness (Leighton 2006). It is also evident that there is considerable confusion for young peoplebetween the terms ‘mental health ’, ‘mental illness ’ and ‘learning disability ’ (Dogra et al.  2007;\nRose et al. 2007).', metadata={'source': 'Defining_mental_health_and_mental_illness.pdf', 'page': 5}), Document(page_content='ing prevalence rates of diagnosable mental disorder among 11 –15-year-olds: depression 1.8 per\ncent; anxiety 4.6 per cent; conduct disorder 6.2 per cent (Meltzer et al.  2000). Moreover, the\nprevalence of serious mental illness increases greatly during adolescence (Davidson and Manion1996; Smith and Leon 2001; Rickwood et al. 2005). Such problems have a negative impact on an\nindividual ’s development across all areas of their lives – i.e. self-esteem, relationships, academic\nsuccess, career options and lifestyle (Mental Health Foundation 1999; Meltzer et al.  2000).\nFurthermore, the burden of adolescent mental health problems and illness involves enormousfinancial costs to individuals, families and society. These include loss of earnings for parents\nand adolescents, and social care, health service, education and Home Of fice costs (Appleton', metadata={'source': 'Defining_mental_health_and_mental_illness.pdf', 'page': 5}), Document(page_content='provide a useful starting point from which to discuss mental health issues with children andtheir families.\nDefinitions of child mental health\nDefinitions of mental health as they relate speci fically to children have been provided by the\nHealth Advisory Service (HAS) (1995) and the Mental Health Foundation (1999). These def-initions bear similarities to those provided by Ryff and Singer (1998) and Rowling et al. (2002),\nwhile recognizing the developmental context of childhood – i.e. the ability to develop psycho-\nlogically, emotionally, creatively, intellectually and spiritually; initiate, develop and sustainmutually satisfying personal relationships; use and enjoy solitude; become aware of others andempathize with them; play and learn; develop a sense of right and wrong; and resolve problemsand setbacks and learn from them (HAS 1995; Mental Health Foundation 1999). Such de finitions\nare useful as they relate to ‘societal ’ expectations of children.', metadata={'source': 'Defining_mental_health_and_mental_illness.pdf', 'page': 3}), Document(page_content='of the Jewish people by the Nazis (Link and Phelan 2001). Stigma was de fined by Goffman\n(1970) as the position of the individual who is disquali fied from full social acceptance. It is\nperceived as the outcome of a process of social labelling which singles out difference, names thisdifference inferiority, subsequently blames those who are different for their otherness andcontributes to the creation of a spoilt identity (Goffman 1970). Since that seminal develop-ment, the concept has evolved. For example, stigma can be described with reference to therelationships between a set of interrelated concepts, rather than focusing solely on personalattributes – i.e. stigma exists when elements of labelling, stereotyping, separation, status loss\nand discrimination occur together in a power situation that allows these processes to happen(Link and Phelan 2001).\nThe nature and extent of stigmatization in adult mental illness', metadata={'source': 'Defining_mental_health_and_mental_illness.pdf', 'page': 6}), Document(page_content='See discussions, st ats, and author pr ofiles f or this public ation at : https://www .researchgate.ne t/public ation/255657987\nDefining mental health and mental illness\nArticle  · Januar y 2009\nCITATIONS\n10READS\n151,087\n2 author s, including:\nNisha Dogr a\nUniv ersity of L eicester\n152 PUBLICA TIONS \xa0\xa0\xa02,974  CITATIONS \xa0\xa0\xa0\nSEE PROFILE\nAll c ontent f ollo wing this p age was uplo aded b y Nisha Dogr a on 20 May 2014.\nThe user has r equest ed enhanc ement of the do wnlo aded file.', metadata={'source': 'Defining_mental_health_and_mental_illness.pdf', 'page': 0})]

注意:在应用LongContextReorder后,可以看到检索到的上下文的顺序有所不同,该命令根据上下文与所请求查询的相关性对检索到的语境进行重新排序。

5.14 设置筛选和LongContext Retriever管道

from re import searchfilter = EmbeddingsRedundantFilter(embeddings=hf_bge_embeddings_small)reordering = LongContextReorder()pipeline = DocumentCompressorPipeline(transformers=[filter, reordering])compression_retriever_reordered = ContextualCompressionRetriever(    base_compressor=pipeline, base_retriever=lotr,search_kwargs={"k": 5, "include_metadata": True})#docs = compression_retriever_reordered.get_relevant_documents("What is esops?")print(len(docs))#print(docs[0].page_content)#print(compression_retriever_reordered.get_relevant_documents("What is the stigma associated with mental health?")[0].page_content)####OUTPUT######10ESOPS FOR THE LONG TERM  Part IVSocial Impact Considerations  •Companies focused on social impact goals and/or in developing markets may have unique ESOP considerations  •Consider two possible scenarios:  –Financial Inclusion Goals : Employee -friendly hiring practices and ESOPs can help build local financial inclusion. If this is part of your corporate mandate, consider the added social impact value of offering your options program to all levels of employees  –Local Ownership Culture : Conversely, in certain regions stock options may have negligible value to employees, either because of risk aversion, lack of liquidity, or lack of understanding. If this is the case, it is not worth extensively offering options to employees who would rather be paid in cash

5.15 使用Langchain实现生成管道

下载模型参数文件

https://huggingface.co/TheBloke/zephyr-7B-beta-GGUF/blob/main/zephyr-7b-beta.Q4_K_M.gguf

从上面的链接下载模型文件,并将其保存到当前工作目录中。

5.16 设置LLM

from langchain.llms import LlamaCppllms = LlamaCpp(streaming=True,                   model_path="zephyr-7b-beta.Q4_K_M.gguf",                   max_tokens = 1500,                   temperature=0.75,                   top_p=1,                   gpu_layers=0,                   stream=True,                   verbose=True,n_threads = int(os.cpu_count()/2),                   n_ctx=4096)

 5.17 设置RetrievalQA chain

from langchain.chains import RetrievalQA#qa = RetrievalQA.from_chain_type(      llm=llms,      chain_type="stuff",      retriever = compression_retriever_reordered,      return_source_documents = True)

5.18 查询

query ="What is esop?"results = qa(query)print(results['result']#print(results["source_documents"])######OUTPUT############' An Employee Stock Options Plan (ESOP) is a plan for allocating shares that will be granted to employees in the future, typically in the form of stock options. It covers the allocation, distribution, and terms of these grants. The ESOP is as important as the allocation!'[_DocumentWithState(page_content='What is an ESOP?  \n•An Employee Stock Options Plan (ESOP)  \n \n•An allocation  of shares that will be granted to employees in the future \nin the form of stock options  \n–How much equity should we set aside for employees?  \n \n•A plan for how these options will be distributed:  \n–How many shares will individual employees receive?  \n–What terms will govern these grants?  \n \n•The plan is as important as the allocation!', metadata={'source': 'Employee-Stock-Option-Plans-ESOP-Best-Practices-2.pdf', 'page': 3}, state={'embedded_doc': [-0.0477779321372509, -0.05912907421588898, 0.006894585210829973, 0.009495058096945286, 0.008375875651836395, -0.005076141562312841, 0.07825859636068344, -0.025947092100977898, 0.019847948104143143, -0.0024352725595235825, 0.009562515653669834, 0.030216794461011887, -0.0353735126554966, -0.00015776196960359812, -0.018419837579131126, 0.018272126093506813, -0.12005319446325302, -0.1032743975520134, -0.034392375499010086, 0.026266442611813545, 0.09963288903236389, -0.046009719371795654, -0.07478812336921692, -0.030698725953698158, 0.029982013627886772, 0.021171731874346733, -0.051244333386421204, -0.02745111659169197, -0.06207985430955887, -0.07174887508153915, -0.02038007415831089, -0.021185295656323433, -0.0035694711841642857, -0.02636570669710636, -0.029851529747247696, 0.018377602100372314, 0.018617423251271248, 0.0807991549372673, -0.016535252332687378, 0.06632521003484726, -0.03029581531882286, -0.00020578228577505797, -0.08707953989505768, -0.05163481831550598, 0.04846195876598358, 0.026893354952335358, 0.012393403798341751, -0.026491863653063774, -0.08438941836357117, 0.02016509138047695, 0.08420383930206299, -0.02924889698624611, -0.0219802875071764, -0.011043763719499111, -0.0028900469187647104, 0.013359839096665382, 0.02929706685245037, -0.022923234850168228, 0.04643339663743973, 0.019249211996793747, 0.024620361626148224, -0.016978763043880463, -0.13372430205345154, 0.0798720270395279, -0.04989897459745407, -0.0007429149700328708, -0.010571084916591644, -0.003756983671337366, -0.023186763748526573, -0.017681391909718513, 0.014714919030666351, 0.004021054599434137, 0.007483848836272955, 0.010871522128582, 0.04632005840539932, 0.02549182064831257, 0.008228282444179058, -0.03574318066239357, -0.006182738114148378, 0.027717234566807747, 0.022869212552905083, 0.03699189051985741, -0.007678935769945383, -0.03230049088597298, 0.04436001181602478, 0.017701977863907814, 0.060042645782232285, -0.024492891505360603, 0.1243278905749321, 0.00765513489022851, 0.02946263737976551, 0.007665819954127073, -0.011789876967668533, -0.030324049293994904, 0.054039742797613144, -0.0006419995916076005, -0.007288116961717606, -0.04046168550848961, -0.09462723881006241, 0.3459928333759308, -0.010785138234496117, 0.03592440113425255, 0.05066058039665222, -0.014113503508269787, 0.011671386659145355, -0.029917461797595024, -0.07056399434804916, 0.04864727333188057, 0.06127146631479263, -0.007904453203082085, -0.06091618165373802, 0.007977291010320187, 0.010406861081719398, -0.03640787675976753, -0.010571037419140339, 0.005456995218992233, -0.029613371938467026, -0.001781815430149436, -0.004520735237747431, -0.008482670411467552, 0.037112124264240265, 0.004724755883216858, -0.015086567029356956, 0.053680699318647385, 0.015379652380943298, -0.033684443682432175, 0.03734036535024643, 0.04521267116069794, 0.04587990790605545, -0.019144171848893166, 0.04028584063053131, -0.011728465557098389, -0.07653634995222092, -0.05670687183737755, 0.044460050761699677, 0.05907010659575462, -0.011829589493572712, 0.021688956767320633, -0.03863706812262535, 0.02501617930829525, 0.0317731648683548, -0.019461659714579582, 0.025866683572530746, -0.06007084995508194, -0.009210217744112015, 0.1559276282787323, 0.0032087168656289577, 0.013883023522794247, -0.05340790003538132, 0.021914951503276825, -0.09285195171833038, 0.00913539994508028, -0.015927806496620178, -0.04371849447488785, -0.009747217409312725, 0.025829069316387177, 0.04104267805814743, 0.015004896558821201, -0.0787866935133934, -0.07549945265054703, -0.016834717243909836, -0.06957384198904037, -0.09989216178655624, 0.07763582468032837, -0.024202629923820496, -0.11872215569019318, -0.1496627777814865, 0.03087202087044716, 0.024983210489153862, -0.02869528718292713, -0.01696021296083927, 0.021741455420851707, -0.041628398001194, 0.034280166029930115, 0.03513193875551224, 0.04205756634473801, -0.07332298904657364, -0.06809505075216293, -0.05679933726787567, -0.0025739495176821947, 0.04457186535000801, -0.05036863684654236, 0.0103182727470994, -0.02136893756687641, -0.006586445961147547, 0.049774352461099625, 0.00438795005902648, -0.023944418877363205, 0.002175678499042988, 0.04900085926055908, 0.0019466433441266418, 0.02546643652021885, -0.016610898077487946, -0.041650526225566864, -0.06886336207389832, 0.01643378473818302, -0.025288479402661324, 0.03797559440135956, 0.039946720004081726, 0.011661973781883717, 0.035386331379413605, 0.02576131746172905, 0.013318500481545925, 0.07699834555387497, -0.008424234576523304, 0.02113562636077404, 0.011293710209429264, 0.0034600889775902033, 0.077202208340168, -0.016873320564627647, -0.11184526979923248, 0.02624666318297386, 0.022121941670775414, 0.0528976209461689, 0.04236549884080887, 0.008983999490737915, 0.029054632410407066, 0.026537546887993813, 0.042985931038856506, -0.054080985486507416, 0.0667438730597496, -0.053568702191114426, 0.07468429952859879, -0.22529244422912598, -0.03715784475207329, -0.07120613008737564, -0.031707070767879486, -0.031474173069000244, 0.03276023268699646, 0.04479076340794563, -0.0011600599391385913, -0.06561305373907089, 0.03428911045193672, 0.10044359415769577, -0.06690526753664017, 0.03466673940420151, -0.003166020615026355, 0.021845800802111626, -0.03213132917881012, 0.012824798002839088, -0.05313866212964058, -0.05498872697353363, 0.02456977218389511, -0.012309564277529716, -0.013763505965471268, -0.031330227851867676, -0.018273264169692993, 0.0580923892557621, 0.04995658993721008, 0.057043638080358505, -0.029240485280752182, 0.04844888672232628, -0.018689608201384544, -0.008504731580615044, 0.01860729046165943, 0.006829713936895132, -0.018554560840129852, -0.010714138858020306, 0.001981873530894518, -0.027164945378899574, -0.044673312455415726, -0.026300905272364616, -0.019527675583958626, -0.08040390908718109, -0.07625877112150192, -0.08215311169624329, -0.013637557625770569, 0.016568871214985847, -0.01155075617134571, 0.04931507632136345, 0.02098199725151062, 0.01400486845523119, 0.055330682545900345, 0.042632728815078735, -0.0022110999561846256, 0.011439332738518715, 0.043103624135255814, 0.13398699462413788, 0.04953142628073692, -0.017060676589608192, 0.016139889135956764, -0.004444142337888479, 0.006949193775653839, 0.03024281933903694, 0.04080287367105484, -0.004439075011759996, 0.004120805766433477, 0.03288240730762482, -0.06638243049383163, -0.013228044845163822, 0.034359920769929886, -0.030530450865626335, -0.08730786293745041, -0.019465934485197067, 0.0688079223036766, -0.0022213771007955074, -0.021573316305875778, 0.01966865360736847, -0.003998792730271816, 0.004260935354977846, 0.01515929214656353, 0.022877775132656097, 0.005598702467978001, -0.01855839230120182, -0.048898182809352875, -0.03174922987818718, 0.061777517199516296, 0.015319924801588058, 0.06609460711479187, 0.033398065716028214, 0.026206787675619125, 0.043386492878198624, 0.04540768638253212, -0.07464171946048737, -0.01414079125970602, -0.008206360973417759, -0.020182806998491287, -0.026512734591960907, -0.0857236385345459, -0.26050662994384766, 0.016364842653274536, 0.04164380207657814, 0.010072696022689342, 0.055652912706136703, 0.03961412236094475, -0.047471001744270325, -0.01642698049545288, -0.0379779152572155, 0.012708035297691822, -0.06051486358046532, -0.052517589181661606, 0.0011334354057908058, 0.010882739908993244, 0.05017121136188507, -0.0028831353411078453, 0.08927956223487854, -0.04412722587585449, 0.054388049989938736, 0.02316989004611969, 0.04630471393465996, -0.006069529335945845, 0.14521513879299164, 0.03420418128371239, -0.03252239152789116, 0.025873331353068352, 0.07341740280389786, 0.0065169488079845905, -0.011918588541448116, 0.03180251643061638, 0.07351706922054291, -0.04677058383822441, 0.03472539782524109, -0.0881645455956459, -0.05611824244260788, -0.028944265097379684, 0.022141294553875923, 0.0639902725815773, 0.05460033565759659, 0.022976858541369438, -0.023196084424853325, -0.05562053993344307, 0.03781230002641678, -0.029981477186083794, 0.026379259303212166, -0.022635145112872124, 0.014285892248153687, -0.018688546493649483, -0.020981842651963234, -0.012120443396270275, -0.02919883280992508, 0.05685480684041977, 0.058299582451581955, 0.01141402218490839, -0.008620459586381912, 0.003334521083161235, 0.0488559752702713, -0.027861779555678368, 0.009655782021582127, 0.012970654293894768, 0.017452888190746307, 0.007479503285139799, -0.01709749549627304, 0.06570830941200256, 0.08763130009174347]}), _DocumentWithState(page_content='ESOPS FOR THE LONG TERM  Part IV', metadata={'source': 'Employee-Stock-Option-Plans-ESOP-Best-Practices-2.pdf', 'page': 34}, state={'embedded_doc': [-0.06088411435484886, -0.03379426151514053, 0.04271987825632095, -0.008724940940737724, 0.040535230189561844, -0.025841301307082176, -0.049709253013134, -0.0027294091414660215, -0.009977857582271099, -0.02173938974738121, -0.03823690488934517, 0.00997269805520773, 0.02860153280198574, -0.0033576651476323605, 0.03806975483894348, 0.03625867888331413, -0.06603191792964935, -0.008557680062949657, -0.04030965268611908, -0.039353080093860626, 0.08308146893978119, -0.06625077873468399, 0.020262256264686584, -0.025071604177355766, -0.028675761073827744, 0.07290744036436081, -0.031980980187654495, -0.06483837962150574, -0.0633256658911705, -0.16838867962360382, 0.0027520523872226477, -0.009346544742584229, -0.004592625889927149, -0.012676989659667015, -0.034695032984018326, 0.00741030927747488, -0.029688093811273575, 0.023354416713118553, -0.045629218220710754, 0.05639848858118057, 0.052852001041173935, 0.01932244375348091, -0.08668447285890579, -0.020548278465867043, -0.0050766426138579845, -0.04659312963485718, -0.013829574920237064, -0.022421572357416153, -0.006990594323724508, 0.025412993505597115, -0.03502010554075241, -0.029500849545001984, 0.007178524974733591, 0.01746218651533127, 0.05568482354283333, 0.05304756388068199, 0.019997186958789825, -0.023758839815855026, 0.029824037104845047, -0.031449172645807266, 0.061792075634002686, 0.01649370789527893, -0.16895686089992523, 0.05757783353328705, 0.03387739881873131, -0.001239635283127427, -0.03315297141671181, -0.036123257130384445, 0.059534747153520584, 0.03956882655620575, -0.03352661430835724, 0.05398646742105484, -0.005897662602365017, 0.016933932900428772, 0.014364774338901043, 0.11439338326454163, 0.04322701692581177, -0.014373918995261192, -0.020503146573901176, -0.021025365218520164, 0.028678715229034424, 0.028585614636540413, -0.01398920826613903, -0.03741421177983284, -0.025586135685443878, -0.03294457495212555, 0.019480442628264427, -0.009150545112788677, 0.062040261924266815, 0.08125271648168564, -0.0025488287210464478, 0.010332299396395683, 0.043086178600788116, 0.0014831287553533912, 0.05434446409344673, -0.000871642550919205, 0.028181562200188637, 0.002729675965383649, -0.02294362708926201, 0.37539350986480713, -0.012795444577932358, 0.07453682273626328, 0.037124551832675934, 0.0010210267500951886, 0.007365926634520292, -0.0012394946534186602, -0.03217563405632973, 0.02373301051557064, 0.02588469721376896, -0.0190792977809906, -0.03916724771261215, 0.044564638286828995, 0.044482626020908356, -0.013357078656554222, -0.03158564120531082, 0.02915250137448311, -0.0018372464692220092, -0.04655841737985611, -0.03620355948805809, 0.00482228584587574, 0.02254796214401722, 0.02359318919479847, 0.008352664299309254, 0.05358244106173515, 0.017782479524612427, -0.056028351187705994, 0.05898581072688103, 0.08249305188655853, 0.003483376232907176, -0.009961062110960484, -0.02775559388101101, 0.009949003346264362, -0.06534644961357117, 0.025984928011894226, 0.0388483963906765, 0.02467663586139679, -0.0027058718260377645, 0.013564864173531532, 0.028357088565826416, -0.0217339638620615, -0.038219474256038666, -0.07130925357341766, 0.03665028512477875, -0.08084559440612793, 0.03791113942861557, 0.1178392767906189, 0.05708190053701401, -0.007997998967766762, -0.05580027401447296, -0.058589667081832886, -0.019675303250551224, 0.041671283543109894, 0.10095015168190002, -0.04606327414512634, 0.014301837421953678, 0.0438619963824749, 0.04551679268479347, 0.006093915086239576, -0.09250527620315552, -0.02877017669379711, -0.041999392211437225, -0.04873516410589218, -0.01851652003824711, 0.07933967560529709, 0.017717456445097923, -0.0877033993601799, -0.05528784543275833, 0.019592341035604477, 0.004634925629943609, 0.030066991224884987, -0.007599792908877134, -0.014414914883673191, 0.03674587979912758, -0.0407850444316864, 0.05867016687989235, -0.010724623687565327, -0.06446123123168945, -0.016646355390548706, -0.010479386895895004, 0.06007314473390579, 0.010599994100630283, -0.04651162400841713, -0.035957563668489456, 0.0002305726520717144, -0.025530148297548294, -0.02198299765586853, 0.03913283348083496, -0.01270234864205122, 0.006011696066707373, 0.021743088960647583, -0.03278633952140808, 0.042815547436475754, 0.004892041441053152, 0.07071011513471603, -0.013491327874362469, -0.03298088163137436, -0.058728378266096115, 0.005702181253582239, -0.0014763566432520747, -0.024331197142601013, -0.012278956361114979, 0.01791628822684288, 0.014271622523665428, 0.024295689538121223, -0.0061409673653542995, -0.006105243694037199, -0.02706635370850563, 0.006478588562458754, 0.06461464613676071, -0.007524651009589434, -0.06805619597434998, -0.03382893651723862, 0.09180150181055069, 0.0033483763691037893, 0.046997349709272385, -0.004573471378535032, 0.02568461373448372, 0.04070128872990608, -0.019263608381152153, 0.026265693828463554, 0.053212691098451614, 0.0466412715613842, 0.013887467794120312, -0.3409045934677124, 0.010488939471542835, -0.015499323606491089, -0.046757977455854416, 0.049852170050144196, -0.059940237551927567, 0.03869546204805374, -0.013185452669858932, 0.00432992959395051, -0.015406646765768528, 0.03359740972518921, -0.04733065143227577, -0.018965715542435646, 0.020282864570617676, 0.04046061262488365, 0.00920095480978489, 0.038806669414043427, -0.027058932930231094, -0.06384113430976868, 0.02803695760667324, -0.0329311229288578, 0.029815655201673508, -0.060224343091249466, -0.05969756469130516, 0.006442386191338301, -0.019745733588933945, 0.12396952509880066, -0.06804978847503662, -0.014902696013450623, -0.05734528228640556, 0.025924669578671455, 0.021925657987594604, 0.0013424420030787587, -0.0433724969625473, 0.012361269444227219, 0.0332338809967041, 0.046155571937561035, -0.015037762001156807, 0.0020251451060175896, -0.004464154597371817, -0.020395325496792793, -0.025559071451425552, -0.040929123759269714, -0.02125822752714157, -0.01440848596394062, -0.03446318209171295, -0.011980012990534306, 0.05045458674430847, 0.02623729780316353, 0.003503883956000209, -0.0048493435606360435, -0.03422214090824127, 0.016737986356019974, 0.011013651266694069, 0.049680717289447784, 0.0052385879680514336, -0.025040358304977417, 0.021738169714808464, 0.004903464578092098, -0.025995366275310516, 0.015130402520298958, 0.031769100576639175, -0.051648229360580444, 0.029183413833379745, 0.09110204130411148, -0.013227906078100204, 0.02302173152565956, 0.0296272411942482, 0.0208053570240736, -0.15905511379241943, -0.05691377446055412, 0.029583148658275604, -0.06067156419157982, -0.04855218529701233, 0.027028942480683327, 0.015122181735932827, -0.008783898316323757, 0.031230568885803223, 0.015247579663991928, -0.017912661656737328, 0.05376406013965607, -0.03767859563231468, 0.020004646852612495, 0.012969402596354485, 0.013595047406852245, 0.030753079801797867, 0.009420601651072502, -0.018951330333948135, -0.007891771383583546, 0.0007249022601172328, 0.011382515542209148, 0.003092918312177062, -0.0194711871445179, -0.014114872552454472, 0.0009041994344443083, 0.027294956147670746, -0.28187161684036255, -0.0069279358722269535, 0.013777580112218857, -0.0027165026403963566, -0.00407074810937047, 0.06208929046988487, -0.017027391120791435, -0.058804672211408615, -0.044779323041439056, -0.002581216860562563, -0.09302046149969101, 0.020357901230454445, 0.0144178606569767, -0.024695957079529762, 0.013739388436079025, 0.03509938344359398, 0.06808017939329147, -0.05469003692269325, 0.02052995190024376, -0.047191351652145386, 0.024642186239361763, 0.0024972406681627035, 0.1917358785867691, 0.0068085710518062115, 0.019582703709602356, 0.06648518145084381, 0.034756775945425034, 0.03413385897874832, -0.015286543406546116, -0.008527666330337524, 0.04601137712597847, 0.02149534784257412, 0.020627256482839584, 0.006538720335811377, 0.0028173241298645735, 0.0506310798227787, -0.01633194275200367, 0.041765421628952026, 0.023282786831259727, 0.019737325608730316, 0.0406046137213707, -0.005052323453128338, 0.02584189921617508, -0.05048440769314766, 0.06605631113052368, -0.03800282999873161, 0.017825447022914886, -0.08818414807319641, -0.01145955640822649, -0.030256859958171844, -0.035343319177627563, 0.005246360320597887, 0.031214574351906776, 0.0011175454128533602, -0.002776767360046506, 0.06335486471652985, -0.02476341463625431, 0.007098807487636805, -0.016233419999480247, -0.05153420940041542, -0.014180433936417103, -0.03204600140452385, 0.024949386715888977, 0.016492556780576706, -0.024451330304145813]}), _DocumentWithState(page_content='Legal Advice  \nWhen structuring an ESOP, engage an experienced \nstartup lawyer with regional expertise to standardize the \nterms and language', metadata={'source': 'Employee-Stock-Option-Plans-ESOP-Best-Practices-2.pdf', 'page': 33}, state={'embedded_doc': [-0.04170519858598709, -0.02253028005361557, 0.010527528822422028, -0.061291586607694626, -0.0202785637229681, -0.06531355530023575, 0.02483520470559597, 0.020131388679146767, -0.012177396565675735, -0.03296830132603645, -0.08485973626375198, 0.015415665693581104, -0.009345578029751778, -0.011683898977935314, 0.07125324010848999, 0.000751052750274539, -0.05485844984650612, -0.03403528779745102, -0.005383701529353857, -0.01568574644625187, 0.01795637235045433, 0.0005001653917133808, 0.06511460244655609, 0.006673816125839949, 0.003747983369976282, 0.0544944629073143, -0.06013425067067146, -0.049717679619789124, -0.06304080039262772, -0.11754845827817917, -0.020748786628246307, 0.010925526730716228, 0.02754051797091961, 0.031138060614466667, -0.015170365571975708, 0.003923348151147366, 0.009964133612811565, 0.1177402213215828, 0.007169775664806366, -0.040133148431777954, 0.02170294150710106, 0.01345191989094019, -0.008586455136537552, -0.02285158820450306, 0.01602655090391636, -0.015223520807921886, 0.04634718596935272, 0.051799140870571136, -0.06352590024471283, -0.03408583626151085, 0.019546067342162132, -0.06278368085622787, -0.004896124824881554, -0.056041691452264786, -0.024307072162628174, 0.030988311395049095, 0.09507288783788681, -0.025111006572842598, 0.023814165964722633, 0.007051035296171904, -0.004436329938471317, -0.013315475545823574, -0.1519148349761963, 0.08938145637512207, 0.032429199665784836, -0.010044391267001629, -0.01905505359172821, 0.003230920759961009, 0.0174748282879591, 0.021960627287626266, 0.023898929357528687, 0.022898953408002853, 0.031742531806230545, 0.06401088088750839, 0.04321887716650963, 0.052140507847070694, 0.01786264218389988, -0.01281742099672556, 0.002488288562744856, 0.015413371846079826, 0.0026531838811933994, -0.009087938815355301, -0.057354915887117386, -0.04563303291797638, -0.03269817680120468, 0.04862281307578087, 0.05001217871904373, -0.009819709695875645, 0.03224632143974304, 0.015290618874132633, 0.02020728401839733, -0.06879011541604996, -0.0008634974365122616, -0.03650897741317749, 0.01818198524415493, -0.04607747867703438, 0.016952453181147575, -0.029417697340250015, -0.109562948346138, 0.35158687829971313, 0.0018849739572033286, 0.03752931207418442, 0.04050818830728531, 0.004603451117873192, 0.006066237576305866, -0.0364748015999794, -0.012841486372053623, 0.043025702238082886, 0.07806908339262009, 0.049695681780576706, -0.03563576564192772, 0.06220126524567604, -0.01096119824796915, -0.03974420204758644, -0.0049592978321015835, 0.09671007096767426, -0.02869153581559658, -0.05296770855784416, -0.06367513537406921, -0.04168961942195892, 0.010199852287769318, -0.002677088836207986, -0.06449214369058609, 0.030956462025642395, -0.026569638401269913, -0.06817757338285446, 0.07081794738769531, 0.05223040282726288, 0.027734864503145218, 0.03866736218333244, 0.0035430353600531816, 0.03486349806189537, 0.0020699668675661087, -0.030165059491991997, 0.0382409542798996, 0.029778938740491867, -0.04539342224597931, 0.005744891706854105, -0.018587037920951843, 0.03528326377272606, 0.011700491420924664, -0.025629987940192223, 0.0217407438904047, -0.03487488999962807, -0.007976715452969074, 0.08847444504499435, -0.09258856624364853, -0.01420790795236826, -0.02546861581504345, -0.023396087810397148, -0.022437989711761475, 0.02525540255010128, -0.01840386353433132, -0.050275035202503204, 0.03046761453151703, -0.010789790190756321, 0.07599212229251862, 0.03290921449661255, -0.0829402431845665, -0.03792818263173103, -0.0038904158864170313, -0.04793693870306015, -0.0267302468419075, 0.11876732110977173, 0.03219331055879593, -0.12648499011993408, -0.04361628368496895, -0.010512163862586021, -0.03485717996954918, -0.030108680948615074, -0.016937442123889923, -0.009733103215694427, 0.036189381033182144, 0.004745068494230509, 0.05348516255617142, -0.02513635903596878, -0.05409633368253708, 0.008181036449968815, -0.06401602178812027, -0.006723999977111816, 0.041937243193387985, -0.017831584438681602, 0.02959350124001503, -0.0022617876529693604, 0.018472157418727875, 0.019715948030352592, 0.05418555438518524, -0.028642019256949425, 0.023323265835642815, 0.02059255726635456, -0.047000981867313385, 0.0683700442314148, -0.021209686994552612, 0.009661256335675716, -0.0437413826584816, 0.03716322407126427, -0.059863459318876266, -0.023295274004340172, 0.021196968853473663, 0.01020478829741478, -0.00876088161021471, 0.04819221422076225, -0.01725316233932972, -0.011197240091860294, -0.008161716163158417, 0.03660767525434494, 0.0015775773208588362, -0.009647782891988754, 0.08548732846975327, -0.003866293467581272, -0.05997268855571747, -0.0006184640224091709, 0.07338856160640717, 0.005925248842686415, 0.07745451480150223, -0.018214497715234756, 0.016998615115880966, 0.029774559661746025, -0.059669528156518936, 0.038002971559762955, -0.015993455424904823, 0.023170091211795807, 0.06357535719871521, -0.31561318039894104, -0.017188390716910362, -0.07881701737642288, 0.01812620460987091, 0.0010527687845751643, 0.0224860031157732, 0.03788593411445618, -0.01015766616910696, -0.06878791004419327, -0.028997022658586502, 0.03787832707166672, -0.013130228966474533, 0.00782919954508543, 0.09757246822118759, 0.02084679715335369, -0.007965237833559513, 0.06523992866277695, 0.0205005444586277, -0.04044177755713463, 0.026906272396445274, -0.03983500599861145, 0.0016196350334212184, -0.0689714327454567, -0.08624503016471863, -0.005675614811480045, 0.056719470769166946, 0.06437941640615463, -0.01812908612191677, 0.01718313992023468, -0.054363977164030075, 0.02899250201880932, -0.006860770285129547, -0.01067215483635664, -0.1243865042924881, 0.00846609566360712, 0.015631137415766716, 0.03026813082396984, 0.02676790952682495, 0.05589761212468147, -0.01143489871174097, 0.02690798230469227, -0.04516954347491264, -0.02084295079112053, 0.02220197021961212, -0.026212818920612335, -0.008512325584888458, -0.014818786643445492, 0.022833246737718582, -0.0215764082968235, 0.0005069796461611986, -0.04652075096964836, 0.0490059070289135, 0.036242932081222534, 0.0566934272646904, 0.04628221318125725, 0.0031870000530034304, -0.11595583707094193, 0.0037202914245426655, 0.001777886995114386, -0.018184373155236244, 0.05003342404961586, 0.04242292791604996, 0.04956645891070366, 0.01987304911017418, 0.052869513630867004, -0.06445663422346115, -0.0171339213848114, 0.03847619146108627, -0.021195806562900543, -0.006409426219761372, -0.03324368968605995, 0.04278700426220894, -0.09139129519462585, -0.08893454074859619, 0.028408387675881386, 0.03319442272186279, -0.015171344392001629, -0.030026355758309364, 0.028609134256839752, 0.030373433604836464, -0.024373406544327736, 0.003388717770576477, 0.03450397402048111, -0.026900826022028923, 0.0003587479004636407, 0.021516330540180206, -0.0042679389007389545, 0.009333415888249874, 0.036771439015865326, 0.014083972200751305, 0.013179967179894447, -0.015000847168266773, 0.0010966951958835125, 0.03947664424777031, -0.007494648452848196, -0.033907823264598846, -0.25364699959754944, -0.005983494222164154, -0.025590579956769943, 0.00017250255041290075, -0.0324704572558403, 0.021255234256386757, -0.02025001123547554, -0.019719168543815613, -0.004245060496032238, -0.017983021214604378, -0.028472600504755974, -0.07142766565084457, -0.006823020055890083, 0.02842157520353794, 0.006346064154058695, -0.0011750091798603535, 0.10193697363138199, 0.003876639995723963, 0.043454792350530624, 0.0018881980795413256, 0.06614186614751816, 0.034985896199941635, 0.21055376529693604, -0.04431043192744255, 0.06952108442783356, 0.020402874797582626, 0.0419611819088459, 0.005799813196063042, -0.022161589935421944, 0.014703783206641674, 0.09980140626430511, 0.005833033472299576, 0.06971203535795212, -0.016657335683703423, -0.0011072088964283466, -0.05331031605601311, -0.02271413430571556, -0.075873464345932, 0.03991079702973366, -0.009167800657451153, 0.012670179829001427, -0.04608563706278801, 0.01577954739332199, -0.029905280098319054, 0.002858232706785202, -0.05181129649281502, -0.009042080491781235, -0.03884856402873993, 0.021477725356817245, 0.05824104696512222, -0.019391540437936783, 0.04921174794435501, 0.02741982787847519, 0.03607439994812012, -0.0029456447809934616, -0.0020096006337553263, 0.05369199067354202, -0.0012268589343875647, -0.04825807735323906, -0.03285938501358032, -0.009144525974988937, -0.004078797530382872, -0.04249778762459755, 0.06879983097314835, 0.05701811984181404]}), _DocumentWithState(page_content='THE FINE PRINT – TERMS  Part III', metadata={'source': 'Employee-Stock-Option-Plans-ESOP-Best-Practices-2.pdf', 'page': 25}, state={'embedded_doc': [-0.01715994067490101, -0.028907867148518562, -0.0008480980759486556, 0.008258089423179626, 0.046240415424108505, -0.024762941524386406, 0.03225058689713478, 0.03977779671549797, 0.03671100735664368, 0.03345392271876335, -0.05191877856850624, 0.019175253808498383, 0.025954928249120712, -0.06927987933158875, 0.026189690455794334, -0.006558658089488745, 0.013677551411092281, -0.0015883308369666338, -0.0638241246342659, -0.006285585928708315, 0.10398323088884354, 0.06034804880619049, 0.0034592323936522007, 0.018204836174845695, 0.03575475513935089, -0.004844958428293467, -0.05270377919077873, -0.026811469346284866, -0.0621391162276268, -0.15289580821990967, -0.04918212816119194, -0.02250307984650135, -0.0583094097673893, -0.006081416737288237, -0.01749751903116703, -0.04656149446964264, -0.029854565858840942, 0.015113838948309422, -0.0037410217337310314, -0.006997867953032255, -0.016731789335608482, 0.03539230301976204, -0.038211461156606674, -0.02337120659649372, -0.044602882117033005, -0.0017785370582714677, -0.00226109498180449, -0.027244245633482933, 0.004061582963913679, -0.019377661868929863, -0.04090632498264313, 0.002071854192763567, -0.015512429177761078, -0.0019120455253869295, -0.0316426120698452, 0.02405928634107113, 0.10042692720890045, -0.025693314149975777, 0.024547072127461433, -0.02217257395386696, 0.010436099022626877, 0.07590034604072571, -0.24509297311306, 0.0627589002251625, 0.057661451399326324, 0.01464894600212574, -0.04262996464967728, 0.014033102430403233, -0.05693991482257843, 0.08559393882751465, -0.04866097867488861, 0.015184035524725914, -0.015384936705231667, 0.056098420172929764, 0.07764089107513428, -0.006914540193974972, 0.004465194884687662, -0.017636260017752647, -0.023777909576892853, -0.038000114262104034, -0.03321540355682373, 0.07132808119058609, 0.01531974971294403, 0.007612104527652264, -0.024143168702721596, -0.04241245985031128, -0.01661788858473301, -0.02046450413763523, 0.00667298398911953, -0.006971138995140791, 0.04939805716276169, -0.05435197800397873, -0.02902875281870365, 0.02537292242050171, -0.015078268013894558, -0.03448834270238876, 0.07623186707496643, 0.027193672955036163, 0.017207618802785873, 0.33427298069000244, 0.0030496984254568815, 0.02913586050271988, 0.020740358158946037, -0.03556068241596222, -0.010423462837934494, -0.0332418717443943, 0.0008043139241635799, -0.03709818050265312, 0.013839121907949448, 0.0200655460357666, 0.02968788705766201, 0.03179740533232689, 0.04844646900892258, -0.0432034432888031, -0.019094150513410568, -0.015841450542211533, 0.03084002435207367, -0.034214265644550323, 0.08499021828174591, -0.04127280414104462, 0.024258285760879517, 0.015810586512088776, -0.011769299395382404, 0.016897039487957954, -0.06499838829040527, -0.04837024584412575, 0.06687328964471817, 0.08575863391160965, 0.014609131030738354, 0.07517719268798828, 0.026405734941363335, -0.03345424681901932, -0.017626643180847168, 0.001200550002977252, -0.019760262221097946, -0.02573460154235363, -0.012079307809472084, 0.057558219879865646, 0.029698243364691734, 0.023895060643553734, 0.02568003162741661, -0.03377551957964897, -0.0714615136384964, -0.05626406893134117, 0.017142917960882187, 0.12193265557289124, 0.019205104559659958, 0.008856002241373062, -0.004782112315297127, 0.006367252208292484, -0.007067990954965353, 0.07048075646162033, 0.05587376281619072, 0.023193147033452988, -0.0038814996369183064, -0.012954131700098515, 0.06434844434261322, -0.00031052963458932936, -0.035886090248823166, 0.027723945677280426, 0.05974525585770607, -0.03593382611870766, -0.030231786891818047, 0.09732770919799805, 0.00803738459944725, -0.08809467405080795, 0.002923696767538786, 0.00859308335930109, -0.016493048518896103, -0.01831928826868534, 0.04373236745595932, 0.03856024146080017, 0.008742764592170715, -0.004958160221576691, 0.0099191227927804, 0.04556881636381149, 0.013659857213497162, 0.08475910872220993, 0.0007771933451294899, 0.04519800469279289, -0.023615341633558273, -0.03126852214336395, -0.08465823531150818, -0.025078723207116127, 0.007593739777803421, -0.007544735912233591, -0.06022769585251808, 0.018510550260543823, 0.03730611875653267, 0.0469040721654892, -0.03754943609237671, 0.04540850594639778, -0.036568813025951385, -0.0005586365005001426, -0.045481111854314804, -0.03256438300013542, -0.04179716110229492, 0.02847312204539776, 0.002142739947885275, -0.08045575022697449, 0.008724646642804146, 0.025122618302702904, 0.02160773240029812, 0.01659706048667431, 0.05058727785944939, 0.0073457639664411545, 0.007959260605275631, 0.008699864149093628, 0.03755180910229683, -0.015059245750308037, -0.09186819195747375, 0.048811934888362885, 0.030590767040848732, 0.01265601348131895, 0.018952753394842148, 0.005699027795344591, 0.05704104155302048, 0.043007493019104004, -0.09019960463047028, 0.03725385293364525, -0.008728978224098682, -0.03793470934033394, -0.013489722274243832, -0.31482088565826416, 0.021352291107177734, -0.03232213109731674, -0.014668152667582035, 0.03708251565694809, -0.015438198111951351, 0.004247753415256739, -0.03332078456878662, -0.042820848524570465, -0.004091889597475529, 0.01675303280353546, -0.06001830846071243, -0.04438204690814018, -0.01909784786403179, -0.006273090373724699, 0.003849575063213706, -0.028689466416835785, -0.002841251203790307, -0.0694754347205162, 0.060996633023023605, -0.04487570375204086, 0.08640999346971512, -0.006451768334954977, -0.03716791793704033, 0.04839400574564934, 0.06819985806941986, 0.1561788022518158, 0.014140496030449867, -0.001128103001974523, -0.0294400155544281, 0.03552217781543732, 0.023763369768857956, -0.07193173468112946, -0.061814937740564346, 0.02752560004591942, 0.007136911619454622, -0.07447304576635361, 0.051394835114479065, -0.033198703080415726, -0.08556211739778519, 0.057110369205474854, 0.025062792003154755, -0.016517989337444305, 0.025435155257582664, 0.037351686507463455, -0.06535737961530685, -0.013470464386045933, -0.009175671264529228, -0.04003693163394928, 0.037832897156476974, -0.003074158914387226, 0.01045907661318779, -0.02227635681629181, 0.06330346316099167, 0.019959241151809692, -0.02066364884376526, -0.05813850462436676, 0.039218440651893616, -0.05939135700464249, -0.009051325730979443, 0.004624895751476288, -0.038619205355644226, -0.0423591323196888, -0.0007531975861638784, -0.006890991702675819, -0.011017931625247002, 0.017827600240707397, 0.006738468538969755, 0.055125642567873, -0.0037817072588950396, 0.023017652332782745, 0.030779046937823296, 0.007890202105045319, -0.12513941526412964, 0.016001543030142784, 0.029884258285164833, -0.027165573090314865, -0.010276367887854576, -0.011782247573137283, -0.07041038572788239, 0.0311303548514843, 0.034894634038209915, 0.056352753192186356, 0.010580350644886494, 0.010449917986989021, 0.008662037551403046, 0.003382474882528186, -0.014754530973732471, 0.0006243310053832829, 0.010673390701413155, -0.04297131299972534, 0.0825042873620987, -0.030714843422174454, 0.012378423474729061, 0.0016962841618806124, -0.0018631230341270566, -0.29584458470344543, -0.06533241271972656, -0.018249092623591423, 0.009550218470394611, 0.0500168651342392, 0.045479949563741684, 0.009871862828731537, -0.001606754376552999, -0.019224753603339195, 0.012284078635275364, 0.025348177179694176, -0.003193425014615059, -0.021310903131961823, 0.01203716080635786, 0.00667550228536129, 0.010749073699116707, 0.08872371166944504, -0.01215206179767847, -0.024313999339938164, -0.01806950569152832, 0.016749119386076927, 0.0013340560253709555, 0.18191610276699066, -0.01848800852894783, -0.01776295341551304, -0.001123674213886261, -0.012338409200310707, 0.03701791539788246, -0.01323121227324009, 0.006495900452136993, 0.012737645767629147, -0.02109581045806408, 0.08637692034244537, 0.01114665623754263, 0.04174764081835747, 0.005729723256081343, -0.03877413272857666, 0.02026900090277195, 0.028857409954071045, 0.005745441187173128, -0.034911807626485825, -0.03770475089550018, -0.038662634789943695, 0.018107878044247627, 0.010782714001834393, 0.007211406249552965, -0.08148454874753952, 0.0007647945894859731, -0.001317133312113583, 0.01444440707564354, -0.07678373157978058, -0.011254488490521908, 0.003702520625665784, -0.0030160523019731045, 0.05017540231347084, 0.012276830151677132, -0.008827689103782177, 0.0285414420068264, 0.027730772271752357, 0.014817825518548489, -0.038892343640327454, -0.038885071873664856, -0.0006640509818680584, 0.07971681654453278, 0.03559548780322075]}), _DocumentWithState(page_content='members  •Founders  are not top \nmanagers in the business, or \nplan to step aside  \n•DNA  of the company is in \ntechnology, engineering, or \ndata science  \n•Geographic focus  is in a \nleading startup hub such as \nSF, NYC or Boston  \n•Hiring needs are primarily \nengineering, development, or \ntechnical team members  \nThere are no hard and fast rules, but by looking your company’s founders, its DNA, \nits geographic focus, and its hiring needs you can begin to benchmark how much \nequity to set aside for the ESOP', metadata={'source': 'Employee-Stock-Option-Plans-ESOP-Best-Practices-2.pdf', 'page': 15}, state={'embedded_doc': [0.02396765723824501, -0.017553359270095825, 0.028627978637814522, -0.05600452795624733, 0.03787218779325485, -0.03139568492770195, 0.06144040450453758, 0.015508005395531654, 0.012749087996780872, -0.03484219312667847, 0.010291489772498608, 0.025243423879146576, -0.01151847280561924, -0.03562591224908829, -0.05222119390964508, -0.01642519421875477, -0.09135007858276367, -0.041916098445653915, -0.01179018709808588, 0.014985197223722935, 0.033143434673547745, -0.07218803465366364, 0.008762522600591183, 0.01378189492970705, 0.017295608296990395, -0.021077049896121025, -0.03939935937523842, -0.020654447376728058, -0.0376925989985466, -0.13058780133724213, -0.04864318296313286, 0.045059412717819214, 0.06788456439971924, 0.038317665457725525, 0.002149369101971388, 0.02478177472949028, -0.009311278350651264, -0.00400452921167016, -0.02227306179702282, -0.03466533496975899, 0.009870907291769981, 0.03242749720811844, -0.01092709880322218, 0.013359323143959045, 0.017459718510508537, 0.0740794762969017, 0.04272354021668434, -0.002807658864185214, -0.10316794365644455, 0.008322387002408504, 0.030454859137535095, -0.05512629821896553, -0.003196718404069543, 0.02082747593522072, -0.005375282373279333, 0.04793471470475197, 0.05413563922047615, -0.031446974724531174, 0.034279581159353256, -0.00042764769750647247, 0.03140247240662575, -0.04131796583533287, -0.14686137437820435, 0.026593489572405815, 0.03957527503371239, -0.030606506392359734, -0.030123401433229446, -0.05720629543066025, -0.02962925098836422, 0.0010391322430223227, 0.032711759209632874, 0.02622104436159134, -0.002412174129858613, 0.02135367877781391, 0.03154413774609566, 0.012580995447933674, 0.0043422505259513855, 0.013031544163823128, 0.017945753410458565, -0.03391450643539429, 0.0328388474881649, -0.023568306118249893, 0.010177682153880596, 0.008097787387669086, -0.022939611226320267, 0.045692555606365204, 0.016827886924147606, 0.026874028146266937, 0.01423634123057127, 0.0712408646941185, 0.006878374610096216, -0.04333418607711792, 0.0009396211244165897, -0.030008381232619286, 0.0011301100021228194, 0.0004829689278267324, -0.0017635055119171739, -0.043058209121227264, -0.07808858156204224, 0.41683346033096313, -0.005526631139218807, 0.05128863453865051, -0.018180083483457565, 0.031534742563962936, 0.015062806196510792, -0.01596813276410103, 0.018739519640803337, -0.019396716728806496, 0.04070379585027695, 0.009812506847083569, 0.029945120215415955, 0.05699248984456062, 0.005819177255034447, -0.01669437065720558, 0.013006497174501419, -0.013168968260288239, -0.02714315801858902, -0.009161066263914108, -0.03443709388375282, -0.04061711207032204, -0.012402703054249287, 0.004824938252568245, -0.005761053413152695, 0.01611430011689663, -0.03761213272809982, -0.018629498779773712, 0.015539171174168587, 0.038727547973394394, 0.072613924741745, 0.02613423764705658, 0.02197258733212948, -0.00774397561326623, -0.0816696360707283, 0.010302686132490635, 0.02078629657626152, -0.028858540579676628, -0.05010087415575981, 0.008617433719336987, -0.07311420887708664, 0.02679835446178913, 0.02032342180609703, -0.01757226698100567, 0.031560126692056656, -0.040624018758535385, -0.004636805504560471, 0.13435715436935425, -0.04771621525287628, 0.03436403349041939, -0.03516611456871033, -0.019637370482087135, -0.06147296726703644, 0.03221219778060913, -0.02682548016309738, -0.044095054268836975, -0.030213765799999237, 0.02763313055038452, -0.010359163396060467, 0.04501533508300781, -0.06608652323484421, -0.009024756960570812, -0.02171141654253006, -0.0026056973729282618, -0.041867874562740326, 0.09281878173351288, 0.02594882622361183, -0.08043839782476425, -0.07458492368459702, 0.04138464480638504, -0.010970431379973888, 0.027332136407494545, -0.03550780937075615, 0.011896989308297634, 0.023326439782977104, 0.04034235700964928, 0.018506499007344246, -0.053311046212911606, -0.08108818531036377, 0.042543523013591766, -0.05408930778503418, 0.010644896887242794, 0.0496709868311882, -0.04558280110359192, 0.0076041454449296, -0.061332397162914276, 0.010962407104671001, -0.014645022340118885, -0.030404023826122284, -0.02441941201686859, -0.029956931248307228, 0.05987345427274704, -0.06389294564723969, 0.048161353915929794, -0.03252902626991272, 0.023164240643382072, -0.02566237561404705, 0.014891130849719048, 0.03200510889291763, -0.009646718390285969, 0.03571910783648491, -0.014223483391106129, -0.044844336807727814, 0.046355314552783966, 0.017120368778705597, 0.0690438523888588, -0.06713607162237167, 0.05074650049209595, 0.06661030650138855, 0.0026120140682905912, 0.1195666491985321, -0.020384417846798897, -0.06183544173836708, 0.024086615070700645, 0.028756923973560333, -0.005945964716374874, 0.020863162353634834, -0.025597194209694862, 0.054725393652915955, 0.007151407189667225, 0.036764200776815414, 0.05334362015128136, 0.011499706655740738, 0.033960290253162384, 0.019568517804145813, -0.34064996242523193, -0.06032003462314606, -0.07708224654197693, 0.03164227306842804, -0.05276307091116905, -0.01547439955174923, 0.012779860757291317, 0.060521017760038376, -0.009542139247059822, 0.020265650004148483, 0.08609188348054886, -0.02181120589375496, -0.010986830107867718, 0.02226647175848484, -0.007259067613631487, 0.0014829589053988457, 0.04154067113995552, 0.016413068398833275, -0.02110406383872032, -0.014412479475140572, 0.02668015845119953, 0.012979627586901188, -0.06026013568043709, -0.020434852689504623, 0.06491965800523758, -0.006277207750827074, 0.08795648068189621, -0.07195768505334854, 0.022559188306331635, -0.027903489768505096, -0.030781514942646027, 0.027999598532915115, 0.05088404566049576, -0.054591018706560135, -0.01402121502906084, -0.05210413783788681, -0.03135098144412041, -0.009100127033889294, 0.021690020337700844, 0.023749060928821564, -0.02327870950102806, -0.02919863536953926, -0.030775733292102814, 0.007284853141754866, -0.03632694482803345, -0.022095762193202972, 0.00144506199285388, 0.03529379889369011, -0.004620376043021679, -0.0023065523710101843, 0.04642676189541817, -0.01877409592270851, 0.023183366283774376, 0.01704043708741665, 0.05572612211108208, -0.041795115917921066, -0.10298912227153778, 0.012941613793373108, -0.00462415162473917, 0.00348468916490674, 0.06445124745368958, -0.017321491613984108, 0.026474567130208015, 0.01877024956047535, 0.06254204362630844, -0.09708891808986664, -0.07554792612791061, 0.04461980611085892, 0.012510926462709904, -0.044708169996738434, -0.007336936891078949, 0.044591475278139114, -0.023783273994922638, 0.007170127704739571, -0.0022504108492285013, -0.0468999482691288, 0.0006473152316175401, -0.029298709705471992, 0.06916062533855438, 0.0026261978782713413, -0.002284663263708353, -0.039324913173913956, 0.06293045729398727, -0.013382095843553543, 0.010538713075220585, 0.08081667870283127, 0.054168492555618286, 0.012059959582984447, 0.05050748959183693, 0.014794678427278996, -0.047422561794519424, 0.0016567042330279946, 0.024021686986088753, -0.008711452595889568, 0.014087767340242863, -0.05273720622062683, -0.25894710421562195, 0.03781381994485855, 5.701059126295149e-05, 0.037160586565732956, 0.026467930525541306, 7.585480489069596e-05, 0.010046890005469322, -0.026699436828494072, -0.008315487764775753, 0.05436005815863609, 0.019549289718270302, -0.05045543983578682, 0.026001645252108574, -0.006906081456691027, 0.038009162992239, 0.047659069299697876, 0.0823427140712738, -0.03774748742580414, 0.050978511571884155, -0.027249781414866447, 0.030003197491168976, -0.029637163504958153, 0.21123091876506805, 0.00769704720005393, -0.015459105372428894, 0.0112442122772336, 0.027170514687895775, 0.00831786822527647, -0.017145318910479546, 0.007872703485190868, 0.06491515040397644, -0.010068198665976524, 0.07646200805902481, -0.0526101216673851, -0.023326093330979347, -0.022069621831178665, -0.007077774498611689, -0.019377849996089935, 0.008693031035363674, 0.00873987004160881, -0.0017634483519941568, -0.01626429706811905, -0.005972645245492458, -0.005948846694082022, 0.023258516564965248, -0.06651145219802856, -0.047865696251392365, -0.02504909224808216, -0.010211046785116196, 0.028707321733236313, -0.05145525559782982, 0.007577118929475546, -0.025273069739341736, -0.009046150371432304, -0.023939980193972588, 0.025350674986839294, 0.008193107321858406, -0.010664478875696659, 0.025721222162246704, -0.021666035056114197, -0.012413565069437027, 0.016849635168910027, -0.06829489022493362, 0.10914722084999084, 0.06347071379423141]}), _DocumentWithState(page_content='are useful as they relate to ‘societal ’ expectations of children.\nDifferent de finitions are used to de fine mental ill health. The WHO uses the term ‘mental\ndisorders ’ broadly, to include mental illness, intellectual disability, personality disorder, sub-\nstance dependence and adjustment to adverse life events (WHO 1992). The WHO acknowledgesthat the word ‘disorder ’ is used to avoid perceived greater dif ficulties associated with ‘illness ’ –\nfor example, stigma and the emphasis on a medical model. Meltzer et al.  (2000) use the term\n‘mental disorders ’ in reference to emotional, conduct, hyperkinetic and less common disorders\nas de fined by the ICD (International Classi fication of Diseases) 10 and DSM ( Diagnostic and\nStatistical Manual of Mental Disorders ) IV. Jorm (2000) focuses speci fically on depression and\npsychosis. Meanwhile, Rowling et al. (2002) use the terms ‘mental illness ’ and ‘mental disorder ’', metadata={'source': 'Defining_mental_health_and_mental_illness.pdf', 'page': 3}, state={'embedded_doc': [0.0278434120118618, 0.02987862005829811, 0.06984284520149231, -0.029749196022748947, 0.01601899042725563, 0.05700432509183884, 0.08277782052755356, 0.01131085492670536, -0.010240243747830391, -0.04647820442914963, 0.033678699284791946, -0.02980891615152359, -0.02203640155494213, -0.04536276310682297, -0.03636820614337921, 0.012059523724019527, 0.0005797363701276481, -0.017467614263296127, -0.05178871378302574, 0.050379734486341476, 0.05751977488398552, 0.03876054286956787, 0.03108602948486805, 0.03862971439957619, 0.00784007366746664, 0.0078057884238660336, -0.005274023395031691, 0.022606516256928444, -0.01164652593433857, -0.06666848808526993, 0.05689790099859238, 0.018096687272191048, -0.025501396507024765, 0.014514598064124584, -0.06114465370774269, -0.03196754306554794, 0.03454554080963135, 0.060405269265174866, -0.01231416966766119, 0.04267008602619171, -0.014724898152053356, -0.0009309116285294294, -0.0056234016083180904, -0.0024068017955869436, -0.06019337475299835, 0.015396444126963615, -0.07977835088968277, -0.028465481474995613, 0.0002927547029685229, -0.015987008810043335, 0.03463631123304367, 0.031096963211894035, 0.014544139616191387, 0.052313096821308136, 0.0021579684689641, 0.01482728123664856, 0.013962158933281898, -0.020096829161047935, -0.00980396568775177, 0.015943752601742744, 0.02967335842549801, 0.017148669809103012, -0.11499743163585663, 0.03744453191757202, 0.048950135707855225, 0.011870080605149269, -0.029209431260824203, -0.040741950273513794, -0.03748621791601181, 0.022271789610385895, -0.022158591076731682, -0.06411361694335938, 0.060624368488788605, 0.10184620320796967, -0.02116527408361435, -0.0028559633065015078, -0.025711292400956154, -0.09003135561943054, -0.000702114193700254, -0.05855216085910797, -0.017286507412791252, 0.04137777164578438, 0.031050970777869225, -0.08175192028284073, 0.03980365768074989, -0.003414860926568508, 0.018087606877088547, -0.11701065301895142, 0.04442903771996498, 0.004678323864936829, -0.06491471827030182, -0.024485522881150246, 0.0318688303232193, 0.027181964367628098, 0.02654276229441166, 0.0165837612003088, 0.044556502252817154, -0.0021171055268496275, -0.009476803243160248, 0.37792137265205383, -0.08361419290304184, -0.008647939190268517, -0.015499722212553024, 0.02945139817893505, -0.03488699346780777, 0.004346382804214954, 0.02409416250884533, -0.10155593603849411, 0.013910518027842045, 0.0077636875212192535, -0.007303094491362572, -0.03035839833319187, 0.038415081799030304, 0.0016672519268468022, -0.004205227363854647, -0.056583791971206665, -0.006640058476477861, -0.03267929330468178, 0.08306988328695297, 0.017278475686907768, -0.009509152732789516, -0.016968825832009315, 0.042102135717868805, 9.944489283952862e-05, -0.024708064272999763, 0.02882160060107708, -0.024041911587119102, 0.04428829252719879, 0.03776918351650238, -0.04411948472261429, 0.03867103159427643, -0.04839596152305603, -0.013698193244636059, -0.0031809615902602673, 0.03510649874806404, 0.004569704644382, 0.07181601971387863, -0.0008231121464632452, 0.03740715608000755, 0.021724935621023178, 0.06743085384368896, -0.04554889351129532, -0.023284172639250755, -0.05886662378907204, -0.035868335515260696, 0.0631808340549469, -0.07922373712062836, 0.0030359404627233744, -0.004188978113234043, 0.1127377524971962, 0.009314820170402527, 0.06475649029016495, -0.0051443856209516525, -0.022861814126372337, 0.0007445362862199545, 0.03423500433564186, 0.04536914825439453, 0.005049997940659523, -0.02504001371562481, 0.0551861897110939, 0.033215735107660294, -0.046727459877729416, -0.038363389670848846, 0.09607450664043427, 0.004591167438775301, 0.03517783060669899, -0.049142107367515564, -0.007620067801326513, -0.018487606197595596, -0.006139623932540417, 0.021352853626012802, 0.009296848438680172, 0.029934082180261612, -0.01704896241426468, -0.06828492134809494, -0.047558799386024475, -0.020512422546744347, 0.05067635327577591, -0.02797049656510353, 0.031067000702023506, 0.018823325634002686, -0.06629573553800583, -0.04601177200675011, -0.032878629863262177, -0.0002936724340543151, 0.006330366246402264, -0.03427606076002121, 0.012186603620648384, 0.050540465861558914, 0.00705763790756464, -0.016392646357417107, -0.029562316834926605, -0.03505202755331993, -0.025181075558066368, -0.018994031473994255, 0.013882741332054138, -0.05892106145620346, 0.006311931647360325, -0.06648502498865128, 0.04986517131328583, -0.04354989156126976, 0.04328447952866554, 0.025754280388355255, 0.03777463734149933, 0.0015319056110456586, -0.006929337978363037, 0.02941923774778843, -0.10767047107219696, 0.022921334952116013, -0.005086666904389858, -0.0901295393705368, 0.007846919819712639, 0.00042457098606973886, 0.015081014484167099, -0.03229236230254173, 0.03969675675034523, 0.03262009844183922, 0.03215453773736954, -0.0511874258518219, 0.03821363300085068, 0.018319562077522278, -0.03158119320869446, -0.034703027456998825, -0.28220197558403015, -0.06495913118124008, -0.0018834518268704414, -0.04436931014060974, 0.00570693938061595, 0.0018182952189818025, -0.0070633916184306145, -0.04722512885928154, -0.09399855136871338, 0.06549801677465439, -0.0058520520105957985, -0.05141754075884819, 0.0001582032855367288, -0.009598379023373127, 0.006825161166489124, -0.03706897050142288, -0.011037436313927174, -0.08505132794380188, -0.06731026619672775, 0.044178374111652374, 0.019708463922142982, 0.025828039273619652, 0.07042079418897629, -0.07579398155212402, -0.021704256534576416, 0.02108081988990307, 0.08203958719968796, 0.01720389351248741, -0.0039406027644872665, 0.012018531560897827, 0.011437860317528248, 0.04048409312963486, -0.00994245707988739, -0.15450869500637054, 0.01071044709533453, -0.0023780439514666796, -0.06591882556676865, -0.07936972379684448, -0.06234358996152878, -0.06959079951047897, -0.04531492665410042, 0.07182109355926514, 0.019521968439221382, 0.027192693203687668, -0.07838617265224457, 0.023603834211826324, 0.04538106918334961, -0.010115723125636578, -0.013391731306910515, 0.026064613834023476, -0.0856594517827034, 0.030487462878227234, -0.019135557115077972, -0.00828735064715147, -0.036418616771698, -0.023813333362340927, -0.05997014418244362, 0.002149056177586317, -0.05833553150296211, 0.021359030157327652, -0.03062310814857483, 0.026143139228224754, 0.04220246896147728, -0.03911580890417099, -0.0418735146522522, -0.07460455596446991, 0.01861148700118065, 0.006177427712827921, 0.03963376581668854, 0.02574354223906994, -0.031859882175922394, 0.12664905190467834, -0.03172243759036064, -0.03314242884516716, 0.06009960174560547, 0.011767946183681488, -0.025421185418963432, 0.02675231359899044, -0.019658688455820084, -0.01233130507171154, 0.0512518584728241, -0.036481618881225586, 0.014140637591481209, 0.07455524057149887, 0.05178345739841461, -0.04683270305395126, 0.040827006101608276, -0.00881398469209671, 0.016905909404158592, -0.0538499616086483, -0.0535556823015213, 0.054163772612810135, -0.001086308155208826, -0.01362455915659666, -0.03218448907136917, 0.04037175327539444, -0.20775550603866577, 0.039537206292152405, -0.0007861765334382653, 0.053195592015981674, 0.0018704388057813048, 0.015584329143166542, -0.03230147436261177, 0.08027904480695724, 0.0029261258896440268, -0.025170104578137398, 0.0915425568819046, 0.006918908096849918, 0.09228523820638657, -0.05546651780605316, -0.056085482239723206, -0.0335252545773983, 0.11803144961595535, -0.036076292395591736, 0.0642867386341095, 0.015584614127874374, 0.02876238524913788, 0.04853249341249466, 0.13543200492858887, 0.001512206974439323, -0.0050340876914560795, -0.01268089096993208, -0.029031675308942795, 0.07298091799020767, -0.042250655591487885, 0.012855321168899536, 0.04118388146162033, -0.00852792989462614, 0.04577155411243439, 0.04834474250674248, 0.0631229355931282, -0.031738199293613434, -0.0385994054377079, -0.03140874207019806, 0.05982049182057381, 0.004945175722241402, -0.025921883061528206, 0.0005114756640978158, 0.01306961290538311, 0.0032480142544955015, 0.12575343251228333, 0.04963400959968567, 0.008569709956645966, -0.07104580849409103, -0.012764929793775082, 0.05666536092758179, -0.03211506828665733, -0.0017357730539515615, 0.07866911590099335, 0.04973021522164345, 0.024716272950172424, -0.001598722068592906, 0.0355149507522583, 0.01943277008831501, 0.029056061059236526, -0.06495803594589233, -0.00411933334544301, 0.036461517214775085, -0.07087966054677963, 0.049853675067424774, 0.015806827694177628]}), _DocumentWithState(page_content='You may now wish to re flect on the issues discussed in this chapter by returning to the\nexercise in Box 1.1.\nReferences\nAmerican Psychiatric Association (1994) Diagnostic and Statistical Manual of Mental Disorders , 4th edn.\nArlington, VA: American Psychiatric Association.\nAppleton, P.L. and Hammond-Rowley, S. (2000) Addressing the population burden of child and adolescent\nmental health problems: a primary care model, Child Psychology and Psychiatry Review , 5(1): 9 –16.\nArmstrong, C., Hill, M. and Secker, J. (1998) Listening to Children . London: The Mental Health Foundation.\nArmstrong, C., Hill, M. and Secker, J. (2000) Young people ’s perceptions of mental health, Children and\nSociety , 14: 60 –72.\nAsarnow, J.R., Jaycox, L.H. and Thompson, M.C. (2001) Depression in youth: psychosocial interventions,\nJournal of Clinical Child Psychology , 30(1): 33 –47.\nAtkins, M.S., Frazier, S.L., Adil, J.A. and Talbot, E. (2003) School based mental health services in urban', metadata={'source': 'Defining_mental_health_and_mental_illness.pdf', 'page': 9}, state={'embedded_doc': [-0.008647849783301353, -0.025304628536105156, 0.030662817880511284, -0.01747807301580906, -0.00795653648674488, 0.08051452785730362, -0.03359166532754898, -0.006640220060944557, -0.020935965701937675, -0.039065588265657425, 0.046379853039979935, 0.018448954448103905, -0.022822273895144463, 0.006218564230948687, 0.03113252855837345, 0.0178828127682209, 0.03490104153752327, -0.0167002584785223, -0.007123442366719246, -0.012683434411883354, -0.040658511221408844, -0.009274636395275593, 0.05756191536784172, 0.033637985587120056, 0.021121300756931305, 0.00035584517172537744, -0.0017457715002819896, 0.010637184605002403, -0.03244039788842201, -0.12432198226451874, 0.0714055597782135, 0.01815611496567726, 0.058188337832689285, 0.030889689922332764, -0.014053137972950935, 0.05409882590174675, 0.0051158335991203785, 0.03487883508205414, -0.04173038527369499, 0.03199560567736626, 0.05248581990599632, -0.003561405697837472, -0.004830508027225733, -0.03163368999958038, -0.025589903816580772, 0.005335681140422821, -0.04449845105409622, -0.05174707621335983, 0.017184022814035416, -0.04663638770580292, -0.014035392552614212, -0.012571949511766434, 0.014640582725405693, 0.08977073431015015, -0.04461805522441864, 0.015375613234937191, 0.06883960962295532, -0.012212960049510002, -0.0015593781135976315, 0.06084645539522171, 0.050146982073783875, -0.013798842206597328, -0.19610455632209778, 0.04993278160691261, 0.029886890202760696, 0.04440923035144806, 0.005380457267165184, -0.01757131703197956, -0.01966835744678974, -0.012193863280117512, -0.09547725319862366, -0.04272117838263512, 0.03504098951816559, 0.06951781362295151, 0.0034105803351849318, 0.04967829957604408, -0.0012711085146293044, -0.04059494286775589, 0.0695539191365242, -0.025262149050831795, -0.020958559587597847, 0.03659304603934288, 0.03024083375930786, -0.025390800088644028, 0.004181113559752703, -0.05237776041030884, -0.01536471676081419, -0.04743979126214981, 0.01636705920100212, -0.01461267564445734, -0.014546960592269897, -0.03251097723841667, 0.005671383813023567, 0.03786515071988106, -0.03827891871333122, -0.011617997661232948, -0.0018894844688475132, 0.014249412342905998, -0.05792002007365227, 0.42856377363204956, -0.024471670389175415, 0.008883715607225895, 0.019996272400021553, 0.029581010341644287, -0.06419005244970322, 0.0004855465376749635, 0.026728885248303413, -0.11226364225149155, 0.03305913880467415, 0.058981407433748245, 0.009454485960304737, -0.06465492397546768, 0.037737179547548294, 0.003890351625159383, -0.01809326373040676, 0.004737345036119223, 0.024795303121209145, -0.03799794614315033, 0.05153670161962509, -0.034282248467206955, 0.03555132821202278, -0.00921349972486496, 0.042850323021411896, -0.06654296815395355, -0.01324764359742403, -0.04261358827352524, 0.012330257333815098, 0.0692620649933815, 0.07926119118928909, 0.014162560924887657, 0.0820409506559372, -0.0022281003184616566, -0.06494171917438507, -0.038740236312150955, 0.03641926497220993, -0.010339176282286644, 0.0426788330078125, 0.014841388911008835, 0.04390454292297363, 0.02134309895336628, 0.10082629323005676, -0.08045285195112228, -0.0038599928375333548, -0.09777895361185074, -0.08842650055885315, 0.14949285984039307, -0.011943819932639599, -0.0336485393345356, -0.02774600125849247, 0.031777530908584595, 0.02538655512034893, 0.0388043150305748, -0.005633552558720112, 0.017804456874728203, 0.013333814218640327, 0.006750581786036491, 0.004854025784879923, 0.02314837835729122, -0.011384934186935425, 0.02064845710992813, 0.0651545524597168, -0.02454441972076893, -0.049552273005247116, 0.04411926120519638, 0.07590901851654053, -0.004776370245963335, -0.02737964317202568, -0.056724678725004196, 0.004929534159600735, 0.008911961689591408, -0.013962396420538425, 0.040718402713537216, 0.04118736460804939, -0.013819749467074871, 0.02796461433172226, -0.05353054404258728, -0.026287542656064034, -0.0034945658408105373, -0.013245072215795517, 0.06152860075235367, 0.03630409017205238, -0.06523139774799347, -0.01191873662173748, -0.0655980110168457, 0.005122179631143808, -0.017961258068680763, -0.02943291887640953, -0.026668481528759003, 0.0064246319234371185, -0.04227977991104126, -0.05151190608739853, -0.010567644611001015, -0.0434911735355854, 0.014028250239789486, -0.06573471426963806, -0.04826456680893898, -0.03458239138126373, -0.03973284736275673, -0.03260280564427376, 0.034604981541633606, -0.05078378692269325, 0.02669839933514595, -0.01507810689508915, 0.05177885666489601, 0.02569160982966423, 0.016695208847522736, 0.015699714422225952, -0.07065656036138535, 0.07083597779273987, -0.0139308525249362, -0.010266967117786407, 0.00039310904685407877, 0.01637355424463749, -0.02349860593676567, -0.017894718796014786, 0.0032028749119490385, 0.038727033883333206, 0.013255568221211433, 0.01950247772037983, 0.036822691559791565, 0.022496270015835762, -0.013146976009011269, 0.0008431219612248242, -0.3256148397922516, 0.014827103354036808, 0.021598033607006073, -0.04323241487145424, -0.0402803011238575, -0.03070104867219925, 0.041240960359573364, -0.0004933520103804767, -0.0127333989366889, 0.06775793433189392, 0.054698530584573746, 0.007079957984387875, -0.01725800149142742, 0.048775333911180496, -0.019101951271295547, -0.045396458357572556, -0.010520045645534992, -0.036643434315919876, -0.030213234946131706, -0.019189421087503433, -0.020056134089827538, 0.005163577385246754, 0.02321542240679264, -0.0256584994494915, 0.011144974268972874, 0.011708538979291916, 0.0867992416024208, -0.01546768844127655, -0.020936336368322372, 0.04877699539065361, -0.0009448134223930538, 0.012430491857230663, 0.009840002283453941, -0.06473808735609055, 0.007320432923734188, 0.014339927583932877, -0.027918081730604172, 0.009478381834924221, -0.03608342632651329, -0.05972609668970108, -0.07271219789981842, 0.07414062321186066, -0.03221168741583824, -0.019725292921066284, -0.1220221295952797, -0.03210857883095741, -0.032876428216695786, 0.02445780299603939, -0.027018683031201363, -0.010387261398136616, -0.05445433035492897, 0.010689730755984783, -0.0040740384720265865, -0.01703372783958912, 0.009182732552289963, -0.005023490637540817, -0.03980502486228943, -0.014201315119862556, -0.008301794528961182, 0.0068687074817717075, -0.029361410066485405, 0.06556442379951477, 0.05010835453867912, -0.09901903569698334, -0.010373103432357311, 0.0156262069940567, 0.048864468932151794, -0.019519386813044548, 0.006278634071350098, 0.025762101635336876, -0.0025519775226712227, 0.022119831293821335, -0.04826190322637558, -0.02044554241001606, 0.02683449164032936, 0.04316600784659386, -0.013299854472279549, 0.013038813136518002, -0.023593388497829437, 0.005617859773337841, 0.010731222108006477, -0.006389591842889786, -0.015553292818367481, 0.007896807044744492, 0.05611123517155647, 0.002612448064610362, -0.019751878455281258, -0.03933270648121834, 0.031087098643183708, -0.05945853143930435, -0.046115942299366, 0.04402932524681091, 0.012338264845311642, -0.020633840933442116, -0.04458753764629364, 0.048059552907943726, -0.21823909878730774, -0.030917422845959663, -0.02928221970796585, 0.057581666857004166, 0.007765524089336395, 0.04376160725951195, 0.032407425343990326, 0.0649615153670311, -0.001954266568645835, -0.051119085401296616, 0.05866819992661476, 0.06534015387296677, 0.08025366812944412, -0.017984256148338318, -0.08022011816501617, -0.01683983765542507, 0.07793271541595459, -0.02736819162964821, 0.0393407978117466, -0.0461236909031868, 0.04961955174803734, 0.0332978256046772, 0.1157926470041275, -0.01564694754779339, 0.008811844512820244, -0.038885485380887985, -0.045951325446367264, -0.03478077054023743, -0.010341004468500614, -0.05346263200044632, 0.02303868532180786, 0.004715587478131056, 0.08289246261119843, 0.04052526131272316, 0.02655799314379692, -0.09934289753437042, -0.07635466754436493, -0.015277327969670296, 0.031160378828644753, 0.033817678689956665, 0.04475297033786774, -0.01068565621972084, 0.003462675493210554, -0.007253008428961039, 0.07179947197437286, 0.019121142104268074, -0.0037533347494900227, -0.05232437327504158, 0.014976222068071365, -0.024773987010121346, 0.013184965588152409, 0.02348504774272442, 0.038450274616479874, 0.01394160371273756, 0.0786677747964859, 0.05962098017334938, 0.01134474016726017, -0.01757522113621235, 0.00014520619879476726, -0.04030436649918556, 0.004774328786879778, 0.005729692988097668, 0.03651617467403412, 0.04301046207547188, 0.05535111948847771]}), _DocumentWithState(page_content='Mental health literacy\nFinally, in this section, it is also worth considering how the mental health ‘literacy ’ of adults\nand children in the general population varies from that of professionals. In all phases of a recentresearch project, conceptual confusion was identi fied in the literature review and among ado-\nlescent participants (Leighton 2006, 2008). Focus group participants did not find the single\ncontinuum model suggested by the WHO (2000) helpful (Leighton 2006). Furthermore, in thefocus group feedback session, participants suggested that labelling serious mental illnesses suchas schizophrenia and major depression, as ‘mental health problems ’, diminishes the seriousness\nof mental illness, with implications for attitudes towards, and treatment of, those with mentalillness (Leighton 2006). It is also evident that there is considerable confusion for young peoplebetween the terms ‘mental health ’, ‘mental illness ’ and ‘learning disability ’ (Dogra et al.  2007;\nRose et al. 2007).', metadata={'source': 'Defining_mental_health_and_mental_illness.pdf', 'page': 5}, state={'embedded_doc': [0.04499732330441475, 0.028216205537319183, -0.019932270050048828, -0.0037953502032905817, 0.005789243616163731, 0.06876437366008759, -0.0012708998983725905, 0.028347505256533623, 0.0022024516947567463, -0.05467447265982628, 0.010037371888756752, -0.033393386751413345, -0.0022406545467674732, -9.069243969861418e-05, -0.025916647166013718, 0.023093760013580322, 0.004339972510933876, -0.003952894825488329, -0.02159130945801735, 0.026114055886864662, 0.002267794916406274, 0.005971602629870176, 0.07199912518262863, 0.07089950144290924, 0.0022620807867497206, 0.0019176786299794912, 0.03326719254255295, -0.031181171536445618, -0.022527849301695824, -0.11425809562206268, 0.027391759678721428, 0.022583911195397377, -0.017448604106903076, 0.006707742344588041, -0.003381835063919425, 0.02591150812804699, -0.00031374828540720046, 0.011936998926103115, -0.0008363089291378856, -0.0042557003907859325, -0.019040435552597046, -0.005945487879216671, -0.026996303349733353, 0.005420014262199402, -0.0306478813290596, -0.011981796473264694, -0.02431166172027588, -0.026460638269782066, 0.00084972899639979, -0.03748174011707306, -0.029417119920253754, -0.010099053382873535, 0.010724878869950771, 0.08206980675458908, -0.04177116975188255, -0.0047195423394441605, 0.02052653767168522, -0.009173808619379997, -0.0060554854571819305, 0.0414360836148262, 0.015289058908820152, 0.014307284727692604, -0.16998662054538727, 0.06156003475189209, 0.05753739923238754, 0.006969164125621319, -0.03851569816470146, -0.06606759130954742, -0.02944016642868519, -0.051118943840265274, -0.04437629133462906, -0.061051588505506516, 0.006315132137387991, 0.09666239470243454, 0.019088633358478546, 0.0023508481681346893, -0.0024115287233144045, -0.07742336392402649, 0.05170881375670433, -0.052600495517253876, 0.008871357887983322, 0.05917143076658249, 0.08843793720006943, -0.07506874948740005, 2.3908265575300902e-05, -0.02333168499171734, -0.028670992702245712, -0.06736086308956146, -0.0027364755515009165, -0.02740139327943325, -0.012504431419074535, -0.028052326291799545, 0.017148394137620926, 0.025419840589165688, 0.008129545487463474, -0.007919056341052055, 0.06850159168243408, -0.02420281060039997, -0.10075598210096359, 0.4461418390274048, -0.04926847293972969, -0.027707047760486603, 0.02089439518749714, 0.00427333265542984, -0.012886298820376396, -0.027973566204309464, 0.045138537883758545, -0.09021537005901337, 0.029412275180220604, 0.02578001096844673, -0.0074056582525372505, -0.05476425215601921, 0.04509711265563965, -0.011338038370013237, -0.045753881335258484, 0.013492156751453876, 0.03250648453831673, 0.03443191945552826, 0.04463542625308037, 0.027829866856336594, 0.010019246488809586, 0.009182062931358814, 0.0162467323243618, -0.039377015084028244, -0.031138306483626366, 0.008654898032546043, -0.06077469512820244, 0.05140526592731476, 0.05564219504594803, -0.016065210103988647, 0.0967436358332634, 0.00883624516427517, -0.046096041798591614, 0.01520566176623106, 0.014795527793467045, 0.03693150356411934, 0.03280642628669739, -0.004732728935778141, 0.05072605609893799, 0.03247731178998947, 0.08525955677032471, -0.0024415412917733192, -0.020120058208703995, -0.05123995617032051, -0.03730282559990883, 0.13284461200237274, -0.03678228333592415, 0.01877557300031185, -0.03077123314142227, 0.05179871991276741, 0.00968865491449833, 0.04100951552391052, -0.025105400010943413, 0.02552659623324871, 0.005359082017093897, 0.023817358538508415, 0.04209400713443756, -0.001940965186804533, -0.027784960344433784, -0.017211895436048508, 0.09234246611595154, -0.07427417486906052, -0.0735943540930748, 0.06736455857753754, 0.04383573308587074, 0.02334040403366089, -0.04192492365837097, -0.003735976992174983, 0.002607293426990509, -0.02550053969025612, 0.04167577996850014, 0.05051101744174957, 0.004298259504139423, 0.029246829450130463, -0.0035143261775374413, -0.01106635108590126, -0.04509836807847023, 0.014644901268184185, 0.02610001526772976, 0.045616332441568375, 0.007083298172801733, -0.014990981668233871, 0.0009958931477740407, -0.0037571536377072334, -0.018497800454497337, -0.06378676742315292, 0.011695070192217827, -0.05624667555093765, 0.07291033864021301, -0.006818748079240322, 0.014739762991666794, -0.04910009354352951, -0.03841204196214676, 0.04020031541585922, -0.07423779368400574, -0.04730450361967087, -0.025301503017544746, -0.08527315407991409, -0.04008585959672928, 0.0449373796582222, -0.059497375041246414, 0.027655167505145073, -0.011878099292516708, 0.01662198081612587, 0.02942492999136448, 0.003681360511109233, 0.018959123641252518, -0.06897144019603729, 0.06582056730985641, 0.02240394614636898, -0.012651263736188412, 0.014964868314564228, -0.005447910167276859, -0.018085865303874016, -0.004162345081567764, -0.0011088347528129816, 0.029010502621531487, 0.014012607745826244, 0.0017473014304414392, 0.031035766005516052, -0.007794486358761787, -0.07791483402252197, -0.03633887320756912, -0.28398942947387695, -0.04467690363526344, 0.051433105021715164, -0.04211405664682388, 0.023535266518592834, 0.04549437761306763, 0.030078880488872528, 0.013661587610840797, -0.03972093388438225, 0.041713450103998184, 0.05458594858646393, 0.026653500273823738, -0.021126536652445793, 0.03773541375994682, -0.00015442181029357016, -0.06120980530977249, -0.022227417677640915, -0.013448611833155155, -0.06629388779401779, 0.05173652619123459, -0.05591871961951256, 0.047728534787893295, -0.006033631041646004, -0.07921794801950455, 0.0029669178184121847, 0.015615643002092838, 0.13985659182071686, -0.00012216684990562499, 0.025651076808571815, -0.029246626421809196, -0.003864702768623829, 0.02221503295004368, -0.006360869389027357, -0.11756474524736404, -0.008363358676433563, -0.018148059025406837, -0.06798616796731949, -0.009736662730574608, -0.08338722586631775, -0.06284641474485397, -0.029970021918416023, 0.029556432738900185, -0.018444731831550598, -0.04031754657626152, -0.14010436832904816, 0.0011468565789982677, -0.026509394869208336, 0.07928111404180527, -0.04134659841656685, -0.017758144065737724, -0.07487352937459946, 0.08938243240118027, -0.006055410485714674, 0.0029238853603601456, -0.026558222249150276, 0.008948149159550667, -0.08525208383798599, 0.028728241100907326, -0.043576233088970184, 0.017123891040682793, -0.004258064553141594, 0.0637369155883789, 0.06139916181564331, -0.047354716807603836, -0.030310245230793953, 0.004250576253980398, -0.02123343013226986, 0.01630719006061554, 0.02088686265051365, 0.003060754621401429, 0.0071439435705542564, 0.07751467823982239, -0.021026907488703728, 0.03155795484781265, 0.04052530601620674, -0.006485856603831053, 0.009439598768949509, -0.0297927875071764, 0.009366854093968868, -0.025190619751811028, 0.016424577683210373, -0.003408155869692564, -0.0023615527898073196, 0.06257877498865128, 0.08193771541118622, -0.03772479668259621, -0.014488364569842815, -0.03817030042409897, -0.01700567826628685, -0.03385702520608902, -0.025339683517813683, 0.027415825054049492, 0.03241248428821564, -0.049380846321582794, -0.03407859802246094, -0.0016135632758960128, -0.21898774802684784, 0.04704087972640991, 0.004909459967166185, 0.054258257150650024, 0.0032346779480576515, 0.01868589036166668, -0.012686737813055515, 0.04004198685288429, -0.01656935177743435, 0.013330666348338127, 0.06511113047599792, 0.01614195667207241, 0.037522852420806885, -0.015035795047879219, -0.0800054669380188, 0.04630204290151596, 0.06018276512622833, -0.04973432794213295, 0.022078966721892357, 0.008194810710847378, 0.06517919898033142, 0.025189679116010666, 0.0986492931842804, -0.037892553955316544, -0.009883884340524673, -0.021789709106087685, 0.04361728951334953, -0.007361154537647963, 0.037498582154512405, -0.006956854835152626, 0.01233804039657116, 0.018592488020658493, 0.0487665981054306, 0.05515448376536369, 0.05446290597319603, -0.052183203399181366, -0.05195926874876022, -0.005375374108552933, 0.047409266233444214, 0.0023642233572900295, 0.014480313286185265, -0.008090350776910782, 0.02905147895216942, -0.03944694623351097, 0.06361322849988937, 0.007816570810973644, 0.013283815234899521, -0.09574408084154129, -0.0424392968416214, -0.014491111040115356, -0.004170635715126991, 0.010980343446135521, 0.022857414558529854, 0.05249588564038277, 0.05564451590180397, 0.0155398054048419, 0.06674562394618988, -0.025333678349852562, 0.016707884147763252, -0.020210204645991325, -0.019377227872610092, 0.03324650600552559, 0.01691245287656784, -0.0029489861335605383, -0.008014297112822533]}), _DocumentWithState(page_content='of the Jewish people by the Nazis (Link and Phelan 2001). Stigma was de fined by Goffman\n(1970) as the position of the individual who is disquali fied from full social acceptance. It is\nperceived as the outcome of a process of social labelling which singles out difference, names thisdifference inferiority, subsequently blames those who are different for their otherness andcontributes to the creation of a spoilt identity (Goffman 1970). Since that seminal develop-ment, the concept has evolved. For example, stigma can be described with reference to therelationships between a set of interrelated concepts, rather than focusing solely on personalattributes – i.e. stigma exists when elements of labelling, stereotyping, separation, status loss\nand discrimination occur together in a power situation that allows these processes to happen(Link and Phelan 2001).\nThe nature and extent of stigmatization in adult mental illness', metadata={'source': 'Defining_mental_health_and_mental_illness.pdf', 'page': 6}, state={'embedded_doc': [0.060363247990608215, 0.05009806901216507, -0.006028744392096996, 0.017937561497092247, -0.003828356508165598, 0.07358463108539581, 0.10312618315219879, 0.013181501999497414, 0.011381590738892555, -0.038329530507326126, 0.06499912589788437, 0.000817059597466141, -0.018513113260269165, -0.00952185783535242, 0.015914537012577057, 0.033861298114061356, -0.003702082671225071, 0.06687232851982117, -0.043620333075523376, -0.0022400165908038616, -0.0088286641985178, -0.03393582999706268, 0.06290171295404434, 0.02790479175746441, 0.02544701099395752, 0.04313249513506889, 0.03390466421842575, -0.04324326291680336, 0.004659966100007296, -0.10893496870994568, 0.026341388002038002, 0.013654336333274841, -0.044455572962760925, 0.012731073424220085, -0.006730562075972557, 0.001659489469602704, -0.045167598873376846, 0.019635582342743874, -0.026244590058922768, 0.020534595474600792, 0.02326994761824608, -0.037882983684539795, -0.03357553109526634, -0.03153657913208008, -0.05753645300865173, 0.05506042018532753, -0.05612005293369293, -0.05663945898413658, -0.07740363478660583, -0.06651183217763901, -0.02654504030942917, 0.016625510528683662, 0.00031175208278000355, 0.06836826354265213, -0.025873087346553802, 0.05992480367422104, 0.07890525460243225, 0.0019119143253192306, -0.034242987632751465, 0.0155634805560112, 0.04505520686507225, -0.04314279928803444, -0.1573130488395691, 0.05084424465894699, 0.04593797028064728, 0.03650191053748131, -0.013728837482631207, -0.04662151262164116, -0.044623520225286484, 0.028992466628551483, -0.03728866204619408, -0.01649443805217743, 0.029259398579597473, 0.06953782588243484, 0.050217848271131516, -0.015132282860577106, 0.007830634713172913, 0.00794890709221363, 0.026032395660877228, -0.026561949402093887, 0.0261616799980402, 0.06716187298297882, 0.039534226059913635, -0.06702067703008652, -0.011561565101146698, -0.010708598420023918, 0.0402490459382534, -0.06383941322565079, -0.006126053631305695, 0.0069339824840426445, -0.02333458513021469, -0.0130464481189847, 0.02599404565989971, -0.0011257660808041692, 0.04092228785157204, -0.024888796731829643, -0.00950955506414175, -0.007038126699626446, 0.03925070911645889, 0.39689525961875916, -0.016859441995620728, 0.019444765523076057, 0.01714821718633175, 0.012719675898551941, 0.036483097821474075, -0.016466662287712097, 7.148437725845724e-05, -0.0557277575135231, 0.018587186932563782, 0.02722988836467266, 0.011542752385139465, -0.00784496869891882, 0.07035496830940247, 0.004394832532852888, 0.03410087153315544, 0.003221831051632762, 0.0169683750718832, 0.03131994605064392, 0.0830552726984024, 0.05201655998826027, 0.003156630089506507, 0.05491024628281593, 0.025707941502332687, -0.021348901093006134, -0.043527428060770035, 0.06924562156200409, -0.02957868203520775, 0.07400700449943542, 0.009024376049637794, -0.11076819896697998, 0.07967668771743774, -0.07403464615345001, -0.027061251923441887, 0.03148376941680908, 0.05141119286417961, -0.0053830319084227085, -0.006472884211689234, 0.04117192327976227, 0.08117467164993286, 0.03827828913927078, 0.007525341585278511, -0.06399848312139511, -0.06413130462169647, -0.05289208143949509, -0.043012525886297226, 0.11723265051841736, -0.06338298320770264, -0.006329110357910395, -0.006960779894143343, 0.0758199542760849, -0.027431245893239975, 0.019334228709340096, -0.07372899353504181, -0.007871837355196476, -0.03050035797059536, 0.027411211282014847, 0.026528844609856606, 0.05191405117511749, 0.005931598134338856, 0.04540979489684105, 0.06759745627641678, -0.06492218375205994, 0.020010923966765404, 0.0811261460185051, 0.05402223393321037, -0.011168417520821095, -0.028306134045124054, 0.03408728539943695, 0.024333110079169273, 0.021834636107087135, 0.01736285351216793, -0.038920968770980835, 0.0006674338364973664, 0.020296664908528328, -0.02882937341928482, 0.036616191267967224, -0.006413537077605724, -0.004818476736545563, -0.022369233891367912, 0.0008841179078444839, 0.047767650336027145, -0.05984876677393913, -0.03157394379377365, 0.0014722479972988367, -0.04616263136267662, -0.03411063551902771, -0.029384339228272438, -0.021205678582191467, 0.010610053315758705, 0.03927029296755791, -0.05626330524682999, -0.030350394546985626, -0.033553410321474075, -0.029382143169641495, -0.0033792108297348022, -0.032907724380493164, -0.06770069897174835, -0.027878180146217346, -0.054556671530008316, 0.05067627876996994, -0.047051768749952316, 0.021197671070694923, -0.011173497885465622, -0.007576117757707834, -0.003987374249845743, 0.03303966671228409, 0.05439663305878639, -0.09145132452249527, 0.056865144520998, -0.021566186100244522, -0.07604866474866867, 0.004127117805182934, -0.04724591597914696, 0.03964708372950554, 0.02014400064945221, 0.02191494219005108, 0.02846713177859783, 0.006604933645576239, 0.018769387155771255, 0.035696111619472504, -0.019800404086709023, -0.04413393884897232, -0.08065331727266312, -0.29547932744026184, -0.03173622488975525, 0.02141452580690384, -0.04207124561071396, -0.044352173805236816, -0.013902400620281696, 0.027142265811562538, -0.03623846545815468, -0.027053534984588623, 0.06976671516895294, 0.056775860488414764, -0.012547413818538189, 0.01777491718530655, 0.05656982958316803, 0.02310594916343689, -0.051536187529563904, 0.002301896456629038, 0.005359158385545015, -0.00967804528772831, -0.012084953486919403, -0.038558296859264374, 0.08373509347438812, 0.041239116340875626, -0.027657732367515564, -0.011081133969128132, 0.0005511579802259803, 0.09732042253017426, 0.033894509077072144, -0.02127702720463276, 0.008348094299435616, -0.02030777931213379, 0.008979960344731808, -0.03761759400367737, -0.08216845244169235, 0.017676476389169693, -0.04642735794186592, -0.07147078216075897, -0.08953148126602173, 0.002357607940211892, 0.025446154177188873, -0.03827228024601936, -0.002062046667560935, 0.04021470621228218, -0.010994483716785908, -0.037785448133945465, 0.01994091272354126, 0.03899932652711868, 0.02168557420372963, -0.00583566864952445, 0.014002948068082333, -0.012116926722228527, 0.0007730927900411189, 0.007857155054807663, 0.006339464336633682, -0.012353068217635155, -0.014578262344002724, -0.09625817835330963, -0.04281974583864212, -0.061431966722011566, -0.016904329881072044, -0.006373113952577114, -0.047685280442237854, -0.011507010087370872, 0.0041258144192397594, -0.004579868167638779, -0.01249619759619236, -0.00668164249509573, -0.03783882409334183, -0.02402561530470848, 0.029865296557545662, 0.006558982189744711, 0.11790891736745834, -0.008173773065209389, -0.08136283606290817, 0.04516724497079849, 0.032645244151353836, -0.02707497589290142, -0.05634772405028343, -0.042949188500642776, -0.035778045654296875, 0.03461192548274994, -0.034952905029058456, -0.005017973016947508, -0.002588842995464802, 0.014542870223522186, -0.014257053844630718, -0.04230161011219025, -0.025602241978049278, 0.023553740233182907, 0.004339978098869324, -0.014713650569319725, 0.08758570998907089, -0.04411577060818672, -0.03559989482164383, -0.042603157460689545, 0.026339169591665268, -0.19562341272830963, 0.05836726352572441, 0.0018090931698679924, 0.05621002987027168, -0.02973068319261074, 0.04670502245426178, 0.018329942598938942, 0.04467763379216194, -0.030522258952260017, -0.02832374908030033, 0.05462067574262619, -0.0014775265008211136, 0.07166362553834915, -0.01795714907348156, -0.06552468985319138, 0.024717416614294052, 0.07422841340303421, -0.03355560451745987, 0.011905268765985966, -0.004685995634645224, -0.019361203536391258, -0.0015109828673303127, 0.13939408957958221, -3.447028939262964e-05, -0.027318250387907028, -0.013249458745121956, 0.006528042256832123, -0.03555232658982277, -0.05601676553487778, -0.027039185166358948, 0.025195276364684105, 0.0390343964099884, 0.0588531419634819, 0.03715486451983452, 0.05482770875096321, -0.10175375640392303, 0.04971601068973541, -0.022719722241163254, 0.025471100583672523, 0.002782762749120593, -0.05340074747800827, -0.04740425944328308, 0.05905727669596672, 0.025762520730495453, 0.13766831159591675, 0.008782690390944481, -0.025439046323299408, -0.09067188948392868, -0.06471595168113708, 0.014192081987857819, -0.0590401291847229, 0.047238510102033615, -0.015081461519002914, 0.05548757314682007, 0.02511385828256607, -0.011828476563096046, -0.014163321815431118, -0.026666861027479172, 0.01650277152657509, -0.06007962301373482, -0.018086034804582596, 0.10039210319519043, -0.022203031927347183, -0.010644720867276192, 0.046023424714803696]}), _DocumentWithState(page_content='See discussions, st ats, and author pr ofiles f or this public ation at : https://www .researchgate.ne t/public ation/255657987\nDefining mental health and mental illness\nArticle  · Januar y 2009\nCITATIONS\n10READS\n151,087\n2 author s, including:\nNisha Dogr a\nUniv ersity of L eicester\n152 PUBLICA TIONS \xa0\xa0\xa02,974  CITATIONS \xa0\xa0\xa0\nSEE PROFILE\nAll c ontent f ollo wing this p age was uplo aded b y Nisha Dogr a on 20 May 2014.\nThe user has r equest ed enhanc ement of the do wnlo aded file.', metadata={'source': 'Defining_mental_health_and_mental_illness.pdf', 'page': 0}, state={'embedded_doc': [-0.049589693546295166, 0.022525304928421974, 0.0205765999853611, 0.0025703778956085443, 0.05409274622797966, 0.04565831646323204, 0.0017894548363983631, 0.024179428815841675, 0.007501582615077496, -0.014888513833284378, 0.04556962102651596, -0.0216493159532547, -0.018731189891695976, 0.018811620771884918, 0.0019220882095396519, 0.013190669007599354, -0.006645703688263893, -0.025592582300305367, -0.030177325010299683, 0.06165243685245514, -0.007988877594470978, -0.05471477657556534, 0.049592405557632446, 0.0174567848443985, 0.03801272436976433, 0.013950144872069359, -0.05336496978998184, -0.024976933375000954, -0.042961347848176956, -0.1351771205663681, 0.044980958104133606, 0.0025479469913989305, 0.01945970393717289, -0.035357698798179626, -0.011441340669989586, -0.0026035155169665813, 0.01874498650431633, 0.05932742729783058, 0.015706747770309448, 0.02002602629363537, 0.03185684606432915, 0.025903863832354546, -0.037145454436540604, -0.03517967090010643, 0.016993464902043343, 0.016244756057858467, -0.018069732934236526, -0.05023115500807762, 0.015079685486853123, -0.05323644354939461, -0.037205252796411514, 0.018411995843052864, -0.005378363654017448, 0.04675765708088875, -0.015009239315986633, -0.023786459118127823, 0.0010368683142587543, 0.019294356927275658, 0.004917543847113848, 0.028635360300540924, 0.012427299283444881, -0.052494943141937256, -0.1863652914762497, 0.06861258298158646, 0.022595318034291267, -0.013466401025652885, 0.03507415950298309, -0.03983483463525772, -0.06059056520462036, -0.08311185240745544, 0.01860082894563675, -0.007724125869572163, 0.00997897144407034, 0.07067787647247314, 0.0324956513941288, -0.0042375223711133, 0.01642805151641369, 0.007845772430300713, -0.0034246293362230062, -0.04799964278936386, 0.03602544218301773, 0.05809113383293152, 0.014423598535358906, -0.0114803621545434, 0.0008966432069428265, -0.04728688672184944, 0.02481727860867977, -0.04746279492974281, -0.018490513786673546, -0.013802191242575645, -0.007741089444607496, -0.03229449316859245, 0.08731857687234879, 0.04168454185128212, 0.004232286475598812, -0.004811533261090517, 0.013216347433626652, -0.008535472676157951, 0.014710254035890102, 0.5371629595756531, -0.0782417505979538, 0.054524198174476624, 0.03309689462184906, 0.02589740976691246, 0.011046415194869041, -0.011953257955610752, 0.05499620363116264, -0.05596340075135231, -0.020371239632368088, 0.01286596991121769, -0.014691153541207314, -0.01820892095565796, 0.059686221182346344, -0.03292425721883774, 0.017532067373394966, 0.03379586711525917, 0.05380313843488693, 0.0073069860227406025, 0.04546806961297989, 0.009436450898647308, -0.013180304318666458, -0.038173869252204895, 0.04968530684709549, 0.05504980683326721, -0.039378248155117035, -0.04284454882144928, -0.029561568051576614, 0.040339283645153046, 0.019218528643250465, 0.029272040352225304, 0.014444055035710335, -0.02129821851849556, -0.032950080931186676, -0.017627958208322525, -0.001245175488293171, -0.011915723793208599, 0.03805398568511009, -0.028733357787132263, 0.0505855567753315, -0.006844538263976574, 0.0551753044128418, -0.06453552097082138, 0.034508414566516876, -0.06573662906885147, -0.00913882814347744, 0.056032516062259674, 0.007797245401889086, 0.02412516251206398, -0.02090485766530037, 0.004183829762041569, -0.003532119793817401, 0.0750378668308258, -0.04298318549990654, -0.0048087043687701225, 0.019028251990675926, 0.0014673755504190922, 0.04559433460235596, -0.018708694726228714, -0.030023828148841858, -0.003991845063865185, 0.03613268956542015, -0.03663208708167076, -0.024393633008003235, 0.10191715508699417, 0.0021546536590903997, -0.014992387033998966, -0.015394119545817375, 0.03973904624581337, -0.006297829560935497, 0.023382015526294708, 0.04690183699131012, 0.01705605909228325, 0.00239050155505538, 0.01426613237708807, 0.00257835048250854, 0.0018006665632128716, 0.028510864824056625, -0.006317697465419769, 0.02075725793838501, 0.042865823954343796, -0.018557896837592125, -0.03632839024066925, -0.04518776014447212, -0.03183777257800102, -0.035384584218263626, -0.05619587004184723, -0.0030785331036895514, -0.011965897865593433, 0.003412987571209669, -0.015554924495518208, -0.05095105245709419, 0.02552335150539875, -0.04659640043973923, 0.0024817318189889193, -0.02281235158443451, -0.020584896206855774, -0.007004910614341497, -0.03533267602324486, -0.033608801662921906, 0.020828397944569588, -0.030649829655885696, 0.06146131455898285, -0.0630011186003685, 0.038740482181310654, 0.041493382304906845, 0.012501473538577557, -0.02295386604964733, -0.09046368300914764, 0.041429925709962845, 0.022068753838539124, -0.04813448339700699, -0.02477768436074257, -0.021456822752952576, 0.06531732529401779, -0.005514052696526051, 0.014825738966464996, -0.0011998401023447514, 0.006969550158828497, 0.023191004991531372, 0.06603645533323288, -0.00014070566976442933, 0.019509291276335716, -0.03954489529132843, -0.3034597933292389, -0.06143234297633171, 0.0368625670671463, -0.04879368841648102, -0.028114933520555496, -0.034786321222782135, 0.009230224415659904, -0.01146284956485033, 0.0098347719758749, 0.06931588798761368, 0.02460879646241665, -0.010557839646935463, -0.0013110835570842028, -0.0069600921124219894, -0.009534965269267559, 0.026071103289723396, 0.01711823046207428, -0.04449983686208725, 0.0017770342528820038, -0.014589348807930946, -0.00717764301225543, 0.026390353217720985, -0.0013071380089968443, -0.006538154557347298, 0.02318238653242588, -0.014286271296441555, 0.07017020881175995, 0.04131491109728813, -0.008624326437711716, -0.020394494757056236, -0.00519203906878829, -0.006681501399725676, -0.029724089428782463, -0.13581158220767975, 0.025743888691067696, 0.008582181297242641, -0.022346705198287964, -0.00559954484924674, -0.0374382808804512, -0.01179787889122963, -0.051516883075237274, 0.05781769007444382, -0.0010334611870348454, -0.012140972539782524, -0.11682848632335663, -0.017139719799160957, 0.031004462391138077, 0.05333084613084793, -0.03242115676403046, 0.0032959654927253723, -0.08863576501607895, 0.024950098246335983, 0.007586505264043808, -0.00440551619976759, -0.054643139243125916, -0.022939927875995636, -0.0667039230465889, 0.009921960532665253, -0.0028670562896877527, 0.03923036903142929, 0.0005452853511087596, -0.016139479354023933, -0.00374623597599566, -0.07710696011781693, -0.023615119978785515, -0.01226857304573059, -0.03421973064541817, 0.03872419148683548, 0.013255934230983257, 0.02604004740715027, 0.018070219084620476, 0.06431335210800171, -0.06543190777301788, 0.03851313516497612, 0.04980532079935074, 0.037792935967445374, 0.009558837860822678, -0.04884267970919609, -0.011995264329016209, -0.009592050686478615, 0.0034674194175750017, -0.058809541165828705, -0.007113323081284761, 0.0023911409080028534, 0.022816041484475136, -0.019291378557682037, -0.04611975699663162, -0.03796185553073883, 0.016938036307692528, -0.01834077388048172, -0.023149002343416214, 0.04189416766166687, -0.03117349185049534, -0.08914710581302643, 0.017156410962343216, 0.06882818043231964, -0.2612634003162384, -0.019654743373394012, -0.008529610000550747, -0.00043522747000679374, 0.02225840836763382, 0.03662843257188797, 0.00398304034024477, 0.030898142606019974, -0.007496492005884647, -0.008187542669475079, 0.049847159534692764, 0.08035953342914581, 0.006816101260483265, -0.030485857278108597, -0.046460215002298355, 0.03041943535208702, -0.022725103422999382, 0.02746962197124958, 0.06137571111321449, -0.017426801845431328, 0.03209184482693672, -0.0384339764714241, 0.10176539421081543, 0.010540408082306385, 0.04235316067934036, -0.022084776312112808, -0.026522839441895485, -0.004277545027434826, 0.0013327886117622256, 0.007382962852716446, 0.023901192471385002, -0.026088647544384003, 0.02239852026104927, 0.06095775216817856, 0.003152345772832632, -0.04608309268951416, -0.07055099308490753, 0.0011139652924612164, 0.01373724453151226, -0.0004170157772023231, 0.041279472410678864, 0.010082547552883625, 0.017800450325012207, -0.011763141490519047, 0.0912751853466034, -0.02239968255162239, -0.019909532740712166, -0.003572306362912059, -0.011679260060191154, 0.005845849867910147, 0.03031211718916893, 0.008855500258505344, 0.06829719245433807, 0.042316097766160965, 0.052641984075307846, 0.02313380129635334, 0.04850926622748375, -0.019408373162150383, -0.010249820537865162, -0.02513420209288597, -0.07035446912050247, 0.04802926257252693, -0.01643446460366249, 0.03295338153839111, 0.044187117367982864]})]results = qa("How to determine Dollar Value of the Options Grant")print(results['result'])results = qa("How to determine Dollar Value of the Options Grant")print(results['result'])
results = qa("How to determine Dollar Value of the Options Grant")print(results['result'])#print(results["source_documents"])#for source in  results["source_documents"]:    print(source.metadata)########OUTPUT############### To calculate the Options Grant, use this formula: (Number of Shares) = Dollar Value of Options Grant / Current Share Price. In other words, if the company is offering employees $100,000 in options on shares selling for $30 each, then the number of shares granted would be 3,333 (rounded).[_DocumentWithState(page_content='5. Calculate the Options Grant  \nOptions Grant  \n(Number of Shares)  = Dollar Value  \nof Options Grant  \nCurrent Share Price', metadata={'source': 'Employee-Stock-Option-Plans-ESOP-Best-Practices-2.pdf', 'page': 22}, state={'embedded_doc': [-0.01464018039405346, -0.1141132339835167, 0.006303314119577408, -0.03636143356561661, -0.01919664442539215, 0.005365110468119383, 0.03989390656352043, -0.00011962500138906762, 0.05679503083229065, -0.0049852170050144196, 0.060355253517627716, -0.004163709469139576, 0.03092876635491848, -0.004292238503694534, -0.019483737647533417, 0.005383835174143314, -0.0797957107424736, -0.05881970375776291, -0.060195643454790115, 0.04698019102215767, 0.10709604620933533, -0.0930858850479126, -0.05114523693919182, -0.056381627917289734, 0.04826429486274719, -0.0004107253043912351, -0.030525818467140198, 0.0162102859467268, 0.005865844897925854, -0.17544972896575928, 0.020794963464140892, -0.0019692506175488234, -0.043823935091495514, -0.03906966745853424, -0.026101205497980118, 0.013224230147898197, -0.0552818700671196, 0.0316733680665493, 0.003609242383390665, 0.029446907341480255, -0.044814515858888626, 0.03724433854222298, 0.015339513309299946, 0.01772196963429451, -0.011539882980287075, -0.01856406405568123, 0.004192248452454805, -0.029599664732813835, 0.01587689109146595, 0.03718377649784088, 0.048723239451646805, -0.022916922345757484, -0.017879992723464966, 0.01416073739528656, 0.013177099637687206, 0.06256723403930664, 0.048800576478242874, 0.05249103158712387, 0.00628360640257597, 0.0602693036198616, 0.00820707343518734, 0.006840276066213846, -0.15461072325706482, 0.024111147969961166, -0.015141383744776249, -0.03283634036779404, -0.0029813824221491814, 0.006892829667776823, 0.005744245834648609, 0.05165000259876251, -0.0004142303660046309, -0.007532595191150904, -0.0035426646936684847, 0.0015598124591633677, 0.0008625143091194332, -0.009305812418460846, 0.010616518557071686, 0.008666165173053741, -0.018782971426844597, 0.017789851874113083, -0.021733906120061874, 0.042552683502435684, -0.06825841963291168, 0.04972095414996147, 0.03227538242936134, 0.012039341032505035, 0.11016244441270828, 0.045446306467056274, 0.07134677469730377, 0.03690136596560478, 0.01541669387370348, -0.0014186016051098704, -0.047810353338718414, -0.011156766675412655, -0.006999642588198185, 0.044466134160757065, 0.04590638354420662, -0.01929599605500698, -0.04678558185696602, 0.3453965485095978, 0.019822994247078896, 0.014921408146619797, -0.06233678385615349, -0.03122011013329029, -0.009853854775428772, -0.021442892029881477, -0.04239688813686371, 0.015047883614897728, 0.036654483526945114, 0.004181728232651949, -0.023857494816184044, 0.016282593831419945, -0.0009054194670170546, -0.09659023582935333, -0.0737684890627861, 0.019616955891251564, -0.025653159245848656, -0.03017941676080227, 0.005592022091150284, -0.04348932206630707, -0.0014268395025283098, -0.01586231030523777, 0.013959973119199276, 0.08837886154651642, -0.04022393003106117, 0.009301627986133099, 0.058335915207862854, 0.08412012457847595, 0.039372701197862625, 0.050169650465250015, 0.049319371581077576, -0.026579145342111588, -0.045058026909828186, -0.04847298189997673, 0.0451224222779274, 0.017563078552484512, 0.0037093607243150473, -0.003855308284983039, 0.011221567168831825, -0.01740644872188568, -0.007616415154188871, -0.03725268691778183, -0.028421645984053612, -0.003366090590134263, -0.04150914400815964, 0.1253592073917389, 0.006613233592361212, -0.005738068372011185, -0.0044251601211726665, -0.0016126941191032529, -0.048770882189273834, 0.044935278594493866, -0.02272781915962696, -0.072084940969944, -0.012737697921693325, 0.04590011015534401, -0.008670439943671227, -0.03892889991402626, 0.0008371872827410698, -0.04843921586871147, -0.022215649485588074, -0.04203449934720993, -0.0742500051856041, 0.10251862555742264, -0.00827136542648077, -0.095252126455307, -0.034792445600032806, -0.012056872248649597, 0.024865083396434784, -0.07535182684659958, -0.01613589935004711, 0.02505910024046898, -0.05679936334490776, -0.006985139567404985, 0.1034248098731041, 0.01955478824675083, -0.04397871345281601, -0.07252442091703415, -0.015229771845042706, -0.009853183291852474, -0.01860586740076542, -0.016197655349969864, -0.05425800755620003, 0.0009646171820349991, -0.03483434021472931, 0.04517446458339691, -0.03493930399417877, -0.047856200486421585, -0.011120862327516079, 0.06556932628154755, 0.012521466240286827, -0.014883981086313725, -0.08822015672922134, 0.03939900919795036, -0.010512776672840118, -0.0300114955753088, -0.03147402033209801, 0.0442798025906086, -0.0032421902287751436, 0.04145985096693039, 0.059944286942481995, -0.00040661447565071285, -0.03141243755817413, 0.018609991297125816, -0.02107965014874935, 0.06514906138181686, 0.027523694559931755, 0.025900688022375107, 0.08034437149763107, 0.030244681984186172, -0.054246511310338974, 0.06161198019981384, 0.05436692386865616, -0.007993694394826889, -0.005292708519846201, -0.021724430844187737, 0.0027260787319391966, 0.01061465684324503, 0.006732630543410778, -0.023641444742679596, 0.08854744583368301, -0.045222822576761246, 0.038400501012802124, -0.2979952096939087, -0.03576641529798508, -0.010368981398642063, -0.07760121673345566, -0.002768830396234989, -0.021857134997844696, 0.042648836970329285, -0.028876246884465218, -0.055875200778245926, 0.088407501578331, 0.06397166103124619, -0.034161198884248734, -0.02515248768031597, -0.04824656620621681, 0.04870149865746498, -0.09473070502281189, -0.0022200867533683777, -0.0247432179749012, -0.024117693305015564, 0.0673249214887619, -0.01431174948811531, -0.048941876739263535, 0.015019850805401802, -0.02172200009226799, 0.014984272420406342, 0.0796617865562439, 0.08261246234178543, -0.0101618692278862, -0.007005996070802212, -0.03348584473133087, 0.04711003974080086, 0.0054515027441084385, -0.008562222123146057, 0.0005345875979401171, -0.0012435062089934945, 0.061391666531562805, -0.0011207207571715117, 0.029265979304909706, 0.0035004657693207264, 0.0017970779445022345, -0.0240931436419487, 0.018596908077597618, -0.03227247670292854, -0.05686675012111664, 0.051872532814741135, 0.023846687749028206, 0.031092971563339233, -0.004612633027136326, 0.012553714215755463, 0.0101791862398386, 0.02750369720160961, 0.04887795075774193, 0.029868705198168755, 0.016919391229748726, 0.0792180746793747, -0.03384453058242798, -0.006818114314228296, 0.0350952073931694, 0.019874950870871544, 0.022575905546545982, -0.02795436792075634, -0.030299488455057144, 0.015232029370963573, -0.03883504495024681, -0.012787439860403538, -0.11412613093852997, -0.003012007335200906, -0.0374532975256443, -0.0030880493577569723, 0.005349944345653057, 0.0009395851520821452, -0.02409963682293892, 0.0327969454228878, 0.03905760496854782, 0.01786552555859089, 0.029065711423754692, 0.016035541892051697, 0.003092370228841901, -0.024897411465644836, 0.020647086203098297, 0.01219717413187027, -6.255568587221205e-05, 0.013447177596390247, 0.01792767457664013, 0.06225055456161499, 0.04193010926246643, 0.07252981513738632, 0.0579344742000103, 0.0028260257095098495, 0.008433525450527668, -0.06125323846936226, -0.08013635873794556, -0.04380282387137413, -0.004444686230272055, -0.014863185584545135, -0.04012491926550865, -0.2827472388744354, 0.02428947202861309, -0.0329376757144928, 0.009095137938857079, 0.03041859157383442, -0.00701204314827919, 0.022182175889611244, -0.012579242698848248, -0.07741224020719528, 0.01048512663692236, -0.07913952320814133, 0.050644826143980026, 0.015666725113987923, -0.08713191002607346, 0.03271806612610817, -0.0205764789134264, 0.029221082106232643, -0.07749449461698532, 0.03804072365164757, 0.015638628974556923, 0.08471003919839859, 0.03567881137132645, 0.1722583919763565, 0.036693911999464035, 0.01576201245188713, 0.015319705940783024, -0.009416105225682259, 0.008400595746934414, 0.07957560569047928, 0.015611402690410614, 0.013202053494751453, -0.020358530804514885, -0.010879062116146088, -0.07579079270362854, 0.03356967493891716, 0.0053303479216992855, -0.025834698230028152, 0.003310516709461808, 0.00010638489038683474, 0.0523054413497448, 0.02393406257033348, -0.0008031991310417652, -0.007062158547341824, 0.06373309344053268, 0.09456771612167358, -0.028182920068502426, 0.045701004564762115, -0.029162190854549408, 0.009453412145376205, 0.021727129817008972, -0.0353943333029747, 0.03151234611868858, 0.06394416838884354, -0.046092286705970764, 0.008608927950263023, 0.02770024724304676, 0.0048620691522955894, -0.026793956756591797, 0.022405406460165977, -0.03773697465658188, -0.06280818581581116, -0.03717869520187378, 0.013855207711458206, -0.0023601327557116747, 0.04459923878312111]}), _DocumentWithState(page_content='value of an options grant  \n•Easy for employees to grasp  what they \nare really getting (“$200,000 is a lot”)  \n•Grounds negotiations  in a discussion \nabout concrete dollar amounts, rather \nthan a percent of the company  \nNote: Although we recommend communicating options packages as a dollar value, we do not suggest \nrefusing employees information about their effective percentage ownership ; all options holders are \nentitled to this information, and to refuse would be unethical .', metadata={'source': 'Employee-Stock-Option-Plans-ESOP-Best-Practices-2.pdf', 'page': 11}, state={'embedded_doc': [-0.021864967420697212, -0.058135975152254105, -0.0455658957362175, -0.0332053117454052, 0.009012367576360703, 0.018805980682373047, 0.04770287498831749, 0.011639310978353024, 0.008290334604680538, 0.054377079010009766, 0.05217926949262619, 0.06908977031707764, 0.03883042931556702, 0.017809072509407997, -0.035268887877464294, 0.0348903052508831, 0.006820645183324814, -0.0692891925573349, -0.04441855102777481, 0.08436071127653122, 0.08467204123735428, -0.04713820666074753, 0.011377268470823765, -0.017581922933459282, 0.03726321831345558, 0.010418063029646873, -0.05956545099616051, 0.016579069197177887, 0.01916254684329033, -0.11862847208976746, -0.010784638114273548, 0.03965958580374718, 0.0142475301399827, -0.03149795904755592, 0.008199814707040787, 0.035991303622722626, 0.022786276414990425, 0.033015474677085876, 0.03368108347058296, 0.03796890750527382, -0.02290656417608261, -0.019880248233675957, -0.006159264128655195, -0.027774563059210777, 0.02425403892993927, 0.007231189403682947, 0.047434329986572266, -0.044031307101249695, -0.00803918857127428, 0.059073325246572495, 0.05689729377627373, -0.021852713078260422, 0.006472491193562746, 0.031248563900589943, -0.0568377859890461, 0.01573324389755726, 0.03881309926509857, 0.03355418145656586, -0.011263216845691204, 0.033210285007953644, 0.027976762503385544, -0.02583516202867031, -0.06994391232728958, 0.017215343192219734, -0.016974931582808495, 0.005388827528804541, 0.01710827276110649, 0.012716047465801239, -0.07042615860700607, -0.018185611814260483, 0.025682229548692703, -0.007786725182086229, -0.043380189687013626, -0.013956021517515182, 0.01865033619105816, -0.08438440412282944, -0.003719169180840254, -0.0032159830443561077, 0.005133319180458784, 0.021364541724324226, -0.019559254869818687, -4.8428231821162626e-05, -0.04075752943754196, -0.018301036208868027, -0.028824690729379654, -0.030472420156002045, 0.071854367852211, 0.014303894713521004, 0.06149498000741005, -0.03856992349028587, 0.09128688275814056, -0.02505451999604702, -0.03238237649202347, -0.031604159623384476, 0.0045478325337171555, 0.06099838390946388, 0.009363307617604733, -0.012753705494105816, -0.09640500694513321, 0.40285149216651917, 0.009010404348373413, 0.0073875547386705875, -0.0621483139693737, -0.03249700367450714, 0.04847053438425064, 0.004730903077870607, -0.013686534017324448, 0.0023699195589870214, -0.017264751717448235, 0.05787361413240433, 0.011906571686267853, 0.02324664033949375, -0.02448268234729767, -0.04278184473514557, -0.03140930458903313, 0.0338716059923172, 0.008302301168441772, -0.016237623989582062, 0.04027383774518967, -0.07171647250652313, -0.019501173868775368, 0.007054759655147791, 0.06388945877552032, 0.06753262132406235, -0.08928868919610977, -0.025954358279705048, 0.054550494998693466, 0.07722121477127075, 0.0729789286851883, 0.05418439581990242, 0.0242979284375906, -0.06452608108520508, -0.04020402580499649, -0.03365641459822655, 0.0531618706882, 0.03940679877996445, 0.02304716967046261, 0.050035931169986725, 0.023538218811154366, 0.08895667642354965, 0.04826471582055092, -0.0365254208445549, -0.04099387675523758, -0.019355231896042824, -0.04304733872413635, 0.09507168084383011, -0.015019455924630165, 0.014095905236899853, -0.0018293986795470119, 0.013028266839683056, 0.003723341040313244, -0.0032787169329822063, -0.015556682832539082, -0.07889454066753387, -0.020697718486189842, 0.009632500819861889, 0.03127129375934601, -0.014794834889471531, -0.0642990842461586, -0.056624241173267365, 0.0309241134673357, -0.04780745133757591, -0.08314408361911774, 0.05364306643605232, -0.02963005006313324, -0.07469844073057175, -0.07125621289014816, -0.027737827971577644, 0.025086095556616783, -0.08125413209199905, -0.02736288495361805, -0.02580001950263977, -0.048597391694784164, -0.009040694683790207, 0.09015578031539917, 0.014460962265729904, -0.11413638293743134, -0.03556033596396446, -0.04983176290988922, 0.033715661615133286, -0.02014378271996975, 0.0627572312951088, -0.03881372883915901, 0.004060591105371714, -0.0588156022131443, -0.0008423575782217085, -0.03206166625022888, -0.026964383199810982, 0.012135445140302181, 0.0494619682431221, -0.015325657092034817, 0.03598913550376892, -0.08257371932268143, 0.02430379018187523, -0.004353681113570929, -0.0528719462454319, -0.014483710750937462, -0.013443456962704659, -0.04800141975283623, 0.04023992270231247, -0.01575130969285965, -0.007410439196974039, -0.013560803607106209, 0.0876270979642868, 0.010243943892419338, 0.07924383133649826, 0.02572089247405529, -0.006699304562062025, 0.08066447824239731, 0.012710712850093842, -0.05883524939417839, 0.04402943700551987, 0.030082793906331062, 0.028688816353678703, -0.03547488525509834, 0.0342533104121685, 0.06275326013565063, 0.0555775947868824, -0.007235620636492968, -0.04400249198079109, 0.026108521968126297, 0.008206278085708618, 0.003036959795281291, -0.33252355456352234, -0.0174180269241333, -0.07485616952180862, 0.004872960038483143, 0.0017207463970407844, 0.017376195639371872, 0.05310043692588806, -0.004182774573564529, -0.08344881236553192, 0.1235419511795044, 0.02924603782594204, -0.08400888741016388, -0.008572535589337349, -0.016047393903136253, 0.004767002072185278, -0.05716549605131149, 0.004629426635801792, -0.004872100427746773, -0.014347865246236324, 0.007521463092416525, -0.04287088289856911, -0.0047958530485630035, -0.011421343311667442, -0.021931210532784462, 0.02577030472457409, 0.022055979818105698, 0.09329947084188461, -0.06833253055810928, -0.06848751753568649, -0.04911384731531143, -0.017615454271435738, 0.048562534153461456, -0.012994319200515747, -0.02715570107102394, -0.012788768857717514, 0.04460838809609413, -0.07504484057426453, 0.013831150718033314, 0.0016736378893256187, 0.01684707961976528, -0.008958914317190647, -0.00921486597508192, -0.07301763445138931, -0.03277203068137169, 0.00018929819634649903, 0.015839101746678352, -0.002491204533725977, 0.055020637810230255, -0.04321606829762459, 0.01619500294327736, 0.016094321385025978, 0.05810879170894623, 0.016423670575022697, 0.058205969631671906, 0.0795627236366272, -0.015999335795640945, -0.007473025005310774, 0.006966699846088886, 0.07574538141489029, -0.0062507400289177895, -0.028532452881336212, -0.005352686159312725, 0.030129428952932358, -0.02651902474462986, -0.01614249497652054, -0.06060773506760597, -0.000819127366412431, -0.019736234098672867, 0.002710166620090604, 0.05311794579029083, 0.01093964371830225, 0.042119212448596954, 0.01815449446439743, 0.022655056789517403, -0.0290134958922863, 0.06583079695701599, -0.008208196610212326, -0.016375679522752762, -0.0011627209605649114, -0.0009700469090603292, 0.009643829427659512, -0.027923647314310074, -0.02170557901263237, 0.021005768328905106, 0.06300939619541168, 0.04894160479307175, 0.0511971153318882, -0.004710464272648096, -0.015991052612662315, 0.04640959948301315, -0.05372646823525429, -0.031301192939281464, -0.010580948553979397, 0.007320724427700043, -0.006927730981260538, -0.06624941527843475, -0.25948312878608704, -0.0099916597828269, 0.008657633326947689, 0.003374048974364996, 0.005448379088193178, 0.029261449351906776, 0.003214877098798752, 0.005799262318760157, -0.07925409823656082, 0.02326507866382599, 0.01797265000641346, 0.024705320596694946, 0.0016121149528771639, -0.07627121359109879, 0.09660615772008896, -0.009269209578633308, 0.03434550389647484, -0.016373921185731888, 0.0009462523157708347, -0.028280191123485565, 0.0579649955034256, -0.03550262004137039, 0.15301546454429626, 0.024411482736468315, -0.019819160923361778, 0.012438240461051464, -0.045506518334150314, 0.05061468482017517, 0.06913110613822937, 0.022956792265176773, -0.03448456525802612, -0.04267675802111626, 0.02092433162033558, -0.056695859879255295, 0.0037989579141139984, -0.03432668745517731, -0.018894167616963387, -0.022606711834669113, 0.016050254926085472, 0.021793458610773087, -0.00012477595009841025, -0.008566854521632195, -0.008249705657362938, 0.009527766145765781, 0.07221529632806778, -0.0014574747765436769, 0.023978104814887047, -0.042842134833335876, 0.037414297461509705, 0.01465032808482647, -0.04620528221130371, 0.029420925304293633, 0.04204152151942253, -0.02872326970100403, -0.004245219752192497, 0.015366917476058006, -0.01790555939078331, 0.024694714695215225, 0.02811979502439499, -0.03897000104188919, -0.055355656892061234, 0.011590485461056232, 0.010895404033362865, 0.053480103611946106, 0.007590638939291239]}), _DocumentWithState(page_content='HOW MUCH TO GRANT  Part II', metadata={'source': 'Employee-Stock-Option-Plans-ESOP-Best-Practices-2.pdf', 'page': 12}, state={'embedded_doc': [-0.014614416286349297, -0.0653010830283165, -0.02237919345498085, -0.07474169880151749, 0.01623189076781273, 0.027023063972592354, -0.04476494714617729, 0.005206899251788855, 0.007419763598591089, 0.006973910145461559, 0.031981054693460464, -0.02390771545469761, 0.025145113468170166, 0.017225200310349464, 0.05665896460413933, 0.005987833719700575, -0.01762116700410843, -0.022565482184290886, -0.043701887130737305, 0.082351453602314, 0.047807201743125916, -0.0624934621155262, 0.024586882442235947, -0.0333239883184433, -0.001622927957214415, 0.0332958810031414, -0.04647969454526901, -0.015744412317872047, 0.0119746383279562, -0.17340318858623505, 0.036215007305145264, 0.050953321158885956, -0.06685682386159897, -0.005952952895313501, -0.018247637897729874, -0.04323652759194374, -0.05787906050682068, -0.015239610336720943, 0.021523959934711456, 0.005293344147503376, 0.011784885078668594, 0.06555196642875671, -0.023133166134357452, -0.04412277042865753, 0.03692053258419037, -0.019291767850518227, -0.018692148849368095, -0.0208545234054327, 0.07603199034929276, 0.014731019735336304, 0.03270911052823067, -0.06756752729415894, 0.0309890229254961, 0.07213853299617767, 0.021802030503749847, 0.016646606847643852, 0.020127160474658012, 0.022249706089496613, 0.03140890970826149, 0.025532156229019165, -0.021426651626825333, 0.025834089145064354, -0.20045773684978485, 0.03562242537736893, 0.015292804688215256, 0.03256027027964592, -0.007135570980608463, -0.019942395389080048, 0.016881166025996208, 0.054610490798950195, 0.000680725381243974, -0.010203218087553978, -0.012875553220510483, -0.02526543289422989, 0.010172084905207157, -0.02999565564095974, 0.02716265805065632, 0.013796616345643997, 0.029499992728233337, -0.018091265112161636, -0.07524999231100082, 0.02428685687482357, -0.0032048143912106752, 0.028769876807928085, -0.005820157937705517, -0.05613473057746887, 0.08154255151748657, 0.01790745183825493, 0.011323402635753155, 0.04128597304224968, 0.08306525647640228, -0.061310309916734695, -0.005921755917370319, -0.0337446890771389, -0.0784657821059227, 0.023230236023664474, 0.02188340201973915, -0.022465335205197334, -0.03583695366978645, 0.3218124508857727, 0.03145403414964676, -0.025624703615903854, -0.031324103474617004, -0.028823452070355415, 0.0510142557322979, -0.0311895702034235, -0.0011278995079919696, 0.01176631823182106, -0.021801020950078964, 0.0025043641217052937, 0.004345606546849012, 0.06501550227403641, 0.04625459387898445, -0.05070127174258232, -0.05656706169247627, 0.061871238052845, 0.028484150767326355, 0.04715941101312637, -0.006203228607773781, -0.047744765877723694, 0.0009977221488952637, -0.023989208042621613, -0.007464193273335695, 0.002568474505096674, -0.05950004979968071, -0.03765352815389633, 0.0467512384057045, 0.10141754895448685, 0.06748616695404053, 0.048828206956386566, 0.020006434991955757, -0.05071140080690384, -0.040679484605789185, 0.013321306556463242, 0.025713203474879265, -0.05127094313502312, 0.001529265777207911, 0.024005478248000145, 0.029617104679346085, 0.007613344117999077, 0.03942716494202614, -0.054224491119384766, -0.06844989955425262, -0.04309334605932236, -0.005117196589708328, 0.11151405423879623, -0.026872647926211357, 0.01718214899301529, -0.0049394043162465096, -0.06426094472408295, 0.02218027412891388, 0.03242561221122742, 0.030869297683238983, -0.06879090517759323, 0.05633506178855896, 0.02128123864531517, 0.03966524824500084, -0.011271489784121513, 0.008259848691523075, 0.024851061403751373, 0.041983913630247116, -0.09057427942752838, -0.05914418026804924, -0.010783364996314049, 0.02884637378156185, -0.09186884015798569, -0.07378965616226196, -0.04384880140423775, 0.016898928210139275, 0.02194085158407688, 0.027438271790742874, 0.05256020277738571, 0.0003304304846096784, -0.018678369000554085, 0.08542800694704056, -0.029878156259655952, -0.06202330067753792, 0.05629095807671547, 0.022136805579066277, 0.06700626760721207, -0.021667590364813805, -0.004742859397083521, -0.06182045489549637, -0.015630269423127174, -0.03648931533098221, -0.03697139397263527, -0.06742241978645325, -0.026098966598510742, -0.0411808006465435, 0.022236894816160202, -0.06275341659784317, 0.06541422754526138, -0.06579773873090744, 0.03002999536693096, 0.06253054738044739, -0.03806885704398155, -0.06075430288910866, 0.03057093918323517, -0.03673719987273216, -0.0022213878110051155, 0.06523270159959793, -0.03856794163584709, -0.06444655358791351, 0.03831319510936737, 0.02074507065117359, 0.05149514228105545, 0.04984661564230919, 0.00652837660163641, 0.013157036155462265, 0.056975673884153366, -0.041868213564157486, -0.024151895195245743, 0.0632922574877739, 0.0215402040630579, -0.0051527260802686214, 0.05976103991270065, 0.023419136181473732, 0.03694741055369377, 0.023630769923329353, 0.07053498923778534, 0.018372511491179466, -0.01629999838769436, 0.02291424386203289, -0.3229990303516388, 0.02778332121670246, 0.024004541337490082, -0.05566263198852539, 0.030093533918261528, 0.028016256168484688, 0.06555298715829849, -0.01987035945057869, -0.09355317056179047, 0.1043146401643753, 0.02638588845729828, -0.06759893149137497, -0.030619574710726738, 0.05725852772593498, 0.02289940044283867, -0.031899187713861465, 0.021007100120186806, 0.01681981422007084, 0.017457151785492897, 0.011858629062771797, -0.003721103770658374, 0.03580677509307861, 0.017928598448634148, -0.006512837018817663, 0.0030081572476774454, 0.02856629341840744, 0.11466201394796371, -0.011432991363108158, -0.05660538375377655, -0.05963652580976486, 0.03318692743778229, 0.07256006449460983, 0.004995007999241352, -0.07436072826385498, -0.01264138612896204, -0.017458492890000343, -0.06308460235595703, 0.10032656043767929, 0.02263861708343029, -0.03311462327837944, -0.002383529907092452, 0.008462063036859035, -0.04194098711013794, -0.014679000712931156, -0.016894541680812836, 0.022565774619579315, -0.03638237342238426, 0.008934120647609234, -0.007445009425282478, -0.02653362788259983, -0.008462966419756413, 0.029899487271904945, 0.00588632607832551, 0.026819828897714615, 0.05008004233241081, 0.01471255999058485, -0.07290390878915787, -0.020267479121685028, -0.00758364237844944, -0.004563573282212019, 0.010667799040675163, -0.01486574299633503, 0.04821569100022316, -0.037488434463739395, 0.014432020485401154, -0.019618408754467964, 0.0016797796124592423, -0.0262422114610672, 0.012576953507959843, 0.002851565834134817, -0.004510555882006884, -0.07771614193916321, 0.02266349270939827, -0.0290058720856905, 0.027407240122556686, -0.0074194553308188915, 0.0636758953332901, -0.00988443847745657, -0.054427001625299454, -0.0025223649572581053, 0.022001970559358597, -0.055947959423065186, -0.027991777285933495, -0.007673622574657202, 0.015009798109531403, 0.06050271540880203, 0.0654577985405922, 0.0002805385156534612, -0.01659499481320381, 0.031136102974414825, -0.032773468643426895, 0.009671347215771675, -0.058457888662815094, 0.07197829335927963, -0.04453543201088905, -0.005789025221019983, -0.2721632421016693, 0.0195211973041296, 0.003610458457842469, -0.007832447998225689, -0.007591311354190111, 0.003986684139817953, 0.046617235988378525, -0.008280103094875813, -0.043148815631866455, -0.0375191867351532, -0.01034083403646946, 0.06715168803930283, 0.0410018227994442, -0.008678128011524677, 0.004499249625951052, 0.01611192151904106, 0.04424035921692848, -0.061495065689086914, -0.02552145905792713, -0.07827629894018173, 0.00980699434876442, 0.01461509708315134, 0.13733230531215668, -0.003040054813027382, -0.0018233098089694977, -0.024029677733778954, -0.03644344210624695, 0.02852892316877842, 0.12260634452104568, -0.00025028683012351394, -0.025823520496487617, -0.00817373301833868, 0.011318767443299294, -0.04611319303512573, 0.020956026390194893, -0.010936638340353966, -0.08338571339845657, 0.04943688213825226, 0.0016219087410718203, 0.050720248371362686, -0.016333315521478653, -0.024576477706432343, -0.033260900527238846, 0.03318694978952408, 0.055088069289922714, -0.0014002493117004633, -0.015920251607894897, -0.05793674290180206, 0.025032760575413704, 0.03777628019452095, -0.0011929330648854375, 0.02400365099310875, 0.09282108396291733, 0.02115972898900509, -0.03564681112766266, 0.019513366743922234, -0.07966885715723038, 0.0221638772636652, 0.05486895143985748, -0.038799140602350235, -0.06173707917332649, 0.00895144883543253, 0.010459271259605885, 0.014035187661647797, -0.006404956337064505]}), _DocumentWithState(page_content='INTRO TO OPTIONS PLANS  Part I', metadata={'source': 'Employee-Stock-Option-Plans-ESOP-Best-Practices-2.pdf', 'page': 2}, state={'embedded_doc': [-0.05215798690915108, -0.1105136051774025, 0.033611178398132324, -0.032965678721666336, -0.035303257405757904, 0.05776837840676308, 0.023022543638944626, 0.002867205301299691, 0.012837046757340431, -0.010739045217633247, 0.014724583365023136, 0.07755491137504578, -0.018950961530208588, 0.0076186503283679485, 0.01710847020149231, 0.008941315114498138, -0.04009432718157768, -0.03953341022133827, -0.03339482843875885, 0.03520803526043892, 0.049535688012838364, -0.04185457155108452, -0.053485672920942307, -0.0495670884847641, 0.06024617701768875, 0.040192168205976486, -0.003623036202043295, 0.02064323052763939, -0.019731085747480392, -0.14465875923633575, 0.061464522033929825, 0.04620959609746933, 0.0232565738260746, -0.04488025978207588, -0.01862110197544098, 0.04342395439743996, -0.006225001998245716, 0.048161230981349945, 0.006177124567329884, 0.018326492980122566, 0.027732962742447853, -0.006029088050127029, -0.052969470620155334, -0.03602687269449234, 0.0005240672617219388, -0.04369242489337921, 0.0477001890540123, -0.03600997477769852, 0.009411820210516453, 0.021601805463433266, 0.041924044489860535, -0.0054788547568023205, -0.024094920605421066, -0.031047282740473747, 0.026879988610744476, 0.05200936645269394, 0.07303331047296524, 0.05385376513004303, -0.0531415194272995, 0.07481331378221512, -0.009995965287089348, 0.006557479500770569, -0.15024228394031525, 0.11128319799900055, -0.007218780927360058, 0.009876111522316933, -0.016413027420639992, 0.03727949783205986, 0.035663072019815445, 0.04443388804793358, -0.06847766786813736, 0.009924172423779964, -0.01003715954720974, 0.034633416682481766, -0.024989720433950424, 0.0207823496311903, 0.0006918459548614919, 0.02289843186736107, 0.034683723002672195, -0.02053043618798256, -0.03270756080746651, 0.050377074629068375, -0.042647093534469604, 0.027285655960440636, -0.021783942356705666, -0.02461661957204342, 0.021730804815888405, 0.03157690912485123, 0.022667154669761658, -0.01846161298453808, 0.06859948486089706, -0.07032579928636551, -0.047366585582494736, -0.04214110225439072, 0.034393131732940674, 0.00878012366592884, 0.033491041511297226, 0.005304825026541948, -0.03873969987034798, 0.36869996786117554, 0.034238480031490326, -0.00555238826200366, 0.06029856204986572, 0.01972697675228119, 0.01211443729698658, -0.012131720781326294, -0.07149942219257355, -0.02867227792739868, 0.05313163623213768, -0.0035032127052545547, -0.00839613564312458, -0.02566048875451088, -0.009729983285069466, -0.011305823922157288, -0.016995642334222794, 0.01628223806619644, -0.03359208256006241, -0.0731603130698204, 0.059051577001810074, -0.039688657969236374, 0.011587535962462425, -0.007382719311863184, -0.001267348532564938, 0.06377178430557251, -0.059488020837306976, -0.06289572268724442, 0.038723476231098175, 0.10050644725561142, 0.024998722597956657, 0.05045575648546219, 0.07880883663892746, -0.006959425285458565, -0.030017515644431114, -0.007184990681707859, 0.03196365013718605, -0.02842256985604763, 0.00563697749748826, 0.07410621643066406, 0.02571389451622963, 0.013040399178862572, -0.016943255439400673, -0.023258937522768974, -0.0036288858391344547, -0.10260631889104843, -0.05681813508272171, 0.14037464559078217, 0.021003298461437225, 0.04835423827171326, -0.022921063005924225, -0.029098493978381157, -9.941645839717239e-05, 0.012738977558910847, 0.037762243300676346, -0.08765470236539841, 0.01956726238131523, 0.02414838969707489, 0.010307501070201397, 0.013122295029461384, -0.015239880420267582, -0.0002952191571239382, -0.04088447988033295, -0.05299045145511627, -0.061193421483039856, 0.09286589920520782, 0.005231189541518688, -0.1615728884935379, -0.0361444465816021, -0.023958900943398476, -0.018686719238758087, -0.010126041248440742, -0.01792912743985653, 0.021551884710788727, 0.017239229753613472, 0.014479287900030613, 0.11961495876312256, 0.044693008065223694, -0.02205577865242958, -0.03607940301299095, -0.028952430933713913, 0.0006195800378918648, -0.04542241990566254, -0.08526480942964554, -0.00504412641748786, -0.030368389561772346, -0.011990878731012344, -0.02903437614440918, -0.025570489466190338, -0.03665846213698387, -0.01593604125082493, 0.013863363303244114, -0.0354732945561409, -0.03290674462914467, -0.0428670309484005, -0.03741377964615822, -0.0597788505256176, -0.06399469077587128, -0.05842757970094681, -0.033188849687576294, -0.003675776068121195, -0.043044500052928925, 0.0695153996348381, -0.009950002655386925, -0.031593624502420425, 0.05078919976949692, -0.02170821838080883, -0.0016561654629185796, 0.05197272449731827, 0.0023679446894675493, 0.11063912510871887, -0.009591042064130306, -0.038406550884246826, 0.06176226586103439, 0.08907318860292435, 0.024380674585700035, 0.043464940041303635, 0.0003554972354322672, 0.022543862462043762, 0.05006307736039162, -0.007793711498379707, 0.021607806906104088, 0.019290607422590256, 0.037406641989946365, 0.032326992601156235, -0.27131250500679016, 0.04056525230407715, -0.03553815558552742, -0.008356403559446335, -0.06886783987283707, -0.07415954768657684, 0.04753031209111214, -0.06204255297780037, -0.03544311970472336, 0.07995977252721786, 0.06522440165281296, -0.09486063569784164, 0.0036217435263097286, 0.01227053813636303, 0.03474549949169159, -0.043792255222797394, -0.022880444303154945, -0.05196663364768028, -0.033388134092092514, 0.0345512330532074, 0.013585206121206284, 0.021336231380701065, 0.03564601019024849, -0.07980064302682877, -0.00916618388146162, 0.04169801250100136, 0.11365921795368195, -0.0719810351729393, 0.022859932854771614, 0.011381993070244789, 0.04578995704650879, 0.023277591913938522, -0.00956580601632595, 0.011702806688845158, 0.01022918801754713, 0.02546079084277153, -0.007040737196803093, -0.02980746701359749, -0.003584612160921097, -0.03361436724662781, -0.0006366249872371554, 0.004860777873545885, -0.0728304386138916, -0.005955408327281475, -0.04051452875137329, -0.04372305050492287, -0.03975517675280571, 0.07930126041173935, -0.03558564931154251, 0.026604032143950462, 0.038708046078681946, -0.014717464335262775, 0.0547676719725132, -0.004361389204859734, 0.0626109167933464, -0.0482441708445549, -0.053259510546922684, 0.010005589574575424, 0.004933531861752272, 0.007319553289562464, -0.0052986652590334415, 0.015502397902309895, -0.020420609042048454, -0.03927160054445267, 0.018285879865288734, -0.030125238001346588, -0.030778951942920685, -0.0008431856986135244, -0.023096304386854172, -0.03764892369508743, -0.031557079404592514, -0.04870462045073509, 0.017379697412252426, -0.005814159754663706, 0.021970732137560844, 0.015121732838451862, 0.007192257326096296, 0.013194476254284382, -0.019898349419236183, -0.0031781643629074097, 0.004378722049295902, -0.07258909195661545, 0.005137205123901367, 0.004640921484678984, -0.0064847758039832115, 0.02983875758945942, 0.058828871697187424, -0.03280329331755638, 0.002338784746825695, 0.04723937436938286, -0.04619034379720688, -0.0020856731571257114, -0.01161633525043726, -0.009909691289067268, 0.08275552093982697, -0.045184675604104996, -0.29014721512794495, 0.030302833765745163, -0.01858333870768547, -0.014836645685136318, 0.0052365199662745, -0.0033781686797738075, 0.06511290371417999, -0.0001219150799443014, -0.013354005292057991, 0.019785599783062935, 0.0014946152223274112, -0.005622482858598232, 0.011049353517591953, -0.0344436913728714, -0.006697852164506912, -0.00835428386926651, 0.10294584184885025, -0.026539837941527367, 0.013570498675107956, -0.015145361423492432, 0.03845550864934921, 0.01152523048222065, 0.16577358543872833, 0.0070600067265331745, 0.0006766219157725573, -0.013024094514548779, 0.008035540580749512, -0.005060505121946335, 0.06461047381162643, 0.024958372116088867, 0.045466288924217224, -0.0034867196809500456, 0.07233723998069763, -0.0624314583837986, 0.03859863802790642, 0.0017388265114277601, -0.004509219899773598, 0.02892887219786644, -0.0010481328936293721, -0.016149794682860374, -0.04765312746167183, -0.011537349782884121, 0.0378858707845211, 0.02066975086927414, 0.0660407543182373, -0.0003497098514344543, -0.02062983252108097, -0.03521743789315224, 0.006352981552481651, -0.010612446814775467, -0.033813487738370895, 0.005321939941495657, 0.0031507466919720173, 0.007300819735974073, -0.008108779788017273, 0.011394139379262924, -0.01700698956847191, 0.015407930128276348, -0.0020810114219784737, -0.037254881113767624, 0.056175313889980316, 0.021038413047790527, 0.09448141604661942, -0.009349165484309196, 0.02822028659284115]}), _DocumentWithState(page_content='Year 2 Hires\nSales Director $70,000 0.30x $21,000 42 0.42% 42 0.35%\nSalesperson $40,000 0.10x $4,000 8 0.08% 8 0.07%\nEngineer $60,000 0.25x $15,000 30 0.30% 30 0.25%\nYear 3 Hires\nMarketing Director $60,000 0.30x $18,000 14 0.12%\nEngineer $50,000 0.25x $12,500 10 0.08%\nSalesperson $40,000 0.10x $4,000 3 0.03%\nOffice Manager $30,000 0.10x $3,000 2 0.02%\nFounding team shares are \nnegotiated as a percentage of the \ncompany; all future employees \nreceive grants determined in dollars  \nRetention grants are awarded every two \nyears after an initial options package  The “true” valuation (an \ninternal estimate) increases \nmarginally as the company \nbuilds value…  …but increases significantly when \nthe company raises a new round, \nwhich also increases the share \ncount and dilutes all equity owners  \nFor all new hires after the \nfounding team, options grants \nare awarded based on the \nemployee’s options multiplier \nand baseline salary', metadata={'source': 'Employee-Stock-Option-Plans-ESOP-Best-Practices-2.pdf', 'page': 39}, state={'embedded_doc': [-0.01646779477596283, -0.041281335055828094, -0.021529408171772957, -0.016994476318359375, 0.008646904490888119, -0.0012003040174022317, 0.01780775561928749, -0.013911266811192036, 0.05645299330353737, 0.0351572260260582, 0.08150040358304977, 0.011255367659032345, 0.0017937513766810298, -0.07066861540079117, -0.03365710750222206, 0.027091408148407936, -0.06351768225431442, -0.026766179129481316, 0.022424200549721718, 0.03430663421750069, -0.03533858433365822, -0.11347702890634537, -0.004028950817883015, -0.01961359940469265, 0.030136581510305405, 0.02915867418050766, -0.03944840654730797, 0.00907904002815485, -0.027052277699112892, -0.14804187417030334, -0.005589648149907589, -0.01848197728395462, 0.001933953259140253, -0.03332491219043732, 0.034853704273700714, 0.06143658980727196, -0.030168497934937477, 0.031139789149165154, 0.03336472436785698, -0.007193699944764376, -0.011076916009187698, -0.014777755364775658, -0.03465208411216736, -0.03921370208263397, 0.01802426390349865, -0.009176676161587238, 0.006651218514889479, -0.045616574585437775, -0.04646223783493042, 0.0491035021841526, 0.03396197035908699, -0.08297032862901688, -0.025740327313542366, 0.05151619762182236, -0.03516438975930214, 0.000650749949272722, 0.0006915263365954161, 0.008655531331896782, -0.03529947251081467, 0.06436794251203537, -0.013437370769679546, -0.022731617093086243, -0.17224134504795074, -0.0026478259824216366, -0.011336925439536572, 0.02878393605351448, -0.01598694920539856, -0.032374314963817596, -0.03879993036389351, 0.03457152470946312, 0.006646252702921629, -0.014828670769929886, 0.01978939399123192, -0.035493217408657074, 0.01267190184444189, -0.01927032321691513, -0.0009236467303708196, 0.0003320222022011876, -0.005931210704147816, -0.027824198827147484, -0.020261360332369804, -0.006483790464699268, -0.02750667929649353, 0.059116117656230927, -0.029889071360230446, -0.024689355865120888, 0.10616572201251984, 0.001897272770293057, 0.06304965168237686, 0.01595664583146572, 0.09069215506315231, 0.01434467826038599, -0.05412565916776657, -0.05935003608465195, -0.05211932584643364, 0.07514798641204834, 0.005226661451160908, 0.003192631294950843, -0.04227191582322121, 0.41984662413597107, 0.048044852912425995, -0.0200487207621336, -0.019940344616770744, -0.023816656321287155, 0.04222271591424942, -0.010946772992610931, -0.003660915419459343, 0.002677970565855503, 0.035757679492235184, 0.021094344556331635, 0.007481001317501068, 0.027914857491850853, 0.026277676224708557, -0.020924756303429604, -0.03440576419234276, 0.041580382734537125, -0.06767328083515167, 0.015572483651340008, -0.0021042106673121452, -0.09703048318624496, 0.06370828300714493, 0.015539980493485928, -0.0025776915717869997, 0.05469725281000137, -0.08772563934326172, 0.02862960658967495, 0.06893890351057053, 0.09306345134973526, 0.06495480984449387, 0.021424410864710808, 0.0004941365914419293, -0.00785638578236103, -0.046624768525362015, -0.008147983811795712, 0.012211390770971775, 0.018053976818919182, -0.02034851536154747, 0.0662323608994484, -0.009938713163137436, 0.025796514004468918, 0.048069730401039124, -0.003293815301731229, 0.02628154493868351, -0.06522081792354584, -0.035447824746370316, 0.12813685834407806, 0.0002930978953372687, 0.012205556966364384, 0.0013122792588546872, 0.012121768668293953, -0.0230972059071064, 0.03207399323582649, -0.03433503583073616, -0.06784167140722275, 0.011842481791973114, 0.011389613151550293, -0.003294467693194747, 0.010751968249678612, -0.057426050305366516, -0.01579878479242325, -0.026338323950767517, -0.025200199335813522, -0.0523492693901062, 0.016228342428803444, 0.04338094964623451, -0.10370855033397675, -0.007126243785023689, -0.02780403569340706, -0.04003030061721802, 0.025496218353509903, 0.001364101772196591, 0.05557871609926224, 0.005285033956170082, -0.036282770335674286, 0.03255913034081459, -0.011855745688080788, -0.05047276243567467, -0.015514571219682693, 0.04869959130883217, 0.027715934440493584, 0.02506338432431221, 0.01836497336626053, -0.06009899079799652, -0.005215059034526348, -0.00011877261567860842, -0.03217204660177231, -0.016501011326909065, -0.039955928921699524, -0.050743766129016876, 0.0909857377409935, -0.007645982317626476, 0.07599326223134995, -0.09995519369840622, -0.023529497906565666, 0.01929490640759468, 0.007448992226272821, 0.007626640610396862, 0.03722262382507324, -0.019659848883748055, -0.027689170092344284, 0.02541392110288143, -0.004860541317611933, 0.0007658950635232031, -0.012275148183107376, 0.003687574528157711, 0.05092480406165123, 0.04354900121688843, 0.030060766264796257, 0.09764180332422256, 0.015993757173419, -0.07956798374652863, -0.03535553440451622, 0.0047324588522315025, 0.020699430257081985, 0.004063976928591728, 0.003079307032749057, 0.008937633596360683, 0.034975823014974594, 0.01866038702428341, -0.001413137186318636, 0.044296689331531525, 0.054802414029836655, 0.0548277348279953, -0.3023858964443207, 0.02223886363208294, -0.010896670632064342, -0.01740528643131256, -0.021282389760017395, 0.060997579246759415, 0.004786533769220114, -0.0029642516747117043, -0.04832748696208, 0.06402187794446945, 0.054208606481552124, -0.013136718422174454, 0.005246521905064583, 0.019363027065992355, 0.03365204110741615, -0.062143199145793915, 0.0033421479165554047, 0.024939754977822304, 0.0134895583614707, -0.023634573444724083, 0.04896465688943863, 0.0006343689747154713, -0.04502926021814346, -0.00841561146080494, 0.028304114937782288, 0.017139771953225136, 0.06191927194595337, -0.07568550109863281, -0.0553353875875473, -0.05970573425292969, 0.031190214678645134, 0.0804566815495491, 0.0212385356426239, 0.011638522148132324, 0.04297669231891632, -0.0031662837136536837, -0.03573998808860779, -0.013172335922718048, -0.03960740193724632, 0.006096651777625084, 0.012105721049010754, 0.0076405140571296215, -0.056883011013269424, -0.0055818697437644005, 0.005160595756024122, 0.01959875226020813, -0.006887092255055904, 0.02581026963889599, -0.05190648138523102, -0.025849826633930206, 0.022807249799370766, 0.04707210510969162, 0.025200283154845238, -0.016738589853048325, 0.05435477942228317, -0.02638525329530239, -0.0438043512403965, 0.0403907485306263, 0.02761712856590748, 0.00693376874551177, 0.0036111955996602774, -0.071698859333992, -0.008086957037448883, -0.007322545163333416, 0.023547418415546417, -0.09417534619569778, 0.031296756118535995, -0.03800413757562637, -0.045938920229673386, -0.02502623200416565, 0.004945003893226385, -0.03243423253297806, 0.026677759364247322, 0.008453727699816227, -0.04567614942789078, -0.003835519077256322, -0.006644471548497677, -0.010729072615504265, -0.022760873660445213, 0.015319975093007088, 0.04490521177649498, -0.08965134620666504, -0.009297103621065617, 0.020366225391626358, 0.053477346897125244, 0.08732021600008011, 0.04396038129925728, 0.005134859122335911, 0.014807499945163727, 0.05108315125107765, -0.07975512742996216, -0.019283410161733627, -0.0010320998262614012, 0.04676288366317749, -0.021680550649762154, -0.025545194745063782, -0.2761184275150299, -0.02707291953265667, -0.041057709604501724, -0.030022408813238144, 0.02752477116882801, 0.017373384907841682, -0.029958536848425865, -0.0011679197195917368, -0.02767523005604744, 0.018770797178149223, -0.021344175562262535, 0.03400211036205292, 0.013821486383676529, -0.036337077617645264, 0.054395001381635666, 0.011342011392116547, 0.07398670166730881, -0.050888217985630035, 0.06843923777341843, 0.013179948553442955, 0.021235255524516106, -0.009364355355501175, 0.14034797251224518, 0.002934274962171912, 0.014385364018380642, -0.050384458154439926, -0.017849432304501534, 0.025754354894161224, 0.02985100820660591, -0.029606793075799942, 0.04656244069337845, -0.03936244919896126, 0.06296069175004959, -0.030179554596543312, 0.03531009703874588, 0.03353288769721985, -0.038338154554367065, 0.014192457310855389, -0.01113990880548954, 0.05770416557788849, 0.028515934944152832, -0.021785764023661613, -0.0043837749399244785, 0.042025770992040634, 0.07704101502895355, -0.028240665793418884, 0.033974722027778625, -0.028446655720472336, 0.06315720826387405, 0.040377646684646606, -0.06460913270711899, -0.009861593134701252, 0.06828726083040237, -0.02356463111937046, 0.004007791168987751, -0.020848503336310387, -0.046401023864746094, -0.04104220122098923, 0.022965015843510628, -0.029824411496520042, -0.0605769120156765, -0.027805741876363754, -0.037878915667533875, 0.06580972671508789, 0.09858592599630356]}), _DocumentWithState(page_content='category and therefore conformity with a clinical concept. However, a dimensions approachallows for greater flexibility. Kendall (1988) concludes that where psychotic illness is concerned\na categorical approach may be preferable, whereas in other conditions the situation is morelikely to be changeable, and would perhaps bene fit from a dimensional perspective.\nOne way of distinguishing between distress associated with adverse life events and more\nsevere disorders which involve physiological symptoms and underlying biological changes is todistinguish between mental health problems and mental illness, using a multi-dimensionalmodel. This has an additional advantage in enabling normal ‘distress ’ (e.g. grief following\nbereavement) to be recognized as part of the ‘human condition ’, rather than being medicalized\nand possibly classed as ‘depression ’. It is suggested that a variety of normal human experiences', metadata={'source': 'Defining_mental_health_and_mental_illness.pdf', 'page': 4}, state={'embedded_doc': [0.012228049337863922, 0.028934478759765625, -0.012618748471140862, 0.007042165379971266, -0.033143285661935806, 0.011502165347337723, 0.058621518313884735, 0.0020430090371519327, 0.0074933175928890705, -0.053858641535043716, 0.010803543962538242, -0.013632216490805149, -0.04187605902552605, 0.03312387317419052, 0.004000699147582054, 0.02728584036231041, 0.06851916760206223, 0.022676926106214523, -0.06538774073123932, 0.05737036094069481, 0.06725869327783585, 0.029707422479987144, 0.030932627618312836, 0.047502417117357254, 0.018659839406609535, 0.018528077751398087, -0.007639292161911726, -0.0206154752522707, -0.00782899558544159, -0.17473413050174713, -0.004074951633810997, 0.022724037989974022, 0.02018793113529682, -0.005891723092645407, -0.02328137680888176, 0.008446723222732544, 0.03260330855846405, 0.020132288336753845, 0.0035470391158014536, 0.04939156025648117, -0.008218340575695038, 0.0046754456125199795, 0.04136671870946884, -0.0016079603228718042, -0.03967428207397461, -0.015380258671939373, 0.00946569163352251, -0.06290657073259354, -0.006535241845995188, -0.08018908649682999, 0.003683994058519602, 0.0016500451602041721, -0.03536658734083176, 0.08561031520366669, -0.026064513251185417, -0.008666322566568851, 0.04576437175273895, -0.03132142126560211, -0.020119374617934227, 0.02592550590634346, 0.041580576449632645, 0.03443111106753349, -0.1442970335483551, 0.03845176100730896, 0.06555712968111038, -0.01396963931620121, -0.0375606007874012, -0.044672708958387375, -0.02664625458419323, 0.05042533203959465, -0.08887890726327896, -0.04948696866631508, 0.04205159470438957, 0.04322893172502518, 0.030035637319087982, -0.04288359731435776, 0.05764400586485863, -0.020466988906264305, 0.019901253283023834, 0.014087921939790249, 0.0013025834923610091, 0.05696118250489235, 0.0031881937757134438, -0.05518073961138725, -0.009082400240004063, -0.029495948925614357, -0.015964439138770103, -0.08612567186355591, -0.007223902735859156, -0.023393534123897552, -0.0478711761534214, -0.029071306809782982, -0.008006177842617035, 0.020954106003046036, 0.015792351216077805, -0.027069516479969025, 0.04237377643585205, -0.002988656982779503, 0.03160490840673447, 0.34662389755249023, -0.042034298181533813, 0.00589350238442421, -0.008504414930939674, 0.05959266424179077, -0.03315754979848862, 0.007829031907022, -0.04133553430438042, -0.06781589239835739, 0.04249374195933342, -0.02019442990422249, -0.019075660035014153, 0.05005575343966484, 0.04619712755084038, -0.01641545258462429, -0.059725306928157806, -0.04633770510554314, 0.01883578673005104, 0.010784418322145939, 0.0812704861164093, -0.012122143991291523, 0.03991329297423363, -0.0007966337143443525, 0.07158759981393814, -0.0443764328956604, 0.009988364763557911, 0.0460134856402874, 0.023756619542837143, 0.08544103801250458, 0.08135387301445007, -0.08953283727169037, 0.1007160022854805, -0.012552669271826744, -0.0659264326095581, 0.020744912326335907, 0.03563607856631279, 0.018302815034985542, 0.028722243383526802, 0.018424902111291885, 0.017263909801840782, 0.01353820227086544, 0.006978041026741266, -0.04718124121427536, 0.005756156053394079, -0.05916926637291908, -0.05605844408273697, 0.12174738943576813, -0.10471462458372116, -0.027019087225198746, -0.06162470206618309, 0.024618640542030334, 0.0205532256513834, 0.03599775582551956, -0.02845512144267559, -0.011064278893172741, -0.022833792492747307, 0.03437040373682976, -0.004136380739510059, -0.01410742849111557, -0.06969265639781952, 0.03785427287220955, 0.038966745138168335, 0.018610551953315735, 0.0012475106632336974, 0.07218069583177567, 0.057643476873636246, 0.03115248493850231, -0.06585220247507095, -0.06052647903561592, 0.027428939938545227, -0.020904043689370155, 0.015328103676438332, -0.004201327916234732, 0.04123721271753311, 0.009437340311706066, -0.011667369864881039, 0.011490623466670513, -0.03698340430855751, 0.008341546170413494, 0.0031725363805890083, 0.02504262886941433, 0.023808147758245468, -0.031085971742868423, -0.0162357185035944, -0.022096410393714905, -0.010491905733942986, -0.00709568290039897, -0.025486506521701813, 0.0017252922989428043, 0.01316121406853199, -0.017008308321237564, 0.0205680001527071, -0.016320161521434784, 0.0023789124097675085, 0.039174411445856094, -0.008934936486184597, -0.006572147365659475, -0.03200972452759743, -0.04741862416267395, -0.07215254753828049, 0.004217574838548899, -0.018160482868552208, 0.05560575798153877, -0.020541885867714882, -0.022490380331873894, -0.011569729074835777, 0.005784552078694105, 0.043312642723321915, -0.08011849969625473, 0.013269700109958649, -0.007100175600498915, -0.035034824162721634, 0.045585863292217255, -0.04235854744911194, 0.00902489386498928, -0.025560978800058365, 0.05601023882627487, 0.04549051821231842, 0.01727086491882801, 0.011579254642128944, 0.07600117474794388, -0.002713738242164254, -0.0027275707107037306, -0.004900421481579542, -0.32665666937828064, -0.08792193979024887, -0.02216031402349472, -0.026592407375574112, 0.025899454951286316, -0.08222689479589462, -0.022279545664787292, -0.053710728883743286, -0.050854139029979706, 0.054002586752176285, 0.049959003925323486, -0.004229381214827299, -0.05218077078461647, -0.006080999039113522, -0.004564046859741211, -0.01902475208044052, 0.017293943092226982, -0.10327810794115067, -0.08049573749303818, -0.01265656016767025, -0.040962155908346176, 0.051015157252550125, 0.027123993262648582, -0.04763597249984741, 0.004737187642604113, 0.025149092078208923, 0.11635762453079224, -0.05586414784193039, -0.011741320602595806, 0.006965522654354572, -0.044473204761743546, 0.011190679855644703, -0.009745837189257145, -0.11024250835180283, 0.0765308141708374, -0.03831390291452408, -0.041103508323431015, -0.07266900688409805, -0.05449286475777626, -0.053785290569067, -0.032417185604572296, 0.012377423234283924, 0.023151583969593048, -0.01917312480509281, -0.08631619811058044, 0.033808887004852295, 0.039416372776031494, 0.025196444243192673, -0.027420783415436745, -0.010648648254573345, -0.040157243609428406, 0.032371316105127335, -0.03178323805332184, -0.014471259899437428, 0.0026571389753371477, 0.005663299933075905, -0.08321767300367355, -0.03648994863033295, -0.047936104238033295, 0.01873577944934368, 0.011137211695313454, 0.0021971806418150663, 0.07358735054731369, -0.07369498908519745, -0.00900944136083126, -0.028489604592323303, -0.01901843771338463, -0.00977325439453125, 0.014642615802586079, 0.0004060386272612959, -0.009121907874941826, 0.07595960050821304, -0.009476426057517529, -0.0522676482796669, 0.08995578438043594, 0.015288176946341991, -0.03704256936907768, 0.03472888097167015, -0.031892433762550354, 0.0154004767537117, 0.05573108419775963, -0.08252119272947311, 0.008163103833794594, 0.07390990108251572, 0.04889053478837013, -0.0009915940463542938, 0.017665492370724678, -0.02930876612663269, 0.024957915768027306, -0.022452544420957565, 0.006985332351177931, 0.027052994817495346, -0.016790254041552544, -0.010558472014963627, -0.016626084223389626, 0.01749100163578987, -0.21445780992507935, 0.014423145912587643, 0.027332430705428123, 0.031367987394332886, -0.018139220774173737, 0.02380983904004097, -0.03558952733874321, 0.07084261626005173, -0.001727169961668551, -0.05331319570541382, 0.05494048818945885, -0.00228481856174767, 0.11566862463951111, -0.004276491701602936, -0.00033975907717831433, -0.003803413826972246, 0.08713817596435547, -0.019390253350138664, 0.04507235437631607, 0.002814630512148142, 0.045936115086078644, 0.011508350260555744, 0.16658152639865875, -0.01678743027150631, -0.018384138122200966, -0.012245027348399162, 0.054787613451480865, -0.008083438500761986, -0.03204187750816345, -0.020569931715726852, 0.05407395213842392, 0.012581939809024334, 0.08200722187757492, -0.01645720563828945, 0.045495446771383286, -0.07776589691638947, 0.004783975891768932, 0.031365152448415756, 0.019882678985595703, 0.0122871994972229, -0.01310125831514597, 0.009137154556810856, -0.04366707429289818, -0.017522254958748817, 0.11123450845479965, 0.044135358184576035, -0.030164815485477448, -0.04848916083574295, -0.045498572289943695, 0.050914421677589417, 0.03307503089308739, 0.038441553711891174, 0.015383646823465824, 0.01676441729068756, 0.03127560764551163, 0.0102634746581316, 0.019934600219130516, -0.034632664173841476, 0.025688696652650833, -0.04884260147809982, 0.04607847332954407, 0.11689408868551254, -0.01517540868371725, 0.08734577149152756, -0.0026634547393769026]}), _DocumentWithState(page_content='Kendall, R. (1988) Diagnosis and classi fication, in R. Kendall and A. Zealley (eds) Companion to Psychiatric\nStudies . Edinburgh: Churchill Livingstone.\nLeighton, S. (2006) Pilot thesis: ‘What do I think? Where do I go? ’ Exploring adolescents ’ understanding of\nmental health issues and their attitudes towards seeking help for mental health problems. Unpublisheddoctoral assignment.16 Nursing in child and adolescent mental health', metadata={'source': 'Defining_mental_health_and_mental_illness.pdf', 'page': 10}, state={'embedded_doc': [0.007659497670829296, 0.005393608473241329, 0.03254187852144241, -0.003909757360816002, 0.03482643887400627, 0.019727446138858795, 0.03860922157764435, 0.055980902165174484, 0.005077574867755175, -0.03218856081366539, 0.004933442920446396, -0.01654347963631153, -0.00914869736880064, 0.03953824192285538, 0.03512023389339447, 0.01289572287350893, 0.0036411990877240896, 0.02922634221613407, 0.0030798539519309998, 0.009685569442808628, -0.04895889386534691, -0.027724342420697212, 0.02641425095498562, 0.03194775804877281, 0.03640347719192505, 0.06804949045181274, 0.026058293879032135, -0.010899883694946766, -0.042925603687763214, -0.12377943843603134, 0.030630778521299362, -0.002913889940828085, 0.06215805560350418, 0.007210560142993927, 0.008544433861970901, -0.007763893809169531, 0.030261723324656487, 0.048914581537246704, 0.06688977777957916, 0.001020643045194447, 0.006833268329501152, -0.05360855907201767, -0.01445155218243599, -0.005814147647470236, -0.03263247385621071, -0.020454440265893936, 0.01158169750124216, -0.07070126384496689, 0.011774822138249874, -0.06872335076332092, -0.041372042149305344, 0.005155710503458977, 0.008376168087124825, 0.053876571357250214, -0.08186978846788406, 0.04290479049086571, 0.025717802345752716, 0.06263838708400726, -0.025568228214979172, 0.01142686977982521, 0.03575790673494339, -0.03753948211669922, -0.19262155890464783, 0.09121866524219513, 0.014720975421369076, 0.01730736345052719, -0.030301304534077644, -0.0042168633081018925, -0.026621008291840553, -0.002986893290653825, -0.05812422186136246, -0.0404205285012722, 0.03515542298555374, 0.12695631384849548, 0.009439542889595032, -0.006402060855180025, 0.016384029760956764, -0.023535866290330887, 0.03317677229642868, -0.04678887873888016, -0.003156661754474044, 0.03764001652598381, 0.06131608784198761, -0.05154063552618027, 0.03950047865509987, -0.03198765218257904, -0.022982358932495117, -0.07980497926473618, 0.05666491016745567, -0.023370372131466866, -0.0071723489090800285, -0.039018385112285614, -0.01043674536049366, 0.024894122034311295, -0.008701339364051819, -0.002868019277229905, 0.04429849982261658, 0.024157213047146797, -0.014336281456053257, 0.45416733622550964, -0.020557237789034843, -0.02594437450170517, 0.028645435348153114, 0.00352612161077559, -0.0434114895761013, -0.02229294739663601, 0.05793359503149986, -0.07022931426763535, -0.008849491365253925, -0.0005510399350896478, -0.005515355616807938, 0.004792868159711361, 0.07429137825965881, -0.04160572215914726, -0.011096014641225338, -0.035510171204805374, 0.04957468435168266, 0.0036465683951973915, 0.015840617939829826, 0.01921343244612217, 0.00565576134249568, -0.026400603353977203, 0.017099512740969658, -0.022564712911844254, -0.025376610457897186, -0.05761609226465225, 0.008157326839864254, 0.10762154310941696, 0.0016913333674892783, -0.09127733111381531, 0.08252660930156708, 0.01122781727463007, -0.07004164904356003, 0.008371823467314243, 0.0036048733163625, -0.0007739737047813833, 0.05737809091806412, -0.01870141364634037, 0.010646294802427292, 0.03684423863887787, 0.04560740664601326, -0.07896014302968979, 0.016238505020737648, -0.04312143474817276, -0.06435446441173553, 0.09645736962556839, -0.01520634163171053, 0.004939673934131861, -0.008222143165767193, 0.03872742876410484, 0.04987648129463196, 0.032712921500205994, -0.0564601831138134, 0.0003344869473949075, -0.015461470000445843, 0.03305540978908539, 0.0021356656216084957, -0.022407291457057, -0.034336965531110764, 0.0399593859910965, 0.06321322917938232, -0.07182842493057251, -0.018949853256344795, 0.07212629169225693, 0.030003609135746956, -0.05794761702418327, -0.023866847157478333, -0.008380304090678692, -0.04182117059826851, -0.008173835463821888, 0.018608326092362404, 0.06001991033554077, -0.0006099450401961803, 0.04712548851966858, -0.011688867583870888, -0.021890828385949135, 0.01054363138973713, 0.04046875610947609, -0.018268844112753868, 0.0449930801987648, -0.026839779689908028, -0.04981532692909241, -0.008708586916327477, 0.0057039097882807255, -0.00532149150967598, 0.02343505248427391, 0.019324518740177155, -0.0484551303088665, 0.03799203783273697, -0.028834834694862366, -0.03698872774839401, -0.032568298280239105, 0.0020772567950189114, 0.008916592225432396, -0.003253569593653083, -0.04813998565077782, 0.031101055443286896, -0.05389319732785225, -0.017585333436727524, 0.046360716223716736, 0.014885093085467815, 0.026197846978902817, -0.007854786701500416, 0.00534198060631752, -0.004295426420867443, 0.01685156859457493, 0.0446401908993721, 0.00207305746152997, 0.03746829926967621, 0.026418844237923622, -0.06280883401632309, 0.042649637907743454, 0.024200350046157837, -0.007859526202082634, -0.02699960023164749, 0.002612794516608119, 0.04832150414586067, 0.007283672224730253, -0.02169976942241192, 0.04935375228524208, 0.004914669319987297, -0.03347870334982872, -0.03951290249824524, -0.3186916410923004, -0.024211963638663292, 0.04314598813652992, -9.775185026228428e-05, -0.03892333805561066, -0.03679950535297394, 0.01912924274802208, 0.010630073957145214, -0.024339832365512848, 0.06943172961473465, 0.03173506632447243, -0.01284969225525856, -0.021674873307347298, 0.03570670261979103, 0.017472727224230766, -0.024945303797721863, 0.025185011327266693, -0.05189739167690277, -0.06675393134355545, -0.02102464623749256, -0.009573174640536308, -0.012260680086910725, -0.0062567139975726604, -0.024104969576001167, 0.009268062189221382, -0.030642123892903328, 0.13882869482040405, 0.04347206652164459, 0.029005268588662148, -0.009627203457057476, 0.010396532714366913, -0.016626406461000443, 0.02084062620997429, -0.09339594095945358, 0.030445873737335205, -0.004676256328821182, -0.05602235347032547, -0.03414446488022804, -0.03197360783815384, -0.07569191604852676, -0.044252000749111176, 0.07044683396816254, -0.021299628540873528, -0.027360446751117706, -0.1304939091205597, 0.016287293285131454, -0.0030282868538051844, -0.008312380872666836, -0.010953529737889767, 0.01556370034813881, -0.007652122061699629, 0.023439602926373482, -0.004745046142488718, -0.015474897809326649, -0.03375303000211716, 0.016361529007554054, -0.056445784866809845, -0.00482967821881175, -0.03672289475798607, -0.016167523339390755, 0.035202186554670334, 0.03022816963493824, -0.0001840252080000937, -0.06758511811494827, -0.003905948717147112, -0.03240185230970383, -0.019938992336392403, 0.005653326865285635, -0.035474855452775955, -0.009204952046275139, 0.0007125581032596529, 0.04337359219789505, -0.06857732683420181, 0.03266739100217819, 0.08435157686471939, 0.007243347819894552, 0.01453040074557066, 0.0142189497128129, -0.017723042517900467, -0.018990246579051018, 0.048452429473400116, -0.04889383912086487, 0.02288685366511345, 0.00014809644198976457, 0.05083237960934639, -0.02674172632396221, 0.006364571861922741, -0.04606053605675697, 0.034168314188718796, -0.03858518600463867, -0.04839559271931648, 0.036968082189559937, -0.0085931196808815, -0.02219224162399769, -0.04329381510615349, 0.03760386258363724, -0.23965880274772644, -0.003992039244621992, -0.009397586807608604, 0.06699901819229126, -0.027622884139418602, 0.027597088366746902, -0.004919177852571011, 0.008778607472777367, -0.01121237501502037, -0.020409269258379936, 0.058270905166864395, 0.04776572436094284, 0.08285468816757202, -0.015547222457826138, -0.11192512512207031, -0.010649209842085838, 0.08558077365159988, -0.06549323350191116, 0.014645683579146862, -0.03919025883078575, 0.05991413816809654, -0.0020695049315690994, 0.15275165438652039, 0.01544728223234415, 0.04557492211461067, -0.0639752671122551, 0.004770359955728054, -0.007959511131048203, -0.023694239556789398, 0.0011974542867392302, 0.06484947353601456, -0.01642785407602787, 0.01250554621219635, 0.014665461145341396, 0.019137756898999214, -0.029950842261314392, -0.0736769363284111, 0.010691055096685886, -0.008388025686144829, -0.022655107080936432, 0.004467411898076534, -0.005049087572842836, -0.020440461114048958, 0.01368264015763998, 0.07495332509279251, 0.015388691797852516, -0.01810821145772934, -0.03110777586698532, -0.027788911014795303, -0.009132803417742252, 0.02048725076019764, 0.03611786291003227, 0.01231071911752224, 0.018692081794142723, 0.046236902475357056, 0.046626027673482895, 0.04171054810285568, -0.032646678388118744, -0.00866046641021967, -0.05283341184258461, 0.011616612784564495, -0.0025824669282883406, 0.06569619476795197, 0.035550422966480255, 0.02272792160511017]}), _DocumentWithState(page_content='Case scenarios and associated questions\nPlease read each senario and then consider the following questions in relation to it:\n\x7fWhat do you think might be happening with the young person?\n\x7fDo you think the young person has a mental health problem or illness? If so, on\nwhat grounds would you justify that decision?\n\x7fDo they need help?\n\x7fIf so, who and/or what might be helpful?\n\x7fHow might this be helpful?\nCase scenario 1\nJack, aged 9, lives with his mother and younger brother. His father unexpectedly left the\nfamily a year ago. Jack started a new school six months ago and is having difficultysettling in. He complains of tummy ache each school morning and is increasinglyreluctant to attend.\nCase scenario 2', metadata={'source': 'Defining_mental_health_and_mental_illness.pdf', 'page': 2}, state={'embedded_doc': [-0.0019011890981346369, -0.0038127428852021694, 0.03988463804125786, -0.024577412754297256, -0.0019302432192489505, -0.008401371538639069, 0.07550620287656784, 0.010599920526146889, -0.009033357724547386, -0.0541226863861084, 0.019566630944609642, -0.003997118677943945, 0.008784210309386253, -0.0068548740819096565, 0.03862158581614494, 0.021464698016643524, -0.0048937126994132996, -0.04957917705178261, -0.03729602321982384, 0.031601496040821075, -0.04404556006193161, 0.03111041523516178, -0.018432479351758957, -0.017249032855033875, -0.017938120290637016, 0.04759329557418823, 0.007619176991283894, 0.034876514226198196, -0.05075616389513016, -0.08206454664468765, 0.05259240046143532, -0.03871350735425949, 4.18836425524205e-05, -0.015426931902766228, 0.003094775602221489, 0.02107127197086811, 0.048163414001464844, 0.049588363617658615, 0.008596383035182953, 0.018397776409983635, 0.005182972177863121, 0.021092236042022705, -0.027464672923088074, -0.06359519809484482, -0.03234996646642685, 0.0038817410822957754, 0.01466234028339386, -0.03733431175351143, 0.03551548346877098, -0.05087035521864891, -0.015540368854999542, -0.040965646505355835, 0.0012288548750802875, 0.0582711398601532, -0.01490510068833828, 0.015281658619642258, 0.04303311929106712, -0.025813208892941475, 0.04349647834897041, 0.04175169765949249, 0.002105904510244727, -0.019051993265748024, -0.08669302612543106, 0.10056854039430618, 0.054847247898578644, 0.03388893976807594, -0.007309517823159695, 0.012610419653356075, 0.03342664986848831, -0.0031124448869377375, -0.053899068385362625, -0.04138962924480438, 0.013083619996905327, 0.1330239623785019, -0.018893787637352943, -0.025979315862059593, 0.014431554824113846, -0.00024369628226850182, 0.04424302652478218, -0.027254648506641388, -0.02883247472345829, 0.07896766811609268, 0.017133492976427078, -0.04188993573188782, 0.003907656762748957, -0.02069692872464657, -0.01917845383286476, -0.08438417315483093, -0.033030636608600616, -0.03999527543783188, 0.0012543584452942014, -0.014446333982050419, -0.020847944542765617, 0.026846952736377716, 0.009164598770439625, -0.013442769646644592, 0.05719023942947388, -0.046718332916498184, -0.10214753448963165, 0.39457517862319946, -0.00021573308913502842, -0.023530589416623116, 0.10644184052944183, 0.03207054361701012, -0.05228715017437935, 0.018609650433063507, 0.01201577577739954, -0.0976821780204773, -0.00806757528334856, 0.01089362520724535, -0.028164176270365715, -0.011089871637523174, 0.03118515945971012, -0.008850312791764736, -0.0066318148747086525, 0.008299474604427814, 0.07405640929937363, -0.01951061375439167, -0.046815600246191025, 0.014375458471477032, 0.005269594024866819, 0.027196571230888367, 0.07716832309961319, -0.01655331812798977, -0.02526484616100788, -0.04200451821088791, 0.006628523580729961, 0.06132006645202637, -0.016174843534827232, -0.014045283198356628, 0.0570640005171299, -0.03966868668794632, -0.0636504665017128, 0.02138378843665123, -0.008213217370212078, -0.037997689098119736, 0.016608983278274536, 0.011727080680429935, 0.0112100038677454, -0.029653148725628853, 0.04363662004470825, -0.10190758854150772, -0.0043365443125367165, -0.08299809694290161, -0.04709116742014885, 0.08484965562820435, -0.03538711741566658, 0.010036447085440159, -0.003980093635618687, 0.0040309312753379345, -0.0006804870790801942, 0.03733442351222038, -0.03357747942209244, -0.01171202678233385, 0.006287538446485996, 0.02588302083313465, 0.0552411712706089, -0.023582931607961655, -0.035421788692474365, 0.030894778668880463, 0.04027529060840607, -0.04783283546566963, -0.017910853028297424, 0.07508233934640884, 0.06632833927869797, -0.07213837653398514, -0.03455226123332977, -0.05507054179906845, 0.01589190773665905, -0.009488096460700035, 0.035105880349874496, 0.04991495609283447, 0.01802777871489525, -0.04460414499044418, 0.01756930723786354, 0.01336156390607357, 0.017115619033575058, 0.06516561657190323, -0.007817910052835941, 0.0149622093886137, 0.011404586024582386, -0.0023122054990381002, 0.014255953021347523, -0.02953529544174671, 0.027603281661868095, -0.09123330563306808, 0.008303545415401459, 0.005973345134407282, 0.04817361757159233, -0.08864481747150421, 0.021947773173451424, -0.09957882761955261, -0.05703418329358101, 0.016485851258039474, -0.051810041069984436, 0.0016847833758220077, -0.006929772440344095, -0.08522991091012955, 0.00031835775007493794, 0.029546435922384262, 0.0005909353494644165, 0.004287832882255316, -0.007054753135889769, 0.02723422646522522, -0.03221534565091133, 0.024253739044070244, 0.02140475995838642, -0.04990096762776375, 0.05103953182697296, 0.0064245713874697685, 0.034679193049669266, -0.026411335915327072, -0.037939682602882385, -0.030704649165272713, -0.003988016862422228, -0.006424295715987682, 0.008730857633054256, 0.057372286915779114, 0.013129208236932755, 0.03301539644598961, 0.028750769793987274, -0.022887125611305237, 0.07211810350418091, -0.3341884911060333, -0.011714157648384571, -0.04129057750105858, -0.06126606464385986, -0.03987604007124901, -0.010073375888168812, -0.03366263583302498, -0.01923556998372078, -0.06854754686355591, 0.03975081443786621, 0.06731986254453659, -0.03571460023522377, 0.03529011085629463, 0.026512572541832924, -0.01134850550442934, -0.033219609409570694, -0.017853500321507454, -0.05499541386961937, -0.01839052140712738, -0.01015388872474432, -0.06841344386339188, 0.012711594812572002, 0.047151923179626465, -0.05154076963663101, 0.0016526977997273207, -0.02238430082798004, 0.10851689428091049, 0.07667024433612823, -0.017365837469697, -0.031554173678159714, 0.03798343613743782, -0.02641904726624489, 0.019570743665099144, -0.0851927325129509, 0.036434490233659744, -0.0647568553686142, -0.030644075945019722, -0.034330736845731735, -0.04804354906082153, -0.042053040117025375, -0.06848514080047607, 0.03579503670334816, -0.0033104540780186653, 0.01920402981340885, -0.11057348549365997, -0.00020262635371182114, 0.019196629524230957, 0.03215879201889038, 0.009035155177116394, 0.03782900050282478, -0.013587933033704758, 0.0738842636346817, -0.01378452219069004, 0.02254566363990307, 0.004919685423374176, -0.023865576833486557, -0.09807562828063965, -0.01270670909434557, -0.009046470746397972, 0.01808820851147175, -0.025278279557824135, 0.10248921811580658, 0.06179181486368179, -0.036585815250873566, -0.014927208423614502, -0.023729747161269188, 0.040194761008024216, 0.008822782896459103, -0.013518618419766426, -0.030527740716934204, 0.0018852881621569395, 0.11281095445156097, -0.06637690216302872, 0.04267490655183792, 0.05482801795005798, 0.02759920433163643, 0.07062351703643799, 0.0019283948931843042, 0.002380010671913624, 0.031356122344732285, -0.010629914700984955, -0.07518424093723297, -0.04520060494542122, 0.04741377755999565, 0.03892233595252037, -0.014888373203575611, -0.05410416051745415, -0.0034237017389386892, -0.003834192408248782, -0.03524626046419144, -0.03260834515094757, 0.011674698442220688, -0.007663107942789793, -0.01568944752216339, -0.10364209115505219, -0.010496612638235092, -0.20550474524497986, 0.007914052344858646, -0.030523601919412613, 0.04176771640777588, 0.02659257873892784, 0.006640606094151735, 0.012856635265052319, 0.04593248292803764, 0.047884538769721985, 7.754311809549108e-05, 0.08665762841701508, -0.013719722628593445, 0.05471806973218918, -0.05096818879246712, -0.061747387051582336, -0.027832329273223877, 0.028707055374979973, -0.01206199824810028, 0.05000678822398186, -0.04677744209766388, 0.09786399453878403, 0.03473959118127823, 0.11519046872854233, -0.024549808353185654, 0.07494926452636719, -0.006746373604983091, -0.015850113704800606, 0.006415260955691338, 0.018550628796219826, -0.0356307215988636, 0.07215506583452225, -0.005370019003748894, 0.07518667727708817, 0.017445260658860207, 0.033007074147462845, -0.09477508813142776, -0.008932139724493027, 0.039578717201948166, 0.015805218368768692, -0.006797300651669502, -0.0013407469959929585, -0.027513159438967705, -0.004364909138530493, -0.05158838629722595, 0.10122007876634598, 0.030838096514344215, 0.021843431517481804, -0.04080004617571831, -0.015150818973779678, 0.0010410175891593099, 0.025338618084788322, -0.03605695813894272, 0.03378274291753769, 0.0073838746175169945, 0.0654648095369339, 0.044184692203998566, 0.022794509306550026, 0.01722034066915512, 0.05649806931614876, -0.060040365904569626, 0.012289650738239288, 0.0659996047616005, 0.07243570685386658, 0.05964622274041176, 0.011539927683770657]}), _DocumentWithState(page_content='See discussions, st ats, and author pr ofiles f or this public ation at : https://www .researchgate.ne t/public ation/255657987\nDefining mental health and mental illness\nArticle  · Januar y 2009\nCITATIONS\n10READS\n151,087\n2 author s, including:\nNisha Dogr a\nUniv ersity of L eicester\n152 PUBLICA TIONS \xa0\xa0\xa02,974  CITATIONS \xa0\xa0\xa0\nSEE PROFILE\nAll c ontent f ollo wing this p age was uplo aded b y Nisha Dogr a on 20 May 2014.\nThe user has r equest ed enhanc ement of the do wnlo aded file.', metadata={'source': 'Defining_mental_health_and_mental_illness.pdf', 'page': 0}, state={'embedded_doc': [-0.04958971589803696, 0.022525319829583168, 0.02057662419974804, 0.002570339711382985, 0.05409274995326996, 0.04565831646323204, 0.0017894540214911103, 0.02417939528822899, 0.007501609623432159, -0.014888494275510311, 0.045569609850645065, -0.021649278700351715, -0.01873120851814747, 0.018811605870723724, 0.0019220846006646752, 0.013190642930567265, -0.006645718589425087, -0.02559257484972477, -0.030177338048815727, 0.061652444303035736, -0.00798887386918068, -0.054714806377887726, 0.04959242418408394, 0.0174567848443985, 0.038012757897377014, 0.013950168155133724, -0.053364984691143036, -0.024976981803774834, -0.04296131432056427, -0.1351771503686905, 0.044980984181165695, 0.002547979587689042, 0.01945970207452774, -0.035357676446437836, -0.011441322043538094, -0.0026035187765955925, 0.018744975328445435, 0.05932743847370148, 0.015706757083535194, 0.02002599835395813, 0.03185681253671646, 0.025903865694999695, -0.0371454618871212, -0.03517965227365494, 0.01699351705610752, 0.01624472439289093, -0.018069712445139885, -0.05023111775517464, 0.01507970318198204, -0.0532364659011364, -0.037205249071121216, 0.01841197907924652, -0.005378376692533493, 0.04675762727856636, -0.015009252354502678, -0.023786479607224464, 0.0010368878720328212, 0.019294356927275658, 0.004917587153613567, 0.028635350987315178, 0.012427267618477345, -0.05249496176838875, -0.18636523187160492, 0.06861259043216705, 0.022595306858420372, -0.013466401025652885, 0.035074178129434586, -0.03983486443758011, -0.06059056520462036, -0.08311183750629425, 0.018600812181830406, -0.007724106311798096, 0.009978961199522018, 0.07067786157131195, 0.03249567374587059, -0.00423754146322608, 0.016428077593445778, 0.00784579198807478, -0.003424659837037325, -0.04799965023994446, 0.03602541983127594, 0.05809113383293152, 0.014423618093132973, -0.011480332352221012, 0.0008966742316260934, -0.04728689044713974, 0.024817297235131264, -0.04746280983090401, -0.018490539863705635, -0.013802160508930683, -0.007741051726043224, -0.03229447826743126, 0.08731856942176819, 0.041684553027153015, 0.004232278559356928, -0.004811529070138931, 0.0132163530215621, -0.0085354745388031, 0.014710275456309319, 0.5371628999710083, -0.0782417580485344, 0.054524149745702744, 0.033096909523010254, 0.025897350162267685, 0.011046390980482101, -0.011953267268836498, 0.05499618500471115, -0.0559634268283844, -0.020371224731206894, 0.012866007164120674, -0.01469114888459444, -0.01820891909301281, 0.059686169028282166, -0.03292427584528923, 0.01753208413720131, 0.033795908093452454, 0.053803104907274246, 0.007307011634111404, 0.04546802118420601, 0.00943648349493742, -0.013180311769247055, -0.03817383199930191, 0.04968529939651489, 0.05504980683326721, -0.03937822952866554, -0.04284455627202988, -0.029561564326286316, 0.040339257568120956, 0.019218534231185913, 0.02927205339074135, 0.014444034546613693, -0.021298235282301903, -0.03295009583234787, -0.01762794330716133, -0.0012451611692085862, -0.011915700510144234, 0.03805398568511009, -0.028733333572745323, 0.050585564225912094, -0.006844552233815193, 0.05517527833580971, -0.06453552097082138, 0.034508414566516876, -0.06573660671710968, -0.00913882628083229, 0.05603255331516266, 0.0077972630970180035, 0.024125153198838234, -0.02090485766530037, 0.004183829762041569, -0.003532123053446412, 0.0750378742814064, -0.04298315942287445, -0.004808721132576466, 0.019028255715966225, 0.0014673462137579918, 0.04559433460235596, -0.01870867982506752, -0.030023831874132156, -0.003991797566413879, 0.036132726818323135, -0.03663212060928345, -0.024393677711486816, 0.10191715508699417, 0.002154682530090213, -0.01499240007251501, -0.015394060872495174, 0.03973909839987755, -0.006297823041677475, 0.02338198944926262, 0.046901825815439224, 0.01705605909228325, 0.002390473848208785, 0.014266137033700943, 0.002578347222879529, 0.0018006711034104228, 0.028510816395282745, -0.006317668594419956, 0.020757269114255905, 0.0428658202290535, -0.018557891249656677, -0.036328379064798355, -0.04518776014447212, -0.03183776140213013, -0.03538457304239273, -0.056195832788944244, -0.0030785140115767717, -0.011965918354690075, 0.0034129610285162926, -0.015554940328001976, -0.050951045006513596, 0.025523390620946884, -0.04659639298915863, 0.0024817343801259995, -0.022812359035015106, -0.02058490924537182, -0.007004858925938606, -0.03533271700143814, -0.03360879048705101, 0.02082838863134384, -0.030649898573756218, 0.061461348086595535, -0.06300116330385208, 0.038740526884794235, 0.041493359953165054, 0.012501467950642109, -0.02295384183526039, -0.09046370536088943, 0.041429951786994934, 0.02206876315176487, -0.04813447967171669, -0.02477767877280712, -0.0214568842202425, 0.06531734019517899, -0.00551404245197773, 0.014825750142335892, -0.0011998249683529139, 0.006969534792006016, 0.023190995678305626, 0.06603646278381348, -0.00014069752069190145, 0.019509311765432358, -0.03954490274190903, -0.3034597933292389, -0.061432357877492905, 0.03686258941888809, -0.04879370331764221, -0.028114929795265198, -0.03478636220097542, 0.009230242110788822, -0.011462857946753502, 0.009834804572165012, 0.06931588053703308, 0.024608798325061798, -0.01055782102048397, -0.0013111018342897296, -0.006960098631680012, -0.009534958750009537, 0.026071131229400635, 0.017118267714977264, -0.04449981451034546, 0.0017770285485312343, -0.01458932925015688, -0.007177660241723061, 0.026390375569462776, -0.0013071111170575023, -0.006538171321153641, 0.023182353004813194, -0.014286288060247898, 0.07017016410827637, 0.04131489619612694, -0.008624321781098843, -0.02039446495473385, -0.0051920292899012566, -0.0066815149039030075, -0.029724111780524254, -0.13581155240535736, 0.02574385702610016, 0.008582213893532753, -0.02234671451151371, -0.005599575117230415, -0.037438273429870605, -0.011797908693552017, -0.051516905426979065, 0.05781767889857292, -0.0010334468679502606, -0.01214092131704092, -0.11682844907045364, -0.017139697447419167, 0.03100442886352539, 0.05333085358142853, -0.03242114558815956, 0.0032959647942334414, -0.08863575756549835, 0.02495013363659382, 0.007586500607430935, -0.0044054449535906315, -0.054643165320158005, -0.022939933463931084, -0.06670389324426651, 0.009921948425471783, -0.0028669910971075296, 0.0392303392291069, 0.0005452653858810663, -0.016139501705765724, -0.00374623597599566, -0.07710693776607513, -0.023615112528204918, -0.012268590740859509, -0.03421971574425697, 0.03872423246502876, 0.013255934230983257, 0.026040028780698776, 0.018070248886942863, 0.06431329995393753, -0.06543191522359848, 0.03851316496729851, 0.04980535805225372, 0.03779294714331627, 0.009558884426951408, -0.04884268343448639, -0.011995299719274044, -0.00959202740341425, 0.0034674080088734627, -0.058809567242860794, -0.007113280706107616, 0.002391140442341566, 0.022816047072410583, -0.019291380420327187, -0.04611979052424431, -0.037961866706609726, 0.01693803071975708, -0.01834079623222351, -0.02314899116754532, 0.04189417138695717, -0.03117351047694683, -0.08914708346128464, 0.017156368121504784, 0.06882820278406143, -0.2612634599208832, -0.01965472660958767, -0.008529596030712128, -0.00043521198676899076, 0.02225841023027897, 0.036628447473049164, 0.003983005881309509, 0.030898122116923332, -0.007496465928852558, -0.008187524043023586, 0.04984718933701515, 0.08035951852798462, 0.0068160416558384895, -0.030485818162560463, -0.04646022245287895, 0.030419442802667618, -0.022725068032741547, 0.027469590306282043, 0.061375692486763, -0.017426805570721626, 0.032091833651065826, -0.03843400254845619, 0.10176541656255722, 0.010540424846112728, 0.04235318675637245, -0.0220847986638546, -0.02652287296950817, -0.004277600906789303, 0.0013327989727258682, 0.0073829954490065575, 0.02390119805932045, -0.0260886549949646, 0.022398533299565315, 0.06095774471759796, 0.003152331104502082, -0.04608314484357834, -0.07055097818374634, 0.0011139457346871495, 0.01373723428696394, -0.0004169896710664034, 0.041279442608356476, 0.010082541033625603, 0.01780044287443161, -0.011763155460357666, 0.091275155544281, -0.022399649024009705, -0.01990954391658306, -0.0035723347682505846, -0.011679226532578468, 0.005845820065587759, 0.030312133952975273, 0.008855477906763554, 0.06829717755317688, 0.04231610149145126, 0.05264200270175934, 0.02313382923603058, 0.048509273678064346, -0.01940831169486046, -0.010249878279864788, -0.02513423189520836, -0.07035443186759949, 0.04802924394607544, -0.01643447019159794, 0.032953400164842606, 0.044187113642692566]}), _DocumentWithState(page_content='perspectives, including those relating to children, and of children. This is important as thosewho work in mental health, or are familiar with the field, often make the assumption that the\nterms used are readily understood by others. The scale of the problem and access to services isoutlined. We then discuss stigma generally, explore the reasons for it and possible sequelae, andthen consider how this relates to children. Finally, interventions to reduce stigma are brie fly\npresented. As mentioned in the Introduction, where possible we have referred speci fically to the\nliterature relating to children but where this is limited we have drawn from the wider literatureto highlight key issues.\nThe chapter begins with an exercise which provides a practical context for the theoretical\ncontent and should be borne in mind as you read, and answered once you have finished the\nchapter.\nBox 1.1\nExercise\nGeneral questions\n\x7f What words or images do you associate with the following terms:\n\x7f Mental health', metadata={'source': 'Defining_mental_health_and_mental_illness.pdf', 'page': 1}, state={'embedded_doc': [0.06480266153812408, -0.00954077485948801, -0.0044887373223900795, -0.004682324826717377, 0.015972455963492393, 0.04316655918955803, 0.04998887702822685, 0.01025178749114275, 0.00014676112914457917, -0.026718927547335625, 0.06144905835390091, -0.04188359156250954, -0.008747519925236702, 0.03649096563458443, 0.04833370819687843, 0.020218465477228165, 0.02835099771618843, 0.006729100365191698, -0.03364548459649086, -0.02081005647778511, 0.0150825846940279, -0.018970584496855736, 0.08799967169761658, 0.015806108713150024, -0.00032441242365166545, 0.017758244648575783, -0.0046639516949653625, -0.01988864876329899, -0.017483549192547798, -0.09605620056390762, 0.046794209629297256, 0.01098005659878254, -0.008921350352466106, 0.06878122687339783, -0.018155481666326523, 0.07642009109258652, 0.0185953788459301, 0.04365669563412666, 0.009688710793852806, 0.017416207119822502, 0.029696615412831306, -0.016549963504076004, -0.026669317856431007, -0.0018978610169142485, -0.06691192090511322, 0.01214582659304142, -0.008572160266339779, -0.011362803168594837, -0.026498928666114807, -0.04866311699151993, -0.019303079694509506, -0.0013813369441777468, -0.010545204393565655, 0.0695771723985672, -0.060428064316511154, 0.03608741983771324, 0.05253293365240097, -0.004889565985649824, -0.007711839862167835, 0.05002904310822487, 0.02469179779291153, 0.008665758185088634, -0.15372560918331146, 0.1029629111289978, 0.03475820645689964, 0.03521454334259033, 0.003134957980364561, 0.016270076856017113, -0.026759598404169083, -0.0026923499535769224, -0.0390700027346611, -0.029761845245957375, -0.0186664629727602, 0.11811912059783936, -0.0020382741931825876, -0.0013131825253367424, -0.02575233019888401, -0.05113035440444946, 0.05157005041837692, -0.05271436646580696, -0.012298276647925377, 0.06625938415527344, 0.0509989932179451, -0.03803567960858345, -0.0044990903697907925, -0.00974559597671032, 0.017000989988446236, -0.05394350737333298, 0.005274975672364235, -0.019703391939401627, -0.05074813589453697, -0.03651352971792221, -0.006803931202739477, -0.008271290920674801, 0.032299939543008804, -0.05947137624025345, -0.0411246195435524, -0.04881831631064415, -0.05680505558848381, 0.4059036672115326, -0.024800708517432213, 0.004862967412918806, 0.0345834456384182, 0.0423833504319191, -0.014982040971517563, -0.006013473495841026, 0.03504091873764992, -0.07233653217554092, 0.011086349375545979, 0.0319308377802372, 0.00030012193019501865, -0.012686381116509438, -0.00335226790048182, 0.021244684234261513, -0.03463424742221832, 0.012302905321121216, 0.0005564355524256825, 0.023304274305701256, 0.07748360931873322, 0.02787581831216812, -0.04598240181803703, 0.013896016404032707, -0.032005757093429565, -0.04276607558131218, -0.027406996116042137, -0.0018633825238794088, 0.02896110899746418, 0.08886188268661499, 0.05029401183128357, -0.028385497629642487, 0.06703121215105057, -0.02645137347280979, -0.04243727773427963, -0.03891516849398613, -0.0022796979174017906, 0.0001942124799825251, 0.04370718076825142, -0.006422177888453007, 0.0568806529045105, 0.02802312932908535, 0.10015169531106949, -0.10037804394960403, -0.006843866314738989, -0.0736134797334671, -0.03739938139915466, 0.1304546743631363, -0.03352716937661171, 0.02694075182080269, -0.04327165335416794, 0.04938441887497902, 0.03674273565411568, 0.07101793587207794, -0.0483814999461174, 0.03918096423149109, 0.0008129448397085071, 0.009456990286707878, 0.02636769413948059, -0.0015548417577520013, 0.0077047524973750114, 0.03615212067961693, 0.05304877832531929, -0.011768276803195477, -0.08216456323862076, 0.04357725381851196, 0.03695731610059738, -0.07600066810846329, -0.03766293823719025, -0.040224798023700714, -0.02623789757490158, 0.0014337593456730247, -0.00448261434212327, 0.009606951847672462, 0.05571611970663071, 0.053483545780181885, 0.023691700771450996, -0.018798867240548134, -0.011334151029586792, 0.021559394896030426, -0.011192730627954006, 0.04654345288872719, 0.03229436278343201, -0.07752469182014465, -0.01613793335855007, -0.024992354214191437, -0.010416743345558643, -0.04206521064043045, 0.008056508377194405, -0.0283474363386631, 0.03669703006744385, -0.01747974567115307, -0.049690548330545425, -0.03773195296525955, -0.089137502014637, 0.02427167445421219, -0.0242422167211771, -0.00777639914304018, -0.05176882818341255, -0.01313712727278471, -0.0497051440179348, 0.016050251200795174, -0.027913108468055725, 0.008559714071452618, 0.023622052744030952, 0.04162134975194931, 0.017156332731246948, 0.01431460864841938, 0.00444782804697752, -0.05199116840958595, 0.08018393814563751, -0.02414204552769661, -0.07044225186109543, 0.024191884323954582, -0.041246894747018814, -0.020304132252931595, -0.030475987121462822, -0.0011006250279024243, 0.023442469537258148, 0.02952289581298828, -0.024749629199504852, 0.058619555085897446, 0.006248292978852987, -0.037607818841934204, -0.057240746915340424, -0.2987535297870636, 0.016235116869211197, -0.007076580077409744, -0.018195951357483864, -0.022920073941349983, -0.0032016912009567022, -0.00583591777831316, -0.012133818119764328, -0.04269040748476982, 0.05043691024184227, 0.0786227360367775, -0.0411674827337265, -0.01703977957367897, 0.021407408639788628, 0.0015938801225274801, -0.042101841419935226, -0.03653085231781006, -0.03678170591592789, -0.056675441563129425, 0.005243093241006136, -0.008417041040956974, 0.033178701996803284, 0.03253551200032234, -0.05584106966853142, -0.019024202600121498, 0.019411584362387657, 0.10734807699918747, 0.046392228454351425, -0.025106674060225487, -0.007276024669408798, 0.01648162119090557, 0.00898183137178421, -0.023969635367393494, -0.11053898185491562, -0.015380640514194965, -0.006964440923184156, -0.09637836366891861, -0.013254807330667973, -0.026921119540929794, 0.0044455197639763355, -0.036226216703653336, 0.10295871645212173, -0.01446054968982935, 0.0336773619055748, -0.09784045815467834, 0.01440759189426899, 0.00339747266843915, 0.02716383896768093, 0.027378568425774574, 0.007383804768323898, -0.07814071327447891, 0.053653959184885025, 0.00639177393168211, 0.01515242364257574, -0.034812867641448975, 0.005526569671928883, -0.052565883845090866, 0.037896689027547836, -0.07924410700798035, 0.0029637510888278484, -0.036034613847732544, 0.02021673507988453, 0.045192498713731766, -0.07473929971456528, -0.020814074203372, -0.020884715020656586, 0.04142706096172333, -0.003529316047206521, 0.01625300571322441, 0.04561880603432655, -0.02395922690629959, 0.07763944566249847, -0.09353737533092499, -0.024150507524609566, 0.04547357186675072, 0.04526130110025406, 0.012259114533662796, -0.023502817377448082, -0.03400661051273346, -0.022380303591489792, 0.030778147280216217, -0.048441678285598755, -0.025716254487633705, 0.047966815531253815, 0.03863096609711647, 0.010209422558546066, -0.027630874887108803, -0.039560046046972275, -0.03311178833246231, -0.03712892904877663, -0.007821938022971153, 0.051054615527391434, 0.03826043754816055, -0.07045109570026398, -0.05849006772041321, 0.04044663906097412, -0.2249983549118042, -0.0056226057931780815, -0.011192078702151775, 0.057583730667829514, -0.014194222167134285, 0.01506758201867342, 0.03431184962391853, 0.008369180373847485, -0.009776745922863483, -0.03453151136636734, 0.06343900412321091, 0.028526248410344124, 0.049757666885852814, -0.043751850724220276, -0.08663884550333023, 0.023759227246046066, 0.11177825927734375, -0.02767113782465458, 0.028417494148015976, 0.015500797890126705, 0.03801708668470383, 0.008253970183432102, 0.16507697105407715, -0.014994807541370392, -0.018297849223017693, -0.029525751248002052, -0.021274469792842865, 0.011427603662014008, -0.027759259566664696, 0.012020326219499111, 0.0011345288949087262, 0.0015018617268651724, 0.05959899351000786, 0.06860549002885818, 0.06520448625087738, -0.07841373234987259, -0.014856553636491299, -0.014278092421591282, 0.08214707672595978, 0.014185238629579544, -2.541534195188433e-05, 0.007655895780771971, 0.01348554715514183, -0.044338107109069824, 0.11768471449613571, 0.025653555989265442, 0.0010757192503660917, -0.1138172596693039, -0.02345217578113079, 0.006715069990605116, -0.014492242597043514, 0.04226379096508026, 0.012342659756541252, 0.028428100049495697, 0.05978815257549286, -0.00429776543751359, 0.01264778058975935, -0.01376036275178194, 0.013896754011511803, 0.0009425978059880435, -0.0208353940397501, 0.026266517117619514, -0.014295569621026516, -0.004147808998823166, 0.016001075506210327]})]{'source': 'Employee-Stock-Option-Plans-ESOP-Best-Practices-2.pdf', 'page': 22}{'source': 'Employee-Stock-Option-Plans-ESOP-Best-Practices-2.pdf', 'page': 11}{'source': 'Employee-Stock-Option-Plans-ESOP-Best-Practices-2.pdf', 'page': 12}{'source': 'Employee-Stock-Option-Plans-ESOP-Best-Practices-2.pdf', 'page': 2}{'source': 'Employee-Stock-Option-Plans-ESOP-Best-Practices-2.pdf', 'page': 39}{'source': 'Defining_mental_health_and_mental_illness.pdf', 'page': 4}{'source': 'Defining_mental_health_and_mental_illness.pdf', 'page': 10}{'source': 'Defining_mental_health_and_mental_illness.pdf', 'page': 2}{'source': 'Defining_mental_health_and_mental_illness.pdf', 'page': 0}{'source': 'Defining_mental_health_and_mental_illness.pdf', 'page': 1}

六、结论

       总之,实现更好的RAG系统对于避免LIM和改进检索过程至关重要。创建单独的VectorStore并使用Merge Retriever进行合并,以及通过LongContextReorder对结果进行重新排序,可以帮助减少LIM的问题,提高检索模型的效率。

参考文献:

[1] https://medium.aiplanet.com/overcome-lost-in-middle-phenomenon-in-rag-using-longcontextretriver-2334dc022f0e

  • 22
    点赞
  • 20
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

wshzd

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值