fermaat commited on
Commit
c9273e4
·
1 Parent(s): aef9a4c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -3
app.py CHANGED
@@ -26,8 +26,6 @@ article = """
26
 
27
  <p style="text-align: justify;">
28
 
29
- Spanish is a beautiful language and it has many ways of referring to people, neutralizing the genders and using some of the resources inside the language. One would say *Todas las personas asistentes* instead of *Todos los asistentes* and it would end in a more inclusive way for talking about people.
30
-
31
  Given any input, our model will generate a gender neutral sentence, correcting any non-inclusive expressions or words. It's a straightforward and fast solution that creates a positive impact in the contemporary social panorama.
32
 
33
  <p align="center">
@@ -58,7 +56,14 @@ One of the toughest challenges when building the app and the model was to find p
58
  </p>
59
  """
60
 
61
- description = "The purpose of this app is to transform Spanish gendered text into a neutral version, suitable for an unbiased environment"
 
 
 
 
 
 
 
62
 
63
  def postproc(input_sentence, preds):
64
  try:
 
26
 
27
  <p style="text-align: justify;">
28
 
 
 
29
  Given any input, our model will generate a gender neutral sentence, correcting any non-inclusive expressions or words. It's a straightforward and fast solution that creates a positive impact in the contemporary social panorama.
30
 
31
  <p align="center">
 
56
  </p>
57
  """
58
 
59
+ description = """
60
+
61
+ <p style="text-align: justify;">
62
+ Spanish is a beautiful language and it has many ways of referring to people, neutralizing the genders and using some of the resources inside the language. One would say *Todas las personas asistentes* instead of *Todos los asistentes* and it would end in a more inclusive way for talking about people.
63
+
64
+ The purpose of this app is to transform Spanish gendered text into a neutral version, suitable for an unbiased environment
65
+ </p>
66
+ """
67
 
68
  def postproc(input_sentence, preds):
69
  try: