Miroslav Tišma
Results
2
comments of
Miroslav Tišma
Oh, I see the problem in my implementation of `get_clusterable_weights` ```python def get_clusterable_weights(self): clusterable_weights = [] for weight in self.trainable_weights: clusterable_weights.append((weight.name, weight.read_value())) return clusterable_weights ``` First problem, return value of...
@wwwind This was just a simple example of the model. What if I have a more complex model which is composed of several layers? How can I add those weights...