For questions about the C programming language in the context of artificial intelligence.
Questions tagged [c]
4 questions
16
votes
1 answer
What language is the GPT-3 engine written in?
I know that the API is python based, but what's the gpt-3 engine written in mostly? C? C++? I'm having some trouble finding this info.
Otherness
- 285
- 1
- 2
- 6
6
votes
2 answers
How to write a C decompiler using AI?
I would like to learn more about whether it is possible and how to write a program that decompiles executable binary (an object file) to the C source. I'm not asking exactly 'how', but rather how this can be achieved.
Given the following hello.c…
kenorb
- 10,525
- 6
- 45
- 95
2
votes
2 answers
integrating machine learning models on microcontroller
i converted my machine learning model (random forest regressor) into c code using 'emlearn' library but the size of .c file is 3.8 MB which is incompatible for microcontrollers. so i want my c code in KBs what should i do?
Sakshi Sutar
- 21
- 1
0
votes
1 answer
How to optimise a FNN/MLP network with MSE (positive only loss) in C
I can create a FNN/MLP network in C but only g-p loss works, where g = ground truth and p = predicted.
What I don't understand is how MSE a positive only loss value can train a back propagation network. Positive only losses result in weights only…
user81637