properly configure relative paths
Browse files- modeling_my_gpt.py +2 -2
modeling_my_gpt.py
CHANGED
|
@@ -1,8 +1,8 @@
|
|
| 1 |
import torch
|
| 2 |
import torch.nn as nn
|
| 3 |
from transformers import PreTrainedModel
|
| 4 |
-
from configuration_my_gpt import MyGPTConfig
|
| 5 |
-
from untrained_model import GPTModel
|
| 6 |
|
| 7 |
import os
|
| 8 |
import sys
|
|
|
|
| 1 |
import torch
|
| 2 |
import torch.nn as nn
|
| 3 |
from transformers import PreTrainedModel
|
| 4 |
+
from .configuration_my_gpt import MyGPTConfig
|
| 5 |
+
from .untrained_model import GPTModel
|
| 6 |
|
| 7 |
import os
|
| 8 |
import sys
|