Hacker News new | ask | show | jobs
by yawnxyz 1187 days ago
Hi! As someone new to all of this — how would I interact with the trained data after it's been trained?

Is it possible to create a conversation or QA style interaction with it? I see there's examples of "pytorch" but as a someone new— I'm not sure what that means in terms of public use cases.

I guess I'm asking is "ok I use Flower to train on a bunch of stuff... then what do I do with that?"

Thanks!

1 comments

Hi there - the data never moves if you train a model using federated learning. It stays on user devices or in organizational silos. After the training, you have the model parameters of the model on the server, without the server having ever seen a single data example.

After the training, you can deploy the model in different ways. If you want to use it on device (or in one of the organizational silos), you can send the final model parameters there and deploy it locally. Or you just deploy the model on the server behind an API. It all depends on the use case.

Hope that helps, I'm happy to provide more details.