Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
ChengYan7 authored Nov 19, 2024
1 parent 0656f89 commit 9f2ea2f
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions publications/2023-neurips/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,19 @@ Even this way, query times are generally high, and you probably want to avoid ma
It is therefore highly recommended to retrieve the information you are interested in from the dataframes and only store the important information.
Most applications only need a fraction of the stored information (often less than 10%), so storing the relevant information locally will drastically speed up your research activity.

### Debug Result
The `debug_info` object stores detailed error messages and their corresponding `['configs']`, `['tracebacks']`, and `['errors']`. To quickly view the error messages, you can use the following code:
```python
lcdb = LCDB()
debug_info = lcdb.debug(
openmlids=[openmlid],
workflows=[workflow],
show_progress=True
)

print("Non-duplicate Error: \n", debug_info['errors'].drop_duplicates().reset_index(drop=True).to_frame().to_string(header=False))
```

### Processing Result Dictionaries
The dictionaries stored inside `m:json` contain a potentially deep tree structure. The dictionary itself is the root node of this tree, and for any node, children can be obtained through the `children` key. Each node has the following entries:
| Key | Type of value | Description of the value |
Expand Down

0 comments on commit 9f2ea2f

Please sign in to comment.