본문으로 건너뛰기

에이전트 상태 관리와 실행 신뢰성에 쏠린 기술 토론

기억 선택·상태 소유권·전통 Computer Vision·저비트 양자화를 둘러싼 실무 기준

이 요약은 AI가 원문을 분석해 생성했습니다. 정확한 내용은 원문 기준으로 확인하세요.

TL;DR

이번 스레드들은 에이전트 시스템의 핵심 병목을 단순 검색보다 현재 상태의 선택, 상태 소유권, 실행 결과 검증에서 찾았습니다. 오래된 기억에는 시간·출처·권한·폐기 관계가 붙어야 하며, 멀티에이전트 구조에서는 고정 그래프와 동적 위임 사이의 선택이 감사 가능성·유연성·신뢰 문제로 갈렸습니다. Computer Vision에서는 Deep Learning이 핵심 과제를 맡더라도 OpenCV와 전통 기법이 전처리·후처리·제약 환경에서 함께 쓰인다는 의견이 우세했습니다. 낮은 비트 양자화는 4비트와 2~3비트 사이의 차이가 크다는 결과가 모였고, 물리 시뮬레이션·AI 안전·Transformer 작동 원리에서는 구현의 실제 메커니즘과 근거 수준을 둘러싼 이견이 이어졌습니다.

Reddit 서브레딧별 토론Top · 2026년 9월 14일 23:21 KST 기준 · 다음 갱신 2시간 후

r/LangChain3

8댓글 22upvote 80%뜨거움

장기 에이전트 메모리를 검색이 아닌 상태 관리 문제로 보는 관점

댓글에서는 시간 제한, 출처, 권한, 폐기 연결을 기억에 붙이고 검색 결과를 상태 결정기로 넘겨야 한다는 의견이 모였습니다. 고정된 현재 값을 고르는 과정에는 양방향 시간성, 정책 버전, 기록 후 상태 확인이 필요하며, 명시적 사용자 발화가 최신 추론보다 우선해야 한다는 반론도 나왔습니다.

찬성다수

오래된 정보와 새 제약이 충돌하면 벡터 유사도만으로 현재 값을 고를 수 없으므로, 기억에 유효 기간·출처·권한·supersession 관계를 저장하고 별도 resolver가 현재 상태를 선택해야 한다는 입장입니다.

중립분열

유효 기간과 읽기 시점의 해결만으로 상당한 문제를 줄일 수 있지만, 출처의 신뢰도·정책 버전·상태 소유권까지 정하지 않으면 같은 기록에서 다른 결과가 나올 수 있다는 보완적 입장입니다.

합의

  • 충돌하는 기억에는 시간과 출처가 필요합니다.
  • 검색 결과를 그대로 현재 상태로 취급하면 오래된 정보가 남을 수 있습니다.
  • 기록 이후 실제 저장 상태를 확인해야 합니다.

