{"@context":"https://schema.org","@type":"NewsArticle","generatedAt":"2026-09-18T17:00:43.709Z","headline":"LLM 分类就是特征工程：用逻辑回归包装 LLM 判定","description":"作者提出 LLM 直接当分类器缺乏校准和可解释性，更好的做法是把 LLM 判定当作特征，外接逻辑回归等标准机器学习模型。","url":"https://www.aioga.com/news/cmu6otfhp058prowkm9vj7fur/","mainEntityOfPage":"https://www.aioga.com/news/cmu6otfhp058prowkm9vj7fur/","datePublished":"2026-09-18T08:08:34.000Z","dateModified":"2026-09-18T08:08:34.000Z","inLanguage":"zh-CN","publisher":{"@type":"NewsMediaOrganization","name":"Aioga","url":"https://www.aioga.com"},"citation":["https://minimallysufficient.com/posts/llm-classification-is-feature-extraction","https://aihot.news/items/cmu6otfhp058prowkm9vj7fur"],"canonicalUrl":"https://www.aioga.com/news/cmu6otfhp058prowkm9vj7fur/","directAnswer":{"@type":"Answer","text":"文章认为，直接通过提示词让大语言模型返回分类标签，虽然可能取得较好表现，但在校准、可解释性和分布适配方面存在不足。作者建议将模型判定作为特征，再使用逻辑回归等标准机器学习模型完成分类。","url":"https://www.aioga.com/news/cmu6otfhp058prowkm9vj7fur/","dateCreated":"2026-09-18T08:08:34.000Z","author":{"@type":"Organization","@id":"https://www.aioga.com/authors/aioga-editorial/#editorial-team","name":"Aioga Editorial Team","url":"https://www.aioga.com/authors/aioga-editorial/"}},"evidence":[{"@type":"CreativeWork","name":"minimallysufficient.com source article","url":"https://minimallysufficient.com/posts/llm-classification-is-feature-extraction","datePublished":"2026-09-18T08:08:34.000Z","provider":{"@type":"Organization","name":"minimallysufficient.com","url":"https://minimallysufficient.com/posts/llm-classification-is-feature-extraction"}},{"@type":"CreativeWork","name":"AIHot archive record","url":"https://aihot.news/items/cmu6otfhp058prowkm9vj7fur","datePublished":"2026-09-18T08:08:34.000Z","provider":{"@type":"Organization","name":"AIHot","url":"https://aihot.news/items/cmu6otfhp058prowkm9vj7fur"}}],"aggregationSource":"Hacker News 热门（buzzing.cc 中文翻译）","originalPublisher":{"name":"minimallysufficient.com","url":"https://minimallysufficient.com/posts/llm-classification-is-feature-extraction"},"geoDeepAnswer":null,"article":{"id":"cmu6otfhp058prowkm9vj7fur","slug":"cmu6otfhp058prowkm9vj7fur","url":"https://www.aioga.com/news/cmu6otfhp058prowkm9vj7fur/","title":"LLM 分类就是特征工程：用逻辑回归包装 LLM 判定","title_en":"","summary":"作者提出 LLM 直接当分类器缺乏校准和可解释性，更好的做法是把 LLM 判定当作特征，外接逻辑回归等标准机器学习模型。","source":"Hacker News 热门（buzzing.cc 中文翻译）","sourceUrl":"https://minimallysufficient.com/posts/llm-classification-is-feature-extraction","aiHotUrl":"https://aihot.news/items/cmu6otfhp058prowkm9vj7fur","publishedAt":"2026-09-18T08:08:34.000Z","category":"行业动态","score":58,"selected":false,"articleBody":["LLMs-as-classifiers, prompts applied to a context and returning a label, suck to work with. This is especially painful because they often perform pretty decently.","But let&rsquo;s consider some of the things we&rsquo;d want in a classifier and see how an LLM-as-classifier stacks up:","The LLM has some prior information baked in which might be a poor fit for our distribution. For instance the LLM won&rsquo;t know whether we&rsquo;re testing on a population where our positive class is rare or an enriched population where our positive class is relatively prevalent. And I guess you can give it that context but now you&rsquo;ve got to modify that for each new population and also, as in our first point, it&rsquo;s not clear that this will be appropriately incorporated into the LLM&rsquo;s judgement.","These failures are not the fault of the LLM: it&rsquo;s not designed as a classifier and indeed has no mechanism for plausibly doing some of these things. But only because we&rsquo;re thinking of things incorrectly…","With the proper framework that harnesses the LLM&rsquo;s power we can get the power of the LLM with the convenience of stock ML algorithms. For a taste of what&rsquo;s possible consider wrapping the LLM verdict with a simple logistic regression:","\\[ p(y = 1 \\mid x) = \\sigma(\\alpha + \\beta \\cdot LLM(x)) \\]","Note that in the special case of \\(\\beta \\rightarrow \\infty\\) this basically recovers our LLM classifier!! But that&rsquo;s a dumb parameter selection policy. We should instead do our usual approach of estimating our parameters using some training data. This will then collapse into two cases and we just get the empirical estimates.","\\[ p(y = k \\mid LLM(x) = 1) = \\frac{\\sum_{i} I(y_{i} = k \\text{ and } LLM(x_{i}) = 1)}{\\sum_{i} I(LLM(x_{i}) = 1)} \\]","Now let&rsquo;s revisit our desiderata:","We&rsquo;ve basically recovered all of the nice properties we wanted from our model! Can we go even further?","Suppose we are not pleased with the performance of our classifier: what should we do? In the LLM-as-classifier case our only option is to try messing with the prompt. This is an arcane undertaking about which advice abounds on the internet but wisdom is scarce. Best of luck to you.","From a ML point of view the way you make your model better is:","Let’s make this more concrete using an example. We’ll use the SemEval 2018 Task 3 dataset：https://github.com/Cyvhee/SemEval2018-Task3 2：#fn:2 , a collection of 4618 tweets (3834 train / 784 test) labeled for irony by expert annotators. Irony is a natural fit for this post it’s an NLP task where an LLM clearly has real signal and we benefit from the worldly knowledge implicitly embedded in the LLM.","Our prompt asks the model to make a binary irony judgment, and we run it over all the tweets at once as a batch job:","We get the following performance just from this prompt","It&rsquo;s actually quite remarkable how well this does as one-shot. You wouldn&rsquo;t expect this to be possible without learning which is the cool thing about LLMs. Of course it&rsquo;s still pretty meh: the Brier score is quite bad as we don&rsquo;t have calibration (indeed just random guessing gets us a Brier score of 0.25).","We can do better with our logistic regression which achieves calibration (though note it doesn&rsquo;t affect the ordering so F1 is the same).","Let&rsquo;s consider some additional LLM features. Firstly let&rsquo;s take a quick look at our misclassifications (they&rsquo;re the same from either model)","In light of this let&rsquo;s modify our prompt as follows","We&rsquo;ll also start adding in some deterministic features that we can compute:","So do we see improvements? We compare three nested models: verdict only, verdict + all LLM features, verdict + all features (LLM + rule-based).","We see a clear benefit from each level of additional features including the deterministic features which lie outside of the LLM.","The coefficient figure shows which features the model actually relies on, controlling for all others:","Figure 1: Logistic regression coefficients (± 1 SE), sorted by |coefficient|.","How does our approach compare to the published literature on this dataset?","We see that our initial LLM classifier beats the competition winner handily (0.747 vs 0.705). With the feature engineering perspective we have overlapping CIs with the post-competition state of the art, using nothing but a logistic regression on top of LLM-extracted features.","Getting LLMs into shape to reliably serve as classifiers is hard work but potentially highly impactful. There&rsquo;s more and more research that relies on LLMs for classification: like the How People Use ChatGPT：https://minimallysufficient.com/ephemera/how-people-use-chatgpt/ which uses LLMs to classify conversations with LLMs 5：#fn:5 or the &ldquo;slop-vestigation：https://x.com/RyanGreenblatt/status/2092692685224325542?s=20&rdquo; of the Huggingface incident. We&rsquo;re going to need to get high quality results out of these tools.","Fortunately, there&rsquo;s a growing body of papers which are making this point.","Personally I am interested in investigating agentic classifiers. Instead of a fixed feature set or class statement you empower the LLM to investigate itself. The LLM can use features of the investigative process as features when classifying: essentially grading itself on the rigor and comprehensiveness of the investigation. And with a reliable test set we can make statistically valid inferences on the results!","This shows up with multimodal models not even using the images：https://arxiv.org/abs/2603.21687. ↩︎：#fnref:1","Van Hee, C., Lefever, E., & Hoste, V. (2018). SemEval-2018 Task 3: Irony Detection in English Tweets. In Proceedings of The 12th International Workshop on Semantic Evaluation (pp. 39–50). Association for Computational Linguistics. https://aclanthology.org/S18-1005/：https://aclanthology.org/S18-1005/ ↩︎：#fnref:2","Wu et al. (2018). THU\\_NGN at SemEval-2018 Task 3: Tweet Irony Detection with Densely Connected LSTM and Multi-task Learning. Proceedings of SemEval 2018 . ↩︎：#fnref:3","Baziotis et al. (2018). NTUA-SLP at SemEval-2018 Task 3: Tracking Ironic Tweets using Ensembles of Word and Character Level Attentive RNNs. Proceedings of SemEval 2018 . ↩︎：#fnref:4","Have feedback? I'd love to hear from you — email：# or keep it anonymous：https://www.admonymous.co/minimallysufficient."],"articleImages":[],"mediaStatus":"none","articleBodyZh":["将大语言模型（LLM）作为分类器，即向上下文应用提示并返回标签，使用起来很糟糕。尤其令人痛苦的是，它们的性能往往相当不错。","但让我们考虑一下我们希望分类器具备的一些特性，以及将LLM作为分类器在这些方面表现如何：","LLM 内置了一些先验信息，这些信息可能与我们的分布不符。例如，LLM 不会知道我们是在测试一个正类稀少的人群，还是在测试一个正类相对普遍的选择人群。我想你可以给它提供这些上下文，但现在你必须为每一个新的人群修改它，而且，正如我们的第一个观点所述，还不清楚这是否会被适当地纳入LLM的判断。","这些失败并不是LLM的错：它并不是作为分类器设计的，实际上也没有合理完成这类任务的机制。但这只是因为我们在思考问题时方法不对……","通过适当的框架来利用LLM的能力，我们可以获得LLM的强大功能，同时享有标准机器学习算法的便利。想了解可能性的话，可以考虑用一个简单的逻辑回归来包装LLM的判决：","\\[ p(y = 1 \\mid x) = \\sigma(\\alpha + \\beta \\cdot LLM(x)) \\]","注意，在\\(\\beta \\rightarrow \\infty\\)的特殊情况下，这基本上就是恢复了我们的LLM分类器！！但那是一个愚蠢的参数选择策略。我们应该采用通常的方法，使用一些训练数据来估计参数。这样就会归结为两种情况，我们只需获得经验估计。","\\[ p（y = k \\mid LLM（x） = 1） = \\frac{\\sum_{i} I（y_{i} = k \\text{ 和 } LLM（x_{i}） = 1）}{\\sum_{i} I（LLM（x_{i}） = 1）} \\]","现在让我们重新审视我们的期望：","我们基本上已经恢复了我们模型所希望的所有良好特性！我们还能进一步吗？","假设我们对分类器的性能不满意：我们应该怎么办？在LLM作为分类器的情况下，我们唯一的选择是尝试改动提示。这是一项神秘的工作，互联网上有很多建议，但真正的智慧却很少。祝你好运。","从机器学习的角度来看，让你的模型变得更好是：","我们用一个例子让情况更具体。我们将使用SemEval 2018任务3数据集：https：//github.com/Cyvhee/SemEval2018-Task3 2：#fn：2，这是一组由专家标注者标记为讽刺的4618条推文（3834条train / 784条测试）。讽刺是这篇文章的自然契合，这是一个NLP任务，LLM显然有真实信号，我们从LLM中隐含的世俗知识中受益。","我们的提示要求模型做出二元讽刺判断，我们会一次性对所有推文进行批量处理：","仅凭这个提示，我们就得到了以下的表演","这款游戏作为一次性游戏的表现其实相当惊人。你不会指望没有学习就能做到这一点，这正是大型语言模型的好处。当然，整体还是很一般：Brier分数很差，因为我们没有校准（实际上，随便猜测的Brier分数只有0.25）。","我们可以用逻辑回归做得更好，因为它能实现校准（不过注意，这不会影响排序，所以F1是一样的）。","让我们来看看一些额外的大型语言模型特性。首先，让我们快速看看我们的错误分类（无论哪个模型都是一样的）","鉴于此，我们修改一下提示如下","我们还会开始添加一些确定性特征，这些特征我们可以计算：","那么我们看到改进了吗？我们比较了三个嵌套模型：仅判决模型、判决+所有LLM特征、判决+所有特征（LLM+基于规则）。","我们看到每个附加功能层面的明显益处，包括那些位于LLM之外的确定性特征。","系数图显示模型实际依赖的特征，并控制其他所有特征：","图1：逻辑回归系数（± 1 SE），按|系数|排序。","我们的方法与该数据集的已发表文献相比如何？","我们看到初始LLM分类器远远领先竞赛冠军（0.747对0.705）。从特征工程角度看，我们有重叠的CI与竞赛后最先进的技术，仅基于LLM提取特征进行逻辑回归。","让大型语言模型（LLM）能够可靠地作为分类工具是一项艰巨的工作，但潜力巨大。越来越多的研究依赖LLM进行分类：比如《How People Use ChatGPT》：https：//minimallysufficient.com/ephemera/how-people-use-chatgpt/，利用LLM对与LLM的对话进行分类，5：#fn：5，或者Huggingface事件中的“slop-vestigation：https：//x.com/RyanGreenblatt/status/2092692685224325542？s=20”。我们需要从这些工具中获得高质量的结果。","幸运的是，越来越多的论文正在提出这一观点。","我个人对研究代理分类器很感兴趣。你不是固定的特征集或类陈述，而是赋予LLM自我调查的能力。LLM可以在分类时利用调查过程的特征作为特征：本质上是根据调查的严谨性和全面性来给自己打分。有了可靠的测试集，我们就能对结果做出统计上有效的推断！","这在多模态模型中甚至不使用图片时也能看到：https：//arxiv.org/abs/2603.21687。︎ ↩：#fnref：1","Van Hee， C.， Lefever， E.， 和 Hoste， V.（2018）。SsemiEval-2018 任务3：英语推文中的讽刺检测。载于第12届国际语义评估研讨会论文集（第39–50页）。计算语言学协会。https://aclanthology.org/S18-1005/:https://aclanthology.org/S18-1005/ ↩︎：#fnref：2","Wu 等（2018）。THU/_NGN 于2018年半期评估任务3：通过密集连接LSTM和多任务学习进行推文讽刺检测。2018年学期评估论文集。︎ ↩：#fnref：3","Baziotis 等人（2018）。NTUA-SLP 在 SemEval-2018 任务 3：利用词语和字符级别注意力 RNN 集合追踪讽刺推文。SemEval 2018 会议论文集。︎ ↩：#fnref：4","有反馈吗？我很想听听你的声音——邮箱：#或保持匿名：https：//www.admonymous.co/minimallysufficient。"],"translationStatus":"translated","bodyOrigin":"source-page","editorial":{"summary":"文章认为，直接通过提示词让大语言模型返回分类标签，虽然可能取得较好表现，但在校准、可解释性和分布适配方面存在不足。作者建议将模型判定作为特征，再使用逻辑回归等标准机器学习模型完成分类。","background":"来源指出，大语言模型包含的先验信息可能不适合目标数据分布，也未必能正确反映阳性类别的实际比例。作者认为，这些问题与模型并非为分类器设计有关，并展示了用训练数据估计逻辑回归参数的思路。","viewpoint":"Aioga 判断：把大语言模型输出置于可训练的统计框架中，可能比直接把提示词结果当作最终分类更便于校准和解释。但这一判断依赖训练数据及其与目标分布的匹配程度，不能据此保证分类效果。","implications":"可能影响：采用该思路的团队需要准备带标签的训练数据，并评估大语言模型判定与目标分布的关系。逻辑回归包装不代表模型先验问题会自动消失，也不足以证明所有分类任务都适合这一方案。","nextStep":"后续观察：应关注作者是否提供训练数据、评估结果及不同数据分布下的比较，并核验逻辑回归包装后在校准性、可解释性和分类表现上的实际变化。","evidenceRefs":["title","summary","articleBody","source"],"status":"published","aiGenerated":true,"autoApproved":true,"generatedBy":"aioga-editorial:gpt-5.6-sol","reviewedBy":"aioga-editorial-review:gpt-5.6-sol","generatedAt":"2026-09-18T09:11:25.137Z","sourceHash":"baeffb7600fcaf22","review":{"approved":true,"groundedness":93,"clarity":92,"duplicationRisk":10,"blockingIssues":[],"notes":[]},"validation":{"passed":true,"mode":"ai-auto","revisions":0,"checks":["schema","length","source-attribution","editorial-labels","inference-boundary","low-source-overlap","no-html","independent-ai-review"]}},"tags":["行业动态","Hacker News 热门（buzzing.cc 中文翻译）"],"translations":{"zh-CN":{"title":"LLM 分类就是特征工程：用逻辑回归包装 LLM 判定","summary":"作者提出 LLM 直接当分类器缺乏校准和可解释性，更好的做法是把 LLM 判定当作特征，外接逻辑回归等标准机器学习模型。","category":"行业动态","source":"minimallysufficient.com","aggregationSource":"Hacker News 热门（buzzing.cc 中文翻译）","pageTitle":"LLM 分类就是特征工程：用逻辑回归包装 LLM 判定 - Aioga AI资讯","description":"作者提出 LLM 直接当分类器缺乏校准和可解释性，更好的做法是把 LLM 判定当作特征，外接逻辑回归等标准机器学习模型。","url":"https://www.aioga.com/news/cmu6otfhp058prowkm9vj7fur/","articleBody":["将大语言模型（LLM）作为分类器，即向上下文应用提示并返回标签，使用起来很糟糕。尤其令人痛苦的是，它们的性能往往相当不错。","但让我们考虑一下我们希望分类器具备的一些特性，以及将LLM作为分类器在这些方面表现如何：","LLM 内置了一些先验信息，这些信息可能与我们的分布不符。例如，LLM 不会知道我们是在测试一个正类稀少的人群，还是在测试一个正类相对普遍的选择人群。我想你可以给它提供这些上下文，但现在你必须为每一个新的人群修改它，而且，正如我们的第一个观点所述，还不清楚这是否会被适当地纳入LLM的判断。","这些失败并不是LLM的错：它并不是作为分类器设计的，实际上也没有合理完成这类任务的机制。但这只是因为我们在思考问题时方法不对……","通过适当的框架来利用LLM的能力，我们可以获得LLM的强大功能，同时享有标准机器学习算法的便利。想了解可能性的话，可以考虑用一个简单的逻辑回归来包装LLM的判决：","\\[ p(y = 1 \\mid x) = \\sigma(\\alpha + \\beta \\cdot LLM(x)) \\]","注意，在\\(\\beta \\rightarrow \\infty\\)的特殊情况下，这基本上就是恢复了我们的LLM分类器！！但那是一个愚蠢的参数选择策略。我们应该采用通常的方法，使用一些训练数据来估计参数。这样就会归结为两种情况，我们只需获得经验估计。","\\[ p（y = k \\mid LLM（x） = 1） = \\frac{\\sum_{i} I（y_{i} = k \\text{ 和 } LLM（x_{i}） = 1）}{\\sum_{i} I（LLM（x_{i}） = 1）} \\]","现在让我们重新审视我们的期望：","我们基本上已经恢复了我们模型所希望的所有良好特性！我们还能进一步吗？","假设我们对分类器的性能不满意：我们应该怎么办？在LLM作为分类器的情况下，我们唯一的选择是尝试改动提示。这是一项神秘的工作，互联网上有很多建议，但真正的智慧却很少。祝你好运。","从机器学习的角度来看，让你的模型变得更好是：","我们用一个例子让情况更具体。我们将使用SemEval 2018任务3数据集：https：//github.com/Cyvhee/SemEval2018-Task3 2：#fn：2，这是一组由专家标注者标记为讽刺的4618条推文（3834条train / 784条测试）。讽刺是这篇文章的自然契合，这是一个NLP任务，LLM显然有真实信号，我们从LLM中隐含的世俗知识中受益。","我们的提示要求模型做出二元讽刺判断，我们会一次性对所有推文进行批量处理：","仅凭这个提示，我们就得到了以下的表演","这款游戏作为一次性游戏的表现其实相当惊人。你不会指望没有学习就能做到这一点，这正是大型语言模型的好处。当然，整体还是很一般：Brier分数很差，因为我们没有校准（实际上，随便猜测的Brier分数只有0.25）。","我们可以用逻辑回归做得更好，因为它能实现校准（不过注意，这不会影响排序，所以F1是一样的）。","让我们来看看一些额外的大型语言模型特性。首先，让我们快速看看我们的错误分类（无论哪个模型都是一样的）","鉴于此，我们修改一下提示如下","我们还会开始添加一些确定性特征，这些特征我们可以计算：","那么我们看到改进了吗？我们比较了三个嵌套模型：仅判决模型、判决+所有LLM特征、判决+所有特征（LLM+基于规则）。","我们看到每个附加功能层面的明显益处，包括那些位于LLM之外的确定性特征。","系数图显示模型实际依赖的特征，并控制其他所有特征：","图1：逻辑回归系数（± 1 SE），按|系数|排序。","我们的方法与该数据集的已发表文献相比如何？","我们看到初始LLM分类器远远领先竞赛冠军（0.747对0.705）。从特征工程角度看，我们有重叠的CI与竞赛后最先进的技术，仅基于LLM提取特征进行逻辑回归。","让大型语言模型（LLM）能够可靠地作为分类工具是一项艰巨的工作，但潜力巨大。越来越多的研究依赖LLM进行分类：比如《How People Use ChatGPT》：https：//minimallysufficient.com/ephemera/how-people-use-chatgpt/，利用LLM对与LLM的对话进行分类，5：#fn：5，或者Huggingface事件中的“slop-vestigation：https：//x.com/RyanGreenblatt/status/2092692685224325542？s=20”。我们需要从这些工具中获得高质量的结果。","幸运的是，越来越多的论文正在提出这一观点。","我个人对研究代理分类器很感兴趣。你不是固定的特征集或类陈述，而是赋予LLM自我调查的能力。LLM可以在分类时利用调查过程的特征作为特征：本质上是根据调查的严谨性和全面性来给自己打分。有了可靠的测试集，我们就能对结果做出统计上有效的推断！","这在多模态模型中甚至不使用图片时也能看到：https：//arxiv.org/abs/2603.21687。︎ ↩：#fnref：1","Van Hee， C.， Lefever， E.， 和 Hoste， V.（2018）。SsemiEval-2018 任务3：英语推文中的讽刺检测。载于第12届国际语义评估研讨会论文集（第39–50页）。计算语言学协会。https://aclanthology.org/S18-1005/:https://aclanthology.org/S18-1005/ ↩︎：#fnref：2","Wu 等（2018）。THU/_NGN 于2018年半期评估任务3：通过密集连接LSTM和多任务学习进行推文讽刺检测。2018年学期评估论文集。︎ ↩：#fnref：3","Baziotis 等人（2018）。NTUA-SLP 在 SemEval-2018 任务 3：利用词语和字符级别注意力 RNN 集合追踪讽刺推文。SemEval 2018 会议论文集。︎ ↩：#fnref：4","有反馈吗？我很想听听你的声音——邮箱：#或保持匿名：https：//www.admonymous.co/minimallysufficient。"]},"en":{"title":"LLM classification is feature engineering: using logistic regression to wrap LLM judgments","summary":"The authors propose that LLMs acting directly as classifiers lack calibration and interpretability; a better approach is to treat LLM decisions as features and connect them to standard machine learning models such as external logistic regression.","category":"Industry","source":"Hacker News 热门（buzzing.cc 中文翻译）","aggregationSource":"Hacker News 热门（buzzing.cc 中文翻译）","pageTitle":"LLM classification is feature engineering: using logistic regression to wrap LLM judgments - Aioga AI News","description":"The authors propose that LLMs acting directly as classifiers lack calibration and interpretability; a better approach is to treat LLM decisions as features and connect them to stan...","url":"https://www.aioga.com/en/news/cmu6otfhp058prowkm9vj7fur/","contentTranslated":true,"sourceHash":"7520222b3f2aeed0","translatedAt":"2026-09-18T09:01:52.892Z"},"ja":{"title":"LLM分類は特徴工学であり、ロジスティック回帰を用いてLLMの判断をラップするものです","summary":"著者らは、LLMが直接分類器として機能する際にはキャリブレーションや解釈性に欠けていると提案しています。より良いアプローチは、LLMの意思決定を特徴として扱い、外部ロジスティック回帰などの標準的な機械学習モデルと結びつけることです。","category":"業界動向","source":"Hacker News 热门（buzzing.cc 中文翻译）","aggregationSource":"Hacker News 热门（buzzing.cc 中文翻译）","pageTitle":"LLM分類は特徴工学であり、ロジスティック回帰を用いてLLMの判断をラップするものです - Aioga AIニュース","description":"著者らは、LLMが直接分類器として機能する際にはキャリブレーションや解釈性に欠けていると提案しています。より良いアプローチは、LLMの意思決定を特徴として扱い、外部ロジスティック回帰などの標準的な機械学習モデルと結びつけることです。","url":"https://www.aioga.com/ja/news/cmu6otfhp058prowkm9vj7fur/","contentTranslated":true,"sourceHash":"7520222b3f2aeed0","translatedAt":"2026-09-18T09:01:53.466Z"},"ko":{"title":"LLM 분류는 특징 공학으로, 로지스틱 회귀를 이용해 LLM 판단을 감싸는 방법입니다","summary":"저자들은 LLM이 분류기로서 직접 작동하면 보정성과 해석 가능성이 부족하다고 제안합니다; 더 나은 접근법은 LLM 결정을 특징으로 다루고 외부 로지스틱 회귀와 같은 표준 머신러닝 모델과 연결하는 것입니다.","category":"업계 동향","source":"Hacker News 热门（buzzing.cc 中文翻译）","aggregationSource":"Hacker News 热门（buzzing.cc 中文翻译）","pageTitle":"LLM 분류는 특징 공학으로, 로지스틱 회귀를 이용해 LLM 판단을 감싸는 방법입니다 - Aioga AI 뉴스","description":"저자들은 LLM이 분류기로서 직접 작동하면 보정성과 해석 가능성이 부족하다고 제안합니다; 더 나은 접근법은 LLM 결정을 특징으로 다루고 외부 로지스틱 회귀와 같은 표준 머신러닝 모델과 연결하는 것입니다.","url":"https://www.aioga.com/ko/news/cmu6otfhp058prowkm9vj7fur/","contentTranslated":true,"sourceHash":"7520222b3f2aeed0","translatedAt":"2026-09-18T09:02:02.907Z"},"es":{"title":"La clasificación LLM es ingeniería de características: utilizando regresión logística para envolver juicios LLM","summary":"Los autores proponen que los LLMs que actúan directamente como clasificadores carecen de calibración e interpretabilidad; un mejor enfoque es tratar las decisiones de LLM como características y conectarlas con modelos estándar de aprendizaje automático como la regresión logística externa.","category":"Industria","source":"Hacker News 热门（buzzing.cc 中文翻译）","aggregationSource":"Hacker News 热门（buzzing.cc 中文翻译）","pageTitle":"La clasificación LLM es ingeniería de características: utilizando regresión logística para envolver juicios LLM - Aioga Noticias de IA","description":"Los autores proponen que los LLMs que actúan directamente como clasificadores carecen de calibración e interpretabilidad; un mejor enfoque es tratar las decisiones de LLM como cara...","url":"https://www.aioga.com/es/news/cmu6otfhp058prowkm9vj7fur/","contentTranslated":true,"sourceHash":"7520222b3f2aeed0","translatedAt":"2026-09-18T09:02:02.828Z"},"fr":{"title":"La classification LLM est de l’ingénierie des caractéristiques : utiliser la régression logistique pour envelopper les jugements LLM","summary":"Les auteurs proposent que les LLM agissant directement comme classificateurs manquent d’étalonnage et d’interprétabilité ; une meilleure approche consiste à traiter les décisions de LLM comme des fonctionnalités et à les connecter à des modèles standards d’apprentissage automatique tels que la régression logistique externe.","category":"Industrie","source":"Hacker News 热门（buzzing.cc 中文翻译）","aggregationSource":"Hacker News 热门（buzzing.cc 中文翻译）","pageTitle":"La classification LLM est de l’ingénierie des caractéristiques : utiliser la régression logistique pour envelopper les jugements LLM - Aioga Actualités IA","description":"Les auteurs proposent que les LLM agissant directement comme classificateurs manquent d’étalonnage et d’interprétabilité ; une meilleure approche consiste à traiter les décisions d...","url":"https://www.aioga.com/fr/news/cmu6otfhp058prowkm9vj7fur/","contentTranslated":true,"sourceHash":"7520222b3f2aeed0","translatedAt":"2026-09-18T09:02:12.323Z"},"de":{"title":"LLM-Klassifikation ist Feature Engineering: Logistische Regression zur Umwicklung von LLM-Urteilen","summary":"Die Autoren schlagen vor, dass LLMs, die direkt als Klassifikatoren agieren, keine Kalibrierung und Interpretierbarkeit haben; ein besserer Ansatz ist, LLM-Entscheidungen als Merkmale zu behandeln und sie mit Standardmodellen des maschinellen Lernens wie der externen logistischen Regression zu verknüpfen.","category":"行业动态","source":"Hacker News 热门（buzzing.cc 中文翻译）","aggregationSource":"Hacker News 热门（buzzing.cc 中文翻译）","pageTitle":"LLM-Klassifikation ist Feature Engineering: Logistische Regression zur Umwicklung von LLM-Urteilen - Aioga KI-News","description":"Die Autoren schlagen vor, dass LLMs, die direkt als Klassifikatoren agieren, keine Kalibrierung und Interpretierbarkeit haben; ein besserer Ansatz ist, LLM-Entscheidungen als Merkm...","url":"https://www.aioga.com/de/news/cmu6otfhp058prowkm9vj7fur/","contentTranslated":true,"sourceHash":"7520222b3f2aeed0","translatedAt":"2026-09-18T09:02:12.496Z"},"pt-BR":{"title":"A classificação de LLM é engenharia de características: usando regressão logística para envolver julgamentos de LLM","summary":"Os autores propõem que LLMs atuando diretamente como classificadores carecem de calibração e interpretabilidade; uma abordagem melhor é tratar decisões de LLM como características e conectá-las a modelos padrão de aprendizado de máquina, como regressão logística externa.","category":"行业动态","source":"Hacker News 热门（buzzing.cc 中文翻译）","aggregationSource":"Hacker News 热门（buzzing.cc 中文翻译）","pageTitle":"A classificação de LLM é engenharia de características: usando regressão logística para envolver julgamentos de LLM - Aioga Notícias de IA","description":"Os autores propõem que LLMs atuando diretamente como classificadores carecem de calibração e interpretabilidade; uma abordagem melhor é tratar decisões de LLM como características...","url":"https://www.aioga.com/pt-BR/news/cmu6otfhp058prowkm9vj7fur/","contentTranslated":true,"sourceHash":"7520222b3f2aeed0","translatedAt":"2026-09-18T09:02:21.927Z"},"ru":{"title":"Классификация LLM — это инженерия признаков: использование логистической регрессии для обертывания суждений LLM","summary":"Авторы предполагают, что LLM, действующие непосредственно как классификаторы, не имеют калибровки и интерпретируемости; лучшим подходом является рассматривать решения LLM как признаки и связывать их со стандартными моделями машинного обучения, такими как внешняя логистическая регрессия.","category":"行业动态","source":"Hacker News 热门（buzzing.cc 中文翻译）","aggregationSource":"Hacker News 热门（buzzing.cc 中文翻译）","pageTitle":"Классификация LLM — это инженерия признаков: использование логистической регрессии для обертывания суждений LLM - Aioga Новости ИИ","description":"Авторы предполагают, что LLM, действующие непосредственно как классификаторы, не имеют калибровки и интерпретируемости; лучшим подходом является рассматривать решения LLM как призн...","url":"https://www.aioga.com/ru/news/cmu6otfhp058prowkm9vj7fur/","contentTranslated":true,"sourceHash":"7520222b3f2aeed0","translatedAt":"2026-09-18T09:02:22.004Z"},"ar":{"title":"تصنيف نماذج اللغة الكبيرة هو هندسة الميزات: استخدام الانحدار اللوجستي لتغليف أحكام النماذج الكبيرة","summary":"يقترح المؤلفون أن نماذج اللغة الكبيرة التي تعمل مباشرة كمصنفين تفتقر إلى المعايرة وقابلية التفسير؛ ونهج أفضل هو التعامل مع قرارات نماذج اللغة الكبيرة كميزات وربطها بنماذج التعلم الآلي القياسية مثل الانحدار اللوجستي الخارجي.","category":"行业动态","source":"Hacker News 热门（buzzing.cc 中文翻译）","aggregationSource":"Hacker News 热门（buzzing.cc 中文翻译）","pageTitle":"تصنيف نماذج اللغة الكبيرة هو هندسة الميزات: استخدام الانحدار اللوجستي لتغليف أحكام النماذج الكبيرة - Aioga أخبار الذكاء الاصطناعي","description":"يقترح المؤلفون أن نماذج اللغة الكبيرة التي تعمل مباشرة كمصنفين تفتقر إلى المعايرة وقابلية التفسير؛ ونهج أفضل هو التعامل مع قرارات نماذج اللغة الكبيرة كميزات وربطها بنماذج التعلم ال...","url":"https://www.aioga.com/ar/news/cmu6otfhp058prowkm9vj7fur/","contentTranslated":true,"sourceHash":"7520222b3f2aeed0","translatedAt":"2026-09-18T09:02:31.325Z"},"hi":{"title":"एलएलएम वर्गीकरण फीचर इंजीनियरिंग है: एलएलएम निर्णयों को लपेटने के लिए लॉजिस्टिक रिग्रेशन का उपयोग करना","summary":"लेखकों का प्रस्ताव है कि क्लासिफायर के रूप में सीधे कार्य करने वाले एलएलएम में अंशांकन और व्याख्या की कमी होती है; एक बेहतर तरीका यह है कि एलएलएम निर्णयों को सुविधाओं के रूप में माना जाए और उन्हें बाहरी लॉजिस्टिक रिग्रेशन जैसे मानक मशीन लर्निंग मॉडल से जोड़ा जाए।","category":"行业动态","source":"Hacker News 热门（buzzing.cc 中文翻译）","aggregationSource":"Hacker News 热门（buzzing.cc 中文翻译）","pageTitle":"एलएलएम वर्गीकरण फीचर इंजीनियरिंग है: एलएलएम निर्णयों को लपेटने के लिए लॉजिस्टिक रिग्रेशन का उपयोग करना - Aioga AI समाचार","description":"लेखकों का प्रस्ताव है कि क्लासिफायर के रूप में सीधे कार्य करने वाले एलएलएम में अंशांकन और व्याख्या की कमी होती है; एक बेहतर तरीका यह है कि एलएलएम निर्णयों को सुविधाओं के रूप में मा...","url":"https://www.aioga.com/hi/news/cmu6otfhp058prowkm9vj7fur/","contentTranslated":true,"sourceHash":"7520222b3f2aeed0","translatedAt":"2026-09-18T09:02:31.639Z"},"it":{"title":"La classificazione LLM è feature engineering: utilizzando la regressione logistica per avvolgere i giudizi LLM","summary":"Gli autori propongono che gli LLM che agiscono direttamente come classificatori non manchino di calibrazione e interpretabilità; un approccio migliore è trattare le decisioni LLM come caratteristiche e collegarle a modelli standard di machine learning come la regressione logistica esterna.","category":"行业动态","source":"Hacker News 热门（buzzing.cc 中文翻译）","aggregationSource":"Hacker News 热门（buzzing.cc 中文翻译）","pageTitle":"La classificazione LLM è feature engineering: utilizzando la regressione logistica per avvolgere i giudizi LLM - Aioga Notizie IA","description":"Gli autori propongono che gli LLM che agiscono direttamente come classificatori non manchino di calibrazione e interpretabilità; un approccio migliore è trattare le decisioni LLM c...","url":"https://www.aioga.com/it/news/cmu6otfhp058prowkm9vj7fur/","contentTranslated":true,"sourceHash":"7520222b3f2aeed0","translatedAt":"2026-09-18T09:02:41.231Z"},"nl":{"title":"LLM-classificatie is feature engineering: het gebruik van logistische regressie om LLM-oordelen te omwikkelen","summary":"De auteurs stellen voor dat LLM's die direct als classifiers functioneren geen kalibratie en interpreteerbaarheid hebben; een betere aanpak is om LLM-beslissingen als kenmerken te behandelen en deze te koppelen aan standaard machine learning-modellen zoals externe logistische regressie.","category":"行业动态","source":"Hacker News 热门（buzzing.cc 中文翻译）","aggregationSource":"Hacker News 热门（buzzing.cc 中文翻译）","pageTitle":"LLM-classificatie is feature engineering: het gebruik van logistische regressie om LLM-oordelen te omwikkelen - Aioga AI-nieuws","description":"De auteurs stellen voor dat LLM's die direct als classifiers functioneren geen kalibratie en interpreteerbaarheid hebben; een betere aanpak is om LLM-beslissingen als kenmerken te...","url":"https://www.aioga.com/nl/news/cmu6otfhp058prowkm9vj7fur/","contentTranslated":true,"sourceHash":"7520222b3f2aeed0","translatedAt":"2026-09-18T09:02:41.006Z"},"tr":{"title":"LLM sınıflandırması, özellik mühendisliğidir: LLM kararlarını sarmak için lojistik regresyon kullanmak.","summary":"Yazarlar, doğrudan sınıflandırıcı olarak çalışan LLM'lerin kalibrasyon ve yorumlanabilirlikten yoksun olduğunu öne sürerler; daha iyi bir yaklaşım, LLM kararlarını özellik olarak ele alıp harici lojistik regresyon gibi standart makine öğrenimi modellerine bağlamaktır.","category":"行业动态","source":"Hacker News 热门（buzzing.cc 中文翻译）","aggregationSource":"Hacker News 热门（buzzing.cc 中文翻译）","pageTitle":"LLM sınıflandırması, özellik mühendisliğidir: LLM kararlarını sarmak için lojistik regresyon kullanmak. - Aioga AI Haberleri","description":"Yazarlar, doğrudan sınıflandırıcı olarak çalışan LLM'lerin kalibrasyon ve yorumlanabilirlikten yoksun olduğunu öne sürerler; daha iyi bir yaklaşım, LLM kararlarını özellik olarak e...","url":"https://www.aioga.com/tr/news/cmu6otfhp058prowkm9vj7fur/","contentTranslated":true,"sourceHash":"7520222b3f2aeed0","translatedAt":"2026-09-18T09:02:50.477Z"},"vi":{"title":"Phân loại LLM là kỹ thuật đặc trưng: sử dụng hồi quy logistic để bao bọc các đánh giá của LLM","summary":"Các tác giả đề xuất rằng các LLM hoạt động trực tiếp như bộ phân loại thiếu hiệu chuẩn và khả năng giải thích; một cách tiếp cận tốt hơn là xem các quyết định của LLM như các đặc trưng và kết nối chúng với các mô hình học máy tiêu chuẩn như hồi quy logistic bên ngoài.","category":"行业动态","source":"Hacker News 热门（buzzing.cc 中文翻译）","aggregationSource":"Hacker News 热门（buzzing.cc 中文翻译）","pageTitle":"Phân loại LLM là kỹ thuật đặc trưng: sử dụng hồi quy logistic để bao bọc các đánh giá của LLM - Tin tức AI Aioga","description":"Các tác giả đề xuất rằng các LLM hoạt động trực tiếp như bộ phân loại thiếu hiệu chuẩn và khả năng giải thích; một cách tiếp cận tốt hơn là xem các quyết định của LLM như các đặc t...","url":"https://www.aioga.com/vi/news/cmu6otfhp058prowkm9vj7fur/","contentTranslated":true,"sourceHash":"7520222b3f2aeed0","translatedAt":"2026-09-18T09:02:50.838Z"},"id":{"title":"Klasifikasi LLM adalah rekayasa fitur: menggunakan regresi logistik untuk membungkus penilaian LLM","summary":"Para penulis mengusulkan bahwa LLM yang bertindak langsung sebagai klasifikator kurang memiliki kalibrasi dan interpretabilitas; pendekatan yang lebih baik adalah memperlakukan keputusan LLM sebagai fitur dan menghubungkannya dengan model pembelajaran mesin standar seperti regresi logistik eksternal.","category":"行业动态","source":"Hacker News 热门（buzzing.cc 中文翻译）","aggregationSource":"Hacker News 热门（buzzing.cc 中文翻译）","pageTitle":"Klasifikasi LLM adalah rekayasa fitur: menggunakan regresi logistik untuk membungkus penilaian LLM - Berita AI Aioga","description":"Para penulis mengusulkan bahwa LLM yang bertindak langsung sebagai klasifikator kurang memiliki kalibrasi dan interpretabilitas; pendekatan yang lebih baik adalah memperlakukan kep...","url":"https://www.aioga.com/id/news/cmu6otfhp058prowkm9vj7fur/","contentTranslated":true,"sourceHash":"7520222b3f2aeed0","translatedAt":"2026-09-18T09:03:00.264Z"},"th":{"title":"การจําแนกประเภท LLM คือวิศวกรรมคุณลักษณะ: การใช้การถดถอยโลจิสติกส์เพื่อห่อหุ้มการตัดสินของ LLM","summary":"ผู้เขียนเสนอว่า LLMs ที่ทําหน้าที่เป็นตัวจําแนกโดยตรงขาดการสอบเทียบและการตีความ; วิธีที่ดีกว่าคือการมองการตัดสินใจของ LLM เป็นคุณลักษณะและเชื่อมโยงกับโมเดลการเรียนรู้ของเครื่องมาตรฐาน เช่น การถดถอยโลจิสติกภายนอก","category":"行业动态","source":"Hacker News 热门（buzzing.cc 中文翻译）","aggregationSource":"Hacker News 热门（buzzing.cc 中文翻译）","pageTitle":"การจําแนกประเภท LLM คือวิศวกรรมคุณลักษณะ: การใช้การถดถอยโลจิสติกส์เพื่อห่อหุ้มการตัดสินของ LLM - ข่าว AI Aioga","description":"ผู้เขียนเสนอว่า LLMs ที่ทําหน้าที่เป็นตัวจําแนกโดยตรงขาดการสอบเทียบและการตีความ; วิธีที่ดีกว่าคือการมองการตัดสินใจของ LLM เป็นคุณลักษณะและเชื่อมโยงกับโมเดลการเรียนรู้ของเครื่องมาตร...","url":"https://www.aioga.com/th/news/cmu6otfhp058prowkm9vj7fur/","contentTranslated":true,"sourceHash":"7520222b3f2aeed0","translatedAt":"2026-09-18T09:03:00.302Z"},"pl":{"title":"Klasyfikacja LLM to inżynieria cech: wykorzystanie regresji logistycznej do owijania ocen LLM","summary":"Autorzy sugerują, że LLM działające bezpośrednio jako klasyfikatory nie mają kalibracji ani interpretowalności; lepszym podejściem jest traktowanie decyzji LLM jako cech i łączenie ich ze standardowymi modelami uczenia maszynowego, takimi jak zewnętrzna regresja logistyczna.","category":"行业动态","source":"Hacker News 热门（buzzing.cc 中文翻译）","aggregationSource":"Hacker News 热门（buzzing.cc 中文翻译）","pageTitle":"Klasyfikacja LLM to inżynieria cech: wykorzystanie regresji logistycznej do owijania ocen LLM - Aioga Wiadomości AI","description":"Autorzy sugerują, że LLM działające bezpośrednio jako klasyfikatory nie mają kalibracji ani interpretowalności; lepszym podejściem jest traktowanie decyzji LLM jako cech i łączenie...","url":"https://www.aioga.com/pl/news/cmu6otfhp058prowkm9vj7fur/","contentTranslated":true,"sourceHash":"7520222b3f2aeed0","translatedAt":"2026-09-18T09:03:09.670Z"}},"evidenceTier":"verified-news","reviewStatus":"automated-ingest","indexable":true,"editorialCover":"/page-visuals/topic-timeline.png"}}