Troubleshooting / Bug Reporting
If you experience any bugs, we're happy to help as fast as possible! Please provide these details when reporting an issue:
- Example code that reproduces the issue
- What you expected to happen
- What happened instead
- Logs: You can increase log verbosity using the
set_log_levelfunction at the beginning of your script. The default level is "INFO".
- Python
- C
import denkflow
denkflow.set_log_level("DEBUG") # Or "TRACE" for maximum detail. Careful: TRACE output might include sensitive information.
# ... the rest of your script
#include "denkflow.h"
const char* log_level = "INFO";
DenkflowResult r = set_log_level(log_level);
// ... the rest of your script
- Enable onnxruntime logs by setting the environment variable
DENKFLOW_ENABLE_ORT_LOGS=truebefore running your application. These logs might contain valuable information. - System Information (Operating System, CPU Model, Memory, GPU Model if applicable).
We are actively developing the DENKflow API and welcome feature requests! Please feel free to report missing features or suggest improvements through the same channels you use for bug reporting.