Submitted by snairgit t3_ywu1vf in MachineLearning
snairgit OP t1_iwlnn2v wrote
Reply to comment by nins_ in [P] Thoughts on representing a Real world data by snairgit
Ya true, but it's a bit more than that. I've added an explanation to another comment, adding that below.
My doubt is this: for a row, how to put the velocity and time together for a single feature. For eg: row 1 column 1 would be - 1st out of 8 side -> 1st out of 5 values -> velocity, distance. Here how do I represent (velocity, distance)? Do I keep them as a tuple or as separate adjacent features or any other format? This is exactly where I'm stuck.
My confusion/question is on what could be the right way to put these values together. Do I directly stack them as 80 features like you mentioned or do I adopt another format such that the 2 values (velocity, time) are bundled together like a tuple or a dict or something else? Thanks.
visarga t1_iwlxe03 wrote
About representing your features - I would not feed float values directly to a neural net. I think you either need to discretise the values or to embed them like absolute positional embeddings in transformers. Or try using a SIREN on your float values directly.
snairgit OP t1_iwnzie7 wrote
Okay, thanks. I'll keep that in mind and I'll look into it.
Viewing a single comment thread. View all comments