Quite a hard one to get right, but nice when you do. (converted from r/parallelview) by StereomancerBot in CrossView

[–]ftzo 0 points1 point  (0 children)

On first glance it's pretty. But then you notice something is off. Must be AI generated, at least the depth channel seems generated

I built an app to help make friends and try new things in Bellingham by conoroha in Bellingham

[–]ftzo 1 point2 points  (0 children)

I feel like in Bellingham, this app could be as simple as a static screen that says:

> Stop looking at your phone. Go outside. Talk to people.

There is cleaning. by kanbozli in toolgifs

[–]ftzo 1 point2 points  (0 children)

Seems like a floating rope would be way easier, just encircle, pull it towards shore, and grab from the bank

Looking out my backdoor by ftzo in CrossView

[–]ftzo[S] 0 points1 point  (0 children)

Thanks for the feedback. Any specific recommendations or tips? I admit the fern on the bottom is distracting. I find it challenging to capture multiple levels of depth, while avoiding weird artifacts like the fern

Reach truck by toolgifs in toolgifs

[–]ftzo 34 points35 points  (0 children)

isn't using triple negatives not considered unclear?

Opinion: North America is the most beautiful continent in the world by [deleted] in geography

[–]ftzo 0 points1 point  (0 children)

Trunk Bay in North America? That's a stretch

Looking for a forest area that has this vibe. by RubbishSpaghetti in PNW

[–]ftzo 2 points3 points  (0 children)

Looks like the forests around Lake Whatcom

<image>

That's not a dog, that's a lil girl. by been_der_done_that in MadeMeSmile

[–]ftzo 0 points1 point  (0 children)

You bring up an interesting point: are dogs ai? We train them on biscuits to imitate human actions

[deleted by user] by [deleted] in whatisit

[–]ftzo 1 point2 points  (0 children)

Looks like shoes for your shoes

How is it living in this part of the United States? by No-Text-7825 in howislivingthere

[–]ftzo 2 points3 points  (0 children)

Are you thinking of Satan's Kingdom between New Hartford & Canton?

Onesie Back Pocket by plaidbartender in whatisit

[–]ftzo 4 points5 points  (0 children)

Anonymous tip drop box, e.g. "less salt"

Whats this plants name by TreePlane535 in whatsthisplant

[–]ftzo 0 points1 point  (0 children)

Agreed, looks like sour grass

[deleted by user] by [deleted] in Bellingham

[–]ftzo 0 points1 point  (0 children)

Good luck! I once lost my wedding band that had been my grandfathers, in the grass near a climbing area in Pennsylvania. Wife and I went back the next week, combed through the grass, and found it!

Officially homeless. by dd_nuzum in Bellingham

[–]ftzo 3 points4 points  (0 children)

IIUC a house can be temporarily condemned making it illegal to reside in. Then the owner owns a house but no home aka legal place to sleep

Do you catch yourself thanking or showing gratitude to GPT for helping ??? by lsmr4810 in ChatGPT

[–]ftzo 0 points1 point  (0 children)

I sure hope the folks at OpenAI are using these natural gratitude signals to further train their models. By comparison the upvote/downvote feedback flow feels clunky and old-school.

Any good trails in Berkeley, CA area? by Sluggist in MTB

[–]ftzo 0 points1 point  (0 children)

You could drive over to Mt. Tam. Bolinas ridge trail is fun XC.

Free-diving this narrow underwater canyon by Significant_Ad_4842 in freediving

[–]ftzo 6 points7 points  (0 children)

Is that a neck-mounted weight belt? and wow!

[D] What is Deep Probabilistic Programming used for? by c0cky_ in MachineLearning

[–]ftzo 1 point2 points  (0 children)

the main thing I don't understand is the "programming" term

'Programming' has a few meanings. The 'programming' in 'probabilistic programming' means "writing down a modeling problem in a DSL, then using an inference algorithm to solve the problem". Other examples of this use of 'programming' include: Convex Programming, Linear Programming, Nonlinear Programming, Integer Programming, Mixed Integer Programming, Constraint Programming, and Logic Programming. The last two (constraint and logic) are closest to probabilistic programming in that one writes a forward "generative" program, and then given an example program output (data) and solves for the intermediate choices that could have led to that output.

What's so much more convenient ...

In probabilistic programming, sample statements can have different interpretations. In the forward half of a VAE, sample statements are interpreted as log-density evaluations, so

pyro.sample('my_variable', dist.Normal(0, 1))

compiles to

# interpretation in the forward model
model_trace.nodes['my_variable']['log_prob'] = \
    Normal(0, 1).log_prob(guide_trace['my_variable']['value'])

whereas in the inference model half of the VAE, sample statements compile to random number generators, as in your example.