How can I save larger amount of data on client machine in JavaScript?

Viewed 14

I'm pretty new to js, and I started working on a machine learning project (without a database), and I want to store the brain on the client machine. So they could continue training their brain after returning to the page.

I tried cookies, but the data is too large (It can go up to half a gigabyte).

So I'm trying to find a way to keep the brain on the client. If it helps the brain is basically an array of floats.

1 Answers

Array of floats need to be saved in a file and you might need to create your own structure suggest to use xml file format

Related