Edited, memorised or added to reading queue

on 25-Jul-2025 (Fri)

Do you want BuboFlash to help you learning these things? Click here to log in or create user.

Flashcard 7717529718028

Tags
#tensorflow #tensorflow-certificate
Question

# Get the patterns of a layer in our network

weights, [...] = model_35.layers[1].get_weights()

Answer
biases

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

Parent (intermediate) annotation

Open it
# Get the patterns of a layer in our network weights, biases = model_35.layers[1].get_weights()

Original toplevel document

TfC_02_classification-PART_2
tant: This time there is a problem with loss function. In case of categorical_crossentropy the labels have to be one-hot encoded In case of labels as integeres use SparseCategoricalCrossentropy <span># Get the patterns of a layer in our network weights, biases = model_35.layers[1].get_weights() <span>