wetherbeei | 1 year ago | on: Mayo Clinic's secret weapon against AI hallucinations: Reverse RAG in action
wetherbeei's comments
wetherbeei | 6 years ago | on: AI drives down cost and drudgery of routine patent work
wetherbeei | 6 years ago | on: AI drives down cost and drudgery of routine patent work
wetherbeei | 9 years ago | on: Things learned from Anthony Levandowski's deposition in Waymo vs. Uber
wetherbeei | 9 years ago | on: Show HN: Explore ideas whose patent protection expires today
The patent in question could have been improved upon, and that improvement can still be in force. Say someone patents a widget A + B, and later files a continuation A + B + C (https://en.wikipedia.org/wiki/Continuing_patent_application). The first patent could be expired, but while building your copy of A + B you might come to the same conclusion that the invention also needs to include C (which is still in force) to actually work.
Google Patents focuses on improving patent quality. There's still uncertainty if a granted patent is actually valid. If we can improve the prior art finding process for inventors and examiners, then fewer overly-broad patents will be granted, and it will be easier to tell if an invention actually infringes a patent.
Then we can start to think about making patent information more useful for part of the original purpose - as a transfer of knowledge to the public domain in exchange for a temporary exclusive right.
wetherbeei | 10 years ago | on: NSA Patents
wetherbeei | 12 years ago | on: Developing a mobile cross-platform library in C++
[1] https://bitbucket.org/wetherbeei/acceljava
[2] https://bitbucket.org/wetherbeei/acceljava/src/4140d721c11b5...
wetherbeei | 12 years ago | on: To-Do Lists Don't Work
Paradox of choice, lack of context, lack of commitment devices, and heterogeneous complexity are all solved by the nature of then.io. I would argue that priority doesn't matter, only due dates do. If you have too many tasks to finish before a due date, then you need to make the decision of which due date to push back.
wetherbeei | 12 years ago | on: frak: Transform collections of strings into regular expressions
https://www.lri.fr/~hansen/proceedings/2012/GECCO/companion/...
wetherbeei | 12 years ago | on: frak: Transform collections of strings into regular expressions
It would be cool if the inputs weren't matched exactly, and frak could figure out a general pattern for your inputs (decimals, capitalized words, etc). That could help newcomers with a starting expression that matches their inputs.
wetherbeei | 12 years ago | on: Obama to Offer Plan Meant to Ease Concerns on Surveillance
Asked about if Snowden is a Patriot: "No he is not. I called for a thorough review of surveillance programs before Snowden leaks. A thoughtful, fact-based debate. I signed an executive order that provided protections for whistleblowers in the intelligence community, so there were better avenues for leaking information."
wetherbeei | 12 years ago | on: Obama to Offer Plan Meant to Ease Concerns on Surveillance
1. Work with congress to enact reforms to PATRIOT Act. He said the US is not allowed to listen to any phone calls without a warrant.
2. Work with congress to improve the public's confidence in FISA. Consider changes: a judge reviewing a request only hears one side of the story, but we could allow an outside party to defend civil liberties and privacy "in certain cases".
3. Be more transparent. Create a website to provide more transparency.
4. Form an outside group of intelligence experts to review surveillance technologies.
wetherbeei | 12 years ago | on: Dear Google: Don't be AT&T
"Q: Can I run a server from my home? A: Our Terms of Service prohibit running a server. However, use of applications such as multi-player gaming, video-conferencing, home security and others which may include server capabilities but are being used for legal and non-commercial purposes are acceptable and encouraged."
wetherbeei | 13 years ago | on: GoPar: Automatic Loop Parallelization of Go Programs
The point is your code is very verbose compared to the original, and anyone will take at least twice as long trying to figure out the interaction between channels and goroutine launches vs the sequential version.
for i, v := range a { a[i] = process(v) }
wetherbeei | 13 years ago | on: All 37signals Apps Were Down
wetherbeei | 13 years ago | on: Products I Wish Existed
wetherbeei | 13 years ago | on: Show HN: Send secure, self destructing messages
I was aiming for the most secure implementation, assuming someone had control over many pieces of the puzzle/network.
wetherbeei | 13 years ago | on: Show HN: Send secure, self destructing messages
If you want a real challenge, figure out how to do that.
wetherbeei | 13 years ago | on: Heterogeneous Parallel Programming
For the final project I replaced the NPC AI in Half-Life 2 so that the optimal position calculations ran on the GPU and took into account many more parameters than the CPU version.
wetherbeei | 13 years ago | on: Rootbeer GPU Compiler Lets Almost Any Java Code Run On the GPU
The headline is misleading; only a small subset of Java can be ported to the GPU. It works great for inner math loops and such, but not for higher level problems. Even if the author managed to find a way to translate more complicated problems (I see object locking in the list of features), they would be better suited to run on a CPU, or refactored to avoid locks.
"The check grounding API returns an overall support score of 0 to 1, which indicates how much the answer candidate agrees with the given facts. The response also includes citations to the facts supporting each claim in the answer candidate.
Perfect grounding requires that every claim in the answer candidate must be supported by one or more of the given facts. In other words, the claim is wholly entailed by the facts. If the claim is only partially entailed, it is not considered grounded."
There's an example input and grounded output scores that shows how the model splits into claims, decides if the claim needs grounding, and the resulting entailment score for that claim in: https://cloud.google.com/generative-ai-app-builder/docs/chec...