mirror of
https://github.com/kexinhuang12345/DeepPurpose.git
synced 2026-04-03 00:19:34 -06:00
[bug] pearson_r p-value #81
Labels
No labels
bug
bug
enhancement
enhancement
enhancement
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: github/DeepPurpose#81
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @albertma-evotec on 4/13/2021
In your DBTA.train() function in DTI.py file
the p-value is often a very small number so that it is represented as the scientific e notation, i.e like 1.23456789e-9
str() it then [:7] will miss the e number part and lead to a wrong result.
str(1.23456789e-9)[:7] -> 1.23456 not what you actually wanted!