I’m executing this code on Kaلgle, and install autokeras library on it,
JavaScript
x
18
18
1
!pip install autokeras
2
import matplotlib.pyplot as plt
3
import pandas as pd
4
import datetime
5
%matplotlib inline
6
7
8
#Control the default size of figures in this Jupyter notebook
9
%pylab inline
10
pylab.rcParams['figure.figsize'] = (14, 9) # Change the size of plots
11
12
#cib = pd.read_csv("../input/balmhils1/balmhils1015.csv")
13
# load data from csv
14
cib_f = pd.read_csv("../input/jkse1234/JKSE.csv") # load data from csv
15
f, ax = plt.subplots(figsize=(11,8))
16
plt.xlabel("Number of trading day")
17
plt.ylabel("Close price")
18
but I got this error. No module named ‘keras_tuner’
Advertisement
Answer
Upgrade the keras_tuner
JavaScript
1
2
1
!pip install keras-tuner --upgrade
2