Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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')
```