Which language should I use for Artificial intelligence on web projects

前端 未结 9 1573
我在风中等你
我在风中等你 2021-02-09 15:02

I have to do one project for my thesis involving Artificial intelligence, collaborative filtering and machine learning methods.

I only know PHP/mysq/JS, and there is not

9条回答
  •  轻奢々
    轻奢々 (楼主)
    2021-02-09 16:00

    You can use any language you like, as long as the server it's hosted on supports it. You can use HTML/JS as the user interface, and request results from the server with AJAX requests.

    What answers those requests would be your AI code, and that can be anything you want. PHP makes it really simple to answer AJAX requests. Since you are already familiar with it I would recommend that, although if your AI is very sophisticated you may want to go with something a little more efficient, like C/C++.

提交回复
热议问题