Brain.js: How to normalize

Created on 6 Jul 2020  路  5Comments  路  Source: BrainJS/brain.js

Hi, is it possible to normalize dataset of dynamic ids?
Every day It鈥檒l get new ids 1567, 1568, ... so I can鈥檛 get final Id.
I thought to normalize like this 100/1567 but don鈥檛 know if this correct way

question

All 5 comments

Issue-Label Bot is automatically applying the label question to this issue, with a confidence of 0.87. Please mark this comment with :thumbsup: or :thumbsdown: to give our bot feedback!

Links: app homepage, dashboard and code for this bot.

You can take some very large and non-reachable (in practice) ID as "1" and divide all IDs by this value.

For example, 100000000. So you'll be normalizing your real IDs like 1567/10000000.

You can take some very large and non-reachable (in practice) ID as "1" and divide all IDs by this value.

For example, 100000000. So you'll be normalizing your real IDs like 1567/10000000.

Will Brain js work fine in this way?

Depends on definition of "fine" :-)

If it is an ID if will not be effective in the input. But usually this method works fine. (get large value in data set and divide all values)

Was this page helpful?
0 / 5 - 0 ratings

Related issues

ximik753 picture ximik753  路  3Comments

dan-ryan picture dan-ryan  路  4Comments

AkashGutha picture AkashGutha  路  5Comments

shyamaprasadpatra picture shyamaprasadpatra  路  4Comments

TomDobbelaere picture TomDobbelaere  路  6Comments