Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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
restore and save optsum for GLMM #791
restore and save optsum for GLMM #791
Changes from 8 commits
3b565a2
9622f36
6f14225
e1cfcaa
69d9968
fafc534
ee70f7d
725f18c
c1c12e1
0fa833d
ec6a6d5
e7da51f
82c67b1
a9ce864
61ed6f3
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
Check warning on line 722 in src/generalizedlinearmixedmodel.jl
GitHub Actions / Documentation
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.
I suppose it can never be the case that
length(ops.lowerbd) < length(m.β)
or thatops.lowerbd
has indices that don't start at 1?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.
lowerbd
is in a struct we control and it's alwaysVector
, so the indices are fine.There are two cases here:
The initial model creation initializes the lower bound to the length of theta because that is shared with the initialization for the linear mixed model (where only theta is included in optimization and beta is solved for directly).
Check warning on line 63 in src/serialization.jl
Codecov / codecov/patch
src/serialization.jl#L63