Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tynab/lottery
Xổ số kiến thiết
https://github.com/tynab/lottery
crawl da data-analyst deep-learning dl jupyter-notebook lottery matplotlib numpy pandas pip pip3 py python scikit-learn sklearn tynab xo-so xo-so-kien-thiet yan
Last synced: about 2 months ago
JSON representation
Xổ số kiến thiết
- Host: GitHub
- URL: https://github.com/tynab/lottery
- Owner: Tynab
- Created: 2023-11-14T15:40:20.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-04-08T19:03:20.000Z (10 months ago)
- Last Synced: 2024-12-02T08:59:02.372Z (about 2 months ago)
- Topics: crawl, da, data-analyst, deep-learning, dl, jupyter-notebook, lottery, matplotlib, numpy, pandas, pip, pip3, py, python, scikit-learn, sklearn, tynab, xo-so, xo-so-kien-thiet, yan
- Language: Jupyter Notebook
- Homepage:
- Size: 1.59 MB
- Stars: 1
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
Awesome Lists containing this project
README
# LOTTERY
Phân tích dữ liệu xổ số kiến thiết giúp dự đoán lô đề dựa trên mô hình machine learning.## HÌNH ẢNH DEMO
## CODE DEMO
```python
# Xây dựng mô hình LSTM
model = Sequential()
model.add(LSTM(50, input_shape=(X_train_reshaped.shape[1], X_train_reshaped.shape[2])))
model.add(Dense(10))
model.compile(loss='mse', optimizer='adam')
```