HackerTrans
TopNewTrendsCommentsPastAskShowJobs

vhhn

no profile record

comments

vhhn
·há 6 meses·discuss
Me too. Training a neural net of this scale is basically a lossy compression and promting just an interpolation of the data. But explain this to lawyers and courts...
vhhn
·há 6 meses·discuss
Anyone else worries that by contributing to open source software these days one is also digging his/her own grave?
vhhn
·há 8 meses·discuss
Or Linux
vhhn
·ano passado·discuss
There are so many options to emded R in any kind of system. Thanks to the C API, there are connectors for any if the traditional language. There is also RServe and plumber for inter-process interaction. Managing dependencies is also super easy.

My employer is using R to crunch numbers enbeded in a large system based on microservices.

The only thing to keep in mind is that most people writing R are not programmers by trade so it is good to have one person on the project who can refactor their code from time to time.
vhhn
·ano passado·discuss
Latvian? I've always thought OnlyOffice is developed in Russia.
vhhn
·há 2 anos·discuss
Unlike many other languages, R has a native/built-in tabular data structure. So when your data have tabular structure R is by far the best glue for building pipes between external libreries. If the data fits in RAM it literally doesn't have to leave the data.table object throughout the whole pipeline (including all the cleaning and transformations).

The only meaningful alternative I see is Python with maybe Polars or DuckDB.