Enable ruff INP001 rule (#11346)

* Enable ruff INP001 rule

* Fix

* Fix

* Fix

* Fix

* Fix
This commit is contained in:
Maxim Smolskiy
2024-04-02 22:13:56 +03:00
committed by GitHub
parent f8cdb3e948
commit f437f92279
15 changed files with 3 additions and 4 deletions

View File

@ -7,7 +7,8 @@ https://en.wikipedia.org/wiki/Rectifier_(neural_networks)#Mish
"""
import numpy as np
from softplus import softplus
from .softplus import softplus
def mish(vector: np.ndarray) -> np.ndarray: