Tensorflow drawing line

Does anyone know a way to create a model that would draw the routes of new roads based on existing ones?

Hi @Jancenty_J ,

These are models which are helpful in your case ,

  • Sequence Model (RNN, LSTM)
  • Graph Neural Network (GNN)
  • Image-to-Image Model (U-Net, GANs)

You Can Refer to these Documentation for implementation.

RNN
LSTM
GNN
GAN

Thank You !