Python tensorflow.python.training.training_ops.sparse_apply_adagrad_da() Examples
The following are 5
code examples of tensorflow.python.training.training_ops.sparse_apply_adagrad_da().
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example.
You may also want to check out all available functions/classes of the module
tensorflow.python.training.training_ops
, or try the search function
.
Example #1
Source File: adagrad_da.py From lambda-packs with MIT License | 6 votes |
def _apply_sparse(self, grad, var): g_acc = self.get_slot(var, "gradient_accumulator") gg_acc = self.get_slot(var, "gradient_squared_accumulator") # Performance optimization so that worker creates a copy of the global step # to avoid overloading the parameter server holding the global step. with ops.device(grad[0].device): global_step = array_ops.identity(self._global_step) + 1 return training_ops.sparse_apply_adagrad_da( var, g_acc, gg_acc, grad.values, grad.indices, math_ops.cast(self._learning_rate_tensor, var.dtype.base_dtype), math_ops.cast(self._l1_regularization_strength, var.dtype.base_dtype), math_ops.cast(self._l2_regularization_strength, var.dtype.base_dtype), global_step, use_locking=self._use_locking)
Example #2
Source File: adagrad_da.py From auto-alt-text-lambda-api with MIT License | 6 votes |
def _apply_sparse(self, grad, var): g_acc = self.get_slot(var, "gradient_accumulator") gg_acc = self.get_slot(var, "gradient_squared_accumulator") # Performance optimization so that worker creates a copy of the global step # to avoid overloading the parameter server holding the global step. with ops.device(grad[0].device): global_step = array_ops.identity(self._global_step) + 1 return training_ops.sparse_apply_adagrad_da( var, g_acc, gg_acc, grad.values, grad.indices, math_ops.cast(self._learning_rate_tensor, var.dtype.base_dtype), math_ops.cast(self._l1_regularization_strength, var.dtype.base_dtype), math_ops.cast(self._l2_regularization_strength, var.dtype.base_dtype), global_step, use_locking=self._use_locking)
Example #3
Source File: adagrad_da.py From deep_image_model with Apache License 2.0 | 6 votes |
def _apply_sparse(self, grad, var): g_acc = self.get_slot(var, "gradient_accumulator") gg_acc = self.get_slot(var, "gradient_squared_accumulator") # Performance optimization so that worker creates a copy of the global step # to avoid overloading the parameter server holding the global step. with ops.device(grad[0].device): global_step = array_ops.identity(self._global_step) + 1 return training_ops.sparse_apply_adagrad_da( var, g_acc, gg_acc, grad.values, grad.indices, math_ops.cast(self._learning_rate_tensor, var.dtype.base_dtype), math_ops.cast(self._l1_regularization_strength, var.dtype.base_dtype), math_ops.cast(self._l2_regularization_strength, var.dtype.base_dtype), global_step, use_locking=self._use_locking)
Example #4
Source File: adagrad_da.py From Serverless-Deep-Learning-with-TensorFlow-and-AWS-Lambda with MIT License | 6 votes |
def _apply_sparse(self, grad, var): g_acc = self.get_slot(var, "gradient_accumulator") gg_acc = self.get_slot(var, "gradient_squared_accumulator") with ops.device(var.device): global_step = array_ops.identity(self._global_step_on_worker) return training_ops.sparse_apply_adagrad_da( var, g_acc, gg_acc, grad.values, grad.indices, math_ops.cast(self._learning_rate_tensor, var.dtype.base_dtype), math_ops.cast(self._l1_regularization_strength, var.dtype.base_dtype), math_ops.cast(self._l2_regularization_strength, var.dtype.base_dtype), global_step, use_locking=self._use_locking)
Example #5
Source File: adagrad_da.py From keras-lambda with MIT License | 6 votes |
def _apply_sparse(self, grad, var): g_acc = self.get_slot(var, "gradient_accumulator") gg_acc = self.get_slot(var, "gradient_squared_accumulator") # Performance optimization so that worker creates a copy of the global step # to avoid overloading the parameter server holding the global step. with ops.device(grad[0].device): global_step = array_ops.identity(self._global_step) + 1 return training_ops.sparse_apply_adagrad_da( var, g_acc, gg_acc, grad.values, grad.indices, math_ops.cast(self._learning_rate_tensor, var.dtype.base_dtype), math_ops.cast(self._l1_regularization_strength, var.dtype.base_dtype), math_ops.cast(self._l2_regularization_strength, var.dtype.base_dtype), global_step, use_locking=self._use_locking)