jsonathan
jsonathan OP t1_j83ff5c wrote
Reply to I made a browser extension that displays AI-generated answers to StackOverflow questions by jsonathan
Try it out here: https://chatoverflow.ai
Github repository: https://github.com/shobrook/ChatOverflow
Submitted by jsonathan t3_10zhf5b in coolgithubprojects
jsonathan OP t1_j3l41za wrote
Reply to comment by Eastern_Incident4922 in [P] I built Adrenaline, a debugger that fixes errors and explains them with GPT-3 by jsonathan
Yep! Try it out here: https://useadrenaline.com/
jsonathan OP t1_j3l3xm5 wrote
Reply to comment by [deleted] in [P] I built Adrenaline, a debugger that fixes errors and explains them with GPT-3 by jsonathan
I haven’t used this yet, but my understanding is it can explain code and generate unit tests. It can’t explain and fix errors.
jsonathan OP t1_j3k1brg wrote
Reply to comment by ItsAllJustASickGame in [P] I built Adrenaline, a debugger that fixes errors and explains them with GPT-3 by jsonathan
You can use it here: https://useadrenaline.com
jsonathan OP t1_j3jokpy wrote
Reply to comment by StuntHacks in [P] I built Adrenaline, a debugger that fixes errors and explains them with GPT-3 by jsonathan
What could go wrong?
jsonathan OP t1_j3joesx wrote
Reply to comment by ginger_beer_m in [P] I built Adrenaline, a debugger that fixes errors and explains them with GPT-3 by jsonathan
I didn't. Adrenaline won’t always correctly fix your error, but it can at least give you a starting point.
jsonathan OP t1_j3ido30 wrote
Reply to comment by phobos_0 in [P] I built Adrenaline, a debugger that fixes errors and explains them with GPT-3 by jsonathan
Thanks! Feel free to try it out here. Let me know if any of y’all get some impressive bug fixes.
jsonathan OP t1_j3i0txg wrote
Reply to comment by uoftsuxalot in [P] I built Adrenaline, a debugger that fixes errors and explains them with GPT-3 by jsonathan
Yeah, right now it’s just a thin wrapper around GPT-3, but there’s a lot that could be done to improve it, like using static code analysis to build a better prompt or even training a more specialized model (like this).
jsonathan OP t1_j3hwx5l wrote
Reply to comment by jsonathan in [P] I built Adrenaline, a debugger that fixes errors and explains them with GPT-3 by jsonathan
Right now, this is just a simple demo of what’s possible with AI-driven debugging. But I’d like to build it out so that instead of just explaining errors, Adrenaline provided a ChatGPT-style assistant that can answer questions about your error, and teach you during the debugging process.
This is open-source, so if anyone’s interested in contributing, here’s the GitHub repository: https://github.com/shobrook/adrenaline
jsonathan OP t1_j3hwo11 wrote
Reply to [P] I built Adrenaline, a debugger that fixes errors and explains them with GPT-3 by jsonathan
Try it out here: https://useadrenaline.com
Submitted by jsonathan t3_106q6m9 in MachineLearning
jsonathan OP t1_izxqy9s wrote
Reply to comment by BUGFIX-66 in [P] I made a command-line tool that explains your errors using ChatGPT (link in comments) by jsonathan
This is unrelated. StackExplain doesn’t find and fix bugs, it explains error messages.
jsonathan OP t1_izxpvy0 wrote
Reply to comment by _poisonedrationality in [P] I made a command-line tool that explains your errors using ChatGPT (link in comments) by jsonathan
What mistakes were you talking about then?
jsonathan OP t1_izt16f5 wrote
Reply to comment by Deep-Station-1746 in [P] I made a command-line tool that explains your errors using ChatGPT (link in comments) by jsonathan
No, it’s also proposing a fix for the error.
jsonathan OP t1_izt0lfi wrote
Reply to comment by _poisonedrationality in [P] I made a command-line tool that explains your errors using ChatGPT (link in comments) by jsonathan
In my experience, it has explained every error I’ve encountered in a way that’s at least directionally correct. Can you post a counterexample?
jsonathan OP t1_izszyra wrote
Reply to comment by huitu34 in [P] I made a command-line tool that explains your errors using ChatGPT (link in comments) by jsonathan
Working on something better than an extension. Coming soon.
jsonathan OP t1_izo5vgl wrote
Reply to comment by ReginaldIII in [P] I made a command-line tool that explains your errors using ChatGPT (link in comments) by jsonathan
It's not too wordy if you're a beginner.
jsonathan OP t1_iznwsl6 wrote
Reply to comment by RaptorDotCpp in [P] I made a command-line tool that explains your errors using ChatGPT (link in comments) by jsonathan
I noticed that. Generally it’s “right enough” to help you fix your error, though.
jsonathan OP t1_iznh8ri wrote
jsonathan OP t1_isjine3 wrote
Reply to [P] I built densify, a data augmentation and visualization tool for point clouds by jsonathan
I made this algorithm to "fill the gaps" in point clouds with synthetic data points to increase the density of the cloud. I figured this would be useful for reducing overfitting in machine learning models trained on point cloud data, or otherwise just enriching sparse point cloud datasets.
Please let me know what y'all think! Here's the Github repository.
Submitted by jsonathan t3_y5h8i4 in MachineLearning
jsonathan OP t1_irwvk71 wrote
Reply to comment by GFrings in I made densify –– a tool for enriching point cloud datasets by jsonathan
Not sure I understand what you mean by depth.
jsonathan t1_jbt3hqq wrote
Reply to [P] GITModel: Dynamically generate high-quality hierarchical topic tree representations of GitHub repositories using customizable GNN message passing layers, chatgpt, and topic modeling. by NovelspaceOnly
This is really fascinating, thanks for sharing. I'm also working on generating natural language representations of Python packages. My approach is:
I'd love to learn more about the differences/advantages of your approach compared to something like this. Thanks again for your contribution, this is insanely cool!