This commit is contained in:
[[ -z $EMAIL ]] && read -e -p "Enter your email (for git configuration): " EMAIL 2025-02-07 12:23:57 -05:00
parent 919bcbeca7
commit f839aa20fe
2 changed files with 7 additions and 2 deletions

View file

@ -43,7 +43,12 @@ from ...modeling_outputs import (
from ...modeling_rope_utils import ROPE_INIT_FUNCTIONS
from ...modeling_utils import ALL_ATTENTION_FUNCTIONS, PreTrainedModel
from ...processing_utils import Unpack
from ...utils import add_start_docstrings, add_start_docstrings_to_model_forward, logging, replace_return_docstrings
from ...utils import (
add_start_docstrings,
add_start_docstrings_to_model_forward,
logging,
replace_return_docstrings,
)
from .configuration_moonshine import MoonshineConfig

View file

@ -7,7 +7,7 @@
from typing import Callable, List, Optional, Tuple, Union
import torch
from torch import nn
import torch.nn as nn
from ...activations import ACT2FN
from ...cache_utils import Cache, DynamicCache, StaticCache