b7efa1f037f8adc94a28fc421dd7934b63b3043e,geomstats/_backend/tensorflow/__init__.py,,assignment_by_sum,#Any#Any#Any#Any#,279

Before Change


    If a single value is provided, it is assigned at all the indices.
    If a list is given, it must have the same length as indices.
    
    if not isinstance(values, list):
        return _assignment_single_value_by_sum(x, values, indices, axis)

    if not isinstance(indices, list):

After Change


    if _is_boolean(indices):
        indices = [index for index, val in enumerate(indices) if val]

    if tf.rank(values) == 0:
        return _assignment_single_value_by_sum(x, values, indices, axis)

    single_index = not isinstance(indices, list)
    if tf.is_tensor(indices):
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 4

Non-data size: 5

Instances


Project Name: geomstats/geomstats
Commit Name: b7efa1f037f8adc94a28fc421dd7934b63b3043e
Time: 2020-04-22
Author: 62605255+pchauchat@users.noreply.github.com
File Name: geomstats/_backend/tensorflow/__init__.py
Class Name:
Method Name: assignment_by_sum


Project Name: geomstats/geomstats
Commit Name: b7efa1f037f8adc94a28fc421dd7934b63b3043e
Time: 2020-04-22
Author: 62605255+pchauchat@users.noreply.github.com
File Name: geomstats/_backend/tensorflow/__init__.py
Class Name:
Method Name: assignment


Project Name: geomstats/geomstats
Commit Name: 4e904cc50e793112b406f834d7432e766c6a0be4
Time: 2020-04-19
Author: 62605255+pchauchat@users.noreply.github.com
File Name: geomstats/_backend/tensorflow/__init__.py
Class Name:
Method Name: assignment_by_sum


Project Name: geomstats/geomstats
Commit Name: 4e904cc50e793112b406f834d7432e766c6a0be4
Time: 2020-04-19
Author: 62605255+pchauchat@users.noreply.github.com
File Name: geomstats/_backend/tensorflow/__init__.py
Class Name:
Method Name: assignment