2024-Q4-AI-M 13. Exam

 

1. Task

Choose one correct answer.

  1. Which statement is correct?

    1. Artificial intelligence nowadays is mostly a complex computer program that mainly consists of programming rules

    2. Artificial intelligence nowadays is mostly a mathematical model that mainly consists of mathematical equations

    3. Artificial intelligence nowadays is mostly a complex computer program that mainly consists of expert knowledge

  2. What does artificial intelligence learn from?

    1. Rules created by experts

    2. Data

    3. Rules created by a programmer

  3. Which of the following examples could be input data in an artificial intelligence model?

    1. The probability that a client will refuse the service

    2. How many times a client has logged into the system in the last 10 days

    3. The model’s weight values

  4. Which of the following examples could be output data in an artificial intelligence model?

    1. The probability that a client will refuse the service

    2. How many times a client has logged into the system in the last 10 days

    3. The model’s weight values

  5. To predict a product's price, what type of model is needed?

    1. Regression

    2. Classification

    3. Enumeration

  6. To predict whether a client will refuse the service, what type of model is needed?

    1. Regression

    2. Classification

    3. Enumeration

  7. In which environment is artificial intelligence usually trained?

    1. Matlab

    2. Python

    3. Power BI

  8. What data sets are needed to train a model that could be used in production?

    1. Training set

    2. Test set

    3. Validation set

    4. Training, Test, Validation sets (Train, Test, Validation)

  9. Which factor most affects the model's accuracy?

    1. Training rate

    2. Unbalanced sample count in each class in the training dataset

    3. Sample variety in the dataset

  10. For which application would artificial intelligence not be effective?

    1. Writing text advertisements

    2. Password and username verification when logging into websites

    3. Creating coloring books for children

    4. Music composition

  11. How similar is the artificial deep neural network model to the human natural neural network model?

    1. Almost identical, as evidenced by large language models, image models, and other models

    2. Very similar, because it models biochemical processes as activations are executed

    3. Not similar, because the artificial neural network model is mathematical and executes differently from the human natural neural network

  12. Which sequence of actions corresponds to training deep neural network models?

    1. Data normalization, splitting data into sets, model creation, loss function selection, additional metric selection, test cycle, validation cycle, epochs, training cycle, backpropagation

    2. Data normalization, splitting data into sets, model creation, epochs, training cycle, backpropagation, loss function selection, additional metric selection, test cycle, validation cycle

    3. Data normalization, splitting data into sets, model creation, loss function selection, additional metric selection, epochs, training cycle, backpropagation, test cycle, validation cycle

  13. What does an epoch mean in the training process of artificial neural networks?

    1. All samples in the training set are considered and there can be many epochs in one training process

    2. A data normalization method that removes extreme values

    3. All samples in the training set are considered and there can be only one epoch in the training process

    4. The validation samples are considered after training

  14. If the numerical value of the MSE loss function is 0.5, then after one training step the numerical value will most likely be:

    1. 0.6

    2. 0.5

    3. 0.4

  15. RNN is usually used to:

    1. Recognize several objects in an image

    2. Predict stock prices from market data

    3. Predict car prices from an advertisement

  16. A ConvNet without data augmentation during training is capable of recognizing:

    1. Objects moved within the image

    2. Objects moved and rotated in the image

    3. Objects moved, enlarged, and rotated in the image

  17. The weights W of a pre-trained GRU at each time step:

    1. are different

    2. are the same

    3. are not specified

  18. The Transformer model is based on:

    1. The hidden variable vector htht with memory

    2. The attention mechanism

    3. Both

  19. Which component is the most important in ChatGPT prompt engineering to achieve a quality answer?

    1. Formulating the prompt as short and precise as possible

    2. Formulating the prompt as long and broad as possible

    3. Copying facts into the prompt

  20. What will happen if you continue to ask several questions on different topics one after the other in the same ChatGPT session?

    1. The language model will start copying content from previous questions into later answers

    2. It does not affect the language model's performance

    3. The language model will be overwhelmed and won't know what to answer

  21. How does a Denoising Auto-Encoder (DAE) differ from a Variational Auto-Encoder (VAE)?

    1. They differ in input-output data

    2. They differ in the loss function

    3. They differ in that VAE is not trained with SGD (Stochastic Gradient Descent), but uses Variational Inference for training

  22. How do UNet and YOLO models differ?

    1. UNet performs semantic segmentation, while YOLO performs object recognition

    2. UNet performs semantic segmentation and can recognize each object separately, but YOLO performs object recognition where all objects of one class are recognized together

    3. UNet performs instance segmentation, while YOLO performs object recognition

  23. How does DenseNet differ from ResNet?

    1. ResNet has one skip connection per block using addition, but DenseNet has one skip connection using multiplication

    2. ResNet has one skip connection per block using multiplication, but DenseNet has multiple skip connections connecting several layers forward using multiplication

    3. ResNet has one skip connection per block using addition, but DenseNet has multiple skip connections connecting several layers forward using addition

  24. How to encode positional embeddings in a Transformer model?

    1. Using a cosine-sine hard-coded embedding table

    2. Using a trainable embedding table

    3. Both ways

  25. What is the dot product of matrices?

    1. A mathematical operation that yields a perpendicular vector or matrix between input vectors

    2. A mathematical operation that performs matrix transformation using multiplication in any dimensions

    3. An algorithm that uses addition and multiplication in the last 2 dimensions in any matrices

  26. What is a Linear layer or function in artificial neural networks?

    1. The vector product of a matrix

    2. The scalar multiplication of a matrix and a bias by addition

    3. The linear regression algorithm

  27. Why is batch normalization needed before the activation function?

    1. To prevent overfitting

    2. To prevent dead neurons

    3. To prevent bias towards one class in predictions

     

2. Task

List and describe all necessary steps if you were to train a cat and dog photo classifier using PyTorch. You have been given 800 photos of cats and 200 photos of dogs. You cannot use a pre-trained model. You need to create, train, and deploy the model in production, where it will be used to distinguish between photos of cats and dogs. If you mention keywords like “model,” “loss function,” etc., you should use the exact name and description for each “model,” “loss function,” etc., that you will use for this task.

 

3. Task

Circle the mistakes and write down how they should be correct. Find 10 mistakes