forked from UFund-Me/Qbot
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
90 changed files
with
4,184 additions
and
2,705 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -131,5 +131,6 @@ dmypy.json | |
.vscode | ||
.vim | ||
.nvimrc | ||
jqdata.json | ||
|
||
*.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Model Zoo | ||
|
||
## Common settings | ||
|
||
- We use distributed training. | ||
- For fair comparison with other codebases, we report the GPU memory as the maximum value of `torch.cuda.max_memory_allocated()` for all 8 GPUs. Note that this value is usually less than what `nvidia-smi` shows. | ||
- We report the inference time as the total time of network forwarding and post-processing, excluding the data loading time. Results are obtained with the script [benchmark.py](https://github.com/open-mmlab/mmdetection/blob/master/tools/analysis_tools/benchmark.py) which computes the average time on 2000 images. | ||
|
||
## Baselines | ||
|
||
### SECOND | ||
|
||
Please refer to [SECOND](https://github.com/open-mmlab/mmdetection3d/blob/master/configs/second) for details. We provide SECOND baselines on KITTI and Waymo datasets. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
#!/bin/bash | ||
set -euo pipefail | ||
|
||
wget https://repo.continuum.io/archive/Anaconda3-5.3.1-Linux-x86_64.sh | ||
bash Anaconda3-5.3.1-Linux-x86_64.sh | ||
|
||
echo "export PATH=/home/$USER/anaconda3/bin:$PATH" | sudo tee -a ~/.bashrc | ||
# shellcheck disable=SC1090 | ||
source ~/.bashrc | ||
|
||
conda info --env | ||
conda create -n Qbot python=3.9 | ||
conda activate Qbot | ||
conda info --env | ||
|
||
pip install -r requirements.txt | ||
|
||
export USER_ID="admin" | ||
export PASSWORD="admin1234." | ||
|
||
echo "Successful - Environment is set up!" | ||
|
||
echo "Enjoy, Quanter!" | ||
|
||
cat << EOF | ||
██████╗ ██████╗ ██████╗ ████████╗ | ||
██╔═══██╗██╔══██╗██╔═══██╗╚══██╔══╝ | ||
██║ ██║██████╔╝██║ ██║ ██║ | ||
██║▄▄ ██║██╔══██╗██║ ██║ ██║ | ||
╚██████╔╝██████╔╝╚██████╔╝ ██║ | ||
╚══▀▀═╝ ╚═════╝ ╚═════╝ ╚═╝ | ||
Alpha Qbot | ||
++++=================================++++ | ||
auth: Charmve --V.0.1 | ||
🤖 Qbot = 智能交易策略 + 回测系统 + 自动化交易 (+ 可视化分析工具) | ||
| | | | | ||
| | | \_ quantstats (dashboard\online operate) | ||
| | \______________ Qbot - vnpy, pytrader, pyfunds | ||
| \__________________________ BackTest - backtrader, easyquant | ||
\______________________________________ quant.ai - qlib, deep learning strategies | ||
EOF |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.