I know how to filter runs by operation using command line, but I would like to import runs inside python to do some additional analysis on results. here is the code to import all runs:
import pandas as pd
import guild.ipy as guild
GUILD_HOME = 'C:/ProgramData/Anaconda3/.guild'
guild.set_guild_home(GUILD_HOME)
runs = guild.runs()
This code works as expected. But if I want to import runs by operation it again imports all runs:
runs = guild.runs(operations='random-forest')
Is it possible to set an operation parameter like this and if yes, what’s wrong with my code?