Fix imports for trust_remote_code: attention.py
Browse files- attention.py +3 -3
attention.py
CHANGED
|
@@ -10,9 +10,9 @@ import torch.nn as nn
|
|
| 10 |
import torch.nn.functional as F
|
| 11 |
from typing import Optional
|
| 12 |
|
| 13 |
-
from configuration_aether_micro import AETHERMicroConfig
|
| 14 |
-
from embeddings import AETHERMicroRotaryEmbedding
|
| 15 |
-
from utils import repeat_kv, apply_rotary_pos_emb
|
| 16 |
|
| 17 |
|
| 18 |
class AETHERMicroAttention(nn.Module):
|
|
|
|
| 10 |
import torch.nn.functional as F
|
| 11 |
from typing import Optional
|
| 12 |
|
| 13 |
+
from .configuration_aether_micro import AETHERMicroConfig
|
| 14 |
+
from .embeddings import AETHERMicroRotaryEmbedding
|
| 15 |
+
from .utils import repeat_kv, apply_rotary_pos_emb
|
| 16 |
|
| 17 |
|
| 18 |
class AETHERMicroAttention(nn.Module):
|