Skip to content

Commit

Permalink
Update SRNN.py
Browse files Browse the repository at this point in the history
  • Loading branch information
zepingyu0512 authored May 31, 2018
1 parent d2f8d42 commit f50e816
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SRNN.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

#load data
df = pd.read_csv("yelp_2013.csv")
df = df.sample(5000)
#df = df.sample(5000)

Y = df.stars.values-1
Y = to_categorical(Y,num_classes=5)
Expand Down

0 comments on commit f50e816

Please sign in to comment.