Scikit Learn is Python's go-to open source package for running common AI and machine learning algorithms. Does OpenAI and its product ChatGPT use or rely on Scikit Learn on its back-end at all? If not, what do they use?
Asked
Active
Viewed 1,929 times
1 Answers
6
Based on the limited amount of code in OpenAI's GitHub, one of the primary packages is PyTorch. There is a much smaller amount of scikit-learn code.
Since OpenAI has not released any code for ChatGPT, it is unknown which packages are used in that system.
Brian Spiering
- 20,142
- 2
- 25
- 102
-
How do they make their website or API access and run algorithms on PyTorch in real-time? – user610620 Apr 10 '23 at 05:14
-
My guess is PyTorch's `model.eval()` – Brian Spiering Apr 11 '23 at 16:20
-
Please expand your answer with an example web implementation of `model.eval()`. – user610620 May 01 '23 at 19:57