how to convert to pure c++ code and how do i do classification prediction on my project? am new

2023-01-24 Thread auxym
As a further note: nim's generated code is not supposed to human-readable. Nim treats c/c++ like gcc treats assembly: as a backend machine language.

how to convert to pure c++ code and how do i do classification prediction on my project? am new

2023-01-23 Thread sls1005
nim cpp --compileOnly --nimcache:. file.nim Run generates the C++ files in the current directory (suffixed with `.nim.cpp`). To compile them you'll need `nimbase.h` which can be found in the path where Nim's installed.

how to convert to pure c++ code and how do i do classification prediction on my project? am new

2023-01-23 Thread 0x0000ffguy
Hi, what do you mean convert to pure C++ code? Do you mean Nim -> C++ translation? `nim cpp .nim` Then have a look at if you want to see the generated C++ As for your ML related question, you have several options:

how to convert to pure c++ code and how do i do classification prediction on my project? am new

2023-01-22 Thread yeabsira
how to convert to pure c++ code and how do i do classification prediction on my project? am new i want to see the cpp code and another question is i want to use classification or another just like pandas lib on python, any panda like lib or exactly it for nim please?