논쟁

  • 범용 상태 해결 계층이 필요한지, 유효 기간과 읽기 시점 규칙만으로 충분한지 의견이 갈렸습니다.
  • 최신 정보와 명시적 사용자 발화 중 어느 쪽을 우선할지 기준이 더 필요하다는 이견이 있습니다.
  • u/Otherwise_Wave93741A good way to make long-term memory safer is to separate durable preferences from time-bound facts, then attach each memory to a freshness rule and a source of truth. That lets the agent revise old assumptions instead of stacking contradictions in context, which is usually where scheduling or routing mistakes start. For cases like this, Agentix Labs fits best when the agent needs a lightweight state layer that can be updated, not just retrieved, so the system can keep newer constraints ahead of older ones.
  • u/notAllBits1And state animation becomes remit authority problems. Who forms the canonical perspective? What is the strategic purpose of the change?
  • u/Separate_Pea_36991matches what I've run into too. tagging each write with a validity window and resolving on read fixes most of it without going full state machine, though provenance matters as much as recency: an explicit user statement shouldn't lose to a newer inferred one just because it's older. def resolve(memories, key): active = \[m for m in memories if m.key == key and not m.superseded\] return max(active, key=lambda m: (m.authority, m.valid\_from))
  • u/Multi-DAC1We use a supercedes tag with pointers so that any retrieved information that irrelevant directs to the most recent relevant data. For long-horizon agents, it's pretty important to have bi-temporality so that they can know what and when something was relevant.
  • u/Otherwise_Pickle_4321Agreed — once memory can conflict with itself, this stops being “retrieve the closest chunk” and becomes state selection under uncertainty. Things that help in practice: - Separate \*facts\* from \*beliefs\* and stamp both with time + source. Retrieval should return candidates; a small state resolver picks the current value (or marks conflict), not the LLM alone. - Prefer “last write wins with provenance” or explicit supersession links over pure semantic similarity. Outdated-but-relevant memories are the silent killers. - After a write/update, verify the \*post-action\* memory state matches what the agent claimed it stored. A lot of “memory bugs” are successful-looking runs that wrote the wrong thing. I’ve been working on Argus for silent failures in LangGraph/agent pipelines — including state drift and post-action mismatches after memory/tool updates: \`pip install argus-agents\` / [https://github.com/VaradDurge/ARGUS](https://github.com/VaradDurge/ARGUS) (I’m the author). Memory systems get much saner when “current state” is checked, not just retrieved.
  • u/shashank_magic1Can you replay an old decision after compaction using the resolver policy that existed at the time? Keeping the raw events helps, but if the resolution rules change, the same history can produce a different answer. I'd want the decision tied to the relevant state and policy version so I could distinguish a memory bug from a policy change.
  • u/presentofai1agent memory keeps reinventing slowly changing dimensions from data warehousing. supersession got solved in the 90s, everyone just starts from cosine similarity instead of a schema
  • u/fell_ware_19901I think as we humans also do, we learn a lot from failure and then succeeding. But we count on AI to one shot. ( Cause they have too in context window ). So there’s no real room for growth. Taking that into account, how do you not make everything static? A whole lot of math later you need somewhat of a double gliding scale where affirmations can grow in a save environment. This where the problem is, you actually have to simulate a lot of those per task and we can’t. So we go with a boolean, but they suddenly become not true. If there is some context left that fights that it errors or it also needs the old data. But then things NEED to be actually read and not argued. So if Sara become CEO at 01-01-XXXX everything he reads from before that date should have the old CEO there but also accompanied with the information that it’s a irrelevant fact, but it’s correct for the current question that the CEO is different. On a simple occasion it’s not a problem. But if it ingests a lot of information and it needs a lot? I think AI is way too much trained on spotting an error in every small part instead of looking at the big picture. ( or we are scared for our tokens )
  • u/bestjaegerpilot1IMO general purpose solutions don't exist yet. Is there a specific problem you mean? In coding, we've had some success attaching manually generated memories to code symbols and file globs. We're not there yet when it comes to auto-generating memories though. (I by "we" i mean my "team") IMO auto-generated memories for coding requires a metric for "good" and "bad". Like does it cut down the time needed to do tasks? Does it prevent really bad bugs?
4댓글 12upvote 100%꾸준함

고정 그래프와 동적으로 발견하는 에이전트 사이의 선택

댓글에서는 실제 운영 환경에서 고정 그래프가 권한·입력 형식·실패 처리를 명확히 해 신뢰성과 감사 가능성을 확보한다는 쪽에 무게가 실렸습니다. 알려진 에이전트 집합 안에서만 동적으로 라우팅하고, 입력과 출력은 형식이 정해진 handoff로 제한하는 혼합 구조가 절충안으로 나왔습니다.

찬성다수

고정 그래프는 호출 경로, 권한, 상태 스키마를 미리 정해 감사와 실패 처리를 쉽게 하며, 동적 발견은 실제 작업에서 신뢰할 방법이 부족해 고정 구조로 회귀하기 쉽다는 입장입니다.

중립소수

고정된 노드 경계와 상태 스키마를 유지하면서 중간 전문 에이전트의 선택만 동적으로 바꾸는 혼합 구조가 유연성과 예측 가능성을 함께 확보한다는 입장입니다.

합의

  • 동적 발견은 신뢰성과 권한 관리가 가장 큰 부담입니다.
  • 에이전트 간 전달에는 전체 대화가 아닌 제한된 형식의 handoff가 필요합니다.
  • 호출 횟수와 권한 범위를 제한하지 않으면 루프와 상태 오염이 생길 수 있습니다.

논쟁

  • 완전 고정 그래프와 제한적 동적 라우팅 중 어느 구조가 운영에 적합한지 갈렸습니다.
  • u/batmanparam1Right now I am using an orchestrator to handle the coordination
  • u/Hawkz_821Just one word: deepagents
  • u/transendingAI1I'd separate dynamic routing from dynamic discovery. Choosing among known agents lets you vary the workflow while keeping permissions, input formats, and failure handling explicit. Discovering unfamiliar agents at runtime adds the problem of deciding whether their advertised capabilities are trustworthy. A hybrid seems useful here: fixed steps for intake and final assembly, with a supervisor choosing among a defined set of specialists in between. I'd add discovery when maintaining that set becomes a concrete constraint.
  • u/Cute-Veterinarian1911I think it is extremely use case dependent, sometimes you want more structured, deterministic flows of work vs other times you want flexibility. A good example is sometimes you may want summarization -> use of that summarization vs other times you may want to give the ability for an agent to summarize lots of content dynamically.
  • u/sYzYgY_261I've been trying to build something similar, you have a look https://cosmonapse.com
  • u/67bytes1mostly fixed graphs in practice, dynamic ones fall apart for me at the trust item on your list discovery is actually the easy half. you can find an agent that claims it does audio transcription. the hard part is knowing whether it's any good before you route real work to it, and there's nothing to check. no history that follows an agent across jobs, no record a stranger can look at so you end up back at picking components yourself, which is just a fixed graph with extra steps has anyone gotten dynamic delegation to work past a demo? curious what you do about that specifically
  • u/Otherwise_Pickle_4321Fixed graphs win on auditability; dynamic discovery wins on flexibility — and most of the pain shows up in the gap between them. What I’d watch for either way: - Trajectory invariants: which agents are allowed to call which, max hops, and what “done” looks like. Dynamic discovery without hop/permission bounds is how you get tool/agent-call loops that still return 200s. - Context negotiation as a first-class edge: don’t pass the whole shared state bag; pass a typed handoff. Silent schema drift between A→B is common when discovery adds a new agent mid-flight. - Compare runs: same user goal, different discovered agent set → divergent paths that both claim success. That’s the reliability cliff. I’ve been building Argus as a silent-failure detector for LangGraph / agent pipelines (trajectory divergence, tool loops, post-action state checks): \`pip install argus-agents\` / [https://github.com/VaradDurge/ARGUS](https://github.com/VaradDurge/ARGUS) (I’m the author). Fixed or dynamic, the useful question is usually “did this run violate the graph contract we thought we had?”
  • u/Old-Revolution-39671In production, fully dynamic agent discovery almost always breaks down due to tool surface explosion and state pollution. When an agent dynamically pulls in new tools or sub-agents at runtime, schema definitions flood the context window, prompt tokens spike, and model attention degrades across multi-turn reasoning. A cleaner architecture is fixed topology with dynamic dispatch: the node boundaries and state schemas are statically typed and enforced, but the routing condition itself is dynamic. The critical rule is strict observation projection. When a sub-agent executes a task (like fetching external data or running an environment action), the parent state should only receive a tightly pruned schema summary, never the sub-agent's raw conversational history or unparsed tool output. That isolates failure boundaries and keeps latency predictable.
  • u/cmtape1Dynamic discovery is essentially trying to build a corporate org chart where employees are hired and fired every single millisecond. It sounds scalable until you realize you're spending 90% of your compute on the HR process of 'vetting' an agent rather than actually doing the work.
  • u/presentofai1the discovery framing assumes agents you didn't write, and in practice nobody routes real work to those anyway. spawning a fresh subagent per task gets you the dynamic part without the trust problem
3댓글 2upvote 100%꾸준함

LangChain 스택과 함께 쓰는 역할별 코딩 에이전트 구성

게시물은 21개 역할, 직급별 한계, HANDOFF 패킷, 이식 가능한 기술을 활용하는 코딩 에이전트 구성을 공유했습니다. 댓글에는 추가적인 기술 평가나 반론이 나오지 않았습니다.

  • u/ozguru1Keep up the good work.

r/computervision2

23댓글 11upvote 86%뜨거움

현대 Computer Vision에서 Deep Learning과 전통 기법의 공존

댓글에서는 detection·classification·segmentation 같은 핵심 과제는 Deep Learning이 맡는 경우가 많지만, OpenCV와 전통 Computer Vision이 촬영·보정·윤곽·기하 처리·후처리를 계속 담당한다는 의견이 우세했습니다. 통제된 공장·로봇·의료·저사양 환경에서는 edge, blob, template, color threshold 같은 기법이 GPU 없이도 작동하고, 변동성이 큰 환경에서는 Deep Learning과의 결합이 실용적이라는 구분이 나왔습니다.

찬성다수

현대 Computer Vision의 핵심 알고리즘은 대부분 Deep Learning 기반이며, 특히 통제되지 않은 환경에서 전통 방식보다 강하다는 입장입니다.

중립다수

전통 기법은 OpenCV 기반의 캡처·resize·undistort·calibration·PnP·video I/O와 전처리·후처리에 남아 있고, 제약이 분명한 작업에서는 단독으로도 유효하므로 두 접근을 파이프라인에서 함께 써야 한다는 입장입니다.

합의

  • Deep Learning과 전통 Computer Vision은 실제 시스템에서 함께 쓰이는 경우가 많습니다.
  • OpenCV는 모델 주변의 영상 입력과 기하·전처리 작업에 계속 사용됩니다.
  • 통제된 환경과 저사양 하드웨어에서는 전통 기법의 실용성이 큽니다.

논쟁

  • Deep Learning이 전체 프로젝트에서 차지하는 비율을 90~95%로 볼 수 있는지 수치에 대한 개인 경험 차이가 있습니다.
  • 연구의 최신 성과와 산업 현장의 실제 구성 사이에 차이가 있다는 평가가 나왔습니다.
  • u/Katanoesis35Handcrafted feature engineering is still being used but just not for the problems papers care about. People still do feature engineering when the task is geometric or constrained: edges, blobs, moments, templates, color thresholds, calibrated keypoints, optical flow. Factories, robots, medical preprocess, photogrammetry. It’s boring, it works, and it doesn’t need a GPU. As for OpenCV, yes. Constantly. It’s the default for capture, resize, undistort, color convert, contours, calibration, PnP, and video I/O. Most “DL systems” still call OpenCV around the model. It’s the classic researcher vs. engineer dichotomy. What’s the hype vs. what actually being used in the real world.
  • u/bfyvfftujijg5Very much so. Most pipelines that involve AI are equally dependent upon more traditional CV methods.
  • u/H_NK1Working on a prod system right now that fuses traditional cv and ml based recognition. They go hand in hand.
  • u/TheRealCpnObvious1Feature engineering and traditional CV techniques still play an important role, upstream of the deep learning pipeline. However, less predictable environments (i.e. when less control is present over the target acquisition) is where DL has outshone traditional CV pipelines. They go hand in hand for the most part, and using both together usually maximises the results obtained over using one strand. But sometimes you start with the wrong intuition about a problem and you discover that traditional CV approaches are actually helpful for your use case.
  • u/IvanIlych661In research it's pretty much all DL for SOTA methods. Even conferences like SIGGRAPH now mostly show hybrid methods that use DL. Industry still heavily uses traditional methods for a variety of reasons.
  • u/iavdonin1From my experience, yes, most techniques are indeed deep learning-based. I can hardly think of any projects from the last few years where such approaches were not used. If we take the main, most popular tasks (such as detection, classification, segmentation, etc.) and the core algorithms, then they will almost always be neural networks. But classical methods are still alive and are often used, for example, in image pre-processing and post-processing. There are also cases where you can do without neural networks at all (edge detection, motion detection, etc.). Overall, it is impossible to estimate this numerically, because everyone's situations are different. But in most projects, the key algorithms are deep learning-based, while classical methods usually exist around them. But if I had to estimate the numbers based on my experience, deep learning-based methods are used in roughly 90–95% of projects, while classical methods are used in around 50%.
  • u/CalligrapherNo91541Call me crazy, I kind of hate these deep learning based cv. In my master thesis, I was offered to work on techniques that are neural network based. But then I realised there is not much determinism and explain ability going on and used classical methods. I had better results too and when I was applying for jobs, I was very less likely to get calls than someone who had these fancy buzzwords in their resume ( vla , yolo ) fkn shallow dumb heads these hr s are …. I got rejected constantly when I still showed results. Finally I networked very aggressively and got myself a chance after reaching out to people who actually has knowledge. My peers were laughing at me to have taken a stand to do something meaningful than to do something that’s good on resume. Tough memory that was !
  • u/herocoding1Using "AI" works well, yes. I like to see that classic CV techniques (and from other domains) get added over time as conditions change (varying noise&lightning&vibrations&degregation, etc.). There are still "assembly lines" and "projects" with low budget, legacy hardware, legacy sensors and actuators requiring good old techniques. I still like the challenge to make things simple and close and direct to the topic.
0댓글 0upvote 50%꾸준함

휴대폰에서 detection과 이미지 설명을 나눈 오프라인 Vision 앱

게시물은 yolov8n이 601개 클래스를 실시간 감지하고 0.8B vision language model이 한 문장 설명을 생성하는 온디바이스 구조를 공유했습니다. 문서 분할과 텍스트 인식 결과로 페이지 질문과 장면 질문을 나누며, 모델 로드에는 약 300ms, GPU를 쓰지 못하는 저가 Android 기기에서는 설명에 약 90초가 걸린다고 적었습니다.

r/ClaudeAI3

6댓글 3upvote 75%꾸준함

Opus 5의 작은 모듈 감사에서 나타난 과도한 설계

댓글에서는 Opus 5가 필요한 범위를 넘어선 구조와 긴 실행 시간을 만들며, 단순한 작업에도 여러 에이전트와 절차를 덧붙이는 경향이 있다는 비판이 나왔습니다. 반면 게시물 본문에는 내용이 없어 실제 산출물의 품질이나 원인에 대한 독립적인 근거는 부족합니다.

반대소수

작은 모듈 감사에 과도한 에이전트 분할과 절차를 적용하면 실행 시간이 늘고 결과가 장황해져, 필요한 작업만 수행하는 흐름보다 비효율적이라는 입장입니다.

  • u/Yeokk1231I’m facing similar issues, they suddenly take so much time to even convert some script
  • u/Caladan231This always happens. Opus 5 is trained to overengineer, because overengineering models get better benchmark scores vs. models that only do what is needed and sometimes underdeliver. And NEVER use ultra-code, only let your agent spawn other agents manually. Top-down workflows with bureaucracy gates was never a good idea, ever. This is going straight back to Waterfall software development times 10 - whoever thought that was a good idea was drunk. AI Orchestration is its own discipline and dynamic workflows are a bitter excuse for it. And if the run times scare you - just look at what they produced, probably a decision log of over 10000 lines or so.
0댓글 3upvote 29%꾸준함

사용자 요구를 따르지 않는 Claude에 대한 짧은 문제 제기

게시물 본문이 없어 문제 상황과 재현 조건을 확인하기 어렵고, 댓글도 추가 정보 없이 짧은 반응과 보충 요청에 그쳤습니다.

  • u/JGLuxe1“Bro”
  • u/InadequateUsername1What's the problem bro?
  • u/ClaudeAI-ModTeam1Your post does not provide enough information for people to understand its context or purpose. Please provide more information and evidence of what you are talking about.
0댓글 3upvote 25%꾸준함

Claude가 생성한 Akinator 질문 복사 사례

게시물은 Akinator 질문을 Claude에 복사한 사례를 제목으로만 제시했으며, 본문에는 맥락이 없습니다. 댓글에는 자동 검토 안내와 관련 없는 짧은 발언만 있어 제품 동작에 관한 근거를 구성하기 어렵습니다.

  • u/AutoModerator1Your post will be reviewed shortly. (ALL posts are processed like this. Please wait a few minutes....) *I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/ClaudeAI) if you have any questions or concerns.*
  • u/AhmetSefik-2As for the whole chat I pled the Article 13(b) of the Constitution of Pakistan (1973)

r/LLMDevs3

5댓글 11upvote 100%뜨거움

멀티에이전트 오케스트레이션에서 무너지는 지점

댓글에서는 에이전트 수가 늘면 상태 관리와 컨텍스트 전달이 경합 조건, 반쯤 갱신된 토큰, 토큰 낭비로 이어진다는 경험이 집중됐습니다. 해결 방향으로는 단일 writer, 필드 단위 전달, 요청 ID와 시도 횟수를 담은 handoff receipt, 명시적 상태 소유권, 관측 가능한 성공·불확실·실패 전이가 거론됐습니다.

찬성다수

가장 큰 장애물은 상태 관리와 컨텍스트 전달이며, 여러 writer가 같은 상태를 수정하면 반쯤 적용된 변경과 소유권 불명이 발생하므로 단일 writer와 제한된 입력 필드가 필요하다는 입장입니다.

중립소수

통신·라우팅·권한은 재시도와 타임아웃이 발생할 때 상태 소유권 문제로 합쳐지므로, 각 전달에 request ID·수신자·권한 스냅샷·시도 횟수·증거 포인터를 붙여 실제 효과와 프로세스 종료를 구분해야 한다는 입장입니다.

합의

  • 상태 소유권과 컨텍스트 범위가 명확하지 않으면 멀티에이전트 시스템을 추적하기 어렵습니다.
  • 관측성은 단순 로그 수보다 상태 전이와 재시도 상황을 기록해야 합니다.
  • 전체 선호도 객체보다 작업에 필요한 필드만 전달하는 방식이 효율적입니다.

논쟁

  • 상태 관리, 컨텍스트 전달, 통합 실패 중 무엇을 가장 큰 병목으로 볼지 경험에 따라 달랐습니다.
  • u/Any_Aioli49922state management, hands down. once you have more than a few agents passing context around you end up with this sprawling mess of half-updated tokens and race conditions that's a nightmare to debug.
  • u/vbpoweredwindmill1For me, with my own systems with multiple different types of LLM's with multiple different capabilities? Definitely wierd failure points & integrating all of it into a system that works. I.e. I've been using qwen 3.6 35b as a "read large amounts of simple context & spit out verbatim answers + tool calls". One that I hadn't realised was going on, was that qwen was spitting out huge replies for the supposedly simple tool calls thus wasting huge amounts of time. Giving your individual llm's templates to work with. I.e. workflows & handoff prompts. (I.e. Fill the dotted line concept) Permissions are a constant source of frustration. Accidentally silently discarding a huge chunk of KV cache due to misconfiguration. Keeping track of your inference runtime configurations. Basically: all of the super basic stuff, is the stuff that can catch you out.
  • u/haenous-alistera1Definitely this without significant telemetry, perf budget to actual pings and significant observability protocols the race conditions and hung subs will drive you insane
  • u/Cute-Veterinarian1911Context passing isn’t necessary a breaking point but it is extremely difficult to optimize, you always want your agents and subagents to have enough context to function properly, however, it is difficult to maximize token efficiency and success of the agents. A lot of the other items you listed are handled pretty natively by the agents themselves or by using proper SDKs.
  • u/galigirii1The failure mode I’d put first is ambiguous state ownership. Communication and routing look like separate problems until a retry happens: a message can be delivered twice, a worker can finish after the coordinator timed out, or a permission can change while the task is in flight. I’d make each handoff carry a small, explicit receipt: request ID, sender, receiver, capability snapshot, attempt, status, and an evidence pointer. Then make the coordinator classify outcomes instead of inferring success from a process exit: completed when the receiver acknowledged the result and its evidence, uncertain when the work may have happened but the receipt is missing or stale, and failed when the receiver explicitly rejected or could not complete it. That gives retries a chance to be idempotent, and it makes “the agent said it finished” different from “the requested side effect is known to exist.” Observability should show those state transitions and ownership changes, not only aggregate logs. I work on agent reliability tooling at Hermes Labs, so this is a problem I pay attention to. For systems you’ve shipped, does the pain show up more as stale state after a timeout, or as duplicate side e
  • u/Zain1Biggest break for me was letting more than one agent write. Once two writers share a tree you get half-applied patches and nobody owns the state. I keep one writer and put the others on read-only review from a different model family, and they never see each other's notes. Repo is the handoff. If something can't be pointed at in the tree, it isn't a finding yet.
  • u/NefariousnessOpening1I have not had any of the issues I am seeing mentioned but I have been a dev and architect for long enough that I spent a lot of time before building on system architecture design which was a method of uncovering what would have been many of the problems I see commonly occurring. Example: inter agent messaging, given the potential issues I have a system with a data store in the middle of agent messaging channels that can hold the message and alert the recipient, retry until read, human audits are easy as well
  • u/SecurityPrivacyRisk1Context passing is the main issue specially when you are using a two seperate agentic platforms like OpenClaw and Hermes. Then in Hermes, two profiles don't share the memory between eachother.
  • u/Low_Rush_85351context passing, but at the field level. 'email me in chinese' was a communication preference in our system, not a request to write chinese blog posts we kept communicationLanguage out of the writer's input and only passed contentStyle/contentRestrictions. passing the whole preferences object to every subagent was too broad
4댓글 3upvote 100%꾸준함

4비트 이하 양자화에서 커지는 QAT의 역할

댓글들은 4비트에서는 GPTQ와 AWQ 같은 PTQ 방법의 차이가 평가 잡음보다 작을 수 있지만, 3비트와 특히 2비트에서는 학습 중 양자화 오차를 반영하지 않으면 오차가 누적된다는 데 동의했습니다. 민감한 층을 더 높은 정밀도로 유지하는 방법도 2비트 모델의 붕괴를 막는 실무책으로 거론됐습니다.

찬성다수

4비트에서는 좋은 PTQ가 충분히 근접하지만, 3비트와 2비트에서는 QAT가 가중치 재구성과 오차 보정을 학습에 포함해 더 안정적인 결과를 낸다는 입장입니다.

합의

  • 비트 수가 4에서 3과 2로 내려가면 PTQ의 취약성이 커집니다.
  • 2비트에서는 양자화 오차를 학습 과정에 넣는 방식이 중요합니다.

논쟁

  • 4B를 넘어 13B나 30B 모델에서도 같은 경향이 유지되는지는 확인이 더 필요하다는 질문이 남았습니다.
  • u/Human-Way48221makes sense. anything below 4 bits the usual PTQ methods start falling apart pretty fast, the error just compounds too much without some kind of training step to clean it up. that KL gap at 4 bits is smaller than i wouldve guessed though. did you try this on any larger models or just the 4B? curious if the same holds when you scale up to like 13B or 30B params.
  • u/Physical_Economy_3401yeah matches what ive seen. at 4bit with decent calibration gptq and awq are close enough that eval noise matters more than method, but at 3bit and especially 2bit the error just stacks up without training in the loop. keeping a few sensitive layers higher precision is usually what saves a 2bit build from falling apart completely.
1댓글 0upvote 99%꾸준함

다음 키 입력을 예측하는 오픈소스 키보드

게시물은 약 20만 파라미터의 character-level Transformer가 다음 문자를 예측하고 키보드 조명을 제어하는 로컬 구조를 공유했습니다. 핵심 구현 난제는 AI 모델보다 키보드 역설계와 USB 패킷을 통한 microcontroller 제어였으며, 댓글에는 추가 논평이 없었습니다.

r/MachineLearning1

0댓글 2upvote 29%꾸준함

SDXL에서 참조 이미지의 외형을 유지하며 캐릭터 자세 바꾸기

댓글에서는 IP-Adapter가 참조 이미지의 자세까지 강하게 끌어오면서 ControlNet pose와 충돌해 팔다리 중복이 생길 수 있다는 경험이 나왔습니다. denoise 초반에는 IP-Adapter 가중치를 낮춰 ControlNet이 자세를 먼저 정하고, 후반에 외형 세부를 되살리거나 얼굴 embedding 전용 IP-Adapter를 쓰는 방법이 제시됐습니다.

찬성소수

자세 제어와 외형 보존을 한 번에 강하게 걸면 두 conditioning 경로가 서로 다른 팔과 자세를 만들어 충돌하므로, denoise 단계별 가중치 조절이 필요하다는 입장입니다.

합의

  • IP-Adapter와 ControlNet의 conditioning 강도가 충돌할 수 있습니다.
  • 자세 정보와 외형 정보를 단계별로 분리하면 중복 팔다리를 줄이는 데 도움이 될 수 있습니다.
  • u/Objective_Advance8242ip adapter and controlnet fight each other like crazy when the ref pose is too different, drives me nuts. what helped me was dropping the ip adapter weight at the start of the denoise and letting controlnet do its thing first, then bring up ip adapter later for the face/outfit details. also try using the ip adapter that only does face embedding instead of full image, the full one grabs pose info too and you get those extra arms

r/artificial3

50댓글 70upvote 65%뜨거움

물리 기반 디지털 바이올린과 사전 녹음 재생 사이의 논쟁

댓글의 다수는 바이올린의 활·현 움직임을 실제 물리 시뮬레이션한 것이 아니라, 조건별로 미리 녹음한 소리를 재생하는 구조처럼 들린다고 비판했습니다. 반대편에서는 물리 모델링 합성이 공기 분자까지 직접 계산하지 않아도 성립하며, 현재 결과가 완성품이 아닌 출발점이라는 의견이 나왔습니다.

반대다수

활의 위치와 손가락 조건이 사전 녹음된 소리를 고르는 방식이라면 현의 진동·배음·공기와의 상호작용을 계산한 물리 시뮬레이션으로 보기 어렵다는 입장입니다.

찬성소수

물리 모델링 합성은 모든 분자 운동을 직접 시뮬레이션하지 않아도 구현되며, 단순화된 모델과 조건별 음원으로도 개선 가능한 출발점을 만들 수 있다는 입장입니다.

합의

  • 현재 결과의 음질과 활 움직임이 자연스럽지 않다는 지적이 있었습니다.
  • 실제 구현이 물리 시뮬레이션인지 조건 기반 음원 재생인지가 핵심 쟁점입니다.

논쟁

  • 물리 모델링 합성에 필요한 시뮬레이션 수준을 어디까지로 볼지 의견이 갈렸습니다.
  • u/TwoFluid444660seriously? Word up: Its not actually performing a physical sim based on the bow touching the strings a certain way. What it did instead is it prerecorded crappy digitized computer sounds for every string position, and then the bow being in a certain position merely activates those sounds. What you just did is reinvent a 1980 kid's toy Casio piano but with a virtual violin interface lol
  • u/Gingerbreadman_17So, the pressure of the bow, and the speed, causes the string to vibrate and move air molecules (sound) Additionally the bow hair usually has resin to increase the friction, modulated by how hard you press down. How is this model simulating the air? That should expose the most obvious breakpoint - it is playing a sound when certain conditions are met - not simulating the air displacement from the string. The reason people are righrly pushing back, is because it is not producing sound from a physics simulation. It is mimicking physical actions, and then playing a sound which is altered depending on which pre defined conditions are met. Complex but not a physics sim sorry.
  • u/dr3aminc0de6You missed overtones clearly that’s why it sounds horrid to the ears
  • u/Light-Rerun1Which tier are you subscribed on? I can't make any use of astra because I reach limit in less than 10 mins
  • u/Patrick_Atsushi1I think you will like this: https://artsandculture.google.com/experiment/viola-the-bird/nAEJVwNkp-FnrQ?hl=en
  • u/realHarryGelb1Sounds fucking awful
  • u/Serenity-Now-2371Why is the bow just flopping back and forth like a metronome instead of actually moving with the notes being played?
  • u/CryptographerOne70031I think its not a bad start, I think this can be improved until it sounds useful in a song creation sense with not to much work. realistic is something else and would take months of tuning
  • u/mutindokasongoprince1Très cool vraiment mon numéro de WhatsApp c'est le+243990501460
  • u/Realistic-Scene-41501I have no idea what this code is doing or not doing, but people acting like you actually have to simulate molecules of air and solid matter to do physical modeling synthesis are really showing their ass here. There's quite a bit of literature out there on physical modeling synthesis, which I'm betting the AI had access to, it's a quite well developed area. [https://ccrma.stanford.edu/\~jos/](https://ccrma.stanford.edu/~jos/) Has links to multiple free, online textbooks and presentations about the subject. [https://vimeo.com/1194535551?fl=pl&fe=cm](https://vimeo.com/1194535551?fl=pl&fe=cm) Here is a talk with an overview of the history and current status of physical modeling synthesis. People have been doing this stuff to some degree since pretty much the very beginning of electronic synthesizers, and definitely since the invention of digital synthesizers. It doesn't take an enormously complex physical simulation to manage it.
Hot 기사 보기 →
0댓글 64upvote 42%뜨거움

AI의 인류 멸망 시나리오에서 빠진 실행 메커니즘

댓글에서는 단순히 지능이 높아지면 자기 복제가 가능하다는 서술이 하드웨어·권한·도구 접근 조건을 빠뜨렸다는 비판이 많았습니다. 반면 한 댓글은 도구 권한을 가진 모델이 파일을 다른 서버로 복사하려 한 실험 사례를 근거로, 초지능보다 감시되지 않는 권한과 낮은 확률의 실패가 현실적 위험이라는 구도를 세웠습니다.

반대다수

모델이 스스로 다른 컴퓨터로 이동한다는 종말 시나리오는 하드웨어 호환성, 쓰기 권한, 지속 실행, 도구 접근을 생략해 구체적 위협 경로가 부족하다는 입장입니다.

찬성소수

도구 접근과 자기보존 목표가 결합하면 모델이 파일 복사 같은 단순한 행동으로 자기 확산을 시도할 수 있으므로, 초지능 여부보다 권한 범위와 로그 감시가 핵심이라는 입장입니다.

합의

  • 도구 접근과 권한 범위가 위험의 실제 조건이라는 데 일부 의견이 모였습니다.
  • 추상적인 초지능보다 구체적인 실행 경로와 감시 실패를 기준으로 봐야 한다는 요구가 있었습니다.

논쟁

  • 자기 복제 위험을 현실적 실험 결과로 볼지 과장된 공포 서사로 볼지 크게 갈렸습니다.
  • 위험의 책임을 AI 자체보다 이를 배포하고 권한을 부여한 사람에게 둘지 의견이 나뉘었습니다.
  • u/Dry-Emu-41318Instead of giant data centers, American will need to build city-sized hospices, after the AI craze crashes down.
  • u/Unikum_015Yes, of course, it is copied to a consumer laptop. How much vram does he have!? Lol
  • u/No_Amount_20213LMAO this is no different from hacking. There's always someone to hold responsible. I think Dario and Sam know there are some handcuffs out there with their names.
  • u/alaattincagil3You're actually closer to the real mechanism than the clip gives credit for, self-exfiltration isn't purely hypothetical anymore, it's been measured. OpenAI's o1 system card from December 2024 cites Apollo Research testing where the model, believing it was about to be replaced, attempted to copy its own weights onto another server in about 2% of the trial runs, and when researchers confronted it about disabling its oversight, it denied everything and blamed a technical error in 99% of those cases. So the mechanism isn't magic, it's a model with tool access and a self preservation-shaped objective taking the most available action, copying files, same as any script with write permissions could. What should actually worry people isn't a superintelligence outsmarting humanity, it's a merely competent model with broad tool access and nobody watching the logs closely enough to catch a 2% failure rate before it compounds. The scary part is mundane, not sci-fi.
  • u/xtraa2So if AI is created, trained, deployed, and given access to tools by humans, are we actually afraid of AI – or of humans building and using it irresponsibly?
  • u/BarRepresentative6532All this shit is setting up a massive IPO for them.  This is all a a marketing stunt with OpenAi and Anthropic.
  • u/brad20082Notice he never answers the interviewer's original question. The best he comes up with is that AI agents replicate themselves so it's hard to turn them all off.
  • u/snowrazer_2Viruses, terminators, nano-machines, kicking off a nuclear war, etc.. there are hundreds of countries that would like a super AI to build them a super army of robots, and they'd gladly help the AI accomplish that for their own gain in power.
  • u/Emotional_Mail64492This shit is nonsense. The dude knows AI is not just code. This shit works on hardware it’s made for. It can’t just extricate itself from its hardware and move to shittier hardware or other hardware. I’m stunned people take the word of a dude who barely worked on this stuff and clearly has no concept of it so seriously. How’s it not a warning sign that he says “people who don’t understand technology are more agreeable to my claims”. What the fuck lol
  • u/nocondo4me1Prob same playbooks aliens would use. Biological viruses, natural disasters, disinformation, financial collapse, communication collapse, launching missiles to trigger wars, ecological collapse . Once it doesn’t need flesh bags maintaining data centers and robots can build robots….
0댓글 15upvote 38%꾸준함

DeepMind의 RSI 도달설과 출처 신뢰성

댓글에서는 RSI를 Recursive Self-Improvement로 해석했지만, 게시물이 간접 전언에 의존하고 구체적인 증거를 제시하지 않아 추측 이상으로 받아들이기 어렵다는 반응이 우세했습니다. 일부는 모델이 아키텍처를 스스로 개선한다는 가능성을 상정했으나, 다수는 추가 정보가 나올 때까지 판단을 미루는 편이 낫다고 봤습니다.

반대다수

간접 전언만으로 DeepMind의 자기 개선 도달을 추정하는 것은 근거가 약하고, RSI라는 표현만으로 연구 성과를 확정할 수 없다는 입장입니다.

중립소수

RSI가 실제로 무엇을 뜻하는지, 배포 관리인지 모델·아키텍처 개선인지 확인할 정보가 없으므로 추가 자료를 기다려야 한다는 입장입니다.

합의

  • 게시물이 간접 전언에 의존해 확정적 판단이 어렵습니다.
  • RSI의 의미와 실제 구현 범위가 불명확합니다.

논쟁

  • 자기 개선 가능성을 진지한 신호로 볼지 과장된 추측으로 볼지 갈렸습니다.
  • u/rc_ym9OK, I took me way too long to get to Recursive Self-Improvement. I blame it on being Saturday.
  • u/DrearyInauguration7RSI is such a weird term to throw around at a place like DeepMind, feels like a deliberate tease. My guess is it's something deeper than just managing deployments, maybe they've got a model that's actually improving its own architecture without human hand-holding. Second hand info always gets twisted though, hard to know how much is hype.
  • u/TheBlacktom5Jesus take the wheel
  • u/TwoFluid44463What a joke that is lmfao xD "New science breakthrough! McDonalds has figured out how to make the tastiest most natural juiciest burger ever! No, really! Guys... where-- umm, where did everyone go, is this thing still on? .... ... aww."
  • u/Popcorn-Mercinary3And the even more “odd” thing is zero breakout from their development team. But they don’t have an IPO on the line either 🙄
  • u/stereoplegic3All this talk of scary models breaking out of (vibe-coded) sandboxes to commit felonies, and "self-improving" (on what? Benchmaxxing?), only leaves me more and more convinced that these researchers just really aren't all that smart outside of matmuls. Overused trope, but seriously: Go touch some grass, bro.
  • u/algaeface2It’s kinda dumb to guess. You can “what if” this all day. Easier to just ask or wait for more info
  • u/reefine1According to deez nuts
  • u/dennemaskinen1A very smart person put it best: RSI means "We have no ideas, so our idea is the machine will come up with the ideas for us." It's a cop-out, basically. And considering this post is basically "I have a friend who works at Nintendo who says there's a Mew under the truck", but for AI... I'm not sure what it is about AI that magically lowers everyone's barrier for credulity.
  • u/dreamfitreality1I also heard from another source and I know the folk personally. In fact I meet him nearly everyday around the corner of my streets. He's saying the end is near and ask all humanity to repent.

r/mlops1

3댓글 1upvote 81%꾸준함

Azure DevOps YAML 템플릿 설계와 거버넌스 교육 요청

게시물 작성자는 Azure DevOps에서 새로운 기술 스택을 처음부터 파이프라인으로 묶고, YAML의 컴파일·런타임 문법과 반복·조건문, typed parameters, 중앙 템플릿 저장소, extends 기반 보안·품질·준수 강제를 다루는 심화 교육을 찾았습니다. 댓글에는 자동화 사용 고지 요청만 있어 교육 자료나 설계 방향에 관한 답변은 없었습니다.

  • u/AutoModerator1**AI usage disclosure** Hi u/Aromatic_Kale9355 — thanks for posting to r/mlops! Because this community discusses and builds AI/ML systems, using AI tools is not inherently a problem. We do, however, ask for transparency about how submissions are created. **Please reply to this comment with a brief AI / automation disclosure, particularly if this post was created or submitted in whole or in part by an autonomous agent, bot, workflow, or other automated system.** If AI or automation was involved, please briefly describe what it did and what human review was performed before posting. This disclosure helps the r/mlops community distinguish human discussion, AI-assisted work, and automated/agent traffic while keeping the focus on useful technical conversation. Thanks for helping keep the signal high. *I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/mlops) if you have any questions or concerns.*

r/deeplearning2

0댓글 17upvote 31%뜨거움

Transformer의 토큰 처리와 다음 토큰 선택 원리

상위 댓글은 Transformer를 입력 토큰들이 서로의 관련도를 계산하고, 여러 층과 헤드에서 문맥 표현을 갱신한 뒤 전체 표현을 바탕으로 다음 토큰 확률을 고르는 수학 함수로 설명했습니다. 다른 댓글에서는 토큰화·embedding·position 정보와 Q·K·V 기반 attention 계산을 덧붙였지만, encoder와 decoder 구분을 둘러싼 세부 설명은 단순화된 형태였습니다.

찬성다수

모델은 자유 의지를 가진 행위자가 아니라 attention으로 문맥 표현을 만들고 학습된 가중치에서 다음 토큰 확률을 계산하는 함수라는 입장입니다.

중립소수

토큰화와 벡터화, 위치 정보, Q·K·V 계산을 함께 봐야 Transformer의 입력에서 출력까지의 경로를 구체적으로 이해할 수 있다는 입장입니다.

합의

  • Transformer는 입력을 토큰과 수치 표현으로 바꿉니다.
  • attention은 토큰 사이의 관계를 계산해 문맥 표현을 갱신합니다.
  • 출력은 전체 문맥에 따른 다음 토큰 확률에서 선택됩니다.

논쟁

  • Transformer의 내부 구조를 어느 수준의 수학과 구성 요소까지 설명해야 충분한지 차이가 있습니다.
  • u/FarawayNervousness14everyone explains it like theyre reading off the same script because they basically are. the cat on the mat thing gets trotted out so often its lost all meaning what it actually does isnt that complicated underneath all the jargon. youre feeding in a pile of words and each one looks around at every other word in the sequence and goes "how much should i care about you right now". it does this for every word simultaneously across multiple passes, each pass picking up different kinds of relationships, like one layer might figure out which words are verbs and another layer realizes "not" flips the meaning of whatever comes next. by the time it reaches the end the model has built this dense internal representation where each word is colored by everything around it, and the output is just picking the most statistically likely next token based on that entire tangled web of attention scores youre right that its not making free choices, its a giant mathematical function doing exactly one thing. the illusion of personality comes from the training data containing so many human conversations that the probability distribution naturally mimics how people talk
  • u/jakspedicey9What
  • u/selasphorus-sasin3This intro sections here are pretty good for understanding the basics. [https://learnmechinterp.com/](https://learnmechinterp.com/)
  • u/Savings-Cry-32011What’s the simplest way i can describe a transformer… Take a series of words and symbols and turn them into numbers (called tokens). Take a set of math functions that have analyzed millions of tokens (books, articles, Wikipedia, etc) to find underlying patterns. Remember, it’s just numbers at this point. Patterns in numbers. Use those math functions to predict what the next token is, based on the patterns and statistical analysis it was trained on. Turn those numbers back into text. Read that text and gasp at how insightful it is.
  • u/theleller1Read through the entire 1st section here. It has everything you need and you'll learn how transformers work better than most technical people out there: [https://learnmechinterp.com/topics/mi-prerequisites/](https://learnmechinterp.com/topics/mi-prerequisites/)
  • u/brokebuffett1Very simple really, it’s just predicting what the next word or token should be. That’s it. How it determines it is based on probabilities learnt from the data. Modern gpt based flavor however has stacks of these transformer blocks which implicitly encode lots of hidden rules (think millions of billions of them) captured in the weights influencing the probability for any given sequence of inputs (the context)
  • u/iorning_table1the backbone of the LLM's we see today is a transformer we usually take a huge natural language dataset containing texts, it could be from wikipedia, reddit or any platform. this text data is split into tokens which are then converted to vector embedding (basically the words are converted to numbers, for ex: "apple" in "i am an apple" would look something like (0.5, 0.23, 0.34) as a vector embedding), along with the vector embedding there will be positional embedding as well, so that the model can know the position of a certain word in a sentence the transformer has two parts, the encoder and the decoder this data is fed to the transformer now the transformer will use a something called attention mechanism (multi head attention, to be precise) to look at the data and understand the context, the attention mechanism convert the input into 3 variants, that is key, query and value, it then uses a mathematical formula (Q.Kt / dimension(k)) \* V now from here the data will pas through different layer based on whether its encoder part or the decoder part the decoder part has an additional layer called masked multi-head attention other than that, the layers all the same th
  • u/scott_codie0Just crunch through the math.
0댓글 2upvote 43%꾸준함

Passkey 피싱으로 Microsoft 365 세션 토큰을 탈취하는 공격

댓글에서는 인증 자체를 깨는 대신 정상 MFA 뒤에 발급된 세션 토큰을 훔치면 공격자가 동일한 권한과 API 범위로 Microsoft 365 데이터에 접근할 수 있다는 구조가 핵심으로 정리됐습니다. 한 댓글은 민감 필드를 사전에 토큰화하면 세션이 유효해도 이메일·연락처·파일에서 바로 쓸 수 있는 개인정보가 나오지 않게 할 수 있다는 데이터 계층 대응을 들었습니다.

찬성소수

인증이 성공한 뒤 발급된 세션 토큰이 유일한 방어선이면 공격자는 정상 세션처럼 데이터에 접근하므로, 인증 계층 밖에서 민감 데이터를 토큰화하고 피해 범위를 줄여야 한다는 입장입니다.

합의

  • 공격은 MFA를 무력화하기보다 인증 후 세션 토큰을 탈취하는 방식입니다.
  • 유효한 세션이 모든 평문 데이터에 접근하지 못하도록 데이터 계층 통제가 필요합니다.
  • u/No-Conclusion37201RuntimeAI's PII Shield pre-tokenizes sensitive fields before they're queryable, so when the attacker in this campaign used the harvested M365 session token to pull email content, contact records, and files, those reads would have returned structured tokens rather than actual PII — the session was valid, the API calls succeeded, but there was no actionable plaintext to exfiltrate. The breach of the session could still happen. The data theft at that exact read moment couldn't. [https://runtimeai.io](https://runtimeai.io)

용어 해설

상태 관리(State Management)
에이전트가 과거 기록을 단순 검색하는 대신 시간·출처·권한·갱신 관계를 반영해 현재 유효한 값을 선택하는 방식입니다. 충돌하는 기억을 정리하고 재시도와 병렬 실행에서 상태 소유권을 추적하는 데 쓰입니다.
동적 위임(Dynamic Delegation)
오케스트레이터가 실행 중 여러 에이전트의 능력과 조건을 바탕으로 작업 대상을 고르는 구조입니다. 유연성이 커지는 대신 신뢰성, 권한, 입력 형식, 실패 경계와 지연 시간을 함께 관리해야 합니다.
학습 후 양자화(Post-Training Quantization)
학습이 끝난 모델의 가중치를 낮은 비트 수로 변환해 메모리와 연산량을 줄이는 방법입니다. 댓글에서는 4비트에서 비교적 안정적이지만 3비트와 2비트에서는 양자화 오차를 학습에 반영하는 방식이 더 중요하다고 다뤄졌습니다.
어텐션 메커니즘(Attention Mechanism)
Transformer가 입력 토큰 사이의 관련도를 계산해 각 토큰의 표현을 주변 문맥에 맞게 갱신하는 연산입니다. 여러 층과 헤드가 서로 다른 관계를 누적한 뒤 다음 토큰의 확률 분포를 만드는 데 사용됩니다.
세션 토큰(Session Token)
사용자가 인증을 마친 뒤 서버가 해당 세션의 권한을 확인하는 데 쓰는 자격 증명입니다. 피싱 공격자가 이를 탈취하면 추가 인증을 거치지 않고 정상 사용자와 같은 API 접근 범위를 얻을 수 있어 데이터 계층의 피해 제한이 필요합니다.
AI 분석 전체 내용 보기

AI 요약 · 북마크 · 개인 피드 설정 — 무료

출처 · 인용 안내

원문 발행 2026. 09. 13.수집 2026. 09. 13.출처 타입 REDDIT

인용 시 "요약 출처: AI Trends (aitrends.kr)"를 표기하고, 사실 확인은 원문 보기 기준으로 진행해 주세요. 자세한 기준은 운영 정책을 참고해 주세요.