Python 3.8 branch merged
some small template fixes
This commit is contained in:
@ -1,6 +1,6 @@
|
||||
import warnings
|
||||
|
||||
from utils.config import Config
|
||||
from _templates.new_project.utils.project_config import Config
|
||||
|
||||
warnings.filterwarnings('ignore', category=FutureWarning)
|
||||
warnings.filterwarnings('ignore', category=UserWarning)
|
||||
@ -15,10 +15,9 @@ if __name__ == '__main__':
|
||||
|
||||
# Model Settings
|
||||
config = Config().read_namespace(args)
|
||||
# bias, activation, model, norm, max_epochs, filters
|
||||
cnn_classifier = dict(train_epochs=10, model_use_bias=True, model_use_norm=True, model_activation='leaky_relu',
|
||||
model_type='classifier_cnn', model_filters=[16, 32, 64], data_batchsize=512)
|
||||
# bias, activation, model, norm, max_epochs, sr, feature_mixed_dim, filters
|
||||
# bias, activation, model, norm, max_epochs
|
||||
cnn_classifier = dict(train_epochs=10, model_use_bias=True, model_use_norm=True, data_batchsize=512)
|
||||
# bias, activation, model, norm, max_epochs
|
||||
|
||||
for arg_dict in [cnn_classifier]:
|
||||
for seed in range(5):
|
||||
|
Reference in New Issue
Block a user