You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
can you guys provide some info on how the iOS app is supposed to work?
Running the app gives just two blank screens (Predict and Record).
Method predict() in PredictorViewController.swift is never called. I tried calling it with the timer and it crashes because of assert(gyroData.count == accelData.count). Alright, I noticed that buffer in MotionStream.swift is set and never used, so I used it to prevent the crash by limiting the size of gyro and accel moment arrays which got me some output from touchModel.
On the other hand, locationModel is instantiated and never used.
How am I supposed to test the predictions?
Regards,
Hrvoje
The text was updated successfully, but these errors were encountered:
Hi,
can you guys provide some info on how the iOS app is supposed to work?
Running the app gives just two blank screens (Predict and Record).
Method
predict()
inPredictorViewController.swift
is never called. I tried calling it with the timer and it crashes because ofassert(gyroData.count == accelData.count)
. Alright, I noticed that buffer inMotionStream.swift
is set and never used, so I used it to prevent the crash by limiting the size of gyro and accel moment arrays which got me some output fromtouchModel
.On the other hand,
locationModel
is instantiated and never used.How am I supposed to test the predictions?
Regards,
Hrvoje
The text was updated successfully, but these errors were encountered: