(self)
| 195 | ) |
| 196 | |
| 197 | def test_init(self): |
| 198 | x = jnp.array([1.0, 2.0]).reshape((1, 1, 2)) # TODO(bug): need reshape due to error |
| 199 | self.model.init({"params": self.rng, "dropout": self.rng}, x) |
| 200 | |
| 201 | |
| 202 | class DeepSeekRoutingTest(unittest.TestCase): |