11/03/2023

BNB price prediction

BNB price prediction

import numpy as np
from numpy import array
import pandas as pd
import matplotlib.pyplot as plt
import math

from sklearn.metrics import mean_squared_error

from statsmodels.tsa.stattools import adfuller
from statsmodels.graphics.tsaplots import plot_acf
from statsmodels.graphics.tsaplots import plot_pacf

import tensorflow as tf

from keras.models import Sequential
from keras.layers import LSTM
from keras.layers import Dense


 

The full example is on my Kaggle account. This is the link.

https://www.kaggle.com/code/mixmore/bnb-price-prediction

This is just an explanation of the example on Kaggle

.