Darthtrader
Darthtrader

Reputation: 248

How to combine multiple models together?

I am trying to "parallelize" Neural Network models to speed up training. One idea I had was to run two models on two computers and combine the results somehow.

Is this possible? If not, what are the options to parallelize model training on two computers?

I am open to use any neural network framework.

Upvotes: 3

Views: 595

Answers (1)

Jing
Jing

Reputation: 1130

I think you mean distributed tensorflow?

See official document: https://www.tensorflow.org/deploy/distributed

Upvotes: 1

Related Questions