Hacker Newsnew | past | comments | ask | show | jobs | submit | rajiv_abraham's commentslogin

I find Paul's take on simplicity(and complexity) very illuminating.


The Toronto CS group(CS Cabal) has started using Guild: https://guild.host/. It's free.


Thampi takes care of most of the DevOps for machine learning prediction systems by using AWS Lambda(Zappa) and Docker.

Here is the introductory article: https://medium.com/@rajiv.abraham/introducing-thampi-ec40a9b... Repo: https://github.com/scoremedia/thampi


I saw this paper just yesterday from another source. This is brilliant in it's simplicity and the performance is pretty impressive. I hope to write something like this in Julia.

Wondering if I'm missing something but the example is

fact(X, R, Y) :∼ cat facts.tsv

locatedIn(X, Y) :- fact(X, "locatedIn", Y).

locatedIn(X, Y) :- locatedIn(X, Z), fact(Z, "locatedIn", Y).

main(X) :- locatedIn(X, "USA")

I think line 3 could just be locatedIn(X, Y) :- locatedIn(X, Z), locatedIn(Z,Y).

unless I'm missing something.


Welcome, your arrival is not unexpected: https://news.ycombinator.com/item?id=17970854


haha. will update if I have anything worthwhile.


> I think line 3 could just be locatedIn(X, Y) :- locatedIn(X, Z), locatedIn(Z,Y).

This creates potential infinite recursion, which is why the other form is used.


Thanks :)


Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: