Skip to content

KaiqueBM/PosTechChallenge4

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PosTechChallenge4

API com modelo preditivo de redes neurais Long Short Term Memory (LSTM) para predizer o valor de fechamento da bolsa de valores da empresa Apple.

🧩 Arquitetura

Arquitetura

🌐 Links

API: https://lstm-stocks-api-web.azurewebsites.net/

Link Video Explicativo: https://youtu.be/ktawPQ6k6WM?si=8sj7Z72NDVWJBMbK

📂 Estrutura do Projeto

src

├── api
│   ├── app.py
│   ├── config.py
│   ├── routes
│   │   ├── historical_data.py
│   │   ├── predict.py
│   │   ├── __init__.py
│   ├── services
│   │   ├── data_featcher.py
│   │   ├── download_data.py
│   │   ├── historical_validators.py
│   │   ├── predict_validators.py
│   ├── __init__.py
├── functions.py
├── mlflow.db
├── mlruns
│   └── 1
│       └── c6b6ca4fbfda42eb9c28a8a18204c1bd
│           └── artifacts
│               └── model
│                   ├── conda.yaml
│                   ├── data
│                   │   ├── global_custom_objects.cloudpickle
│                   │   ├── keras_module.txt
│                   │   ├── model
│                   │   │   ├── fingerprint.pb
│                   │   │   ├── keras_metadata.pb
│                   │   │   ├── saved_model.pb
│                   │   │   └── variables
│                   │   │       ├── variables.data-00000-of-00001
│                   │   │       └── variables.index
│                   │   └── save_format.txt
│                   ├── MLmodel
│                   ├── python_env.yaml
│                   └── requirements.txt
├── model
│   ├── model.h5
│   └── scaler.pkl
├── predict.py
├── train.py
└── __init__.py

📕 Documentação

A documentação das rotas está disponível no Swagger

Link: https://lstm-stocks-api-web.azurewebsites.net/apidocs

💻 Execute o Projeto Localmente

1. Clone o repositório

git clone https://github.com/KaiqueBM/PosTechChallenge4

2. Instale a versão do Python 3.10

https://www.python.org/ftp/python/3.10.11/python-3.10.11-amd64.exe

3. Ative a venv e instale as bibliotecas

python -m venv venv
venv/Scripts/activate
pip install -r requirements.txt

4. Rode a API

python -m src.api.app

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors