9
plb-dev
7y

I want to make an AI bot from scratch. Where do I start? Which languages should I know? What IDE should I use?

Comments
  • 6
    Google.com
  • 0
    If AI bot as in chat bot then try this
    https://www.pandorabots.com/
    It surely will help you start
  • 1
    welcome to devRant!
  • 0
  • 2
    Localhost. Python. Vim.
  • 1
    Machine learning.
  • 1
    Maybe start with something simple?...
  • 2
    You should start with Neural Networks (Machine Learning).
    You should know Python.
    You can use any IDE wich supports Python.
  • 1
    - www.google.com
    - Language X
    - IDE Y that supports language X
  • 1
    AI is not a language or a framework that you can pick up, read the documentation and start coding. It is a concept that is built upon programming and mathematics. There are 2 routes you could choose:

    1) Start by freshening up your high school mathematics knowledge: Probability, Statistics, Basic algebra, Matrices.
    Move on to the very basics of fundamental calculus.
    Start by learning the most basic machine learning algorithms: Linear regression, Logistic regression, Gradient descent algo. Move on to neural networks.
    You could enrol for a MOOC on coursera or udemy, if you have the time to do so.
    Then pick up python, learn numpy and pandas.
    Then model an input-output flow, design an AI model, find a dataset to train your model, train your model, test your model.
    Your IDE could be anything from vim to atom to jupyter notebook

    2) Skip all the above bullshit, go to youtube and search for "Siraj Rawal". He'll teach you to create an AI based chatbot in 10 mins using python and TensorFlow.
Add Comment