-
Notifications
You must be signed in to change notification settings - Fork 113
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Knowledge and some other fixes. #1318
Conversation
…Z and SemBicScore--these were using testwise deletion when they didn't need to. To pull over the SEM BIC code from another branch, I also needed to pull over a modest revision to the FGES code, where I shore up some of the reasoning.
Tests pass. The problem with Knowledge was that it wasn't forbidding all necessary backward edges. The problem with Fisher Z and SEM BIC was that if you gave them large datasets they would try to do the slow testwise deletion, even then there were no missing values. The changes for FGES were needed because of the changes to SEM BIC. Basically, a turning step was added to FGES a la PCALG's GES, which is being left off for now. Also, extra checks are added to the preconditions for some of the rules to make sure the rules are applied correctly in every case. Corresponding adjustments were made to Params and the manual. |
…ion editor, where if you click the simulate bug twice you don't get a news simulation. You have to select a new model type. Fixed this. Affected several files. For FGES, decided to add the turning and tdepth parameters. Adjusted the manual.
That's it. These bugs fixed:
|
Thanks Joe. Will take a look later today.
…On Fri, Jan 8, 2021 at 9:48 AM Joseph Ramsey ***@***.***> wrote:
That's it. These bugs fixed:
- Knowledge.
- Fisher Z and Sem Bic with datasets that don't contain missing values.
- The interface "Simulate" bug.
- Some incidental changes to FGES (the algorithm hasn't changed).
—
You are receiving this because your review was requested.
Reply to this email directly, view it on GitHub
<#1318 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/AACMS6OKYMOIHWLN554SN2LSY4LK7ANCNFSM4VZPKRPQ>
.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Tested knowledge, and it seems to be working fine. Ran data with and without missing data on FisherZ and SemBIC didn't seem to break anything.
Thanks! I'll see if Jeremy can post it (as a bug fix).
…On Mon, Jan 25, 2021 at 10:52 AM Kevin Bui ***@***.***> wrote:
***@***.**** approved this pull request.
Tested knowledge, and it seems to be working fine. Ran data with and
without missing data on FisherZ and SemBIC didn't seem to break anything.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#1318 (review)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ACLFSR7MGQZCAFSSY56I5BTS3WHVTANCNFSM4VZPKRPQ>
.
--
Joseph D. Ramsey
Special Faculty and Director of Research Computing
Department of Philosophy
135 Baker Hall
Carnegie Mellon University
Pittsburgh, PA 15213
[email protected]
Office: (412) 268-8063
http://www.andrew.cmu.edu/user/jdramsey
|
@espinoj Hey Jeremy--Kevin reviewed this pull request--would you have to post it (as a bug fix branch)? Thanks, Joe |
Mainly fixing a knowledge bug but also fixing issues in IndTestFisherZ and SemBicScore--these were using testwise deletion when they didn't need to. To pull over the SEM BIC code from another branch, I also needed to pull over a modest revision to the FGES code, where I shore up some of the reasoning.