Spaces:
Running
Running
jaifar530
commited on
Update app.py
Browse files
app.py
CHANGED
@@ -339,14 +339,16 @@ if press_me_button:
|
|
339 |
amplify = 1
|
340 |
if word_count >= max_word_count:
|
341 |
amplify = 2
|
342 |
-
else
|
343 |
amplify = math.ceil(max_word_count / word_count)
|
344 |
|
345 |
for _ in range(amplify):
|
346 |
repeated_text += new_text + " "
|
347 |
|
348 |
new_text = repeated_text
|
349 |
-
|
|
|
|
|
350 |
## Repeat ML
|
351 |
|
352 |
# Transform the input
|
|
|
339 |
amplify = 1
|
340 |
if word_count >= max_word_count:
|
341 |
amplify = 2
|
342 |
+
else:
|
343 |
amplify = math.ceil(max_word_count / word_count)
|
344 |
|
345 |
for _ in range(amplify):
|
346 |
repeated_text += new_text + " "
|
347 |
|
348 |
new_text = repeated_text
|
349 |
+
|
350 |
+
word_count = len(re.findall(r'\w+', new_text))
|
351 |
+
st.write(f"New Words Count: {word_count}")
|
352 |
## Repeat ML
|
353 |
|
354 |
# Transform the input
|