Examples: query, "exact match", wildcard*, wild?ard, wild*rd
Fuzzy search: cake~ (finds cakes, bake)
Term boost: "red velvet"^4, chocolate^2
Field grouping: tags:(+work -"fun-stuff")
Escaping: Escape characters +-&|!(){}[]^"~*?:\ with \, e.g. \+
Range search: properties.timestamp:[1587729413488 TO *] (inclusive), properties.title:{A TO Z}(excluding A and Z)
Combinations: chocolate AND vanilla, chocolate OR vanilla, (chocolate OR vanilla) NOT "vanilla pudding"
Field search: properties.title:"The Title" AND text
Answered
Hello Hello! I Recently Started Trying Out Clearml For Experiment Tracking, Thanks Devs For The Beautiful Product! I Can Across An Issue That I Couldn'T Resolve Despite Checking Documentation/Googling So Thought Would Ask Here For Help: I Am Logging Arti

Hello hello! I recently started trying out clearml for experiment tracking, thanks devs for the beautiful product! I can across an issue that I couldn't resolve despite checking documentation/googling so thought would ask here for help:

I am logging artifacts, specifically pandas dataframes using the report_table() function and the table shows up in the ClearML UI in the Plots tab. But I can't seem to figure out how to access the logged dataframe for previous iterations - I only see the dataframe from the latest iteration, and if one training epoch finishes, the dataframe is updated in the UI and I can't go back to the previous one that I was analysing, Is accessing plots/tables for earlier iterations supported? Can one enable it somehow?

Best,
Anshuman

  
  
Posted 29 days ago
Votes Newest

Answers 3


Hi @<1523701070390366208:profile|CostlyOstrich36> ! Yes, at the moment I call

Logger.current_logger().report_table(
            "Placeholder", "Placeholder", iteration=epoch, table_plot=df_placeholder
        )
  
  
Posted 29 days ago

Can you create a standalone script that reproduces this? @<1736194481398484992:profile|MoodySeaurchin62>

  
  
Posted 24 days ago

Hi @<1736194481398484992:profile|MoodySeaurchin62> , how are you currently reporting it? Are you reporting iterations?

  
  
Posted 29 days ago