| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| """Tests for optax.transforms._masking.""" |
|
|
| import copy |
| from typing import cast |
|
|
| from absl.testing import absltest |
| from absl.testing import parameterized |
|
|
| import chex |
| from jax import tree_util as jtu |
| import jax.numpy as jnp |
| import numpy as np |
|
|
| from optax._src import alias |
| from optax._src import base |
| from optax._src import combine |
| from optax._src import transform |
| from optax._src import update |
| from optax.transforms import _masking |
| from optax.tree_utils import _state_utils |
|
|
|
|
| def _build_sgd(): |
| return alias.sgd(1.) |
|
|
|
|
| def _build_stateful_sgd(): |
| |
| |
| |
| return alias.sgd(1., momentum=0.) |
|
|
|
|
| def _build_sgd_extra_args(): |
|
|
| def init_fn(params): |
| del params |
| return {'foo': 1} |
|
|
| def update_fn(grads, state, params=None, *, foo=None, **extra_args): |
| del extra_args, foo, params |
| return grads, state |
|
|
| t = base.GradientTransformationExtraArgs(init_fn, update_fn) |
| return combine.chain(_build_sgd(), t) |
|
|
|
|
| class MaskedTest(chex.TestCase): |
| """Tests for the masked wrapper.""" |
|
|
| def test_tree_map_params(self): |
| params = { |
| 'a': { |
| 'b': (jnp.zeros((1, 2)), jnp.zeros((2, 2))), |
| }, |
| 'c': { |
| 'd': jnp.zeros((1, 2)), |
| 'e': (jnp.zeros((1, 2)), jnp.zeros((1, 2))), |
| }, |
| } |
|
|
| sharding_axes = { |
| 'a': { |
| 'b': (1, 2), |
| }, |
| 'c': { |
| 'd': 1, |
| 'e': (1, 2), |
| }, |
| } |
|
|
| mask = { |
| 'a': { |
| 'b': (True, False), |
| }, |
| 'c': { |
| 'd': True, |
| 'e': (False, True), |
| }, |
| } |
|
|
| expected = { |
| 'a': { |
| 'b': (jnp.ones((1, 2)), jnp.zeros((2, 2))), |
| }, |
| 'c': { |
| 'd': jnp.ones((1, 2)), |
| 'e': (jnp.ones((1, 2)), jnp.ones((1, 2))), |
| }, |
| } |
|
|
| def init_fn(params): |
| return {'count': 1, 'params': params, 'params_copy': params} |
|
|
| def update_fn(updates, state, params=None): |
| del params |
| return updates, state |
|
|
| inner = base.GradientTransformation(init_fn, update_fn) |
| masked = _masking.masked(inner, mask) |
|
|
| def increment_dim_1(v): |
| return v + 1 if v.shape[0] == 1 else v |
|
|
| |
| |
| with self.subTest('inner'): |
| state = inner.init(params) |
| result = _state_utils.tree_map_params(inner, increment_dim_1, state) |
| chex.assert_trees_all_equal(result, inner.init(expected)) |
|
|
| with self.subTest('masked'): |
| state = masked.init(params) |
| result = _state_utils.tree_map_params(masked, increment_dim_1, state) |
| chex.assert_trees_all_equal(result, masked.init(expected)) |
|
|
| with self.subTest('masked_with_extra_args'): |
| |
| |
| |
| |
|
|
| |
| |
| |
| new_state = _state_utils.tree_map_params( |
| masked, |
| lambda p, axis: None if isinstance(p, _masking.MaskedNode) else axis, |
| state, |
| sharding_axes, |
| is_leaf=lambda v: isinstance(v, _masking.MaskedNode), |
| transform_non_params=lambda v: None, |
| ) |
|
|
| sharded_params = { |
| 'a': { |
| 'b': (1, None), |
| }, |
| 'c': { |
| 'd': 1, |
| 'e': (None, 2), |
| }, |
| } |
|
|
| |
| new_state = cast(_masking.MaskedState, new_state) |
|
|
| chex.assert_equal(None, new_state.inner_state['count']) |
| chex.assert_equal(sharded_params, new_state.inner_state['params']) |
| chex.assert_equal(sharded_params, new_state.inner_state['params_copy']) |
|
|
| @chex.all_variants |
| @parameterized.named_parameters( |
| ('sgd', _build_sgd, False), |
| ('stateful_sgd', _build_stateful_sgd, False), |
| ('sgd_w_mask_fn', _build_sgd, True), |
| ('stateful_sgd_w_mask_fn', _build_stateful_sgd, True), |
| ) |
| def test_masked(self, opt_builder, use_fn): |
| mask = {'a': True, |
| 'b': [False, True], |
| 'c': {'d': True, 'e': (False, True)}} |
| mask_arg = lambda _: mask if use_fn else mask |
| params = {'a': 1., 'b': [2., 3.], 'c': {'d': 4., 'e': (5., 6.)}} |
| params = jtu.tree_map(jnp.asarray, params) |
| input_updates = jtu.tree_map(lambda x: x/10., params) |
|
|
| |
| def masked_negate(updates): |
| return jtu.tree_map( |
| lambda upd, m: -upd if m else upd, updates, mask) |
| correct_updates = masked_negate(input_updates) |
|
|
| init_fn, update_fn = _masking.masked(opt_builder(), mask_arg) |
| update_fn = self.variant(update_fn) |
| state = self.variant(init_fn)(params) |
|
|
| with self.subTest('tree_map_params'): |
| result = _state_utils.tree_map_params(init_fn, lambda v: v, state) |
| chex.assert_trees_all_equal_structs(result, state) |
|
|
| updates, state = update_fn(input_updates, state, params) |
| chex.assert_trees_all_close(updates, correct_updates) |
|
|
| |
| correct_updates = masked_negate(correct_updates) |
| updates, _ = update_fn(updates, state) |
| chex.assert_trees_all_close(updates, correct_updates) |
|
|
| @chex.all_variants |
| @parameterized.named_parameters( |
| ('sgd', _build_sgd), |
| ('stateful_sgd', _build_stateful_sgd), |
| ) |
| def test_prefix_mask(self, opt_builder): |
| """Test when the mask is a prefix of the updates PyTree.""" |
| mask = {'a': True, 'b': False, 'c': {'d': False, 'e': True}} |
| params = {'a': 1., 'b': {'f': 2.}, 'c': {'d': 3., 'e': ([4., 5.], 6.)}} |
| params = jtu.tree_map(jnp.asarray, params) |
| input_updates = jtu.tree_map(lambda x: x/10., params) |
|
|
| |
| def _masked_sgd_on_updates(m, upd): |
| return jtu.tree_map(lambda x: -x, upd) if m else upd |
| correct_updates = jtu.tree_map( |
| _masked_sgd_on_updates, mask, input_updates) |
|
|
| init_fn, update_fn = _masking.masked(opt_builder(), mask) |
| update_fn = self.variant(update_fn) |
| state = self.variant(init_fn)(params) |
| updates, state = update_fn(input_updates, state, params) |
| chex.assert_trees_all_close(updates, correct_updates) |
|
|
| |
| correct_updates = jtu.tree_map( |
| _masked_sgd_on_updates, mask, correct_updates) |
| updates, _ = update_fn(updates, state) |
| chex.assert_trees_all_close(updates, correct_updates) |
|
|
| @chex.all_variants |
| def test_update_requires_params(self): |
| weight_decay = 0.1 |
| mask = {'a': True, |
| 'b': [False, True], |
| 'c': {'d': True, 'e': (False, True)}} |
| params = {'a': 1., 'b': [2., 3.], 'c': {'d': 4., 'e': (5., 6.)}} |
| params = jtu.tree_map(jnp.asarray, params) |
| input_updates = jtu.tree_map(lambda x: x/10., params) |
|
|
| correct_updates = jtu.tree_map( |
| lambda m, u, p: u + weight_decay * p if m else u, |
| mask, input_updates, params) |
|
|
| init_fn, update_fn = _masking.masked( |
| transform.add_decayed_weights(weight_decay), mask) |
| update_fn = self.variant(update_fn) |
|
|
| state = self.variant(init_fn)(params) |
| updates, state = update_fn(input_updates, state, params) |
| chex.assert_trees_all_close(updates, correct_updates) |
|
|
| params = update.apply_updates(params, updates) |
|
|
| |
| new_correct_updates = jtu.tree_map( |
| lambda m, u, p: u + weight_decay * p if m else u, |
| mask, correct_updates, params) |
| updates, _ = update_fn(correct_updates, state, params) |
| chex.assert_trees_all_close(updates, new_correct_updates) |
|
|
| @parameterized.parameters(list, tuple, dict) |
| def test_empty(self, container): |
| init_fn, update_fn = _masking.masked(_build_sgd(), container()) |
| update_fn(container(), init_fn(container())) |
|
|
| @parameterized.parameters( |
| (False, False), (False, True), (True, False), (True, True)) |
| def test_tree_mismatch_fails(self, extra_key_in_mask, use_fn): |
| mask = {'a': True, |
| 'b': [False, True], |
| 'c': {'d': True, 'e': (False, True)}} |
| mask_arg = lambda _: mask if use_fn else mask |
| params = {'a': 1., 'b': [2., 3.], 'c': {'d': 4., 'e': (5., 6.)}} |
| params = jtu.tree_map(jnp.asarray, params) |
|
|
| if extra_key_in_mask: |
| mask['c']['extra'] = True |
| else: |
| params['c']['extra'] = 7 |
|
|
| init_fn = _masking.masked(_build_sgd(), mask_arg)[0] |
| with self.assertRaises(ValueError): |
| init_fn(params) |
|
|
| @chex.all_variants |
| def test_mask_fn(self): |
| params = {'a': jnp.ones((1, 2)), 'b': (jnp.ones((1,)), np.ones((1, 2, 3)))} |
| mask_fn = lambda p: jtu.tree_map(lambda x: x.ndim > 1, p) |
| init_fn, update_fn = _masking.masked( |
| transform.add_decayed_weights(0.1), mask_fn) |
| update_fn = self.variant(update_fn) |
|
|
| state = self.variant(init_fn)(params) |
| grads = jtu.tree_map(lambda x: x*2, params) |
| updates, _ = update_fn(grads, state, params) |
| np.testing.assert_allclose(updates['a'], grads['a'] + 0.1*params['a']) |
| np.testing.assert_allclose(updates['b'][0], grads['b'][0]) |
| np.testing.assert_allclose(updates['b'][1], |
| grads['b'][1] + 0.1*params['b'][1]) |
|
|
| @chex.all_variants |
| @parameterized.named_parameters( |
| ('sgd', _build_sgd), |
| ('stateful_sgd', _build_stateful_sgd), |
| ) |
| def test_nested_mask(self, opt_builder): |
| |
| params = {'linear_1': {'w': jnp.zeros((1, 1)), 'b': jnp.zeros(1)}, |
| 'linear_2': {'w': jnp.zeros((1, 2)), 'b': jnp.zeros(2)}, |
| 'linear_3': {'w': jnp.zeros((2, 3)), 'b': jnp.zeros(3)}} |
|
|
| outer_mask = lambda p: jtu.tree_map(lambda x: x.ndim > 1, p) |
| inner_mask = jtu.tree_map(lambda _: True, params) |
| inner_mask['linear_2'] = False |
|
|
| inner = _masking.masked(opt_builder(), inner_mask) |
| init_fn, update_fn = _masking.masked(inner, outer_mask) |
|
|
| input_updates = jtu.tree_map(jnp.ones_like, params) |
| correct_updates = copy.deepcopy(input_updates) |
| correct_updates['linear_1']['w'] *= -1.0 |
| correct_updates['linear_3']['w'] *= -1.0 |
|
|
| state = self.variant(init_fn)(params) |
| updates, _ = self.variant(update_fn)(input_updates, state, params) |
| chex.assert_trees_all_close(updates, correct_updates) |
|
|
| @chex.all_variants |
| def test_masked_state_structure(self): |
| |
| params = {'a': [jnp.ones(1), (jnp.ones(2), jnp.ones(3))], |
| 'b': {'c': jnp.ones(4), 'd': jnp.ones(5)}} |
| mask = {'a': [True, (True, False)], 'b': False} |
| tx = _masking.masked(_build_stateful_sgd(), mask) |
| trace = self.variant(tx.init)(params).inner_state[0].trace |
| expected_trace = { |
| 'a': [jnp.zeros(1), (jnp.zeros(2), _masking.MaskedNode())], |
| 'b': _masking.MaskedNode() |
| } |
| chex.assert_trees_all_equal_structs(trace, expected_trace) |
|
|
|
|
| if __name__ == '__main__': |
| absltest.main() |
|
|