Skip to content

Commit cb58dd8

Browse files
committed
Fix
1 parent 653579f commit cb58dd8

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

neural_network/activation_functions/mish.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"""
88

99
import numpy as np
10-
from softplus import softplus
10+
from .softplus import softplus
1111

1212

1313
def mish(vector: np.ndarray) -> np.ndarray:

requirements.txt

-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ requests
1515
rich
1616
# scikit-fuzzy # uncomment once fuzzy_logic/fuzzy_operations.py is fixed
1717
scikit-learn
18-
softplus ; python_version < '3.12'
1918
statsmodels
2019
sympy
2120
tensorflow

0 commit comments

Comments
 (0)