我正在调查Cloud Machine Learning API中自定义缩放层的使用。
现在,我不知道如何设计我的自定义层!我基本上使用 CIFAR 类型的模型,我决定使用:
if args.distributed:
config['trainingInput']['scaleTier'] = 'CUSTOM'
config['trainingInput']['masterType'] = 'complex_model_m'
config['trainingInput']['workerType'] = 'complex_model_m'
config['trainingInput']['parameterServerType'] = 'large_model'
config['trainingInput']['workerCount'] = 12
config['trainingInput']['parameterServerCount'] = 4
yaml.dump(config, file('custom_config.yaml', 'w'))
但我几乎找不到任何关于如何正确确定集群尺寸的信息。那里有任何“经验法则”吗?还是我们必须尝试和测试?
提前谢谢了!