You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 12, 2024. It is now read-only.
I am using version 0.1.33. I am struggling to display text parameter such as activation, architecture on exported html file. however the parameters can be clearly seen in the table below the plot. I don't have jupyter notebook to test this.
Here is my code.
importhiplotashipimportpandasaspd# example: https://github.com/facebookresearch/hiplot/tree/master/examples# Read the CSV file into a DataFramedf=pd.read_csv('runs.csv')
df=df.drop('params.Training time', axis=1)
# Update column namesdf.rename(columns={'params.lr': 'Learning Rate', 'params.Architecture': 'Architecture', 'params.Layers': 'Layers', 'params.Relative L2 error':'Relative L2 error'}, inplace=True)
# Convert the DataFrame into a HiPlot Experiment objectexperiment=hip.Experiment.from_dataframe(df)
experiment.display_data(hip.Displays.PARALLEL_PLOT).update({'hide': ['uid']})
# Export the HiPlot visualization to a standalone HTML fileexperiment.to_html(file='hiplot.html')
I am using version 0.1.33. I am struggling to display text parameter such as activation, architecture on exported html file. however the parameters can be clearly seen in the table below the plot. I don't have jupyter notebook to test this.

Here is my code.
Link to the HTML file: https://github.com/praksharma/temp/blob/main/ABC/hiplot.html