Skip to content

Commit ee6f0b6

Browse files
author
Diego Dorgam
committed
script python
1 parent aa3eed0 commit ee6f0b6

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

rnn.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
# Recurrent Neural Network
22

3-
4-
53
# Part 1 - Data Preprocessing
64

75
# Importing the libraries
@@ -65,7 +63,7 @@
6563
regressor.compile(optimizer = 'adam', loss = 'mean_squared_error')
6664

6765
# Fitting the RNN to the Training set
68-
regressor.fit(X_train, y_train, epochs = 100, batch_size = 32)
66+
regressor.fit(X_train, y_train, epochs = 10, batch_size = 32)
6967

7068

7169

0 commit comments

Comments
 (0)