ai-content-maker/.venv/Lib/site-packages/thinc/tests/mypy/modules/fail_plugin.py

21 lines
565 B
Python
Raw Normal View History

2024-05-03 04:18:51 +03:00
from thinc.api import Relu, Softmax, add, chain, concatenate, reduce_max
bad_model = chain(Relu(10), reduce_max(), Softmax())
bad_model2 = add(Relu(10), reduce_max(), Softmax())
bad_model_only_plugin = chain(
Relu(10), Relu(10), Relu(10), Relu(10), reduce_max(), Softmax()
)
bad_model_only_plugin2 = add(
Relu(10), Relu(10), Relu(10), Relu(10), reduce_max(), Softmax()
)
reveal_type(bad_model_only_plugin2)
bad_model_only_plugin3 = concatenate(
Relu(10), Relu(10), Relu(10), Relu(10), reduce_max(), Softmax()
)
reveal_type(bad_model_only_plugin3)