Spaces:
Running
Running
omkarenator
commited on
Commit
•
b143332
1
Parent(s):
761d360
more code fixes
Browse files
web.py
CHANGED
@@ -950,7 +950,10 @@ def web_data():
|
|
950 |
Div(
|
951 |
D_code("""
|
952 |
class Base_RPS_Frac_Chars_In_Dupe_NGrams(RPSBase): # noqa
|
953 |
-
|
|
|
|
|
|
|
954 |
NGRAM_SIZE: int = None
|
955 |
__slots__ = []
|
956 |
|
|
|
950 |
Div(
|
951 |
D_code("""
|
952 |
class Base_RPS_Frac_Chars_In_Dupe_NGrams(RPSBase): # noqa
|
953 |
+
# Base class for calculating the fraction of characters in
|
954 |
+
# duplicate word N-grams. This operates on the lower-cased,
|
955 |
+
# punctation removed content. The function also ensures that
|
956 |
+
# characters in overlapping ngrams are only counted once.
|
957 |
NGRAM_SIZE: int = None
|
958 |
__slots__ = []
|
959 |
|