HackerTrans
TopNewTrendsCommentsPastAskShowJobs

usgroup

no profile record

Submissions

[untitled]

1 points·by usgroup·vor 12 Tagen·0 comments

[untitled]

1 points·by usgroup·vor 2 Monaten·0 comments

[untitled]

1 points·by usgroup·vor 2 Monaten·0 comments

[untitled]

1 points·by usgroup·vor 2 Monaten·0 comments

[untitled]

1 points·by usgroup·vor 4 Monaten·0 comments

Snakes and Ladders: A Statistical Analysis

emiruz.com
1 points·by usgroup·vor 6 Monaten·0 comments

Explainable Query Tagging (NLP)

emiruz.com
1 points·by usgroup·vor 6 Monaten·0 comments

Explainable Unsupervised Query Tagging

emiruz.com
2 points·by usgroup·vor 6 Monaten·0 comments

Snakes and Ladders: a short statistical analysis

emiruz.com
2 points·by usgroup·vor 6 Monaten·0 comments

PyEvidence: Practical Evidence Theory for Python

github.com
6 points·by usgroup·vor 6 Monaten·0 comments

Pyevidence: Practical Evidence Theory

github.com
1 points·by usgroup·vor 6 Monaten·0 comments

Alias Method

en.wikipedia.org
2 points·by usgroup·vor 6 Monaten·0 comments

Dempster-shafer and reasoning about sets

emiruz.com
22 points·by usgroup·vor 8 Monaten·8 comments

Dempster-Shafer and modelling beliefs about sets

emiruz.com
1 points·by usgroup·vor 8 Monaten·0 comments

The SETL Programming Language

en.wikipedia.org
13 points·by usgroup·vor 9 Monaten·5 comments

Bank of England warns of growing risk that AI bubble could burst

theguardian.com
7 points·by usgroup·vor 9 Monaten·1 comments

comments

usgroup
·vor 4 Monaten·discuss
[dead]
usgroup
·vor 4 Monaten·discuss
[dead]
usgroup
·vor 5 Monaten·discuss
[dead]
usgroup
·vor 6 Monaten·discuss
https://awesomeclaude.ai/ralph-wiggum
usgroup
·vor 6 Monaten·discuss
Well that would be extra information. Wherever you find the edge of your information, you will find the "problem of induction" as presented above.
usgroup
·vor 6 Monaten·discuss
yes, if you decide one of them is much more likely without reference to the data, then it will be much more likely :)
usgroup
·vor 6 Monaten·discuss
This issue happens at the edge of every induction. These two rules support their data equally well:

data: T T T T T T F

rule1: for all i: T

rule2: for i < 7: T else F
usgroup
·vor 6 Monaten·discuss
SWI Prolog is just fine, and you'll find it to be batteries included unlike many other choices. The first thing to learn is the "Prolog state of mind", or how to express your intentions in Prolog without trying to turn it into a functional or imperative programming language.

Prolog will show you another way of thinking. If it does not then you are doing it wrong.
usgroup
·vor 6 Monaten·discuss
Personally I don't like the Standard ML based mash-ups.

I think Curry is an interesting take on logic programming. A sort of Haskell meets Prolog.
usgroup
·vor 6 Monaten·discuss
I can recommend "Simply Logical". I also suggest Advent of Code as a nice way to cut your teeth with expressing thoughts with Prolog.
usgroup
·vor 6 Monaten·discuss
Generally speaking, Prolog syntax is ridiculously simple and uniform. Its pattern matching is the most universal of any programming language partly because of this.
usgroup
·vor 6 Monaten·discuss
Yeah that sounds like me too. Prolog became a fetish a few years ago. I used it intensely for 2 years, wrote a lot about it, until it became a part of me. Its intangible what it does to you, but its the dual of what you might expect.
usgroup
·vor 6 Monaten·discuss
No, datalog is a decidable subset of Prolog. That changes everything.
usgroup
·vor 6 Monaten·discuss
I think this article is problematic because Prolog is truly a different paradigm which requires time to understand. Laments about no strings, no functions and "x is confusing" read like expectations of a different paradigm.

Prolog is also unusual in a sense that it is essential to understand what the interpreter does with your code in order to be able to write it well. For vanilla Prolog, that's not so hard. However, when constraint programming and other extensions are added, that becomes much harder to do.
usgroup
·vor 7 Monaten·discuss
evil(x) -> not(do(x)) which equates to not(evil(x)) or not(do(x)).

The negation would be evil(x) and do(x) by DeMorgan's law.

If what you mean is all(x), evil(x) -> not(do(x))

then the negation would be exists(x), evil(x) and do(x).
usgroup
·vor 8 Monaten·discuss
Thanks for this reference; I found this paper interesting, but it is a satisfiability solver. Inherently it cannot quantify the probability of a subset of events, but it can find a probability assignment given a set of constraints. I.e. prove possibility. More usefully it can show that no such assignment is possible.
usgroup
·vor 8 Monaten·discuss
It's a typo. Its supposed to be a comma not a pipe, and read P(Q ⊆ X , ∀ x ∈ Q (x = 1)). I.e. Q is some subset of X and for all x in Q, x=1.
usgroup
·vor 8 Monaten·discuss
I think that's overly reductivist. In the general case DS operates on up to 2^M sets where M is the cardinality of the hypothesis space: worst case scenario. That's not true if hypotheses are hierarchical, or if evidence is frequently about the same set, or there just isn't enough evidence to fuse to get to 2^M.

In the worst case scenario there are efficient approximation methods which can be used.
usgroup
·vor 8 Monaten·discuss
Injective doesn’t mean bijective, and that seems obvious. That is, presumably very many inputs will map to the output “Yes”.
usgroup
·vor 9 Monaten·discuss
Doing Advent of Code 2025 in SETL this year.