Goh Jia Yi, Jesa

Results 21 comments of Goh Jia Yi, Jesa

I encountered this as well and was able to run it by removing contrib. Instead of `self.interpreter = tf.contrib.lite.Interpreter(model_path=self.model_path)` I have `self.interpreter = tf.lite.Interpreter(model_path=self.model_path)`.

I think that it is possible by training the model with data for good and bad situps. It will be hard though because of the similarity between good/bad posture and...

@timtensor Sure, reach me via contact methods linked on my profile. Cheers!

From my understanding, I believe that you're right. I managed to preprocess my images with [trt_pose](https://github.com/NVIDIA-AI-IOT/trt_pose) after modifying and merging codes from _transformer.py_ and _preprocess.py_. The output was a .csv...

Hi, just an update which may help you. In _iva.py_ there is a variable WRITE2CSV and from there, you can tweak the code to process training videos and save the...

Sharing the codes I've used to generate the csv data on a Google Drive link [here](https://drive.google.com/file/d/1a-atdrizuk5x_0c_p1MSA_DhPTeFA7_h/view?usp=sharing). Note that I've used a 36 point pose estimation library instead so you might...

@aidynabirov You'll have to install the [trt_pose](https://github.com/NVIDIA-AI-IOT/trt_pose) dependency as indicated in the README. Not too sure what device you're working on but I've previously used a NVIDIA Jetson Nano.

@aidynabirov I can't really recall given that it was quite some time back and I'm no longer using my Jetson Nano.. I can't advise you on this one!

@aidynabirov I would actually recommend you to go onto StackOverflow. It definitely looks like a generic error that the json can't be read rather than a project specific issue. You...

Hi, I am currently working on action recognition using my own dataset as well on a Jetson Nano. As mentioned in #28, I believe that a different preprocess method is...