Update app.py
Browse files
app.py
CHANGED
@@ -146,7 +146,7 @@ def render_table(forms, lemmas, upos, xpos, feats, named_entities):
|
|
146 |
["*UPOS:*"] + upos,
|
147 |
["*XPOS:*"] + xpos,
|
148 |
["*UFEATS:*"] + list(feats[0]),
|
149 |
-
*([""] + list(row) for row in feats[1:])
|
150 |
["*NE:*"] + named_entities,
|
151 |
]
|
152 |
|
|
|
146 |
["*UPOS:*"] + upos,
|
147 |
["*XPOS:*"] + xpos,
|
148 |
["*UFEATS:*"] + list(feats[0]),
|
149 |
+
*([""] + list(row) for row in feats[1:]),
|
150 |
["*NE:*"] + named_entities,
|
151 |
]
|
152 |
|