Remove relative import
Browse files- wrapper_functions.py +1 -3
wrapper_functions.py
CHANGED
@@ -7,9 +7,7 @@ from itertools import chain
|
|
7 |
import random
|
8 |
from typing import Literal
|
9 |
|
10 |
-
from
|
11 |
-
from models.graph_T5.graph_t5.modeling_t5 import T5Attention
|
12 |
-
import models.graph_T5.graph_t5.modeling_t5
|
13 |
|
14 |
class Graph():
|
15 |
"""
|
|
|
7 |
import random
|
8 |
from typing import Literal
|
9 |
|
10 |
+
from transformers import T5Tokenizer
|
|
|
|
|
11 |
|
12 |
class Graph():
|
13 |
"""
|