├── 7_1_Word2Vec.py ├── NegativeIndustry.py ├── NegativeNews2.py ├── README.md ├── data └── test ├── div_score.py ├── emotion.py ├── function.py ├── graph └── readme ├── medical2last.zip ├── news20200103.csv ├── news20200103_2.csv ├── news_industry.py ├── news_socre.py ├── news_stock.py ├── test1.py ├── test2.py ├── test3.py ├── test4.py ├── translatetxt.py ├── translatetxt2.py ├── 哈工大停用词表.txt ├── 投资决策流程及模型部署文件的生成.pdf └── 股票择时投资策略2.pdf /7_1_Word2Vec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crystal-tensor/Finance-Knowledge-Graph/HEAD/7_1_Word2Vec.py -------------------------------------------------------------------------------- /NegativeIndustry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crystal-tensor/Finance-Knowledge-Graph/HEAD/NegativeIndustry.py -------------------------------------------------------------------------------- /NegativeNews2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crystal-tensor/Finance-Knowledge-Graph/HEAD/NegativeNews2.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crystal-tensor/Finance-Knowledge-Graph/HEAD/README.md -------------------------------------------------------------------------------- /data/test: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /div_score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crystal-tensor/Finance-Knowledge-Graph/HEAD/div_score.py -------------------------------------------------------------------------------- /emotion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crystal-tensor/Finance-Knowledge-Graph/HEAD/emotion.py -------------------------------------------------------------------------------- /function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crystal-tensor/Finance-Knowledge-Graph/HEAD/function.py -------------------------------------------------------------------------------- /graph/readme: -------------------------------------------------------------------------------- 1 | readme 2 | -------------------------------------------------------------------------------- /medical2last.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crystal-tensor/Finance-Knowledge-Graph/HEAD/medical2last.zip -------------------------------------------------------------------------------- /news20200103.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crystal-tensor/Finance-Knowledge-Graph/HEAD/news20200103.csv -------------------------------------------------------------------------------- /news20200103_2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crystal-tensor/Finance-Knowledge-Graph/HEAD/news20200103_2.csv -------------------------------------------------------------------------------- /news_industry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crystal-tensor/Finance-Knowledge-Graph/HEAD/news_industry.py -------------------------------------------------------------------------------- /news_socre.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crystal-tensor/Finance-Knowledge-Graph/HEAD/news_socre.py -------------------------------------------------------------------------------- /news_stock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crystal-tensor/Finance-Knowledge-Graph/HEAD/news_stock.py -------------------------------------------------------------------------------- /test1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crystal-tensor/Finance-Knowledge-Graph/HEAD/test1.py -------------------------------------------------------------------------------- /test2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crystal-tensor/Finance-Knowledge-Graph/HEAD/test2.py -------------------------------------------------------------------------------- /test3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crystal-tensor/Finance-Knowledge-Graph/HEAD/test3.py -------------------------------------------------------------------------------- /test4.py: -------------------------------------------------------------------------------- 1 | import re 2 | 3 | zfc = '"董事长" ' 4 | 5 | k=re.sub('"','',zfc) 6 | 7 | print(k) -------------------------------------------------------------------------------- /translatetxt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crystal-tensor/Finance-Knowledge-Graph/HEAD/translatetxt.py -------------------------------------------------------------------------------- /translatetxt2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crystal-tensor/Finance-Knowledge-Graph/HEAD/translatetxt2.py -------------------------------------------------------------------------------- /哈工大停用词表.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crystal-tensor/Finance-Knowledge-Graph/HEAD/哈工大停用词表.txt -------------------------------------------------------------------------------- /投资决策流程及模型部署文件的生成.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crystal-tensor/Finance-Knowledge-Graph/HEAD/投资决策流程及模型部署文件的生成.pdf -------------------------------------------------------------------------------- /股票择时投资策略2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crystal-tensor/Finance-Knowledge-Graph/HEAD/股票择时投资策略2.pdf --------------------------------------------------------------------------------