New Function
This is a new function introduced in PyCaret 2.0x.
Get System Logs
Read and print ‘logs.log’ file from current active directory
Example
Code
# loading dataset from pycaret.datasets import get_data data = get_data('diabetes') # initializing setup from pycaret.classification import * clf1 = setup(data, target = 'Class variable', session_id = 123) # check system logs get_system_logs()
Output
Was this page helpful?
GitHub