mirror of
https://github.com/microsoft/qlib.git
synced 2026-06-06 05:51:17 +08:00
fix break img
This commit is contained in:
16
README.md
16
README.md
@@ -309,19 +309,19 @@ Qlib provides a tool named `qrun` to run the whole workflow automatically (inclu
|
|||||||
2. Graphical Reports Analysis: Run `examples/workflow_by_code.ipynb` with `jupyter notebook` to get graphical reports
|
2. Graphical Reports Analysis: Run `examples/workflow_by_code.ipynb` with `jupyter notebook` to get graphical reports
|
||||||
- Forecasting signal (model prediction) analysis
|
- Forecasting signal (model prediction) analysis
|
||||||
- Cumulative Return of groups
|
- Cumulative Return of groups
|
||||||

|

|
||||||
- Return distribution
|
- Return distribution
|
||||||

|

|
||||||
- Information Coefficient (IC)
|
- Information Coefficient (IC)
|
||||||

|

|
||||||

|

|
||||||

|

|
||||||
- Auto Correlation of forecasting signal (model prediction)
|
- Auto Correlation of forecasting signal (model prediction)
|
||||||

|

|
||||||
|
|
||||||
- Portfolio analysis
|
- Portfolio analysis
|
||||||
- Backtest return
|
- Backtest return
|
||||||

|

|
||||||
<!--
|
<!--
|
||||||
- Score IC
|
- Score IC
|
||||||

|

|
||||||
@@ -500,7 +500,7 @@ Qlib data are stored in a compact format, which is efficient to be combined into
|
|||||||
Join IM discussion groups:
|
Join IM discussion groups:
|
||||||
|[Gitter](https://gitter.im/Microsoft/qlib)|
|
|[Gitter](https://gitter.im/Microsoft/qlib)|
|
||||||
|----|
|
|----|
|
||||||
||
|
||
|
||||||
|
|
||||||
# Contributing
|
# Contributing
|
||||||
We appreciate all contributions and thank all the contributors!
|
We appreciate all contributions and thank all the contributors!
|
||||||
|
|||||||
@@ -256,7 +256,7 @@ class HIST(Model):
|
|||||||
raise ValueError("Empty data from dataset, please check your dataset config.")
|
raise ValueError("Empty data from dataset, please check your dataset config.")
|
||||||
|
|
||||||
if not os.path.exists(self.stock2concept):
|
if not os.path.exists(self.stock2concept):
|
||||||
url = "http://fintech.msra.cn/stock_data/downloads/qlib_csi300_stock2concept.npy"
|
url = "https://github.com/SunsetWolf/qlib_dataset/releases/download/v0/qlib_csi300_stock2concept.npy"
|
||||||
urllib.request.urlretrieve(url, self.stock2concept)
|
urllib.request.urlretrieve(url, self.stock2concept)
|
||||||
|
|
||||||
stock_index = np.load(self.stock_index, allow_pickle=True).item()
|
stock_index = np.load(self.stock_index, allow_pickle=True).item()
|
||||||
|
|||||||
Reference in New Issue
Block a user