(params,
ids,
values,
partition_strategy='mod',
name=None)
| 59 | |
| 60 | |
| 61 | def embedding_add(params, |
| 62 | ids, |
| 63 | values, |
| 64 | partition_strategy='mod', |
| 65 | name=None): |
| 66 | return embedding_update(params, ids, values, |
| 67 | partition_strategy=partition_strategy, |
| 68 | func=tf.scatter_add, name=name) |
nothing calls this directly
no test coverage detected