Ok, it doesn't need to be your paper. Just find a paper that was so influential that others working on the same problem probably will cite it, and monitor the new citations.
Ask HN: How do you get notified about newest research papers in your field?
61–70 of 138 posts
Re: Ask HN: How do you get notified about newest research papers in your field?
#62I wrote http://www.arxiv-sanity.com/ (code is open source on github: https://github.com/karpathy/arxiv-sanity-preserver ) as a side project intended to mitigate the problem of finding newest relevant work in an area (among many other related problems such as finding similar papers, or seeing what others are reading) and it sees a steady number of few hundred users every day and a few thousand accounts. It's meant to…
Re: Ask HN: How do you get notified about newest research papers in your field?
#63There should be something like reddit for academic papers. With upvotes and what not. But I guess it takes people longer to read a paper than to read reddit content.
It's a neat idea, but I would want identity verification - only upvotes from people well-versed in the field should "count", precisely so it doesn't become Reddit. Which means you would have a chicken-and-egg problem when the service got started and few experts were on it yet.
Re: Ask HN: How do you get notified about newest research papers in your field?
#64https://www.technologyreview.com/contributor/emerging-techno...
Re: Ask HN: How do you get notified about newest research papers in your field?
#65Earlier quoted context omitted.
It's a neat idea, but I would want identity verification - only upvotes from people well-versed in the field should "count", precisely so it doesn't become Reddit. Which means you would have a chicken-and-egg problem when the service got started and few experts were on it yet.
That's actually something we are working on. We are working with verified researchers in the field (industry and academic) to help surface good papers and foster an open discussion.
Re: Ask HN: How do you get notified about newest research papers in your field?
#66Earlier quoted context omitted.
I'd be willing to be the GP is in CS; in CS, conferences are where it's at.
Conferences certainly dominate journals, but most people publish their work on arxiv first, anyway.
Re: Ask HN: How do you get notified about newest research papers in your field?
#67I wrote http://www.arxiv-sanity.com/ (code is open source on github: https://github.com/karpathy/arxiv-sanity-preserver ) as a side project intended to mitigate the problem of finding newest relevant work in an area (among many other related problems such as finding similar papers, or seeing what others are reading) and it sees a steady number of few hundred users every day and a few thousand accounts. It's meant to…
For me getting alerted when there are new papers that cite papers that are relevant towards my current research topic would be ideal. Google scholars has alerts on authors and search queries but for me they don't have enough recall. Its much easier to tell when a paper is relevant for me if it happens to cite 3 of the commonly used datasets for my particular task. btw I use arxiv-sanity, its pretty great, thanks a lo…
Another feature I'd like to add is an ability to follow people, but I'm worried about the exact implementation since the current assumed contract is that your library is private.
One more feature of course I hear about often are comments, but I'm afraid of the site disintegrating into YouTube comments. I think comments have to be done very carefully and would require significantly higher code complexity to incorporate moderation tools, etc. Tricky and non-trivial not just implementation wise but design-wise, incentive-wise, etc.
Re: Ask HN: How do you get notified about newest research papers in your field?
#68I wrote http://www.arxiv-sanity.com/ (code is open source on github: https://github.com/karpathy/arxiv-sanity-preserver ) as a side project intended to mitigate the problem of finding newest relevant work in an area (among many other related problems such as finding similar papers, or seeing what others are reading) and it sees a steady number of few hundred users every day and a few thousand accounts. It's meant to…
For me getting alerted when there are new papers that cite papers that are relevant towards my current research topic would be ideal. Google scholars has alerts on authors and search queries but for me they don't have enough recall. Its much easier to tell when a paper is relevant for me if it happens to cite 3 of the commonly used datasets for my particular task. btw I use arxiv-sanity, its pretty great, thanks a lo…
Re: Ask HN: How do you get notified about newest research papers in your field?
#69Earlier quoted context omitted.
Conferences certainly dominate journals, but most people publish their work on arxiv first, anyway.
I'm in CS (at the intersection of PL/compilers/HPC), and I've never heard of anyone in my field doing that. In fact, the only papers I've read on arxiv have been ones linked on HN.
Re: Ask HN: How do you get notified about newest research papers in your field?
#70Earlier quoted context omitted.
This might be off topic but would you mind sharing how you wrote the website and if you have any tutorial that you can recommend? I want to design something extremely similar for a different application but I do not have much knowledge in web development (I am more experience in programming for numerical and data analysis). I figure this might be a good project to get my feet wet. Thanks!
Not the OP, but this looks like an nginx-powered API (which may be coming through a reverse-proxy) that returns JSON, and Bootstrap 3 + KnockoutJS for the client side to render it all. That doesn't answer your questions about the OP's thought and design processes but maybe it'll give you something to read up.
If I restarted from scratch I would do the server-side in Python because there's just a lot more good libraries available.