jaifar530 commited on
Commit
59ebdc7
·
unverified ·
1 Parent(s): dbe30b4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -2
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