TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Classic Data science pipelines built with LLMs

196 点作者 galgia3 个月前

13 条评论

owenthejumper3 个月前
This hits home. I am helping someone analyze medical research data. When I helped before a few years ago we spent a few weeks trying to clean the data, figure out how to run the basic analysis (linear regression, etc), only to arrive at &quot;some&quot; results that were never repeatable because we learned as we built.<p>I am doing it again now. I used Claude to import the data from CSV into a database, then asked it to help me normalize it, which output a txt file with a lot of interesting facts about the data. Next step I asked to write a &quot;fix data&quot; script that will fix all the issues I told it about.<p>Finally, I said &quot;give me univariate analysis, output the results into CSV &#x2F; PNG and then write a separate script to display everything in a jupyter notebook&quot;.<p>Weeks of work into about 2 hours...
评论 #42991028 未加载
评论 #42991271 未加载
评论 #42991303 未加载
评论 #42991445 未加载
评论 #42992079 未加载
评论 #42992433 未加载
评论 #42998930 未加载
评论 #42991138 未加载
erikgahner3 个月前
Most of these examples&#x2F;walkthroughs look like they have been generated by LLMs. They might be useful for teaching purposes, but I believe they significantly underestimate the amount of domain knowledge that often goes into data extraction, data cleaning and data wrangling.
评论 #42990442 未加载
评论 #42990877 未加载
评论 #42990373 未加载
lmeyerov3 个月前
Afaict this skips the evals and alignment side of LLMs. We find result quality is where most of our AI time goes when helping teams across industries and building our own LLM tools. Calling an API and getting bad results is the easy part, while ensuring good results is the part we get paid for.<p>If you look at tools like dspy, even if you disagree with their solutions, much of their effort is on helping get good vs bad results. In practice, I find different LLM use cases to have different correctness approaches, but it&#x27;s not that many. I&#x27;d encourage anyone trying to teach here to always include how to get good results for every method presented, otherwise it is teaching bad &amp; incomplete methods.
plaidfuji3 个月前
This is where things are headed. All that ridiculous busywork that goes into ETL and modeling pipelines… it’s going to turn into “here’s a pile of data that’s useful for answering a question, here’s a prompt that describes how to structure it and what question I want answered, and here’s my oauth token to get it done.” So much data cleaning and prep code will be scrapped over the next few years…
评论 #42990388 未加载
评论 #42990987 未加载
评论 #42990890 未加载
评论 #42990352 未加载
评论 #42990361 未加载
评论 #42991217 未加载
评论 #42990663 未加载
评论 #42990265 未加载
fire_lake3 个月前
Big song and dance to call the OpenAI rest endpoint.
hrpnk3 个月前
What&#x27;s missing in these examples are evals and any advice on creating a verification set that can be used to assert that the system continues to work as designed. Models and their prompting patterns change; one cannot just pretend that a 1-time automation will continue to work indefinitely when the environment is constantly changing.
refactor_master3 个月前
This ETL is nice, but ours is 100k LOC, and spans multiple departments and employments, and I haven’t yet been able to make an LLM write a convincing test that wasn’t already solved by strict typing.<p>I’m not trying to move the goal post here, but LLMs haven’t replaced a single headcount. In fact, it’s only been helping our business so far.
javierluraschi3 个月前
For those interested, you can use LLMs to process CSVs in Hal9 and also generate streamlit apps, in addition, the code is open source so if you want to help us improve our RAG or add new tools, you are more than welcomed.<p>- <a href="https:&#x2F;&#x2F;hal9.ai" rel="nofollow">https:&#x2F;&#x2F;hal9.ai</a><p>- <a href="https:&#x2F;&#x2F;github.com&#x2F;hal9ai&#x2F;hal9">https:&#x2F;&#x2F;github.com&#x2F;hal9ai&#x2F;hal9</a>
wodenokoto3 个月前
I do not understand at all what this does or how to use it. Am I completely out of touch on LLM?
3abiton3 个月前
I wonder if those examples can be dumped down even further for lower age brackets. One of the &quot;powers&quot; of LLms
ei6253 个月前
LLM for ETL is Good idea, it scales well. We need to find ideas which scales well to make the business valid.
Neelschak3 个月前
I tried out Querri and loving it so far
android5213 个月前
is there a typescript equivalent ?