You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add new attribute in JSON report for absolute_path, which provides the absolute path of the input path provided by the user. This will make it clearer what is being resolved if the user provides a relative path as the input_path. IMPORTANT: If the input_path is to a file, the absolute_path should be the absolute path to the directory that file is in.
In the source, scanned_files, and skipped_files fields, only reference file paths relative to the input path. For example, if the input path is /path/to/my/directory, and the directory has model1.pkl and model2.pkl, then output may look like this:
absolute_path
, which provides the absolute path of the input path provided by the user. This will make it clearer what is being resolved if the user provides a relative path as theinput_path
. IMPORTANT: If the input_path is to a file, theabsolute_path
should be the absolute path to the directory that file is in.source
,scanned_files
, andskipped_files
fields, only reference file paths relative to the input path. For example, if the input path is/path/to/my/directory
, and the directory hasmodel1.pkl
andmodel2.pkl
, then output may look like this:If the input path is a file, then the
source
,scanned_files
, andskipped_files
fields can all just be the file name (no absolute path).The text was updated successfully, but these errors were encountered: