senemaktas
senemaktas
> Hi, > > Great work with time series, congrats! > > It is a question instead an issue, i'm working in a multivariate time series classification problem, the dataset...
Hi @johannfaouzi I have made a dataset (3 inputs), which are 3 signals. The red marks in the graph are the beats (truth value: marked 0 or 1 to indicate...
My goal is to provide an output estimation by examining the values of 3 signals in a specific time period. Because these signals are actually interdependent. I think this is...
Thank you for your suggestion. We try different techniques and methods as possible and try to get successful results. It may be helpful to take a signal in the form...
> Can you please Add Turkish ? Hey good match , I was looking that very long time ....
> On ubuntu 20.04.2 LTS, CPU only, built from source, I checked and make sure BUILD_PYHTON is flagged, openpose.bin works just fine. > > If (from openpose dir) I run...
change generate_detections.py file in this part with below code , also import .: `import tensorflow.compat.v1 as tf` ``` class ImageEncoder(object): def __init__(self, checkpoint_filename, input_name="images", output_name="features"): self.session = tf.Session() with tf.gfile.GFile(checkpoint_filename,...
Thank you very much for your response. Replace that **s['time_motion'] = pd.to_datetime(s['time_motion'], format='%Y-%m-%d')** -> this worked **s.time_motion = pd.to_datetime(s.time_motion)** and i got this output -> 0 1970-01-01 00:00:00.000000000 1 1970-01-01...
Go to inside **object_tracker.py** and try to get values from that part -> ``` # draw bbox on screen color = colors[int(track.track_id) % len(colors)] color = [i * 255 for...
> I'm hoping this post won't get deleted. I've spent hours reading through past issues with the same problem I'm facing, and I cannot seem to find a solid solution...