+ 1

AI Project

How do I integrate AI into any Python project if I have intermediate Python level skills and non collegial level math?

27th Oct 2024, 8:00 PM
Luis A Diaz Escobar
Luis A Diaz Escobar - avatar
2 Respuestas
+ 3
If you mean a large language model like ChatGPT, you can find instructions on their website. You’ll need to sign up, get an API key, and they have sample code available. If you mean machine learning or something else, let us know.
27th Oct 2024, 8:13 PM
Jerry Hobby
Jerry Hobby - avatar
+ 2
The math is only required if you plan to redesign new systems. Even if you are building your own model from scratch, it is not really required, since you can follow equations and replicate them in code, without necessarily understanding the inner workings of the equation (although understanding would be an asset). regarding: how do I integrate AI? Depending on what you are going for, you can use an API such as what the other answer suggests. This would be the simplest approach to having a good model working with your code. Or, you can use for example, sklearn to create a simple model like a random Forest to apply a prediction on some data. You can check some tutorials on that, but training is required Other Python libraries are tensorflow/keras and Pytorch that are commonly used in machine learning. There's also many pre-trained models you can find online. These don't require training, although be sure that the task they were trained on is relevant to what you are trying to do!
31st Oct 2024, 4:37 AM
Rrestoring faith
Rrestoring faith - avatar