e3931c33e2e5f4b148a918d798cc27224ed090b7,examples/bert/utils/tokenization.py,,convert_to_unicode,#Any#,29

Before Change


    if six.PY3:
        if isinstance(text, str):
            return text
        elif isinstance(text, bytes):
            return text.decode("utf-8", "ignore")
        else:
            raise ValueError("Unsupported string type: %s" % (type(text)))
    elif six.PY2:
        if isinstance(text, str):

After Change



def convert_to_unicode(text):
    Returns the given argument as a unicode string.
    return tf.compat.as_text(text)

def printable_text(text):
    Returns text encoded in a way suitable for print or `tf.logging`.
    return tf.compat.as_str_any(text)
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 3

Instances


Project Name: asyml/texar
Commit Name: e3931c33e2e5f4b148a918d798cc27224ed090b7
Time: 2018-11-29
Author: haoranshi97@gmail.com
File Name: examples/bert/utils/tokenization.py
Class Name:
Method Name: convert_to_unicode


Project Name: ray-project/ray
Commit Name: 82f9c7014e2d0acd3e3869066f5dc3142ec9e7a7
Time: 2020-12-17
Author: 62982571+Gekho457@users.noreply.github.com
File Name: python/ray/autoscaler/_private/command_runner.py
Class Name: KubernetesCommandRunner
Method Name: _home


Project Name: asyml/texar
Commit Name: e3931c33e2e5f4b148a918d798cc27224ed090b7
Time: 2018-11-29
Author: haoranshi97@gmail.com
File Name: examples/bert/utils/tokenization.py
Class Name:
Method Name: printable_text