Adding the M4 data to the fastai way of storing/downloading data.
Datasets to incl:
- [x] m4 daily
- [ ] gunpoint
- [ ] Phoneme http://www.timeseriesclassification.com/description.php?Dataset=Phoneme
- [ ] Worms http://www.timeseriesclassification.com/description.php?Dataset=Worms
- [ ] BeetleFly http://www.timeseriesclassification.com/description.php?Dataset=BeetleFly
- [ ] m4 hourly
using zip files https://forums.fast.ai/t/generalizing-untar-data-to-also-work-with-zips/53741/14?u=takotab
URLs.m4_daily
r = dummy_data_generator(30,10,signal_type='trend' )
plt.plot(r[0][0,:])
plt.plot(r[1][0,:])
plt.plot(r[2][0,:])
plt.plot(r[3][0,:])
r = dummy_data_generator(30,10)
plt.plot(r[0][0,:])
plt.plot(r[1][0,:])
plt.plot(r[2][0,:])
plt.plot(r[3][0,:])
r = dummy_data_generator(30,10,norm=True, noise = 0)
plt.plot(r[0][0,:])
plt.plot(r[1][0,:])
plt.plot(r[2][0,:])
plt.plot(r[3][0,:])