-
Which kind of agent environment is a crossword puzzle?
-
Which is not a type of machine learning?
-
Which is a challenge of deep neural networks?
-
What is Q-value?
-
Which of the following programming language is considered to be most useful in developing artificial intelligence algorithms?
-
Which best describes reinforcement machine learning?
-
Select the typical implementations of artificial intelligence.
-
What is likely to be returned with the following command?
mdptoolbox.util.getSpan(array)
-
You have the following Keras code:
- tf.keras.layers.Dense(
- units,
- activation=None,
- use_bias=True,
- kernel_initializer=“glorot_uniform”,
- bias_initializer=“zeros”,
- kernel_regularizer=None,
- bias_regularizer=None,
- activity_regularizer=None,
- kernel_constraint=None,
- bias_constraint=None,
- **kwargs
- )
Which of the following core layer is being used?
-
You need to create a datasource in Amazon ML. Which type of input data should you create first?
-
For the Estimator stage, which method is called to produce a Transformer, which becomes the part of the fitted pipeline?
-
In the given code, which type of layer is being defined?
- tf.keras.layers.MazPooling1D(
- pool_size=2, strides=None, padding=“valid”, data_format=“channels_last”, **kwargs
- )