Hi! Did anyone yet create a script / function to d...
# questions
j
Hi! Did anyone yet create a script / function to delete old experiments systematically? If I were to create one to delete the old folders, how can I remove them from the session_store.db (sqlite)?
t
For sqlite, this is the query to remove a specific run:
Copy code
DELETE from runs WHERE id = "YOUR TIMESTAMP HERE";
You can also do something like "delete all runs before a date:"
Copy code
DELETE from runs WHERE id < "YOUR TIMESTAMP HERE";
j
Nice! Thanks for the hint :)
t
You're welcome!