Issues with Loading Saved Tracing Sessions in Phoenix 3.0
Hi - Congratulations on the 3.0 release! I've downloaded it and have been working through the conversion process. However, there still doesn't seem to be a way to properly load from a saved tracing session. I'm able to successfully save as follows: from phoenix.trace import TraceDataset dataset = px.active_session().get_trace_dataset() dataset_id=dataset.save() However, when I try loading I continue to get errors: tds = TraceDataset.load(dataset_id) px.launch_app(trace=tds) px.launch_app(trace=px.TraceDataset(dataframe=tds.dataframe)) ######### (tried this instead of the line above, but still the same error)
---------------------------------------------------------------------------
TypeError Traceback (most recent call last)
Cell In[23], line 9
7 tds = TraceDataset.load(dataset_id)
8 #px.launch_app(trace=tds)
----> 9 px.launch_app(trace=px.TraceDataset(dataframe=tds.dataframe))
TypeError: float() argument must be a string or a real number, not 'dict'Could you please advise on a workable solution for this in 3.0? I couldn't find any new doc that advised me differently, but I may have missed it. Thanks and regards, David
