tensorflow/models

View on GitHub
official/nlp/tools/tokenization.py

Summary

Maintainability
F
3 days
Test Coverage

File tokenization.py has 397 lines of code (exceeds 250 allowed). Consider refactoring.
Open

# Copyright 2024 The TensorFlow Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
Severity: Minor
Found in official/nlp/tools/tokenization.py - About 5 hrs to fix

    Consider simplifying this complex logical expression.
    Open

        if ((cp >= 0x4E00 and cp <= 0x9FFF) or  #
            (cp >= 0x3400 and cp <= 0x4DBF) or  #
            (cp >= 0x20000 and cp <= 0x2A6DF) or  #
            (cp >= 0x2A700 and cp <= 0x2B73F) or  #
            (cp >= 0x2B740 and cp <= 0x2B81F) or  #
    Severity: Critical
    Found in official/nlp/tools/tokenization.py - About 4 hrs to fix

      Function tokenize has a Cognitive Complexity of 22 (exceeds 5 allowed). Consider refactoring.
      Open

        def tokenize(self, text):
          """Tokenizes a piece of text into its word pieces.
      
          This uses a greedy longest-match-first algorithm to perform tokenization
          using the given vocabulary.
      Severity: Minor
      Found in official/nlp/tools/tokenization.py - About 3 hrs to fix

      Cognitive Complexity

      Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

      A method's cognitive complexity is based on a few simple rules:

      • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
      • Code is considered more complex for each "break in the linear flow of the code"
      • Code is considered more complex when "flow breaking structures are nested"

      Further reading

      Function _is_chinese_char has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring.
      Open

        def _is_chinese_char(self, cp):
          """Checks whether CP is the codepoint of a CJK character."""
          # This defines a "chinese character" as anything in the CJK Unicode block:
          #   https://en.wikipedia.org/wiki/CJK_Unified_Ideographs_(Unicode_block)
          #
      Severity: Minor
      Found in official/nlp/tools/tokenization.py - About 2 hrs to fix

      Cognitive Complexity

      Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

      A method's cognitive complexity is based on a few simple rules:

      • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
      • Code is considered more complex for each "break in the linear flow of the code"
      • Code is considered more complex when "flow breaking structures are nested"

      Further reading

      Function encode_pieces has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
      Open

      def encode_pieces(sp_model, text, sample=False):
        """Segements text into pieces.
      
        This method is used together with sentence piece tokenizer and is forked from:
        https://github.com/google-research/google-research/blob/e1f6fa00/albert/tokenization.py
      Severity: Minor
      Found in official/nlp/tools/tokenization.py - About 1 hr to fix

      Cognitive Complexity

      Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

      A method's cognitive complexity is based on a few simple rules:

      • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
      • Code is considered more complex for each "break in the linear flow of the code"
      • Code is considered more complex when "flow breaking structures are nested"

      Further reading

      Consider simplifying this complex logical expression.
      Open

        if ((cp >= 33 and cp <= 47) or (cp >= 58 and cp <= 64) or
            (cp >= 91 and cp <= 96) or (cp >= 123 and cp <= 126)):
          return True
        cat = unicodedata.category(char)
      Severity: Critical
      Found in official/nlp/tools/tokenization.py - About 1 hr to fix

        Function printable_text has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
        Open

        def printable_text(text):
          """Returns text encoded in a way suitable for print or `tf.logging`."""
        
          # These functions want `str` for both Python2 and Python3, but in one case
          # it's a Unicode string and in the other it's a byte string.
        Severity: Minor
        Found in official/nlp/tools/tokenization.py - About 1 hr to fix

        Cognitive Complexity

        Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

        A method's cognitive complexity is based on a few simple rules:

        • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
        • Code is considered more complex for each "break in the linear flow of the code"
        • Code is considered more complex when "flow breaking structures are nested"

        Further reading

        Function convert_to_unicode has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
        Open

        def convert_to_unicode(text):
          """Converts `text` to Unicode (if it's not already), assuming utf-8 input."""
          if six.PY3:
            if isinstance(text, str):
              return text
        Severity: Minor
        Found in official/nlp/tools/tokenization.py - About 1 hr to fix

        Cognitive Complexity

        Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

        A method's cognitive complexity is based on a few simple rules:

        • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
        • Code is considered more complex for each "break in the linear flow of the code"
        • Code is considered more complex when "flow breaking structures are nested"

        Further reading

        Function _is_punctuation has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
        Open

        def _is_punctuation(char):
          """Checks whether `chars` is a punctuation character."""
          cp = ord(char)
          # We treat all non-letter/number ASCII as punctuation.
          # Characters such as "^", "$", and "`" are not in the Unicode
        Severity: Minor
        Found in official/nlp/tools/tokenization.py - About 55 mins to fix

        Cognitive Complexity

        Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

        A method's cognitive complexity is based on a few simple rules:

        • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
        • Code is considered more complex for each "break in the linear flow of the code"
        • Code is considered more complex when "flow breaking structures are nested"

        Further reading

        Function _run_split_on_punc has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
        Open

          def _run_split_on_punc(self, text):
            """Splits punctuation on a piece of text."""
            chars = list(text)
            i = 0
            start_new_word = True
        Severity: Minor
        Found in official/nlp/tools/tokenization.py - About 35 mins to fix

        Cognitive Complexity

        Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

        A method's cognitive complexity is based on a few simple rules:

        • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
        • Code is considered more complex for each "break in the linear flow of the code"
        • Code is considered more complex when "flow breaking structures are nested"

        Further reading

        Function _clean_text has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
        Open

          def _clean_text(self, text):
            """Performs invalid character removal and whitespace cleanup on text."""
            output = []
            for char in text:
              cp = ord(char)
        Severity: Minor
        Found in official/nlp/tools/tokenization.py - About 35 mins to fix

        Cognitive Complexity

        Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

        A method's cognitive complexity is based on a few simple rules:

        • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
        • Code is considered more complex for each "break in the linear flow of the code"
        • Code is considered more complex when "flow breaking structures are nested"

        Further reading

        Function tokenize has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
        Open

          def tokenize(self, text):
            """Tokenizes a piece of text."""
            text = convert_to_unicode(text)
            text = self._clean_text(text)
        
        
        Severity: Minor
        Found in official/nlp/tools/tokenization.py - About 25 mins to fix

        Cognitive Complexity

        Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

        A method's cognitive complexity is based on a few simple rules:

        • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
        • Code is considered more complex for each "break in the linear flow of the code"
        • Code is considered more complex when "flow breaking structures are nested"

        Further reading

        Function validate_case_matches_checkpoint has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
        Open

        def validate_case_matches_checkpoint(do_lower_case, init_checkpoint):
          """Checks whether the casing config is consistent with the checkpoint name."""
        
          # The casing has to be passed in by the user and there is no explicit check
          # as to whether it matches the checkpoint. The casing information probably
        Severity: Minor
        Found in official/nlp/tools/tokenization.py - About 25 mins to fix

        Cognitive Complexity

        Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

        A method's cognitive complexity is based on a few simple rules:

        • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
        • Code is considered more complex for each "break in the linear flow of the code"
        • Code is considered more complex when "flow breaking structures are nested"

        Further reading

        Identical blocks of code found in 2 locations. Consider refactoring.
        Open

          if six.PY3:
            if isinstance(text, str):
              return text
            elif isinstance(text, bytes):
              return text.decode("utf-8", "ignore")
        Severity: Major
        Found in official/nlp/tools/tokenization.py and 1 other location - About 2 hrs to fix
        official/nlp/tools/tokenization.py on lines 86..92

        Duplicated Code

        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

        Tuning

        This issue has a mass of 50.

        We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

        The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

        If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

        See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

        Refactorings

        Further Reading

        Identical blocks of code found in 2 locations. Consider refactoring.
        Open

          if six.PY3:
            if isinstance(text, str):
              return text
            elif isinstance(text, bytes):
              return text.decode("utf-8", "ignore")
        Severity: Major
        Found in official/nlp/tools/tokenization.py and 1 other location - About 2 hrs to fix
        official/nlp/tools/tokenization.py on lines 109..115

        Duplicated Code

        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

        Tuning

        This issue has a mass of 50.

        We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

        The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

        If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

        See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

        Refactorings

        Further Reading

        There are no issues that match your filters.

        Category
        Status