Closed bpmweel closed 3 years ago
What is sparse deep learning? Only one example available?
How do I search for pre-trained models or existing architectures?
Why is this training code faster
history = model.fit(X_train, y_train, epochs=100, use_multiprocessing=False)
then this one?
history = model.fit(X_train, y_train, epochs=100, use_multiprocessing=True)
threading
is used. You can see on your system monitor all the cores are used. TensorFlow is taking care of parallelizing your problem in the most efficient way. Probably this argument is left for compatibility only.Is it possible to get feature importance?
Another question that often pops up: How many training data is needed for deep learning?
For each episode we should add callouts on expected questions.
Some questions we will want to postpone to a later point in the lesson. Others will often come up and can be answered immediately.
@florian-huber can you add a list of questions we had in our workshop to this issue?