Add finbert sentiment analysis

Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
This commit is contained in:
2024-02-03 18:58:40 +00:00
parent 973917dad2
commit 65c9ae8b25
26 changed files with 31460 additions and 215 deletions

View File

@@ -50,6 +50,8 @@ CREATE TABLE IF NOT EXISTS qrust.news (
source String,
summary String,
content String,
sentiment Enum('positive' = 1, 'neutral' = 0, 'negative' = -1),
confidence Float64,
url String,
INDEX index_symbols symbols TYPE bloom_filter()
)