### QMIX: No backprop on the (mixer) hypernetworks? <!-- It seems that the backprop is just running on the Q-network and not on the hypernetworks. I believe it should also include mixer parameters. --> ### Source code / logs # Setup optimizer self.params = list(self.model.parameters()) self.loss = QMixLoss(self.model, self.target_model, self.mixer, self.target_mixer, self.n_agents, self.n_actions, self.config["double_q"], self.config["gamma"])