Google News
logo
PyBrain - Quiz(MCQ)
Which of the following is NOT a method for loading a saved neural network in PyBrain?
A)
load()
B)
import()
C)
loadFromPickle()
D)
All of the above

Correct Answer :   import()


Explanation : While PyBrain does provide methods for loading a saved neural network, such as load() and loadFromPickle(), there is no built-in method called import().

Advertisement