https://github.com/gsxhnd/lottery
双色球中奖预测 LSTM
https://github.com/gsxhnd/lottery
lottery-tickets lstm-neural-networks scikit-learn tensorflow tensorflow2
Last synced: 3 months ago
JSON representation
双色球中奖预测 LSTM
- Host: GitHub
- URL: https://github.com/gsxhnd/lottery
- Owner: gsxhnd
- License: mit
- Created: 2021-06-15T09:17:50.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2024-01-03T02:33:09.000Z (over 1 year ago)
- Last Synced: 2024-01-03T03:56:36.399Z (over 1 year ago)
- Topics: lottery-tickets, lstm-neural-networks, scikit-learn, tensorflow, tensorflow2
- Language: Python
- Homepage:
- Size: 65.4 KB
- Stars: 5
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Lottery
本项目仅作为娱乐项目和学习作用,并没有实际参考意义。
## 历史中奖数据源
数据源:`http://e.17500.cn/getData/ssq.TXT`
- 期号
- 日期
- 红球1
- 红球2
- 红球3
- 红球4
- 红球5
- 红球6
- 蓝球
- 红球1(按摇号出现顺序)
- 红球2(按摇号出现顺序)
- 红球3(按摇号出现顺序)
- 红球4(按摇号出现顺序)
- 红球5(按摇号出现顺序)
- 红球6(按摇号出现顺序)## How to run
```shell
# 下载数据
task data_download
## 创建 python 虚拟环境
python -m venv .venv
source .venv/bin/activate
## 下载 python 需要的依赖
task mod
## 训练模型
task train
```