Home > Machine Learning 101 > Quizzes > PyBrain Practice Test Questions
PyBrain Practice Test Questions
Fast practice, instant feedback. Timer auto-submits when time’s up.
Avg score: 59% Most missed: “____ function clears the dataset.”

PyBrain is a modular, open source Machine Learning Library for Python. PyBrain is a short form of Python-Based Reinforcement Learning, Artificial Intelligence, and Neural Network. In PyBrain, networks are connected using connections. First, the new network is created, and then it is analyzed.

PyBrain Practice Test Questions
Time left 00:00
25 Questions

1. Which of the following package should be added so that we can utilize the dataset?
2. Does PyBrain support neural networks?
3. What is trained data?
4. In PyBrain, ____ is the act of introducing a penalty term into the error function to prevent overfitting.
5. Which algorithm Pybrain does not support?
6. Can you work with.csv files to import datasets in Pybrain?
7. In PyBrain, a ____ is a computational component that processes inputs, generates outputs and executes computations.
8. Which of the following is needed to be imported in Pybrain to create a feedforward network?
9. Which of the following Supervised dataset method will create a new sample from the input and target?
10. Does Pybrain integrates with other Python libraries/packages?
11. To set the bias term for a neuron in PyBrain, which method is utilized?
12. Which of the following is used to train the module until it converges on the dataset?
13. What do you mean by Total Error?
14. A network is made up of modules that are linked together through ____.
15. ____ Adds the module given to the network and marks it as an input module.
16. In PyBrain, ____ technique is used to assess how well a neural network performs by breaking the dataset into a number of subgroups and training the network on each subset separately.
17. ____ are networks that have input and output buffers.
18. Which API Adds a connection to the network?
19. Does connection work exactly similarly to a layer?
20. What is the difference between Recurrent Networks and Feed Forward Networks?
21. ____ Adds the module to the network and mark it as an output module.
22. In PyBrain, which of the following term refers to the process of computing a neuron's output depending on its inputs and weights?
23. How many parameters does the _forwardImplementation() function accepts?
24. In which type of dataset each sample is assigned a label from a limited range of categories?
25. What is MDP?