Skip to content
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

Error in discard returned by update for DynamicDSLTrace with hierarchical addresses #512

Open
fsaad opened this issue Oct 10, 2023 · 3 comments
Labels
bug Something isn't working

Comments

@fsaad
Copy link
Collaborator

fsaad commented Oct 10, 2023

Consider the following simple programs

using Gen

@gen function model_ok()
    k ~ poisson(5)
    for i=1:k
        {i} ~ uniform(0,1)
    end
end

@gen function model_bad()
    k ~ poisson(5)
    for i=1:k
        {:value => i} ~ uniform(0,1)
    end
end

Do we expect that Gen.update operates differently in these two cases. For model_ok, if we call update in such a way that reduces k then the discard address {i} are correctly placed in the discard, but in model_bad, the address {:value => i} are not in the discard. See following example:

Discard for model_ok

julia> tr, = Gen.generate(model_ok, (), choicemap(:k=>3));
julia> (new_trace, weight, _, discard) = Gen.update(tr, Gen.choicemap(:k=>1));
julia> display(discard)
│
├── :k : 3
│
├── 2 : 0.552591934644268
│
└── 3 : 0.6198635352707209

Discard for model_bad

julia> tr, = Gen.generate(model_bad, (), choicemap(:k=>3));
julia> (new_trace, weight, _, discard) = Gen.update(tr, Gen.choicemap(:k=>1));
julia> display(discard)
│
└── :k : 3

Possible Reason

The following lines seem to be the culprit: the recursive call to add_unvisited_to_discard! use an anonymous choicemap when subdiscard is empty, so the call to set_submap! fills out a subdiscard that we never access again.

subdiscard = get_submap(discard, key)
add_unvisited_to_discard!(
isempty(subdiscard) ? choicemap() : subdiscard,
subvisited, submap)
set_submap!(discard, key, subdiscard)

Changing these lines to

                subdiscard = get_submap(discard, key)
                subdiscard_recursive = isempty(subdiscard) ? choicemap() : subdiscard
                add_unvisited_to_discard!(
                    subdiscard_recursive,
                    subvisited, submap)
                set_submap!(discard, key, subdiscard_recursive)

seems to fix the issue.

@fsaad fsaad added the bug Something isn't working label Oct 11, 2023
@fsaad fsaad changed the title Potential bug in discard returned by update for DynamicDSLTrace Error in discard returned by update for DynamicDSLTrace with hierarchical addresses Oct 11, 2023
@fsaad
Copy link
Collaborator Author

fsaad commented Oct 11, 2023

Related #506

@ztangent
Copy link
Member

Thanks for catching this!

So I'm trying to understand why the line of code you identified was introduced in the first place, and it looks like @alex-lew added it in this old commit: c8ce0d7

Apparently it was introduced to address cases where things were being discarded, but shouldn't be. So maybe we can check if the fix you suggested @fsaad also passes the original test case that @alex-lew added?

This is the test case:

# Addresses under the :data namespace will be visited,
# but nothing there will be discarded.
@gen function loopy()
a = @trace(normal(0, 1), :a)
for i=1:5
@trace(normal(a, 1), :data => i)
end
end
# Get an initial trace
constraints = choicemap()
constraints[:a] = 0
for i=1:5
constraints[:data => i] = 0
end
(trace,) = generate(loopy, (), constraints)
# Update a
constraints = choicemap()
constraints[:a] = 1
(new_trace, weight, retdiff, discard) = update(trace,
(), (), constraints)
# Test discard, score, weight, retdiff
@test get_value(discard, :a) == 0
prev_score = logpdf(normal, 0, 0, 1) * 6
expected_new_score = logpdf(normal, 1, 0, 1) + 5 * logpdf(normal, 0, 1, 1)
expected_weight = expected_new_score - prev_score
@test isapprox(expected_new_score, get_score(new_trace))
@test isapprox(expected_weight, weight)
@test retdiff === UnknownChange()

@ztangent
Copy link
Member

This issue also seems highly related, but @alex-lew identified a different line of code in add_unvisited_to_discard! as the likely culprit, so maybe it's a different issue?

#237

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants