AssignSpace is a small framework I built for plotting numeric objects in real time asynchronously. This framework currently supports scalars and 1D Tensors but its purpose should extend in the future.
Assign space is currently in development and does not have many functionalities.
All you have to do is
import assignspace
app = assignspace.AssignSpace()
….
while training:
….
app.graph(loss)
Everything else gets taken care of in realtime.
app.graph(numpy.random.uniform(0,20,100))
python main.py