Socket work#15
Conversation
This code is attempting to receive data directly from the python CLI program that simulates board data
This code makes attempts to grab the data from the CLI program that simulates board data
|
@dayannat @jonathanm-12 Is the |
it will be needed @mgilmore42 |
|
I guess I'm not understanding its utility. Can you please expand? My impression was the clients/servers would need to be embedded into the 3 parts (boardStreamer, ML, Virtual Environment). Like so.. boardStreamer ----(TCP)---> ML ----(TCP)---> Virtual Environment Where boardStreamer serves to ML. ML is a client of boardStreamer and a server of Virtual Environment. And Virtual Environment is purely a client of ML. Similar to what was added to
To me it looks like just a demo to capture the data and acts purely as a client (against its name). Please explain where my understanding of its utility diverges from your understanding or how my understanding can be reconciled with your own. |
|
@jonathanm-12 I removed the file for now until it utility can be better explained/defended. I also changed the port assignment to use the command-line argument instead of being hard coded. |
|
Will approve once I see that this can work in sync with ML and virtual environment. |
This was meant to be a demo for the final prototype testing. As there was no ML model existing at the time, there could be no closed connection. Therefore, the purpose was to prove functionality of the socket programming. From here, what's left is to add sockets through the ML model that will receive data from the board and output the predictive results to the virtual environment. |
This PR separates the ML and Socket work into a separate PRs to make reviews faster.