This language model by OpenAI was used as a predecessor to GPT-4.?
GPT-3
This term refers to AI that can outperform humans in almost every field.
artificial general intelligence (AGI)
AI was invented in North Carolina
False
but Airplanes were
Consider the following conditions for a machine learning model to classify an instance as "Spam":
The model works as follows:
If an email contains the word "free" but is from an unknown sender, how would the model classify it?
Given that the email contains the word "free" (Condition 1) but is from an unknown sender (Condition 2 is false), the model would follow the second rule:
So, the email would be classified as "Not Spam".
Genemi
This term refers to the ability of a machine to mimic human intelligence
artificial intelligence
True or False Calculus is used to find the specific weights to minimize value of the loss function in machine learning?
True
Consider the rule in a smart home system:
Which of the following logically follows from this rule?
The temperature is above 25°C. Therefore, the air conditioning must be on.
The air conditioning is on. Therefore, the temperature must be above 25°C.
So, the first statement is the one that logically follows from the rule.
What is the open source large language model developed by Meta?
LLaMA (Large Language Model Meta AI).
This AI field focuses on teaching machines to interpret and understand visual data
Computer Vision
In a clustering algorithm, you are given two points:
Calculate the distance between the two points
5
In a reinforcement learning scenario, an agent is in an environment where it needs to maximize its rewards. The agent can take two possible actions:
Which action should the agent take based on the expected value?
Action 1:
The expected value for Action 1 is calculated as:
Expected Value of Action 1=(.5*10)+(.5*-5)=5-2.5=2.5
Action 2:
The expected value for Action 2 is:
Expected Value of Action 2=5
Conclusion:
Based on the expected values, the agent should take Action 2, as it provides a higher expected reward (5 points) compared to Action 1 (2.5 points).
Which LLM sent U.S Tech stocks crashing this week?
DeepSeek
What is a field of artificial intelligence (AI) focused on enabling computers to understand, interpret, generate, and respond to human language in a way that is both meaningful and useful.
Natural Language Processing
A perceptron receives the following inputs and weights:
Calculate the weighted sum (z) using the formula:
Z = ∑ (input * weight)
3.25
This model architecture introduced by OpenAI excels at generating coherent and context-aware text
GPT
This subset of AI is inspired by the structure and function of the human brain.
neural networks
If a neural network has 3 layers: an input layer with 5 neurons, a hidden layer with 10 neurons, and an output layer with 2 neurons, how many total weights (connections between nuerons) are there if each neuron in one layer is connected to every neuron in the next layer?
70
Connections between input and hidden layer (5*10=50)
Connections between hidden and output layer (10*2=20)
Total Connections = 50+70