Ahn
Ahn.py Ahn model configuration. This module defines the configuration for the Ahn model, including its parameters and specific settings for different model architectures (RNN and CNN).
Ahn
dataclass
Bases: DLModelArgs
Configuration for the Ahn model.
Source code in src/configs/models/dl/Ahn.py
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | |
AhnCNN
dataclass
Bases: Ahn
Configuration for the Ahn CNN model.
Source code in src/configs/models/dl/Ahn.py
60 61 62 63 64 65 66 67 68 69 70 71 72 73 | |
AhnRNN
dataclass
Bases: Ahn
Configuration for the Ahn RNN model.
Source code in src/configs/models/dl/Ahn.py
46 47 48 49 50 51 52 53 54 55 56 57 | |