0

I've done some research, but i don't really understand how MA is made. I have this plot: Without MA

but I really want something like this: With MA

my code is quite simple ( loss[20:] is the list from which want I to do the Moving Average):

plt.figure(figsize=(10, 7))
plt.plot(acc[20:])
plt.plot(loss[20:])
plt.xticks(np.arange(0, len(X) + 200, 500))
plt.show()

I would really appreciate some explanation about this.

eyllanesc
  • 221,139
  • 17
  • 121
  • 189
Omar
  • 97
  • 3
  • 10

0 Answers0