doc-similarity
doc-similarity copied to clipboard
Soft cosine similarity 1 between query and a document
I am calculating the similarity between a query: query2 = 'Audit and control, Board structure, Remuneration, Shareholder rights, Transparency and Performance'
and a document(in my case it is a company's annual report).
I am using glove vectors and calculating the soft cosine between vectors, however somehow I get the similarity score of 1 with two documents. How is that possible? For sure I know that the document does not contain only these query words. The document is a .txt file with cleaned text. And if the document matches exactly these words, then similarity can be 1 but I know it does not match exactly these words.
25 1.000 2019_q4_en_eur_con_00.txt 14 1.000 2017_q3_en_eur_con_00.txt 16 0.994 2018_ar_en_eur_con_00.txt 21 0.989 2019_ar_en_eur_con_00.txt 28 0.986 2020_q2_en_eur_con_00.txt 1 0.963 2014_ar_en_eur_con_00.txt
Hi there, hmmm tricky one. Might need a bit more information to help you though - knowing the contents of that high-scoring document would be useful, for example.
To start with, I would have a look at the contents of the document after pre-processing. You'll see two lines in the example notebook that are important:
corpus = [preprocess(document) for document in documents]
dictionary = Dictionary(corpus+[query])
Check the contents of the document after it has been cleaned up, tokenized and filtered for stop words, and make sure it still looks how you expect it to.
Sorry for the long comment. But i think it is better to give you thorough overview everything that i am operating with.
Contents of the document after it has been cleaned up:
[['lhv', 'group', 'tartu', 'mnt', 'tallinn', 'info', 'lhv', 'ee', 'lhv', 'ee', 'interim', 'report', 'january', 'december', 'summary', 'results', 'comparison', 'net', 'profit', 'eur', 'eur', 'eur', 'eur', 'attributable', 'owners', 'parent', 'earnings', 'per', 'share', 'eur', 'eur', 'net', 'income', 'eur', 'eur', 'operating', 'expenses', 'eur', 'eur', 'loan', 'provisions', 'eur', 'eur', 'income', 'tax', 'expenses', 'eur', 'eur', 'return', 'equity', 'capital', 'adequacy', 'comparison', 'net', 'profit', 'eur', 'eur', 'eur', 'eur', 'attributable', 'owners', 'parent', 'earnings', 'per', 'share', 'eur', 'eur', 'net', 'income', 'eur', 'eur', 'operating', 'expenses', 'eur', 'eur', 'loan', 'provisions', 'eur', 'eur', 'income', 'tax', 'expenses', 'eur', 'eur', 'return', 'equity', 'capital', 'adequacy', 'earnings', 'per', 'share', 'return', 'equity', 'ratios', 'based', 'profit', 'attributed', 'shareholders', 'equity', 'lhv', 'group', 'include', 'non', 'controlling', 'interest', 'lhv', 'group', 'tartu', 'mnt', 'tallinn', 'info', 'lhv', 'ee', 'lhv', 'ee', 'managing', 'director', 'statement', 'dear', 'investor', 'lhv', 'lhv', 'strong', 'fourth', 'quarter', 'business', 'growing', 'customer', 'numbers', 'grew', 'nearly', 'loans', 'grew', 'eur', 'million', 'deposits', 'eur', 'million', 'fund', 'volumes', 'eur', 'million', 'various', 'activity', 'indicators', 'reached', 'record', 'levels', 'including', 'wage', 'receipts', 'number', 'asset', 'holding', 'customers', 'payments', 'card', 'use', 'card', 'payment', 'acceptance', 'number', 'new', 'investment', 'agreements', 'lhv', 'posted', 'profit', 'eur', 'million', 'profit', 'quarter', 'negatively', 'affected', 'write', 'downs', 'associated', 'purchase', 'danske', 'private', 'customer', 'loan', 'portfolio', 'well', 'one', 'state', 'fees', 'notary', 'fees', 'related', 'transaction', 'last', 'week', 'november', 'bank', 'started', 'generating', 'interest', 'income', 'danske', 'portfolio', 'contributors', 'quarter', 'profit', 'included', 'revenue', 'generated', 'institutional', 'banking', 'year', 'double', 'growth', 'year', 'characterised', 'quick', 'growth', 'assets', 'customer', 'base', 'well', 'various', 'new', 'products', 'recognitions', 'lhv', 'declared', 'bank', 'best', 'service', 'estonia', 'lhv', 'also', 'declared', 'best', 'bank', 'international', 'financial', 'magazine', 'euromoney', 'banker', 'customer', 'numbers', 'reached', 'end', 'year', 'growing', 'nearly', 'asset', 'volumes', 'doubled', 'amounting', 'total', 'eur', 'billion', 'rapid', 'growth', 'boosted', 'bank', 'market', 'share', 'making', 'lhv', 'third', 'largest', 'bank', 'estonia', 'regard', 'daily', 'banking', 'growth', 'customer', 'numbers', 'activity', 'facilitated', 'quintupling', 'lhv', 'atms', 'highlight', 'year', 'purchase', 'danske', 'private', 'customer', 'loan', 'portfolio', 'doubled', 'bank', 'loan', 'volume', 'end', 'year', 'lhv', 'loan', 'portfolio', 'amounted', 'eur', 'billion', 'even', 'though', 'danske', 'transaction', 'completed', 'started', 'generating', 'interest', 'income', 'end', 'november', 'made', 'previous', 'effort', 'assure', 'financing', 'early', 'previous', 'large', 'scale', 'engagement', 'deposits', 'incurred', 'greater', 'expenses', 'affecting', 'costs', 'transaction', 'already', 'spring', 'expenses', 'deposits', 'engaged', 'within', 'framework', 'transaction', 'remain', 'high', 'middle', 'intend', 'replace', 'deposits', 'covered', 'bonds', 'lower', 'cost', 'technology', 'cornerstone', 'services', 'serves', 'link', 'relatively', 'different', 'business', 'areas', 'pursued', 'estonia', 'united', 'kingdom', 'strategic', 'point', 'view', 'businesses', 'characterised', 'ability', 'build', 'technological', 'solutions', 'regardless', 'customer', 'location', 'reason', 'concentrated', 'building', 'best', 'mobile', 'bank', 'year', 'result', 'efforts', 'application', 'allows', 'addition', 'becoming', 'customer', 'investing', 'securities', 'applying', 'loans', 'entering', 'loan', 'agreements', 'ordering', 'bank', 'cards', 'united', 'kingdom', 'technically', 'connected', 'gbp', 'payment', 'system', 'already', 'middle', 'year', 'could', 'actually', 'open', 'payments', 'customers', 'january', 'providing', 'gbp', 'payment', 'option', 'offer', 'financial', 'intermediation', 'customers', 'real', 'time', 'eur', 'gbp', 'payments', 'via', 'application', 'program', 'interface', 'lhv', 'connect', 'lhv', 'connect', 'bank', 'first', 'api', 'provides', 'options', 'furthermore', 'customers', 'exploit', 'api', 'using', 'services', 'bank', 'account', 'virtual', 'iban', 'currency', 'exchange', 'liquidity', 'services', 'offer', 'banking', 'infrastructure', 'services', 'hundred', 'payment', 'intermediation', 'customers', 'including', 'transferwise', 'coinbase', 'paysafe', 'trustly', 'year', 'also', 'characterised', 'amendment', 'regulations', 'pension', 'funds', 'september', 'fixed', 'management', 'fees', 'pension', 'funds', 'lowered', 'nonetheless', 'still', 'earn', 'performance', 'pay', 'generate', 'strong', 'yield', 'funds', 'earn', 'performance', 'pay', 'nonetheless', 'backdrop', 'growth', 'expectations', 'regard', 'return', 'investment', 'fluctuating', 'nature', 'benchmark', 'social', 'tax', 'designated', 'pensions', 'believe', 'earn', 'performance', 'pay', 'longer', 'period', 'time', 'shorter', 'term', 'forecasts', 'prove', 'difficult', 'lhv', 'posted', 'record', 'breaking', 'results', 'business', 'areas', 'loan', 'volumes', 'grew', 'eur', 'million', 'eur', 'billion', 'deposit', 'volumes', 'eur', 'billion', 'billion', 'pension', 'funds', 'grew', 'eur', 'million', 'amounting', 'eur', 'billion', 'end', 'year', 'also', 'achieved', 'record', 'levels', 'customer', 'activity', 'payments', 'card', 'transactions', 'conclusion', 'new', 'investment', 'agreements', 'financed', 'growth', 'business', 'volumes', 'capital', 'engagement', 'engaged', 'total', 'eur', 'million', 'three', 'different', 'instruments', 'year', 'successful', 'outcome', 'subscription', 'issues', 'attests', 'trustworthiness', 'eyes', 'investors', 'transactions', 'also', 'contributed', 'rise', 'lhv', 'investor', 'numbers', 'end', 'year', 'nearly', 'shareholders', 'bond', 'investors', 'invested', 'lhv', 'lhv', 'posted', 'net', 'profit', 'eur', 'million', 'eur', 'million', 'less', 'previous', 'period', 'comparison', 'base', 'compromised', 'single', 'transaction', 'positive', 'effect', 'disposal', 'lithuanian', 'business', 'unit', 'well', 'expenses', 'related', 'danske', 'transaction', 'previous', 'engagement', 'deposits', 'transaction', 'costs', 'portfolio', 'write', 'downs', 'capital', 'engagements', 'lowering', 'pension', 'fund', 'management', 'fee', 'exceeded', 'financial', 'target', 'july', 'eur', 'million', 'mainly', 'due', 'lower', 'planned', 'write', 'downs', 'lhv', 'group', 'tartu', 'mnt', 'tallinn', 'info', 'lhv', 'ee', 'lhv', 'ee', 'lower', 'costs', 'danske', 'transaction', 'higher', 'income', 'organisation', 'securities', 'issues', 'customers', 'business', 'environment', 'lhv', 'trends', 'growth', 'also', 'supported', 'estonian', 'economic', 'environment', 'economy', 'shown', 'good', 'growth', 'depending', 'largely', 'economies', 'neighbouring', 'countries', 'domestic', 'risks', 'hedged', 'balanced', 'budget', 'low', 'public', 'sector', 'debt', 'positive', 'external', 'balance', 'tensions', 'revolve', 'mainly', 'around', 'availability', 'labour', 'credit', 'market', 'remained', 'strong', 'major', 'credit', 'products', 'including', 'corporate', 'loans', 'housing', 'loans', 'growing', 'financial', 'health', 'households', 'remains', 'strong', 'loan', 'deposit', 'ratio', 'improving', 'financial', 'sector', 'capital', 'markets', 'general', 'subject', 'monetary', 'policy', 'european', 'central', 'bank', 'along', 'negative', 'interest', 'rates', 'central', 'banks', 'aim', 'trimming', 'value', 'idle', 'money', 'controlled', 'pace', 'cannot', 'accomplished', 'inflation', 'similar', 'result', 'may', 'achieved', 'interest', 'rates', 'nonetheless', 'requires', 'interest', 'rates', 'trickle', 'final', 'depositors', 'whose', 'accounts', 'money', 'actually', 'held', 'first', 'banks', 'europe', 'already', 'transferred', 'negative', 'interest', 'rates', 'certain', 'customer', 'groups', 'lhv', 'priced', 'costs', 'funds', 'kept', 'european', 'central', 'bank', 'uk', 'customers', 'engage', 'financial', 'intermediation', 'high', 'deposit', 'balance', 'changes', 'currently', 'planned', 'standard', 'estonian', 'customers', 'backdrop', 'stable', 'economic', 'environment', 'strong', 'credit', 'market', 'sector', 'subject', 'various', 'regulatory', 'trends', 'demolition', 'pillar', 'stands', 'one', 'significant', 'still', 'many', 'loose', 'ends', 'final', 'assessment', 'situation', 'nonetheless', 'market', 'participants', 'already', 'changing', 'investment', 'strategies', 'decreasing', 'less', 'liquid', 'investments', 'estonia', 'lhv', 'making', 'effort', 'find', 'good', 'balance', 'would', 'allow', 'continue', 'making', 'higher', 'yield', 'investments', 'estonia', 'ensuring', 'liquidity', 'required', 'somewhat', 'unpredictable', 'fluctuations', 'fund', 'volumes', 'financial', 'results', 'consolidated', 'profit', 'posted', 'group', 'amount', 'eur', 'million', 'constitutes', 'eur', 'million', 'decrease', 'compared', 'eur', 'million', 'decrease', 'compared', 'profit', 'attributable', 'group', 'shareholders', 'shrank', 'eur', 'million', 'compared', 'last', 'year', 'return', 'equity', 'attributable', 'lhv', 'shareholders', 'amounted', 'decreasing', 'percentage', 'points', 'compared', 'group', 'consolidated', 'net', 'loan', 'portfolio', 'grew', 'eur', 'million', 'quarter', 'eur', 'million', 'consolidated', 'deposits', 'grew', 'eur', 'million', 'eur', 'million', 'growth', 'deposits', 'financial', 'institutions', 'shrank', 'eur', 'million', 'eur', 'million', 'growth', 'group', 'funds', 'increased', 'eur', 'million', 'compared', 'previous', 'quarter', 'risk', 'weighted', 'assets', 'eur', 'million', 'raising', 'tier', 'total', 'capital', 'adequacy', 'ratio', 'increase', 'funds', 'conditioned', 'incorporation', 'profit', 'group', 'funds', 'bank', 'consolidated', 'profit', 'amounted', 'eur', 'million', 'e', 'eur', 'million', 'decrease', 'previous', 'quarter', 'eur', 'million', 'customer', 'numbers', 'grew', 'nearly', 'total', 'number', 'customers', 'amounting', 'bank', 'loan', 'portfolio', 'grew', 'eur', 'million', 'eur', 'million', 'approaching', 'eur', 'million', 'home', 'loans', 'showed', 'biggest', 'growth', 'among', 'loan', 'portfolios', 'loan', 'losses', 'amounted', 'eur', 'million', 'e', 'eur', 'million', 'conditioned', 'takeover', 'danske', 'loan', 'portfolio', 'customer', 'deposits', 'grew', 'eur', 'million', 'deposits', 'payment', 'intermediaries', 'shrinking', 'eur', 'million', 'deposits', 'customers', 'showed', 'strong', 'growth', 'eur', 'million', 'total', 'volume', 'deposits', 'amounted', 'eur', 'million', 'end', 'asset', 'management', 'posted', 'profit', 'eur', 'million', 'eur', 'million', 'asset', 'management', 'net', 'fee', 'commission', 'income', 'decreased', 'eur', 'million', 'eur', 'million', 'asset', 'management', 'operating', 'expenses', 'grew', 'eur', 'million', 'compared', 'previous', 'quarter', 'total', 'volume', 'funds', 'managed', 'lhv', 'grew', 'eur', 'million', 'quarter', 'eur', 'million', 'number', 'active', 'pillar', 'customers', 'grew', 'decrease', 'madis', 'toomsalu', 'lhv', 'group', 'tartu', 'mnt', 'tallinn', 'info', 'lhv', 'ee', 'lhv', 'ee', 'table', 'contents', 'financial', 'summary', 'operating', 'environment', 'financial', 'results', 'group', 'group', 'liquidity', 'capitalisation', 'asset', 'quality', 'overview', 'lhv', 'pank', 'consolidation', 'group', 'overview', 'lhv', 'varahaldus', 'condensed', 'consolidated', 'interim', 'financial', 'statements', 'condensed', 'consolidated', 'interim', 'statement', 'profit', 'loss', 'comprehensive', 'income', 'condensed', 'consolidated', 'interim', 'statement', 'financial', 'position', 'condensed', 'consolidated', 'interim', 'statement', 'cash', 'flows', 'condensed', 'consolidated', 'interim', 'statement', 'changes', 'equity', 'notes', 'condensed', 'consolidated', 'interim', 'financial', 'statements', 'note', 'accounting', 'policies', 'note', 'business', 'segments', 'note', 'risk', 'management', 'note', 'breakdown', 'financial', 'assets', 'liabilities', 'countries', 'note', 'breakdown', 'assets', 'liabilities', 'contractual', 'maturity', 'dates', 'note', 'open', 'foreign', 'currency', 'positions', 'note', 'fair', 'value', 'financial', 'assets', 'liabilities', 'note', 'breakdown', 'loan', 'portfolio', 'economic', 'sectors', 'note', 'net', 'interest', 'income', 'note', 'net', 'fee', 'commission', 'income', 'note', 'operating', 'expenses', 'note', 'discontinued', 'operations', 'note', 'balances', 'central', 'bank', 'credit', 'institutions', 'investment', 'companies', 'note', 'deposits', 'customers', 'loans', 'received', 'note', 'accounts', 'payable', 'liabilities', 'note', 'contingent', 'liabilities', 'note', 'basic', 'earnings', 'diluted', 'earnings', 'per', 'share', 'note', 'capital', 'management', 'note', 'transactions', 'related', 'parties', 'note', 'tangible', 'intangible', 'assets', 'note', 'subordinated', 'debts', 'note', 'loans', 'advances', 'customers', 'shareholders', 'lhv', 'group', 'supervisory', 'boards', 'management', 'boards', 'lhv', 'group', 'subsidiaries', 'signatures', 'management', 'board', 'condensed', 'consolidated', 'interim', 'report', 'lhv', 'group', 'tartu', 'mnt', 'tallinn', 'info', 'lhv', 'ee', 'lhv', 'ee', 'financial', 'summary', 'business', 'volumes', 'eur', 'million', 'quarter', 'quarter', 'year', 'year', 'loan', 'portfolio', 'financial', 'investments', 'deposits', 'customers', 'incl', 'deposits', 'financial', 'intermediates', 'equity', 'including', 'minority', 'interest', 'equity', 'owners', 'share', 'volume', 'funds', 'managed', 'assets', 'managed', 'bank', 'income', 'statement', 'eur', 'million', 'quarter', 'quarter', 'year', 'year', 'year', 'year', 'net', 'interest', 'income', 'net', 'fee', 'commission', 'income', 'financial', 'income', 'total', 'net', 'operating', 'income', 'income', 'operating', 'expenses', 'loan', 'losses', 'na', 'income', 'tax', 'expenses', 'discontinued', 'operations', 'na', 'na', 'net', 'profit', 'including', 'attributable', 'owners', 'parent', 'ratios', 'eur', 'million', 'quarter', 'quarter', 'year', 'year', 'year', 'year', 'average', 'equity', 'attributable', 'owners', 'parent', 'return', 'equity', 'roe', 'return', 'assets', 'roa', 'interest', 'bearing', 'assets', 'average', 'net', 'interest', 'margin', 'nim', 'price', 'spread', 'spread', 'cost', 'income', 'ratio', 'profit', 'attributable', 'owners', 'income', 'tax', 'explanations', 'ratios', 'quarterly', 'ratios', 'expressed', 'annualised', 'basis', 'average', 'equity', 'attributable', 'owners', 'parent', 'equity', 'end', 'reporting', 'period', 'equity', 'end', 'previous', 'reporting', 'period', 'return', 'equity', 'roe', 'net', 'profit', 'quarter', 'share', 'owners', 'parent', 'average', 'equity', 'attributable', 'owners', 'parent', 'return', 'assets', 'roa', 'net', 'profit', 'quarter', 'share', 'owners', 'parent', 'average', 'assets', 'net', 'interest', 'margin', 'nim', 'net', 'interest', 'income', 'interest', 'bearing', 'assets', 'average', 'price', 'spread', 'spread', 'interest', 'yield', 'interest', 'bearing', 'assets', 'cost', 'external', 'capital', 'interest', 'yield', 'interest', 'bearing', 'assets', 'interest', 'income', 'interest', 'bearing', 'assets', 'average', 'cost', 'external', 'capital', 'interest', 'expenses', 'interest', 'bearing', 'liabilities', 'average', 'cost', 'income', 'ratio', 'total', 'operating', 'cost', 'total', 'income', 'reference', 'data', 'revenue', 'expenses', 'discontinued', 'operations', 'separated', 'lhv', 'group', 'tartu', 'mnt', 'tallinn', 'info', 'lhv', 'ee', 'lhv', 'ee', 'operating', 'environment', 'similarly', 'beginning', 'year', 'year', 'end', 'pleasant', 'surprise', 'worlds', 'regions', 'many', 'places', 'economic', 'output', 'outperformed', 'analyst', 'expectations', 'fewer', 'unpleasant', 'surprises', 'us', 'europe', 'private', 'consumption', 'driver', 'behind', 'economic', 'growth', 'trade', 'remaining', 'slump', 'major', 'economic', 'regions', 'chinas', 'growth', 'fell', 'short', 'expectations', 'even', 'marginally', 'subpar', 'economic', 'growth', 'china', 'curtailed', 'trade', 'war', 'months', 'unrest', 'hong', 'kong', 'end', 'year', 'growth', 'rate', 'slowed', 'least', 'europe', 'main', 'brakes', 'growth', 'continue', 'decline', 'industrial', 'output', 'germany', 'battle', 'wills', 'china', 'us', 'protective', 'tariffs', 'resulting', 'uncertainty', 'shaping', 'decisions', 'regarding', 'future', 'decembers', 'preliminary', 'agreement', 'agricultural', 'purchases', 'use', 'technology', 'intellectual', 'property', 'led', 'us', 'slightly', 'easing', 'existing', 'tariffs', 'holding', 'implementing', 'new', 'ones', 'sent', 'immediate', 'positive', 'signal', 'markets', 'next', 'year', 'show', 'whether', 'truce', 'holds', 'actual', 'consequences', 'dark', 'clouds', 'surrounding', 'departure', 'united', 'kingdom', 'european', 'union', 'dispelled', 'either', 'conservatives', 'victory', 'december', 'general', 'elections', 'highly', 'likely', 'mean', 'brexit', 'become', 'reality', 'end', 'january', 'however', 'minimum', 'years', 'negotiations', 'new', 'trade', 'agreements', 'understandings', 'follow', 'uk', 'also', 'devote', 'attention', 'scotland', 'northern', 'ireland', 'strengthening', 'bids', 'independence', 'businesses', 'mean', 'chaos', 'complicated', 'environment', 'development', 'economic', 'growth', 'eurozone', 'remained', 'level', 'whole', 'year', 'growth', 'powerhouse', 'european', 'economy', 'germany', 'surprised', 'economic', 'growth', 'time', 'many', 'analysts', 'expected', 'slip', 'technical', 'recession', 'germany', 'historically', 'relied', 'exports', 'economy', 'kept', 'afloat', 'consumer', 'spending', 'stimulated', 'various', 'government', 'subsidies', 'tax', 'incentives', 'looking', 'ahead', 'nevertheless', 'little', 'reason', 'optimism', 'survey', 'data', 'show', 'order', 'books', 'particularly', 'export', 'orders', 'deteriorating', 'lack', 'confidence', 'industrial', 'sector', 'spreading', 'services', 'sector', 'longer', 'perspective', 'determining', 'factor', 'europes', 'car', 'industry', 'embraces', 'new', 'trends', 'sector', 'electric', 'cars', 'self', 'driving', 'cars', 'trends', 'onlookers', 'role', 'far', 'finland', 'sweden', 'latvia', 'lithuania', 'germany', 'russia', 'although', 'wage', 'growth', 'remained', 'quite', 'brisk', 'eurozone', 'compared', 'years', 'past', 'able', 'generate', 'enough', 'pressure', 'inflation', 'inflation', 'eurozone', 'fell', 'early', 'part', 'bounced', 'back', 'november', 'price', 'rise', 'quite', 'varied', 'one', 'country', 'next', 'price', 'growth', 'hovered', 'around', 'slovakia', 'netherlands', 'around', 'baltics', 'lower', 'elsewhere', 'main', 'brake', 'inflation', 'low', 'oil', 'price', 'world', 'market', 'early', 'november', 'former', 'imf', 'director', 'christine', 'lagarde', 'became', 'new', 'head', 'european', 'central', 'bank', 'first', 'months', 'tenure', 'lagarde', 'stuck', 'monetary', 'policy', 'course', 'predecessor', 'several', 'occasions', 'mentioned', 'need', 'overhaul', 'ecbs', 'whole', 'monetary', 'policy', 'strategy', 'start', 'early', 'basis', 'previous', 'statements', 'lagarde', 'expected', 'opt', 'major', 'shift', 'direction', 'tends', 'support', 'dovish', 'monetary', 'policy', 'economic', 'growth', 'estonia', 'main', 'trading', 'significantly', 'faster', 'eu', 'average', 'sweden', 'finland', 'growth', 'economic', 'output', 'accelerated', 'latvia', 'near', 'growth', 'industrial', 'output', 'increased', 'significantly', 'latvia', 'finland', 'sweden', 'similarly', 'rest', 'world', 'consumer', 'spending', 'remained', 'strong', 'stable', 'estonias', 'neighbourhood', 'including', 'private', 'consumption', 'remained', 'stronger', 'everywhere', 'surprises', 'brought', 'area', 'tended', 'positive', 'growth', 'expected', 'slow', 'around', 'finland', 'sweden', 'latvia', 'lithuania', 'economic', 'growth', 'remain', 'faster', 'finland', 'growth', 'slow', 'rate', 'sustainable', 'long', 'term', 'estonian', 'economy', 'grew', 'clearly', 'exceeded', 'expectations', 'growth', 'driven', 'services', 'sector', 'information', 'communications', 'retail', 'business', 'services', 'influence', 'agriculture', 'industry', 'sectors', 'also', 'noteworthy', 'spite', 'weakening', 'external', 'environment', 'estonia', 'export', 'sector', 'stood', 'well', 'export', 'volumes', 'true', 'growth', 'attributed', 'last', 'years', 'relatively', 'low', 'comparison', 'base', 'approximately', 'one', 'quarter', 'economic', 'growth', 'came', 'net', 'taxes', 'products', 'directly', 'outcome', 'government', 'tax', 'policy', 'lowering', 'alcohol', 'excise', 'duty', 'july', 'made', 'businesses', 'postpone', 'replenishing', 'warehouse', 'stocks', 'last', 'minute', 'thus', 'excise', 'duty', 'receipts', 'july', 'high', 'actual', 'growth', 'value', 'added', 'generated', 'economy', 'slower', 'compared', 'previous', 'quarters', 'logical', 'trend', 'considering', 'backdrop', 'uncertainty', 'lower', 'confidence', 'lhv', 'group', 'tartu', 'mnt', 'tallinn', 'info', 'lhv', 'ee', 'lhv', 'ee', 'growth', 'industrial', 'output', 'slowed', 'beginning', 'year', 'even', 'reached', 'zero', 'mark', 'april', 'caused', 'mainly', 'concentration', 'production', 'energy', 'sector', 'grappling', 'high', 'allowance', 'prices', 'end', 'summer', 'processing', 'industry', 'able', 'gradually', 'increase', 'output', 'nevertheless', 'fell', 'near', 'zero', 'end', 'drop', 'machinery', 'equipment', 'production', 'output', 'played', 'major', 'role', 'clothing', 'paper', 'industry', 'production', 'metal', 'products', 'also', 'stood', 'negative', 'side', 'chemical', 'oil', 'industry', 'fared', 'better', 'export', 'goods', 'services', 'grew', 'compared', 'previous', 'years', 'percentage', 'services', 'structure', 'export', 'growth', 'decreased', 'trade', 'balance', 'perspective', 'export', 'services', 'extremely', 'important', 'estonia', 'source', 'trade', 'surplus', 'contributor', 'economic', 'growth', 'overall', 'year', 'economic', 'growth', 'estonia', 'around', 'years', 'ahead', 'growth', 'slow', 'external', 'demand', 'softening', 'economy', 'already', 'performing', 'maximum', 'level', 'existing', 'resources', 'little', 'capacity', 'additional', 'rapid', 'growth', 'shortage', 'available', 'resources', 'means', 'businesses', 'ability', 'adapt', 'success', 'increasing', 'productivity', 'increasingly', 'important', 'energetic', 'commitment', 'continuing', 'smart', 'investments', 'important', 'achieve', 'long', 'term', 'sustainable', 'economic', 'growth', 'balanced', 'different', 'sectors', 'economic', 'sector', 'risks', 'higher', 'average', 'construction', 'sector', 'market', 'saturated', 'time', 'low', 'productivity', 'branches', 'processing', 'industry', 'businesses', 'find', 'increasingly', 'hard', 'keep', 'rapidly', 'growing', 'wages', 'lhv', 'maintains', 'conservative', 'outlook', 'real', 'estate', 'market', 'keeping', 'eye', 'local', 'scandinavian', 'market', 'devoting', 'increased', 'attention', 'developments', 'sweden', 'rental', 'cash', 'flow', 'projects', 'danger', 'may', 'enough', 'demand', 'absorbing', 'volume', 'developed', 'may', 'corrections', 'rent', 'prices', 'vacancy', 'rates', 'positive', 'highlighted', 'financing', 'environment', 'remains', 'favourable', 'allowing', 'loan', 'balances', 'enjoy', 'reasonable', 'growth', 'household', 'demand', 'loans', 'remains', 'strong', 'driven', 'housing', 'loans', 'car', 'leasing', 'average', 'interest', 'rate', 'new', 'home', 'loans', 'issued', 'started', 'rising', 'sign', 'lower', 'confidence', 'society', 'also', 'low', 'competition', 'loan', 'market', 'due', 'surrounding', 'uncertainty', 'fact', 'business', 'sector', 'quite', 'well', 'endowed', 'money', 'businesses', 'less', 'active', 'households', 'borrowing', 'ratio', 'loans', 'deposits', 'share', 'past', 'due', 'loans', 'lowest', 'since', 'recession', 'interest', 'rates', 'historic', 'lows', 'local', 'businesses', 'represent', 'opportunities', 'seize', 'actively', 'thinking', 'future', 'lhv', 'looking', 'actively', 'involved', 'finding', 'supporting', 'new', 'sources', 'growth', 'offering', 'businesses', 'long', 'term', 'partnership', 'value', 'generating', 'advisory', 'services', 'lhv', 'group', 'tartu', 'mnt', 'tallinn', 'info', 'lhv', 'ee', 'lhv', 'ee', 'financial', 'results', 'group', 'compared', 'group', 'net', 'interest', 'income', 'increased', 'standing', 'eur', 'million', 'net', 'fee', 'commission', 'income', 'remained', 'level', 'stood', 'eur', 'million', 'total', 'net', 'income', 'group', 'increased', 'compared', 'amounting', 'eur', 'million', 'expenses', 'increasing', 'amounting', 'eur', 'million', 'group', 'operating', 'profit', 'amounted', 'eur', 'million', 'loss', 'loan', 'impairments', 'mounted', 'eur', 'million', 'group', 'total', 'profit', 'amounted', 'eur', 'million', 'compared', 'group', 'net', 'interest', 'income', 'increased', 'net', 'fee', 'commission', 'income', 'increased', 'terms', 'business', 'entities', 'lhv', 'pank', 'posted', 'consolidated', 'profit', 'eur', 'million', 'lhv', 'varahaldus', 'profit', 'eur', 'million', 'lhv', 'group', 'solo', 'bases', 'posted', 'loss', 'eur', 'million', 'group', 'volume', 'deposits', 'end', 'amounted', 'eur', 'million', 'demand', 'deposits', 'formed', 'eur', 'million', 'term', 'deposits', 'eur', 'million', 'end', 'volume', 'loans', 'granted', 'group', 'amounted', 'eur', 'million', 'increasing', 'compared', 'volume', 'groups', 'deposits', 'increased', 'volume', 'loans', 'lhv', 'group', 'tartu', 'mnt', 'tallinn', 'info', 'lhv', 'ee', 'lhv', 'ee', 'group', 'liquidity', 'capitalisation', 'asset', 'quality', 'december', 'group', 'funds', 'stood', 'eur', 'million', 'december', 'eur', 'million', 'lhv', 'group', 'funds', 'calculated', 'based', 'regulative', 'requirements', 'level', 'funds', 'changed', 'including', 'profit', 'funds', 'compared', 'groups', 'internal', 'capital', 'adequacy', 'ratio', 'target', 'group', 'well', 'capitalised', 'end', 'reporting', 'period', 'capital', 'adequacy', 'ratio', 'amounting', 'december', 'addition', 'total', 'capital', 'adequacy', 'targets', 'group', 'also', 'set', 'internal', 'targets', 'core', 'tier', 'capital', 'adequacy', 'ratio', 'tier', 'capital', 'adequacy', 'ratio', 'end', 'estonian', 'financial', 'supervision', 'authority', 'new', 'prudential', 'ratio', 'minimum', 'requirement', 'funds', 'eligible', 'liabilities', 'mrel', 'valid', 'january', 'ratio', 'included', 'resolution', 'plan', 'lhv', 'keep', 'enough', 'funds', 'qualifying', 'liabilities', 'used', 'cover', 'losses', 'resolution', 'planning', 'minimum', 'requirement', 'set', 'reviewed', 'annually', 'estonian', 'financial', 'supervision', 'authority', 'group', 'set', 'internal', 'mrel', 'minimal', 'target', 'december', 'mrel', 'ratio', 'december', 'estonian', 'fsa', 'informed', 'lhv', 'january', 'mrel', 'requirement', 'change', 'end', 'level', 'lhv', 'treated', 'systematic', 'bank', 'bank', 'keep', 'sizable', 'amount', 'suitable', 'liabilities', 'could', 'converted', 'funds', 'case', 'resolution', 'process', 'group', 'liquidity', 'coverage', 'ratio', 'lcr', 'defined', 'basel', 'committee', 'stood', 'end', 'december', 'december', 'banks', 'liquidity', 'situation', 'changed', 'due', 'high', 'deposit', 'growth', 'financial', 'intermediates', 'deposits', 'bank', 'covered', 'liquid', 'assets', 'excluding', 'financial', 'intermediates', 'deposits', 'groups', 'lcr', 'group', 'recognises', 'cash', 'bond', 'portfolios', 'liquidity', 'buffers', 'accounted', 'balance', 'sheet', 'december', 'ratio', 'loans', 'deposits', 'stood', 'end', 'forth', 'quarter', 'december', 'groups', 'maturity', 'structure', 'presented', 'note', 'group', 'credit', 'quality', 'good', 'end', 'december', 'provisions', 'estimated', 'loan', 'losses', 'amounted', 'eur', 'million', 'balance', 'sheet', 'e', 'approximately', 'loan', 'portfolio', 'december', 'eur', 'million', 'estimated', 'loan', 'losses', 'make', 'december', 'portfolio', 'loans', 'overdue', 'days', 'eur', 'thousand', 'proportion', 'proportion', 'loans', 'customers', 'including', 'overdue', 'loans', 'days', 'days', 'days', 'days', 'impairment', 'loans', 'impairment', 'loans', 'overdue', 'days', 'lhv', 'group', 'tartu', 'mnt', 'tallinn', 'info', 'lhv', 'ee', 'lhv', 'ee', 'capital', 'base', 'paid', 'share', 'capital', 'share', 'premium', 'statutory', 'reserves', 'transferred', 'net', 'profit', 'reserves', 'retained', 'earnings', 'intangible', 'assets', 'subtracted', 'net', 'profit', 'reporting', 'period', 'corep', 'adjustments', 'tier', 'capital', 'additional', 'tier', 'capital', 'total', 'tier', 'capital', 'subordinated', 'debt', 'total', 'tier', 'capital', 'net', 'funds', 'capital', 'adequacy', 'capital', 'requirements', 'central', 'governments', 'central', 'bank', 'standard', 'method', 'credit', 'institutions', 'investment', 'companies', 'standard', 'method', 'companies', 'standard', 'method', 'retail', 'claims', 'standard', 'method', 'public', 'sector', 'standard', 'method', 'housing', 'real', 'estate', 'standard', 'method', 'overdue', 'claims', 'standard', 'methods', 'investment', 'funds', 'shares', 'standard', 'method', 'assets', 'standard', 'method', 'total', 'capital', 'requirements', 'covering', 'credit', 'risk', 'counterparty', 'credit', 'risk', 'capital', 'requirement', 'foreign', 'currency', 'risk', 'standard', 'method', 'capital', 'requirement', 'interest', 'position', 'risk', 'standard', 'method', 'capital', 'requirement', 'equity', 'portfolio', 'risks', 'standard', 'method', 'capital', 'requirement', 'credit', 'valuation', 'adjustment', 'risks', 'standard', 'method', 'capital', 'requirement', 'operational', 'risk', 'base', 'method', 'total', 'capital', 'requirements', 'adequacy', 'calculation', 'capital', 'adequacy', 'tier', 'capital', 'ratio', 'core', 'tier', 'capital', 'ratio', 'lhv', 'group', 'tartu', 'mnt', 'tallinn', 'info', 'lhv', 'ee', 'lhv', 'ee', 'overview', 'lhv', 'pank', 'consolidation', 'group', 'net', 'growth', 'loan', 'volume', 'eur', 'million', 'net', 'profit', 'eur', 'million', 'net', 'growth', 'deposits', 'eur', 'million', 'eur', 'million', 'change', 'change', 'beginning', 'beginning', 'change', 'net', 'interest', 'income', 'net', 'fee', 'commission', 'income', 'financial', 'income', 'total', 'net', 'operating', 'income', 'income', 'operating', 'expenses', 'loan', 'losses', 'na', 'income', 'tax', 'expenses', 'net', 'profit', 'loan', 'portfolio', 'financial', 'investments', 'deposits', 'customers', 'incl', 'deposits', 'financial', 'intermediates', 'subordinated', 'liabilities', 'equity', 'successful', 'terms', 'business', 'volumes', 'lhv', 'bank', 'generated', 'eur', 'million', 'net', 'interest', 'income', 'eur', 'million', 'net', 'fee', 'commission', 'income', 'total', 'bank', 'net', 'income', 'amounted', 'eur', 'million', 'expenditure', 'eur', 'million', 'loan', 'provisions', 'eur', 'million', 'net', 'profit', 'lhv', 'pank', 'amounted', 'eur', 'million', 'constitutes', 'decrease', 'increase', 'net', 'interest', 'income', 'increased', 'compared', 'previous', 'quarter', 'net', 'fee', 'commission', 'income', 'increased', 'compared', 'net', 'operating', 'income', 'increased', 'compared', 'previous', 'quarter', 'related', 'expenses', 'regarding', 'takeover', 'dankse', 'loanportfolio', 'financial', 'income', 'amounted', 'eur', 'million', 'million', 'securities', 'brokerage', 'fees', 'transaction', 'fees', 'fees', 'cards', 'greatest', 'contributor', 'fee', 'commission', 'income', 'quarterly', 'profit', 'taxes', 'eur', 'million', 'net', 'profit', 'eur', 'million', 'end', 'quarter', 'net', 'profit', 'exceeded', 'financial', 'plan', 'eur', 'million', 'increase', 'net', 'interest', 'income', 'stems', 'growth', 'business', 'volumes', 'end', 'total', 'volume', 'bank', 'loan', 'portfolios', 'amounted', 'eur', 'million', 'eur', 'million', 'volume', 'portfolios', 'grew', 'quarter', 'corporate', 'credit', 'portfolio', 'contains', 'loans', 'guarantees', 'grew', 'eur', 'million', 'annualised', 'basis', 'eur', 'million', 'quarterly', 'basis', 'main', 'source', 'growth', 'real', 'estate', 'management', 'traditionally', 'well', 'financed', 'commercial', 'banks', 'growing', 'eur', 'million', 'commercial', 'real', 'estate', 'projects', 'strong', 'rental', 'flow', 'greatest', 'contributor', 'growth', 'followed', 'loans', 'issued', 'agricultural', 'forestry', 'fishing', 'sector', 'grew', 'eur', 'million', 'loans', 'issued', 'wholesale', 'retail', 'lhv', 'group', 'tartu', 'mnt', 'tallinn', 'info', 'lhv', 'ee', 'lhv', 'ee', 'sector', 'well', 'motor', 'vehicles', 'repair', 'sector', 'grew', 'eur', 'million', 'year', 'year', 'greatest', 'contributors', 'portfolio', 'growth', 'compared', 'included', 'loans', 'guarantees', 'issued', 'real', 'estate', 'management', 'eur', 'million', 'followed', 'agricultural', 'forestry', 'fishing', 'sector', 'eur', 'million', 'wholesale', 'retail', 'well', 'motor', 'vehicles', 'sales', 'repair', 'eur', 'million', 'largest', 'amount', 'corporate', 'loans', 'granted', 'real', 'estate', 'sector', 'accounts', 'bank', 'total', 'portfolio', 'corporate', 'loans', 'bulk', 'real', 'estate', 'loans', 'issued', 'projects', 'high', 'quality', 'rent', 'flow', 'real', 'estate', 'development', 'ranks', 'second', 'significantly', 'behind', 'majority', 'real', 'estate', 'developments', 'financed', 'located', 'tallinn', 'projects', 'located', 'major', 'estonian', 'cities', 'vicinity', 'tallinn', 'contributing', 'lhv', 'market', 'share', 'financing', 'new', 'developments', 'tallinn', 'approximately', 'third', 'end', 'lhv', 'real', 'estate', 'development', 'portfolio', 'well', 'positioned', 'potential', 'changes', 'market', 'trends', 'financed', 'projects', 'good', 'location', 'average', 'risk', 'estimated', 'price', 'ratio', 'standing', 'average', 'alongside', 'real', 'estate', 'sector', 'biggest', 'volume', 'loans', 'issued', 'processing', 'industry', 'proportion', 'financial', 'insurance', 'activities', 'regards', 'sectors', 'higher', 'average', 'risk', 'accommodation', 'catering', 'contributes', 'construction', 'transport', 'warehousing', 'total', 'portfolio', 'volume', 'bank', 'rapid', 'growth', 'continued', 'last', 'quarter', 'end', 'year', 'bank', 'achieved', 'near', 'market', 'share', 'estonia', 'regard', 'daily', 'banking', 'deposits', 'corporate', 'loans', 'regard', 'daily', 'banking', 'deposits', 'bank', 'third', 'largest', 'bank', 'estonia', 'bank', 'customer', 'numbers', 'grew', 'quarter', 'end', 'year', 'customer', 'numbers', 'reached', 'grown', 'year', 'year', 'year', 'saw', 'record', 'breaking', 'growth', 'customer', 'activity', 'business', 'volumes', 'number', 'customers', 'actively', 'using', 'daily', 'banking', 'services', 'grew', 'nearly', 'third', 'deposits', 'grew', 'eur', 'million', 'loans', 'eur', 'million', 'quarter', 'standard', 'customer', 'deposits', 'grew', 'eur', 'million', 'deposits', 'financial', 'intermediators', 'decreased', 'eur', 'million', 'deposits', 'engaged', 'deposit', 'platforms', 'eur', 'million', 'corporate', 'loans', 'grew', 'eur', 'million', 'retail', 'loans', 'eur', 'million', 'purchase', 'danske', 'bank', 'private', 'customer', 'loan', 'portfolio', 'assimilation', 'bank', 'systems', 'completed', 'second', 'half', 'november', 'loan', 'portfolio', 'acquired', 'amounts', 'eur', 'million', 'write', 'downs', 'included', 'deposits', 'grew', 'eur', 'million', 'loans', 'eur', 'million', 'net', 'profit', 'quarter', 'amounted', 'eur', 'million', 'net', 'profit', 'grew', 'significantly', 'takeover', 'danske', 'bank', 'private', 'customer', 'loan', 'portfolio', 'bank', 'previously', 'incurred', 'higher', 'interest', 'expenses', 'deposits', 'engaged', 'deposit', 'platforms', 'funds', 'kept', 'european', 'central', 'bank', 'prepare', 'assimilation', 'loan', 'portfolio', 'net', 'profit', 'quarter', 'negatively', 'affected', 'additional', 'loan', 'write', 'downs', 'made', 'takeover', 'loan', 'portfolio', 'well', 'notary', 'fees', 'state', 'fees', 'related', 'registration', 'collateral', 'contributors', 'net', 'profit', 'quarter', 'included', 'commission', 'fees', 'generated', 'institutional', 'banking', 'engagement', 'capital', 'coop', 'bank', 'auga', 'group', 'novaturas', 'group', 'bank', 'participated', 'ipo', 'coop', 'bank', 'financial', 'consultant', 'half', 'subscribers', 'originating', 'lhv', 'bank', 'bank', 'decided', 'continue', 'pursuing', 'internal', 'ratings', 'based', 'irb', 'approach', 'credit', 'risk', 'project', 'suspended', 'two', 'years', 'ago', 'decision', 'conditioned', 'fact', 'new', 'capital', 'requirements', 'regulation', 'crr', 'entered', 'force', 'middle', 'year', 'taken', 'account', 'latest', 'basel', 'guidelines', 'regarding', 'amendment', 'capital', 'requirements', 'standard', 'approach', 'credit', 'risk', 'risk', 'capital', 'committee', 'nomination', 'committee', 'established', 'level', 'bank', 'supervisory', 'board', 'purpose', 'risk', 'capital', 'committee', 'advise', 'support', 'supervisory', 'board', 'regard', 'supervision', 'general', 'actual', 'future', 'risk', 'appetite', 'strategy', 'considering', 'types', 'risk', 'ensuring', 'compliance', 'business', 'strategy', 'objectives', 'business', 'practice', 'values', 'purpose', 'nomination', 'committee', 'support', 'supervisory', 'board', 'issues', 'concerning', 'selection', 'process', 'fit', 'proper', 'requirements', 'risk', 'capital', 'committee', 'established', 'management', 'board', 'level', 'renamed', 'assets', 'liabilities', 'management', 'committee', 'bank', 'also', 'received', 'golden', 'award', 'family', 'friendly', 'employer', 'issued', 'ministry', 'social', 'affairs', 'project', 'lasted', 'total', 'nearly', 'two', 'years', 'covered', 'various', 'changes', 'bank', 'human', 'resource', 'policy', 'operations', 'end', 'year', 'banker', 'magazine', 'financial', 'times', 'elected', 'lhv', 'bank', 'best', 'bank', 'estonia', 'lhv', 'group', 'tartu', 'mnt', 'tallinn', 'info', 'lhv', 'ee', 'lhv', 'ee', 'overview', 'lhv', 'varahaldus', 'quarterly', 'profit', 'income', 'tax', 'eur', 'million', 'volume', 'second', 'pillar', 'pension', 'assets', 'eur', 'million', 'quarterly', 'growth', 'eur', 'million', 'end', 'december', 'active', 'clients', 'customer', 'numbers', 'dropped', 'nearly', 'year', 'eur', 'million', 'change', 'change', 'change', 'net', 'fee', 'commission', 'income', 'net', 'financial', 'income', 'na', 'na', 'operating', 'expenses', 'depreciation', 'non', 'current', 'assets', 'profit', 'financial', 'investments', 'subordinated', 'liabilities', 'equity', 'assets', 'management', 'lhv', 'asset', 'management', 'generated', 'eur', 'million', 'operating', 'income', 'total', 'eur', 'million', 'operating', 'income', 'decreased', 'eur', 'million', 'compared', 'attributed', 'lowering', 'management', 'fee', 'largest', 'actively', 'managed', 'funds', 'l', 'xl', 'operating', 'expenses', 'increased', 'eur', 'thousand', 'compared', 'net', 'profit', 'amounted', 'eur', 'million', 'total', 'eur', 'million', 'roe', 'earnings', 'taxes', 'amounted', 'lowering', 'management', 'fees', 'balanced', 'possibility', 'earn', 'performance', 'fee', 'upcoming', 'periods', 'earn', 'performance', 'fee', 'actively', 'managed', 'funds', 'need', 'produce', 'yield', 'exceeds', 'social', 'tax', 'collection', 'social', 'tax', 'collection', 'grew', 'nearly', 'yield', 'lhvs', 'pension', 'funds', 'l', 'xl', 'fell', 'short', 'target', 'performance', 'fee', 'earned', 'long', 'term', 'forecast', 'growth', 'social', 'tax', 'collection', 'annual', 'providing', 'possibility', 'earn', 'performance', 'fee', 'upcoming', 'periods', 'stock', 'market', 'dynamics', 'excellent', 'well', 'general', 'major', 'market', 'indices', 'showed', 'good', 'results', 'p', 'rising', 'euro', 'stoxx', 'measured', 'euros', 'consequently', 'best', 'yield', 'among', 'estonian', 'pension', 'funds', 'generated', 'index', 'funds', 'focusing', 'shares', 'lhv', 'pension', 'fund', 'index', 'produced', 'yield', 'actively', 'managed', 'pension', 'funds', 'stock', 'market', 'related', 'price', 'risk', 'lower', 'focus', 'mainly', 'otc', 'assets', 'stable', 'yield', 'largest', 'pension', 'fund', 'pension', 'fund', 'l', 'produced', 'yield', 'december', 'upcoming', 'pension', 'reform', 'passed', 'first', 'reading', 'parliament', 'likelihood', 'bill', 'bound', 'transform', 'pension', 'system', 'adopted', 'parliament', 'end', 'january', 'first', 'dynamics', 'either', 'transfers', 'money', 'second', 'pillar', 'funds', 'pension', 'investment', 'account', 'estimated', 'take', 'place', 'beginning', 'september', 'since', 'nearly', 'impossible', 'forecast', 'number', 'customers', 'exiting', 'system', 'reform', 'prompts', 'much', 'delicate', 'approach', 'local', 'investments', 'long', 'term', 'time', 'horizon', 'consequently', 'filed', 'application', 'merge', 'pension', 'fund', 'estonia', 'pension', 'fund', 'l', 'pension', 'fund', 'estonia', 'focuses', 'exclusively', 'local', 'market', 'investments', 'inevitably', 'less', 'liquid', 'require', 'longer', 'term', 'assurance', 'fund', 'volumes', 'even', 'though', 'nav', 'pension', 'fund', 'estonia', 'makes', 'less', 'nav', 'pension', 'fund', 'l', 'effect', 'merger', 'customers', 'l', 'marginal', 'customers', 'pension', 'fund', 'estonia', 'pension', 'fund', 'l', 'provides', 'alternative', 'similar', 'strategy', 'lhv', 'group', 'tartu', 'mnt', 'tallinn', 'info', 'lhv', 'ee', 'lhv', 'ee', 'condensed', 'consolidated', 'interim', 'financial', 'statements', 'condensed', 'consolidated', 'interim', 'statement', 'profit', 'loss', 'comprehensive', 'income', 'thousands', 'euros', 'note', 'continuing', 'operations', 'interest', 'income', 'interest', 'expense', 'net', 'interest', 'income', 'fee', 'commission', 'income', 'fee', 'commission', 'expense', 'net', 'fee', 'commission', 'income', 'net', 'gains', 'financial', 'assets', 'measured', 'fair', 'value', 'foreign', 'exchange', 'rate', 'gains', 'losses', 'net', 'gains', 'financial', 'assets', 'income', 'expense', 'total', 'income', 'staff', 'costs', 'administrative', 'operating', 'expenses', 'total', 'expenses', 'profit', 'impairment', 'losses', 'loans', 'advances', 'impairment', 'losses', 'loans', 'advances', 'profit', 'income', 'tax', 'income', 'tax', 'expense', 'net', 'profit', 'reporting', 'period', 'continued', 'operations', 'profit', 'discontinued', 'operations', 'net', 'profit', 'reporting', 'period', 'comprehensive', 'income', 'loss', 'items', 'may', 'reclassified', 'subsequently', 'profit', 'loss', 'changes', 'fair', 'value', 'debt', 'instruments', 'measured', 'fvoci', 'total', 'profit', 'comprehensive', 'income', 'reporting', 'period', 'total', 'profit', 'reporting', 'period', 'attributable', 'owners', 'parent', 'non', 'controlling', 'interest', 'total', 'profit', 'reporting', 'period', 'total', 'profit', 'comprehensive', 'income', 'attributable', 'owners', 'parent', 'non', 'controlling', 'interest', 'total', 'profit', 'comprehensive', 'income', 'reporting', 'period', 'basic', 'earnings', 'per', 'share', 'euros', 'diluted', 'earnings', 'per', 'share', 'euros', 'notes', 'pages', 'integral', 'part', 'condensed', 'consolidated', 'interim', 'financial', 'statements', 'lhv', 'group', 'tartu', 'mnt', 'tallinn', 'info', 'lhv', 'ee', 'lhv', 'ee', 'condensed', 'consolidated', 'interim', 'statement', 'financial', 'position', 'notes', 'pages', 'integral', 'part', 'condensed', 'consolidated', 'interim', 'financial', 'statements', 'thousands', 'euros', 'note', 'assets', 'due', 'central', 'bank', 'due', 'credit', 'institutions', 'due', 'investment', 'companies', 'equity', 'instruments', 'fair', 'value', 'comprehensive', 'income', 'financial', 'assets', 'fair', 'value', 'profit', 'loss', 'loans', 'advances', 'customers', 'receivables', 'customers', 'financial', 'assets', 'assets', 'tangible', 'assets', 'intangible', 'assets', 'goodwill', 'total', 'assets', 'liabilities', 'deposits', 'customers', 'loans', 'received', 'financial', 'liabilities', 'fair', 'value', 'profit', 'loss', 'accounts', 'payable', 'liabilities', 'subordinated', 'debt', 'total', 'liabilities', 'owner', 'equity', 'share', 'capital', 'share', 'premium', 'statutory', 'reserve', 'capital', 'reserves', 'retained', 'earnings', 'total', 'equity', 'attributable', 'owners', 'parent', 'non', 'controlling', 'interest', 'total', 'equity', 'total', 'liabilities', 'equity', 'lhv', 'group', 'tartu', 'mnt', 'tallinn', 'info', 'lhv', 'ee', 'lhv', 'ee', 'condensed', 'consolidated', 'interim', 'statement', 'cash', 'flows', 'thousands', 'euros', 'note', 'cash', 'flows', 'operating', 'activities', 'interest', 'received', 'interest', 'paid', 'fees', 'commissions', 'received', 'fees', 'commissions', 'paid', 'income', 'received', 'staff', 'costs', 'paid', 'administrative', 'operating', 'expenses', 'paid', 'income', 'tax', 'cash', 'flows', 'operating', 'activities', 'change', 'operating', 'assets', 'liabilities', 'net', 'increase', 'decrease', 'operating', 'assets', 'net', 'increase', 'decrease', 'financial', 'assets', 'fair', 'value', 'profit', 'loss', 'loans', 'advances', 'customers', 'mandatory', 'reserve', 'central', 'bank', 'security', 'deposits', 'assets', 'net', 'increase', 'decrease', 'operating', 'liabilities', 'demand', 'deposits', 'customers', 'term', 'deposits', 'customers', 'loans', 'received', 'repayments', 'loans', 'received', 'financial', 'liabilities', 'held', 'trading', 'fair', 'value', 'profit', 'loss', 'liabilities', 'discontinued', 'operations', 'net', 'cash', 'generated', 'used', 'operating', 'activities', 'cash', 'flows', 'investing', 'activities', 'purchase', 'non', 'current', 'assets', 'disposal', 'non', 'current', 'assets', 'disposal', 'subsidiary', 'net', 'cash', 'disposed', 'proceeds', 'disposal', 'redemption', 'investment', 'securities', 'fair', 'value', 'comprehensive', 'income', 'net', 'changes', 'investment', 'securities', 'fair', 'value', 'profit', 'loss', 'net', 'cash', 'flows', 'used', 'investing', 'activities', 'cash', 'flows', 'financing', 'activities', 'paid', 'share', 'capital', 'dividends', 'paid', 'subordinated', 'loans', 'received', 'repayments', 'subordinated', 'loans', 'received', 'net', 'cash', 'flows', 'used', 'financing', 'activities', 'effect', 'exchange', 'rate', 'changes', 'cash', 'cash', 'equivalents', 'net', 'increase', 'decrease', 'cash', 'cash', 'equivalents', 'cash', 'cash', 'equivalents', 'beginning', 'period', 'cash', 'cash', 'equivalents', 'end', 'period', 'notes', 'pages', 'integral', 'part', 'condensed', 'consolidated', 'interim', 'financial', 'statements', 'lhv', 'group', 'tartu', 'mnt', 'tallinn', 'info', 'lhv', 'ee', 'lhv', 'ee', 'condensed', 'consolidated', 'interim', 'statement', 'changes', 'equity', 'thousands', 'euros', 'share', 'capital', 'share', 'premium', 'statutory', 'reserve', 'capital', 'reserves', 'retained', 'earnings', 'total', 'equity', 'attributable', 'owners', 'lhv', 'group', 'non', 'controlling', 'interest', 'total', 'equity', 'balance', 'disposal', 'subsidiary', 'transfer', 'statutory', 'reserve', 'capital', 'dividends', 'paid', 'share', 'options', 'paid', 'share', 'capital', 'profit', 'reporting', 'period', 'comprehensive', 'loss', 'total', 'profit', 'comprehensive', 'income', 'reporting', 'period', 'balance', 'balance', 'transfer', 'statutory', 'reserve', 'capital', 'dividends', 'paid', 'share', 'options', 'paid', 'share', 'capital', 'profit', 'reporting', 'period', 'comprehensive', 'income', 'loss', 'total', 'profit', 'comprehensive', 'income', 'reporting', 'period', 'balance', 'notes', 'pages', 'integral', 'part', 'condensed', 'consolidated', 'interim', 'financial', 'statements', 'lhv', 'group', 'tartu', 'mnt', 'tallinn', 'info', 'lhv', 'ee', 'lhv', 'ee', 'notes', 'condensed', 'consolidated', 'interim', 'financial', 'statements', 'note', 'accounting', 'policies', 'condensed', 'consolidated', 'interim', 'financial', 'statements', 'prepared', 'accordance', 'international', 'financial', 'reporting', 'standard', 'ias', 'interim', 'financial', 'reporting', 'adopted', 'european', 'union', 'consists', 'condensed', 'consolidated', 'financial', 'statements', 'selected', 'explanatory', 'notes', 'accounting', 'policies', 'methods', 'computation', 'used', 'preparation', 'interim', 'report', 'accounting', 'policies', 'methods', 'computation', 'used', 'annual', 'report', 'year', 'ended', 'december', 'comply', 'international', 'financial', 'reporting', 'standards', 'adopted', 'european', 'union', 'ifrs', 'eu', 'exception', 'accounting', 'principles', 'changed', 'january', 'related', 'newly', 'enforced', 'ifrs', 'eu', 'standards', 'changes', 'accounting', 'principles', 'disclosed', 'note', 'subsection', 'changes', 'accounting', 'policies', 'condensed', 'consolidated', 'interim', 'financial', 'statements', 'reviewed', 'audited', 'contain', 'entire', 'range', 'information', 'required', 'preparation', 'complete', 'financial', 'statements', 'condensed', 'consolidated', 'interim', 'financial', 'statements', 'read', 'conjunction', 'annual', 'report', 'prepared', 'year', 'ended', 'december', 'prepared', 'accordance', 'international', 'financial', 'reporting', 'standards', 'ifrs', 'eu', 'financial', 'figures', 'condensed', 'consolidated', 'interim', 'financial', 'statements', 'presented', 'thousands', 'euros', 'unless', 'otherwise', 'indicated', 'interim', 'financial', 'statements', 'consolidated', 'include', 'results', 'lhv', 'group', 'subsidiaries', 'lhv', 'varahaldus', 'interest', 'lhv', 'pank', 'interest', 'oü', 'cuber', 'tehnology', 'interest', 'lhv', 'finance', 'interest', 'march', 'quarterly', 'report', 'included', 'also', 'results', 'uab', 'mokilizingas', 'interest', 'share', 'changes', 'accounting', 'policies', 'group', 'adopted', 'ifrs', 'leases', 'first', 'time', 'starting', 'new', 'standards', 'became', 'effective', 'since', 'january', 'impact', 'month', 'interim', 'financial', 'report', 'group', 'new', 'standard', 'sets', 'principles', 'recognition', 'measurement', 'presentation', 'disclosure', 'leases', 'leases', 'result', 'lessee', 'obtaining', 'right', 'use', 'asset', 'start', 'lease', 'lease', 'payments', 'made', 'time', 'also', 'obtaining', 'financing', 'accordingly', 'ifrs', 'eliminates', 'classification', 'leases', 'either', 'operating', 'leases', 'finance', 'leases', 'required', 'ias', 'instead', 'introduces', 'single', 'lessee', 'accounting', 'model', 'lessees', 'required', 'recognise', 'assets', 'liabilities', 'leases', 'term', 'months', 'unless', 'underlying', 'asset', 'low', 'value', 'b', 'depreciation', 'lease', 'assets', 'separately', 'interest', 'lease', 'liabilities', 'income', 'statement', 'ifrs', 'substantially', 'carries', 'forward', 'lessor', 'accounting', 'requirements', 'ias', 'accordingly', 'lessor', 'continues', 'classify', 'leases', 'operating', 'leases', 'finance', 'leases', 'account', 'two', 'types', 'leases', 'differently', 'group', 'adopted', 'ifrs', 'leases', 'retrospectively', 'january', 'restated', 'comparatives', 'reporting', 'period', 'permitted', 'specific', 'transition', 'provisions', 'standard', 'adoption', 'ifrs', 'group', 'recognised', 'tangible', 'assets', 'lease', 'liabilities', 'relation', 'leases', 'previously', 'classified', 'operating', 'leases', 'principles', 'ias', 'leases', 'group', 'leases', 'various', 'properties', 'rental', 'contracts', 'typically', 'made', 'fixed', 'periods', 'years', 'rule', 'include', 'extension', 'termination', 'options', 'lease', 'terms', 'negotiated', 'individual', 'basis', 'may', 'contain', 'wide', 'range', 'different', 'terms', 'conditions', 'group', 'recognises', 'leases', 'right', 'use', 'asset', 'corresponding', 'liability', 'date', 'leased', 'asset', 'available', 'use', 'lease', 'liabilities', 'recognized', 'present', 'value', 'lease', 'payments', 'right', 'use', 'assets', 'measured', 'amount', 'equal', 'lease', 'liability', 'adjustments', 'right', 'use', 'assets', 'necessary', 'lease', 'payment', 'allocated', 'liability', 'finance', 'cost', 'finance', 'cost', 'charged', 'profit', 'loss', 'lease', 'period', 'produce', 'constant', 'periodic', 'rate', 'interest', 'remaining', 'balance', 'liability', 'period', 'right', 'use', 'asset', 'depreciated', 'shorter', 'assets', 'useful', 'life', 'lease', 'term', 'straight', 'line', 'basis', 'lease', 'liabilities', 'include', 'net', 'present', 'value', 'following', 'lease', 'payments', 'fixed', 'payments', 'less', 'lease', 'incentives', 'receivable', 'variable', 'lease', 'payment', 'based', 'kind', 'index', 'example', 'inflation', 'euribor', 'amounts', 'expected', 'payable', 'lessee', 'residual', 'value', 'guarantees', 'lhv', 'group', 'tartu', 'mnt', 'tallinn', 'info', 'lhv', 'ee', 'lhv', 'ee', 'exercise', 'price', 'purchase', 'option', 'lessee', 'reasonably', 'certain', 'exercise', 'option', 'lease', 'payments', 'discounted', 'using', 'interest', 'rate', 'implicit', 'lease', 'readily', 'determinable', 'groups', 'incremental', 'borrowing', 'rate', 'alternative', 'interest', 'rate', 'rate', 'interest', 'lessee', 'would', 'pay', 'borrow', 'similar', 'term', 'similar', 'security', 'funds', 'necessary', 'obtain', 'asset', 'similar', 'value', 'right', 'use', 'asset', 'similar', 'economic', 'environment', 'short', 'term', 'leases', 'leases', 'lease', 'term', 'months', 'less', 'low', 'value', 'assets', 'comprise', 'equipment', 'small', 'items', 'office', 'furniture', 'determining', 'lease', 'term', 'management', 'considers', 'facts', 'circumstances', 'create', 'economic', 'incentive', 'exercise', 'extension', 'option', 'exercise', 'termination', 'option', 'extension', 'options', 'periods', 'termination', 'options', 'included', 'lease', 'term', 'lease', 'reasonably', 'certain', 'extended', 'terminated', 'management', 'reviews', 'assessment', 'significant', 'event', 'significant', 'change', 'circumstances', 'occurs', 'affects', 'probability', 'using', 'options', 'within', 'control', 'management', 'alternatively', 'extension', 'period', 'contract', 'changed', 'example', 'group', 'exercised', 'option', 'initially', 'considered', 'reasonably', 'uncertain', 'exercised', 'option', 'initially', 'considered', 'reasonably', 'certain', 'according', 'contracts', 'group', 'granted', 'residual', 'value', 'guaratees', 'end', 'contract', 'applying', 'standard', 'lease', 'payments', 'discounted', 'groups', 'incremental', 'borrowing', 'rate', 'average', 'group', 'used', 'following', 'practical', 'expedients', 'permitted', 'standard', 'accounting', 'operating', 'leases', 'remaining', 'lease', 'term', 'less', 'months', 'january', 'short', 'term', 'leases', 'lease', 'agreements', 'low', 'value', 'assets', 'excluded', 'exclusion', 'initial', 'direct', 'costs', 'measurement', 'rightof', 'use', 'asset', 'date', 'initial', 'application', 'group', 'also', 'elected', 'apply', 'ifrs', 'contracts', 'identified', 'containing', 'lease', 'ias', 'ifric', 'determining', 'whether', 'arrangement', 'contains', 'lease', 'result', 'application', 'groups', 'total', 'assets', 'statement', 'financial', 'position', 'increased', 'thousand', 'euros', 'liabilities', 'increased', 'thousand', 'euros', 'lhv', 'group', 'tartu', 'mnt', 'tallinn', 'info', 'lhv', 'ee', 'lhv', 'ee', 'note', 'business', 'segments', 'group', 'divides', 'business', 'activities', 'segments', 'according', 'legal', 'structure', 'except', 'lhv', 'pank', 'divides', 'business', 'activities', 'main', 'business', 'segments', 'retail', 'banking', 'corporate', 'banking', 'financial', 'intermediates', 'business', 'segments', 'form', 'part', 'group', 'separate', 'access', 'financial', 'data', 'subject', 'regular', 'monitoring', 'operating', 'profit', 'group', 'decision', 'maker', 'management', 'board', 'lhv', 'group', 'designated', 'decision', 'maker', 'responsible', 'allocation', 'funds', 'assessment', 'profitability', 'business', 'activities', 'result', 'posted', 'segment', 'includes', 'revenue', 'expenditure', 'directly', 'related', 'segment', 'revenue', 'reported', 'segment', 'includes', 'gains', 'transactions', 'segments', 'e', 'loans', 'granted', 'lhv', 'pank', 'group', 'companies', 'division', 'interest', 'income', 'fee', 'commission', 'income', 'customer', 'location', 'presented', 'notes', 'breakdown', 'interest', 'income', 'customer', 'location', 'include', 'income', 'current', 'accounts', 'deposits', 'investments', 'securities', 'group', 'customers', 'whose', 'income', 'would', 'account', 'corresponding', 'type', 'revenue', 'retail', 'banking', 'corporate', 'banking', 'asset', 'manage', 'ment', 'hire', 'purchase', 'consumer', 'finance', 'estonia', 'financial', 'intermediates', 'activities', 'intra', 'segment', 'elimi', 'nations', 'total', 'interest', 'income', 'interest', 'expense', 'net', 'interest', 'income', 'fee', 'commission', 'income', 'fee', 'commission', 'expense', 'net', 'fee', 'commission', 'income', 'net', 'income', 'net', 'gains', 'financial', 'assets', 'administrative', 'operating', 'expenses', 'staff', 'costs', 'operating', 'profit', 'impairment', 'losses', 'loans', 'advances', 'income', 'tax', 'net', 'profit', 'retail', 'banking', 'corporate', 'banking', 'asset', 'manage', 'ment', 'hire', 'purchase', 'consumer', 'finance', 'estonia', 'financial', 'intermediates', 'activities', 'intra', 'segment', 'elimi', 'nations', 'total', 'interest', 'income', 'interest', 'expense', 'net', 'interest', 'income', 'fee', 'commission', 'income', 'fee', 'commission', 'expense', 'dividend', 'income', 'lhv', 'group', 'tartu', 'mnt', 'tallinn', 'info', 'lhv', 'ee', 'lhv', 'ee', 'net', 'fee', 'commission', 'income', 'net', 'income', 'net', 'gains', 'financial', 'assets', 'administrative', 'operating', 'expenses', 'staff', 'costs', 'operating', 'profit', 'impairment', 'losses', 'loans', 'advances', 'income', 'tax', 'net', 'profit', 'total', 'assets', 'total', 'liabilities', 'retail', 'banking', 'corporate', 'banking', 'asset', 'manage', 'ment', 'hire', 'purchase', 'consumer', 'finance', 'estonia', 'financial', 'intermediates', 'activities', 'intra', 'segment', 'elimi', 'nations', 'total', 'interest', 'income', 'interest', 'expense', 'net', 'interest', 'income', 'fee', 'commission', 'income', 'fee', 'commission', 'expense', 'net', 'fee', 'commission', 'income', 'net', 'income', 'net', 'gains', 'financial', 'assets', 'administrative', 'operating', 'expenses', 'staff', 'costs', 'operating', 'profit', 'impairment', 'losses', 'loans', 'advances', 'income', 'tax', 'discontinued', 'operations', 'net', 'profit', 'retail', 'banking', 'corporate', 'banking', 'asset', 'manage', 'ment', 'hire', 'purchase', 'consumer', 'finance', 'estonia', 'financial', 'intermediates', 'activities', 'intra', 'segment', 'elimi', 'nations', 'total', 'interest', 'income', 'interest', 'expense', 'net', 'interest', 'income', 'fee', 'commission', 'income', 'lhv', 'group', 'tartu', 'mnt', 'tallinn', 'info', 'lhv', 'ee', 'lhv', 'ee', 'fee', 'commission', 'expense', 'dividend', 'income', 'net', 'fee', 'commission', 'income', 'net', 'income', 'net', 'gains', 'financial', 'assets', 'administrative', 'operating', 'expenses', 'staff', 'costs', 'operating', 'profit', 'impairment', 'losses', 'loans', 'advances', 'income', 'tax', 'net', 'profit', 'continued', 'operations', 'total', 'assets', 'total', 'liabilities', 'note', 'risk', 'management', 'group', 'activities', 'expose', 'variety', 'financial', 'risks', 'market', 'risk', 'including', 'currency', 'risk', 'fair', 'value', 'interest', 'rate', 'risk', 'cash', 'flow', 'interest', 'rate', 'risk', 'price', 'risk', 'credit', 'risk', 'liquidity', 'risk', 'condensed', 'interim', 'financial', 'statements', 'include', 'financial', 'risk', 'management', 'information', 'disclosures', 'required', 'annual', 'financial', 'statements', 'read', 'conjunction', 'group', 'annual', 'financial', 'statements', 'december', 'major', 'changes', 'risk', 'management', 'department', 'risk', 'management', 'policies', 'since', 'year', 'end', 'note', 'breakdown', 'financial', 'assets', 'liabilities', 'countries', 'estonia', 'latvia', 'lit', 'huania', 'finland', 'ger', 'many', 'eu', 'usa', 'uk', 'total', 'due', 'banks', 'investment', 'companies', 'financial', 'assets', 'fair', 'value', 'loans', 'advances', 'customers', 'receivables', 'customers', 'financial', 'assets', 'total', 'financial', 'assets', 'deposits', 'customers', 'loans', 'received', 'subordinated', 'debt', 'accounts', 'payable', 'financial', 'liabilities', 'financial', 'liabilities', 'fair', 'value', 'total', 'financial', 'liabilities', 'unused', 'loan', 'commitments', 'amount', 'eur', 'thousand', 'residents', 'estonia', 'lhv', 'group', 'tartu', 'mnt', 'tallinn', 'info', 'lhv', 'ee', 'lhv', 'ee', 'estonia', 'latvia', 'lit', 'huania', 'finland', 'ger', 'many', 'eu', 'usa', 'uk', 'total', 'due', 'banks', 'investment', 'companies', 'financial', 'assets', 'fair', 'value', 'loans', 'advances', 'customers', 'receivables', 'customers', 'financial', 'assets', 'total', 'financial', 'assets', 'deposits', 'customers', 'loans', 'received', 'subordinated', 'debt', 'accounts', 'payable', 'financial', 'liabilities', 'financial', 'liabilities', 'fair', 'value', 'total', 'financial', 'liabilities', 'unused', 'loan', 'commitments', 'amount', 'eur', 'thousand', 'residents', 'estonia', 'note', 'breakdown', 'assets', 'liabilities', 'contractual', 'maturity', 'dates', 'demand', 'months', 'months', 'years', 'years', 'total', 'liabilities', 'contractual', 'maturity', 'dates', 'deposits', 'customers', 'loans', 'received', 'subordinated', 'debt', 'accounts', 'payable', 'financial', 'liabilities', 'unused', 'loan', 'commitments', 'financial', 'guarantees', 'contractual', 'amounts', 'foreign', 'exchange', 'derivatives', 'gross', 'settled', 'financial', 'liabilities', 'fair', 'value', 'total', 'liabilities', 'financial', 'assets', 'contractual', 'maturity', 'dates', 'due', 'banks', 'investment', 'companies', 'financial', 'assets', 'fair', 'value', 'debt', 'securities', 'loans', 'advances', 'customers', 'receivables', 'customers', 'financial', 'assets', 'foreign', 'exchange', 'derivatives', 'gross', 'settled', 'total', 'financial', 'assets', 'maturity', 'gap', 'financial', 'assets', 'liabilities', 'lhv', 'group', 'tartu', 'mnt', 'tallinn', 'info', 'lhv', 'ee', 'lhv', 'ee', 'demand', 'months', 'months', 'years', 'years', 'total', 'liabilities', 'contractual', 'maturity', 'dates', 'deposits', 'customers', 'loans', 'received', 'subordinated', 'debt', 'accounts', 'payable', 'financial', 'liabilities', 'unused', 'loan', 'commitments', 'financial', 'guarantees', 'contractual', 'amounts', 'foreign', 'exchange', 'derivatives', 'gross', 'settled', 'financial', 'liabilities', 'fair', 'value', 'total', 'liabilities', 'financial', 'assets', 'contractual', 'maturity', 'dates', 'due', 'banks', 'investment', 'companies', 'financial', 'assets', 'fair', 'value', 'debt', 'securities', 'loans', 'advances', 'customers', 'receivables', 'customers', 'financial', 'assets', 'foreign', 'exchange', 'derivatives', 'gross', 'settled', 'total', 'financial', 'assets', 'maturity', 'gap', 'financial', 'assets', 'liabilities', 'possible', 'take', 'short', 'term', 'loan', 'central', 'bank', 'security', 'majority', 'instruments', 'bond', 'portfolio', 'cashflows', 'financial', 'assets', 'liabilities', 'except', 'derivatives', 'include', 'contractual', 'cash', 'flows', 'note', 'open', 'foreign', 'currency', 'positions', 'eur', 'chf', 'gbp', 'sek', 'usd', 'total', 'assets', 'bearing', 'currency', 'risk', 'due', 'banks', 'investment', 'companies', 'financial', 'assets', 'fair', 'value', 'loans', 'advances', 'customers', 'receivables', 'customers', 'financial', 'assets', 'total', 'assets', 'bearing', 'currency', 'risk', 'liabilities', 'bearing', 'currency', 'risk', 'deposits', 'customers', 'loans', 'received', 'financial', 'liabilities', 'fair', 'value', 'accounts', 'payable', 'financial', 'liabilities', 'subordinated', 'debt', 'total', 'liabilities', 'bearing', 'currency', 'risk', 'open', 'gross', 'position', 'derivative', 'assets', 'contractual', 'value', 'open', 'gross', 'position', 'derivative', 'liabilities', 'contractual', 'value', 'open', 'foreign', 'currency', 'position', 'lhv', 'group', 'tartu', 'mnt', 'tallinn', 'info', 'lhv', 'ee', 'lhv', 'ee', 'eur', 'chf', 'gbp', 'sek', 'usd', 'total', 'assets', 'bearing', 'currency', 'risk', 'due', 'banks', 'investment', 'companies', 'financial', 'assets', 'fair', 'value', 'loans', 'advances', 'customers', 'receivables', 'customers', 'financial', 'assets', 'total', 'assets', 'bearing', 'currency', 'risk', 'liabilities', 'bearing', 'currency', 'risk', 'deposits', 'customers', 'loans', 'received', 'financial', 'liabilities', 'fair', 'value', 'accounts', 'payable', 'financial', 'liabilities', 'subordinated', 'debt', 'total', 'liabilities', 'bearing', 'currency', 'risk', 'open', 'gross', 'position', 'derivative', 'assets', 'contractual', 'value', 'open', 'gross', 'position', 'derivative', 'liabilities', 'contractual', 'value', 'open', 'foreign', 'currency', 'position', 'note', 'fair', 'value', 'financial', 'assets', 'liabilities', 'management', 'board', 'group', 'determined', 'fair', 'value', 'assets', 'liabilities', 'recognised', 'amortised', 'cost', 'balance', 'sheet', 'determine', 'fair', 'value', 'future', 'cash', 'flows', 'discounted', 'based', 'market', 'interest', 'curve', 'table', 'provides', 'overview', 'assessment', 'techniques', 'depend', 'hierarchy', 'assets', 'liabilities', 'measured', 'fair', 'value', 'level', 'level', 'level', 'level', 'level', 'level', 'financial', 'assets', 'fair', 'value', 'profit', 'loss', 'shares', 'fund', 'units', 'equity', 'instruments', 'fair', 'value', 'comprehensive', 'income', 'bonds', 'fair', 'value', 'profit', 'loss', 'interest', 'rate', 'swaps', 'foreign', 'exchange', 'forwards', 'total', 'financial', 'assets', 'financial', 'liabilities', 'fair', 'value', 'profit', 'loss', 'interest', 'rate', 'swaps', 'foreign', 'exchange', 'forwards', 'total', 'financial', 'liabilities', 'shares', 'fund', 'units', 'include', 'group', 'companies', 'lhv', 'varahaldus', 'investment', 'pension', 'fund', 'units', 'amount', 'eur', 'thousand', 'pursuant', 'investment', 'funds', 'act', 'mandatory', 'shares', 'lhv', 'varahaldus', 'management', 'company', 'number', 'units', 'mandatory', 'pension', 'fund', 'managed', 'hierarchy', 'levels', 'level', 'price', 'quoted', 'active', 'market', 'level', 'technique', 'uses', 'market', 'information', 'input', 'rates', 'interest', 'curves', 'arms', 'length', 'transactions', 'level', 'methods', 'e', 'g', 'discounted', 'cash', 'flow', 'method', 'estimations', 'input', 'bid', 'price', 'used', 'assess', 'fair', 'value', 'bond', 'portfolio', 'net', 'asset', 'value', 'fund', 'units', 'used', 'basis', 'shares', 'fund', 'units', 'valuation', 'lhv', 'varahaldus', 'pension', 'fund', 'units', 'considered', 'level', 'active', 'market', 'interest', 'rate', 'swaps', 'instruments', 'fair', 'value', 'determined', 'via', 'model', 'based', 'approach', 'using', 'inputs', 'available', 'active', 'market', 'fair', 'value', 'non', 'market', 'derivatives', 'calculated', 'theoretical', 'net', 'present', 'value', 'npv', 'using', 'independent', 'market', 'parameters', 'without', 'assuming', 'lhv', 'group', 'tartu', 'mnt', 'tallinn', 'info', 'lhv', 'ee', 'lhv', 'ee', 'presence', 'risks', 'uncertainties', 'npv', 'discounted', 'using', 'risk', 'free', 'profitability', 'rate', 'available', 'market', 'fair', 'value', 'corporate', 'loans', 'overdraft', 'eur', 'thousand', 'higher', 'carrying', 'amount', 'thousand', 'lower', 'loans', 'issued', 'bank', 'business', 'segments', 'market', 'conditions', 'therefore', 'fair', 'value', 'retail', 'loans', 'materially', 'differ', 'carrying', 'amount', 'december', 'december', 'determining', 'fair', 'value', 'loans', 'considerable', 'management', 'judgements', 'used', 'discounted', 'cash', 'flow', 'method', 'current', 'market', 'interest', 'used', 'valuation', 'loans', 'issued', 'thus', 'categorised', 'hierarchy', 'level', 'lease', 'interest', 'rates', 'offered', 'customers', 'generally', 'correspond', 'interest', 'rates', 'prevailing', 'market', 'products', 'considering', 'interest', 'rate', 'environment', 'relatively', 'stable', 'since', 'group', 'started', 'provide', 'leasing', 'consequently', 'fair', 'value', 'lease', 'agreements', 'materially', 'differ', 'carrying', 'amount', 'significant', 'management', 'judgment', 'required', 'determine', 'fair', 'value', 'leases', 'classified', 'level', 'fair', 'value', 'hierarchy', 'leveraged', 'loans', 'hire', 'purchase', 'credit', 'cards', 'granted', 'customers', 'sufficiently', 'short', 'term', 'nature', 'issued', 'market', 'terms', 'therefore', 'fair', 'market', 'rate', 'interest', 'also', 'fair', 'value', 'loans', 'change', 'significantly', 'loan', 'term', 'effective', 'interest', 'rate', 'consumer', 'loans', 'issued', 'level', 'interest', 'rate', 'loan', 'product', 'offered', 'market', 'stated', 'carrying', 'amount', 'loans', 'significantly', 'differ', 'fair', 'value', 'fair', 'value', 'level', 'leveraged', 'loans', 'hirepurchase', 'credit', 'cards', 'consumer', 'loans', 'significant', 'judgmental', 'assumptions', 'used', 'valuation', 'process', 'receivables', 'customers', 'along', 'accrued', 'expenses', 'current', 'receivables', 'generated', 'course', 'ordinary', 'business', 'subject', 'payment', 'short', 'period', 'time', 'fair', 'value', 'thus', 'differ', 'carrying', 'amount', 'receivables', 'payables', 'bear', 'interest', 'fair', 'value', 'accounts', 'payable', 'accrued', 'expenses', 'payables', 'determined', 'based', 'hierarchy', 'level', 'customer', 'deposits', 'fixed', 'interest', 'rates', 'mostly', 'short', 'term', 'deposits', 'priced', 'pursuant', 'market', 'conditions', 'majority', 'customer', 'deposits', 'include', 'demand', 'deposits', 'fair', 'value', 'deposits', 'determined', 'via', 'discounting', 'future', 'cash', 'flows', 'thus', 'materially', 'differ', 'carrying', 'amount', 'determining', 'fair', 'value', 'customer', 'deposits', 'considerable', 'management', 'judgements', 'used', 'customer', 'deposits', 'thus', 'categorised', 'hierarchy', 'level', 'reporting', 'year', 'subordinated', 'loans', 'amount', 'eur', 'thousand', 'received', 'subordinated', 'loans', 'received', 'eur', 'thousand', 'received', 'november', 'eur', 'thousand', 'received', 'october', 'subordinated', 'loans', 'issued', 'market', 'terms', 'considering', 'movements', 'loan', 'interest', 'market', 'say', 'market', 'conditions', 'similar', 'issuing', 'subordinated', 'loans', 'fair', 'value', 'loans', 'materially', 'differ', 'carrying', 'value', 'determining', 'fair', 'value', 'loans', 'considerable', 'management', 'judgements', 'used', 'subordinated', 'debt', 'thus', 'categorised', 'hierarchy', 'level', 'note', 'breakdown', 'loan', 'portfolio', 'economic', 'sectors', 'individuals', 'real', 'estate', 'activities', 'manufacturing', 'arts', 'entertainment', 'financial', 'activities', 'wholesale', 'retail', 'trade', 'administrative', 'support', 'service', 'activities', 'transportation', 'storage', 'agriculture', 'service', 'activities', 'construction', 'information', 'communication', 'professional', 'scientific', 'technical', 'activities', 'education', 'sectors', 'total', 'impairment', 'total', 'loan', 'portfolio', 'lhv', 'group', 'tartu', 'mnt', 'tallinn', 'info', 'lhv', 'ee', 'lhv', 'ee', 'note', 'net', 'interest', 'income', 'interest', 'income', 'balances', 'credit', 'institutions', 'investment', 'companies', 'debt', 'securities', 'leasing', 'leverage', 'loans', 'lending', 'securities', 'consumer', 'loans', 'hire', 'purchase', 'corporate', 'loans', 'credit', 'card', 'loans', 'mortgage', 'loans', 'loans', 'total', 'interest', 'expense', 'deposits', 'customers', 'loans', 'received', 'balances', 'central', 'bank', 'subordinated', 'liabilities', 'including', 'loans', 'related', 'parties', 'total', 'net', 'interest', 'income', 'interest', 'income', 'loans', 'customer', 'location', 'interest', 'bank', 'balances', 'bonds', 'excluded', 'estonia', 'lithuania', 'total', 'note', 'net', 'fee', 'commission', 'income', 'fee', 'commission', 'income', 'security', 'brokerage', 'commissions', 'paid', 'asset', 'management', 'similar', 'fees', 'currency', 'exchange', 'fees', 'conversion', 'revenues', 'fees', 'cards', 'payments', 'fee', 'commission', 'income', 'total', 'fee', 'commission', 'expense', 'security', 'brokerage', 'commissions', 'paid', 'expenses', 'related', 'cards', 'expenses', 'related', 'acquiring', 'fee', 'commission', 'expense', 'total', 'net', 'fee', 'commission', 'income', 'fee', 'commission', 'income', 'customer', 'location', 'estonia', 'luxembourg', 'total', 'lhv', 'group', 'tartu', 'mnt', 'tallinn', 'info', 'lhv', 'ee', 'lhv', 'ee', 'note', 'operating', 'expenses', 'wages', 'salaries', 'bonuses', 'social', 'security', 'taxes', 'total', 'personnel', 'expenses', 'expenses', 'information', 'services', 'bank', 'services', 'marketing', 'expenses', 'office', 'expenses', 'transportation', 'communication', 'expenses', 'staff', 'training', 'business', 'trip', 'expenses', 'outsourced', 'services', 'administrative', 'expenses', 'depreciation', 'non', 'current', 'assets', 'operational', 'lease', 'payments', 'operating', 'expenses', 'total', 'operating', 'expenses', 'total', 'operating', 'expenses', 'lump', 'sum', 'payment', 'social', 'health', 'insurances', 'note', 'discontinued', 'operations', 'financial', 'income', 'net', 'interest', 'income', 'net', 'fee', 'commission', 'income', 'personnel', 'expenses', 'operating', 'expenses', 'impairment', 'losses', 'loans', 'income', 'tax', 'expenses', 'net', 'profit', 'discontinued', 'operations', 'note', 'balances', 'central', 'bank', 'credit', 'institutions', 'investment', 'companies', 'demand', 'term', 'deposits', 'maturity', 'less', 'months', 'statutory', 'reserve', 'capital', 'central', 'bank', 'demand', 'deposit', 'central', 'bank', 'total', 'cash', 'cash', 'equivalents', 'statement', 'cash', 'flows', 'breakdown', 'receivables', 'countries', 'presented', 'note', 'demand', 'deposits', 'include', 'receivables', 'investment', 'companies', 'total', 'amount', 'eur', 'thousand', 'december', 'eur', 'thousand', 'demand', 'term', 'deposits', 'held', 'credit', 'institutions', 'central', 'bank', 'minimum', 'reserve', 'requirement', 'december', 'december', 'financial', 'resources', 'customer', 'deposits', 'loans', 'received', 'reserve', 'requirement', 'fulfilled', 'monthly', 'average', 'euros', 'foreign', 'financial', 'assets', 'approved', 'central', 'bank', 'lhv', 'group', 'tartu', 'mnt', 'tallinn', 'info', 'lhv', 'ee', 'lhv', 'ee', 'note', 'deposits', 'customers', 'loans', 'received', 'deposits', 'loans', 'type', 'individuals', 'financial', 'intermediates', 'legal', 'entities', 'public', 'sector', 'demand', 'deposits', 'term', 'deposits', 'loans', 'received', 'accrued', 'interest', 'liability', 'total', 'deposits', 'loans', 'type', 'individuals', 'financial', 'intermediates', 'legal', 'entities', 'public', 'sector', 'demand', 'deposits', 'term', 'deposits', 'loans', 'received', 'accrued', 'interest', 'liability', 'total', 'lhv', 'pank', 'signed', 'unsecured', 'year', 'loan', 'agreement', 'european', 'investment', 'fund', 'eif', 'amount', 'eur', 'million', 'increase', 'borrowing', 'possibilities', 'small', 'medium', 'sized', 'enterprises', 'bank', 'utilized', 'thousand', 'euros', 'loan', 'amount', 'repaid', 'principal', 'amount', 'eur', 'thousand', 'euros', 'nordic', 'investment', 'bank', 'possible', 'thousand', 'euro', 'loan', 'bank', 'utilized', 'thousand', 'euros', 'repaid', 'principal', 'amount', 'eur', 'thousand', 'euros', 'nominal', 'interest', 'rate', 'deposits', 'customers', 'loans', 'granted', 'equals', 'effective', 'interest', 'rate', 'significant', 'fees', 'implemented', 'note', 'accounts', 'payable', 'liabilities', 'financial', 'liabilities', 'trade', 'payables', 'payables', 'merchants', 'short', 'term', 'financial', 'liabilities', 'accrued', 'interest', 'subordinated', 'loans', 'payments', 'transit', 'financial', 'guarantee', 'contracts', 'issued', 'subtotal', 'non', 'financial', 'liabilities', 'performance', 'guarantee', 'contracts', 'issued', 'tax', 'liabilities', 'payables', 'employees', 'short', 'term', 'liabilities', 'subtotal', 'total', 'payables', 'employees', 'consist', 'unpaid', 'salaries', 'bonus', 'accruals', 'vacation', 'pay', 'accrual', 'reporting', 'period', 'increase', 'liabilities', 'caused', 'increase', 'number', 'employees', 'year', 'payments', 'transit', 'consist', 'foreign', 'payments', 'payables', 'customers', 'related', 'intermediation', 'securities', 'transactions', 'liabilities', 'except', 'financial', 'guarantees', 'payable', 'within', 'months', 'therefore', 'recognised', 'current', 'liabilities', 'lhv', 'group', 'tartu', 'mnt', 'tallinn', 'info', 'lhv', 'ee', 'lhv', 'ee', 'note', 'contingent', 'liabilities', 'irrevocable', 'transactions', 'performance', 'guarantees', 'financial', 'guarantees', 'letter', 'credit', 'unused', 'loan', 'commitments', 'total', 'liability', 'contractual', 'amount', 'december', 'liability', 'contractual', 'amount', 'december', 'note', 'basic', 'earnings', 'diluted', 'earnings', 'per', 'share', 'order', 'calculate', 'basic', 'earnings', 'per', 'share', 'net', 'profit', 'attributable', 'owners', 'parent', 'divided', 'weighted', 'average', 'number', 'shares', 'issued', 'dilution', 'effect', 'calculating', 'diluted', 'earnings', 'per', 'share', 'comes', 'share', 'options', 'granted', 'management', 'key', 'employees', 'total', 'profit', 'incl', 'discontinued', 'operations', 'attributable', 'owners', 'parent', 'eur', 'thousand', 'total', 'profit', 'attributable', 'owners', 'parent', 'continuing', 'operations', 'eur', 'thousand', 'weighted', 'average', 'number', 'shares', 'thousands', 'units', 'basic', 'earnings', 'per', 'share', 'eur', 'basic', 'earnings', 'per', 'share', 'continuing', 'operations', 'eur', 'basic', 'earnings', 'per', 'share', 'discontinued', 'operations', 'eur', 'weighted', 'average', 'number', 'shares', 'used', 'calculating', 'diluted', 'earnings', 'per', 'shares', 'thousands', 'units', 'diluted', 'earnings', 'per', 'share', 'eur', 'diluted', 'earnings', 'per', 'share', 'eur', 'continuing', 'operations', 'diluted', 'earnings', 'per', 'share', 'eur', 'discontinued', 'operations', 'note', 'capital', 'management', 'goal', 'groups', 'capital', 'management', 'ensure', 'continuity', 'groups', 'business', 'ability', 'generate', 'return', 'shareholders', 'maintain', 'strong', 'capital', 'base', 'supporting', 'development', 'business', 'comply', 'capital', 'requirements', 'established', 'supervision', 'authorities', 'amount', 'capital', 'group', 'managed', 'thousand', 'euros', 'thousand', 'euros', 'goals', 'groups', 'capital', 'management', 'set', 'based', 'regulative', 'requirements', 'additional', 'internal', 'buffer', 'group', 'follows', 'general', 'principles', 'capital', 'management', 'group', 'must', 'adequately', 'capitalized', 'times', 'ensuring', 'necessary', 'capital', 'ensure', 'economic', 'preservation', 'enables', 'financing', 'new', 'profitable', 'growth', 'opportunities', 'main', 'focus', 'capital', 'management', 'tier', 'funds', 'tier', 'funds', 'absorb', 'losses', 'capital', 'layers', 'use', 'dependent', 'tier', 'funds', 'volume', 'lhv', 'group', 'tartu', 'mnt', 'tallinn', 'info', 'lhv', 'ee', 'lhv', 'ee', 'capital', 'group', 'divided', 'two', 'regulative', 'minimum', 'capital', 'capital', 'buffer', 'held', 'group', 'order', 'reach', 'long', 'term', 'economic', 'goals', 'group', 'must', 'one', 'hand', 'strive', 'towards', 'proportional', 'lowering', 'regulative', 'minimumcapital', 'minimizing', 'risks', 'high', 'transparency', 'hand', 'group', 'must', 'strive', 'towards', 'sufficient', 'conservative', 'capital', 'reserve', 'ensure', 'economic', 'preservation', 'even', 'event', 'severe', 'negative', 'risk', 'scenario', 'risk', 'appetite', 'set', 'group', 'important', 'input', 'capital', 'management', 'planning', 'capital', 'goal', 'setting', 'higher', 'risk', 'appetite', 'requires', 'marinating', 'higher', 'capital', 'buffer', 'capital', 'base', 'paid', 'share', 'capital', 'share', 'premium', 'reserves', 'reserves', 'accumulated', 'loss', 'intangible', 'assets', 'subtracted', 'profit', 'reporting', 'period', 'corep', 'adjustments', 'total', 'core', 'tier', 'capital', 'additional', 'tier', 'capital', 'total', 'tier', 'capital', 'subordinated', 'liabilities', 'total', 'tier', 'capital', 'total', 'net', 'funds', 'group', 'complied', 'capital', 'requirements', 'financial', 'year', 'previous', 'year', 'note', 'transactions', 'related', 'parties', 'preparing', 'financial', 'statements', 'group', 'following', 'entities', 'considered', 'related', 'parties', 'owners', 'significant', 'impact', 'group', 'entities', 'related', 'members', 'management', 'board', 'legal', 'entities', 'controlled', 'together', 'referred', 'management', 'members', 'supervisory', 'board', 'close', 'relatives', 'persons', 'mentioned', 'entities', 'related', 'transactions', 'interest', 'income', 'incl', 'management', 'incl', 'shareholders', 'significant', 'influence', 'fee', 'commission', 'income', 'incl', 'management', 'incl', 'shareholders', 'significant', 'influence', 'interest', 'expenses', 'deposits', 'incl', 'management', 'incl', 'shareholders', 'significant', 'influence', 'interest', 'expenses', 'subordinated', 'loans', 'incl', 'management', 'incl', 'shareholders', 'significant', 'influence', 'lhv', 'group', 'tartu', 'mnt', 'tallinn', 'info', 'lhv', 'ee', 'lhv', 'ee', 'balances', 'loans', 'receivables', 'year', 'end', 'incl', 'management', 'incl', 'shareholders', 'significant', 'influence', 'deposits', 'year', 'end', 'incl', 'management', 'incl', 'shareholders', 'significant', 'influence', 'subordinated', 'loans', 'year', 'end', 'incl', 'management', 'incl', 'shareholders', 'significant', 'influence', 'table', 'provides', 'overview', 'material', 'balances', 'transactions', 'involving', 'related', 'parties', 'transactions', 'involving', 'close', 'relatives', 'entities', 'related', 'members', 'management', 'board', 'supervisory', 'board', 'minority', 'shareholders', 'parent', 'company', 'lhv', 'group', 'occurred', 'according', 'overall', 'price', 'list', 'management', 'shareholders', 'significant', 'influence', 'include', 'also', 'related', 'entities', 'persons', 'loans', 'granted', 'related', 'parties', 'issued', 'market', 'conditions', 'salaries', 'compensations', 'paid', 'management', 'parent', 'lhv', 'group', 'subsidiaries', 'totalled', 'eur', 'thousand', 'eur', 'thousand', 'including', 'taxes', 'remuneration', 'december', 'accrued', 'holiday', 'pay', 'amount', 'eur', 'thousand', 'eur', 'thousand', 'reported', 'payable', 'management', 'group', 'long', 'term', 'payables', 'commitments', 'members', 'management', 'board', 'supervisory', 'board', 'pension', 'liabilities', 'termination', 'benefits', 'etc', 'remuneration', 'paid', 'members', 'groups', 'supervisory', 'board', 'totalled', 'eur', 'thousand', 'eur', 'thousand', 'management', 'related', 'share', 'based', 'compensation', 'plan', 'share', 'based', 'compensation', 'management', 'amounted', 'eur', 'thousand', 'eur', 'thousand', 'group', 'signed', 'contracts', 'members', 'management', 'board', 'provide', 'severance', 'benefits', 'upon', 'termination', 'contract', 'matters', 'regulated', 'contract', 'parties', 'adhere', 'procedure', 'specified', 'legislation', 'republic', 'estonia', 'note', 'tangible', 'intangible', 'assets', 'thousands', 'euros', 'tangible', 'assets', 'right', 'use', 'assets', 'total', 'tangible', 'assets', 'intangible', 'assets', 'costs', 'incurred', 'acquisition', 'customer', 'contracts', 'total', 'intangible', 'assets', 'balance', 'cost', 'accumulated', 'depreciation', 'amortisation', 'carrying', 'amount', 'purchase', 'non', 'current', 'assets', 'capitalized', 'selling', 'costs', 'write', 'non', 'current', 'assets', 'depreciation', 'amortisation', 'charge', 'assets', 'discontinued', 'operations', 'amortisation', 'discontinued', 'operations', 'balance', 'cost', 'accumulated', 'depreciation', 'amortisation', 'carrying', 'amount', 'lhv', 'group', 'tartu', 'mnt', 'tallinn', 'info', 'lhv', 'ee', 'lhv', 'ee', 'changes', 'accounting', 'policies', 'purchase', 'non', 'current', 'assets', 'disposal', 'non', 'current', 'assets', 'write', 'current', 'assets', 'depreciation', 'amortisation', 'charge', 'balance', 'cost', 'accumulated', 'depreciation', 'amortisation', 'carrying', 'amount', 'note', 'subordinated', 'debts', 'subordinated', 'debts', 'thousands', 'euros', 'year', 'issue', 'amount', 'interest', 'rate', 'maturity', 'date', 'october', 'november', 'november', 'perpetual', 'subordinated', 'debt', 'subordinated', 'debt', 'subordinated', 'debt', 'note', 'loans', 'advances', 'customers', 'thousands', 'euros', 'loans', 'legal', 'entities', 'incl', 'corporate', 'loans', 'incl', 'retail', 'loans', 'incl', 'leasing', 'incl', 'overdraft', 'incl', 'leveraged', 'loans', 'incl', 'hire', 'purchase', 'incl', 'credit', 'card', 'loans', 'incl', 'credit', 'letters', 'loans', 'individuals', 'incl', 'hire', 'purchase', 'incl', 'mortgage', 'loans', 'incl', 'consumer', 'loans', 'incl', 'private', 'loans', 'incl', 'leasing', 'incl', 'leveraged', 'loans', 'incl', 'credit', 'card', 'loans', 'incl', 'overdraft', 'incl', 'study', 'loan', 'incl', 'real', 'estate', 'leasing', 'total', 'impairment', 'provisions', 'total', 'lhv', 'group', 'tartu', 'mnt', 'tallinn', 'info', 'lhv', 'ee', 'lhv', 'ee', 'changes', 'impairments', 'corpo', 'rate', 'loans', 'incl', 'overdraft', 'retail', 'loans', 'consumer', 'loans', 'credit', 'cards', 'hire', 'purc', 'hase', 'leasing', 'leveraged', 'loans', 'loans', 'incl', 'mortgage', 'credit', 'letters', 'total', 'balance', 'january', 'impairment', 'provisions', 'reversals', 'set', 'year', 'written', 'reporting', 'period', 'balance', 'december', 'lhv', 'group', 'tartu', 'mnt', 'tallinn', 'info', 'lhv', 'ee', 'lhv', 'ee', 'shareholders', 'lhv', 'group', 'lhv', 'group', 'total', 'ordinary', 'shares', 'nominal', 'value', 'euro', 'december', 'lhv', 'group', 'shareholders', 'shares', 'held', 'members', 'supervisory', 'board', 'management', 'board', 'related', 'parties', 'shares', 'held', 'estonian', 'entrepreneurs', 'investors', 'related', 'parties', 'top', 'ten', 'shareholders', 'december', 'number', 'shares', 'participation', 'name', 'shareholder', 'lõhmus', 'holdings', 'rain', 'lõhmus', 'viisemann', 'investments', 'ag', 'ambient', 'sound', 'investments', 'oü', 'oü', 'krenno', 'genteel', 'amalfi', 'oü', 'kristobal', 'sia', 'krugmans', 'oü', 'bonaares', 'shares', 'held', 'members', 'management', 'board', 'supervisory', 'board', 'madis', 'toomsalu', 'holds', 'shares', 'rain', 'lõhmus', 'holds', 'shares', 'lõhmus', 'holdings', 'shares', 'oü', 'merona', 'systems', 'shares', 'andres', 'viisemann', 'holds', 'shares', 'viisemann', 'holdings', 'oü', 'holds', 'shares', 'viisemann', 'investment', 'ag', 'holds', 'shares', 'tauno', 'tats', 'hold', 'shares', 'ambient', 'sound', 'investments', 'oü', 'holds', 'shares', 'tiina', 'mõis', 'hold', 'shares', 'genteel', 'holds', 'shares', 'heldur', 'meerits', 'hold', 'shares', 'amalfi', 'holds', 'shares', 'raivo', 'hein', 'hold', 'shares', 'oü', 'kakssada', 'kakskümmend', 'volti', 'holds', 'shares', 'astrum', 'oü', 'holds', 'shares', 'lame', 'maakera', 'oü', 'holds', 'shares', 'kuu', 'päike', 'oü', 'holds', 'higgsi', 'boson', 'oü', 'holds', 'shares', 'kõver', 'aegruum', 'holds', 'shares', 'desoksüribonukleiinhape', 'dna', 'oü', 'holds', 'shares', 'sten', 'tamkivi', 'holds', 'shares', 'oü', 'seikatsu', 'holds', 'shares', 'lhv', 'group', 'tartu', 'mnt', 'tallinn', 'info', 'lhv', 'ee', 'lhv', 'ee', 'supervisory', 'boards', 'management', 'boards', 'lhv', 'group', 'subsidiaries', 'lhv', 'group', 'supervisory', 'board', 'raivo', 'hein', 'rain', 'lõhmus', 'heldur', 'meerits', 'tiina', 'mõis', 'tauno', 'tats', 'andres', 'viisemann', 'sten', 'tamkivi', 'management', 'board', 'madis', 'toomsalu', 'lhv', 'varahaldus', 'supervisory', 'board', 'erki', 'kilu', 'madis', 'toomsalu', 'andres', 'viisemann', 'management', 'board', 'vahur', 'vallistu', 'joel', 'kukemelk', 'lhv', 'pank', 'supervisory', 'board', 'raivo', 'hein', 'rain', 'lõhmus', 'heldur', 'meerits', 'tiina', 'mõis', 'madis', 'toomsalu', 'andres', 'viisemann', 'management', 'board', 'jüri', 'heero', 'erki', 'kilu', 'andres', 'kitter', 'meelis', 'paakspuu', 'indrek', 'nuume', 'martti', 'singi', 'kadri', 'kiisel', 'lhv', 'finance', 'supervisory', 'board', 'erki', 'kilu', 'rain', 'lõhmus', 'veiko', 'poolgas', 'jaan', 'koppel', 'management', 'board', 'kadri', 'kiisel', 'oü', 'cuber', 'tehnology', 'management', 'board', 'jüri', 'laur', 'lhv', 'group', 'tartu', 'mnt', 'tallinn', 'info', 'lhv', 'ee', 'lhv', 'ee', 'signatures', 'management', 'board', 'condensed', 'consolidated', 'interim', 'report', 'management', 'board', 'prepared', 'summary', 'results', 'january', 'december', 'period', 'condensed', 'consolidated', 'interim', 'financial', 'statements', 'lhv', 'group', 'month', 'period', 'ended', 'december', 'management', 'board', 'confirms', 'according', 'best', 'knowledge', 'interim', 'report', 'presents', 'fair', 'view', 'lhv', 'group', 'ass', 'assets', 'liabilities', 'financial', 'position', 'profit', 'loss', 'issuer', 'entities', 'involved', 'consolidation', 'whole', 'contains', 'description', 'main', 'risks', 'doubts', 'condensed', 'consolidated', 'interim', 'financial', 'statements', 'prepared', 'according', 'principles', 'international', 'accounting', 'standard', 'ias', 'interim', 'financial', 'reporting', 'madis', 'toomsalu']]
Query after it has been cleaned&tokenized: ['audit', 'control', 'board', 'structure', 'remuneration', 'shareholder', 'rights', 'transparency', 'performance']
So everything looks fine.
Results:
0 0.873 2019_q4_en_eur_con_00.pdf.txt : accounting, commission, audited, disclosure, regulatory, reviewed, committee, report, board, assessment, department, preliminary, disclosures, disclosed, compliance, supervisory, supervision, management, guidelines, commissions, advisory, corrections, remuneration, boards
It is strange that when i put only 1 document to the model, i get the similarity 0.873.
When i use 31 documents(annual reports), i get different result..
I assume that when similarity score is 1, the query terms are present 100% in the document?
Hi there - sorry I've been busy on work projects and unable to look into this. The cosine similarity is looking at the angle between the vectors, so when each document (including the search query) is converted into vector form (using doc2vec) and represented as a point in high dimensional space - the cosine similarity is the cosine of the angle between lines from the origin to each of those points. A similarity score of 1 means the lines basically overlap, and whilst that means the content is very similar I don't think it definitely means the query terms are full contained within a particular document. I wonder if the difference in size of the documents (the target document above being much larger than the query - which isn't unusual of course) if causing issues here.
Just to give you some context, i have been discussing this with the author of the SoftCosine similiary in gensim. You can see this here: https://groups.google.com/g/gensim/c/8wCZp4Ievk4