Hi, I had a workflow question on how people typica...
# ask-metaflow
s
Hi, I had a workflow question on how people typically use Metaflow My Flow has a basic setup like -
Copy code
Flow:

self.start()

@batch 
self.run_train()

self.end()
I start the flow locally from my machine, with the
start
running locally,
run_train
running on Batch, and
end
running locally But if my laptop currently disconnects from the Internet, the run will fail (I think?) Is there a way to avoid local dependency altogether? Especially for long-running trainings?