This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
This code was originally obtained from: | |
https://github.com/meta-llama/codellama/blob/main/llama/model.py | |
adapted from https://github.com/naver-ai/rope-vit/blob/main/self-attn/rope_self_attn.py | |
""" | |
import torch | |
import torch.nn as nn | |
from functools import partial | |
import einops |