help me understand ai
help me understand ai, im a philosophy student and want to learn everything about AI from scratch! from where did it start? isnt a simple calculator also AI?
Just learn prompt engineering from youtube and you will understand.
@nair7254 Depends on what AI you are talking about. A calculator is in a sense, but it isn't the type of AI in chatbots, called LLMs or Transformers. I can't explain each type in one response, but chatbots, LLMs, work by turning a sentence into chunks called tokens, turning these into numbers based on their index(when trained, each token is given a number, usually based on closeness to other tokens), and the numbers are fed into something called Attention to connect these tokens to one another(e.g. The Cat Jumped connects Cat to have done Jumped). Then, the FFN, Feed Forward Network, connects this information and the model's trained tensors(the weights, the trained brain of the model), to predict the next token the chatbot would respond. Then, it loops back around until it finishes outputting.
Let me know if I missed something or messed something up