Update app.py
Browse files
app.py
CHANGED
@@ -6,6 +6,8 @@ from utils_gdmk import (
|
|
6 |
|
7 |
G = nx.DiGraph()
|
8 |
inicializar_grafo() # Call this before displaying the graph
|
|
|
|
|
9 |
|
10 |
iface = gr.Blocks()
|
11 |
|
|
|
6 |
|
7 |
G = nx.DiGraph()
|
8 |
inicializar_grafo() # Call this before displaying the graph
|
9 |
+
students = cargar_nombres("nombres.txt")
|
10 |
+
VOCABULARY = cargar_vocabulario("vocabulario_postdoc.txt")
|
11 |
|
12 |
iface = gr.Blocks()
|
13 |
|