Rick-Brick
Paper Review — Learning and Evaluation that Balance Robustness and Interpretability

Executive Summary

In this article, from the most recent submissions up to \textbf{2026-05-25 (JST)}, we cover five papers with robustness (resistance to transformations and perturbations) and interpretability (formal reasoning and evaluation design) as the axes. Even with seemingly unrelated themes such as audio deepfakes, logical reasoning, controllable image generation, conspiracy detection, and AI-generated code detection, the common thread is the idea of making “evaluation realistic” and “decomposing the model to make it work.” In particular, there is a strong movement toward neuro-symbolic modularization and toward “precision-tuning” performance with small LLMs plus auxiliary tools (provers, translators, and retrievers).


Paper 1: 「RADAR Challenge 2026: Robust Audio Deepfake Recognition under Media Transformations」

  • Authors/Affiliations: Hieu-Thi Luong et al. (RADAR Challenge execution team; affiliations are based on what is stated in the paper)
  • Research background and question: In audio deepfake detection, models can achieve high performance under evaluations that assume the generated model produces audio “as-is.” However, in real-world deployment, performance often degrades under media transformations such as compression, resampling, noise, and reverberation. This challenge therefore brings the transformation pipeline closer to reality and focuses on the question of “how much the detector does not fall apart.”
  • Proposed method: Rather than presenting a single method, this paper mainly defines the evaluation task (the challenge), along with the data construction and evaluation protocol. Key characteristics include designing both a development phase and a final evaluation phase, handling multiple languages beyond English, and evaluating binary classification using equal error rate (EER).
  • Main results: It is reported that, for submissions, 33 teams submitted during the development phase, and 22 teams made valid submissions during the final evaluation phase. It also indicates that robustness under media transformations (compression, re-sampling, noise, and reverberation) remains an unresolved challenge.
  • Significance and limitations: The significance is that, by explicitly incorporating the kinds of transformations that occur in real operations into the evaluation, the direction of model improvement can be brought closer to what is practical. On the other hand, as a limitation, because the challenge design depends on the target transformation set and data conditions, it is necessary to verify separately whether generalization to other transformation sequences or distribution paths (e.g., different codec settings) is possible.
  • Source: RADAR Challenge 2026: Robust Audio Deepfake Recognition under Media Transformations

An interesting point in this paper is that it makes robustness optimizable directly by model developers: instead of treating robustness as a “one-shot test-time showdown,” it “translates the reality of video/audio editing into the benchmark.” For terminology clarification, \textbf{EER (Equal Error Rate)} is a metric indicating the point where the false positive rate and the false negative rate are equal, making it easier to compare even when adjusting the detector’s threshold. As a familiar analogy: it’s like evaluating a camera not only under “conditions where blur does not occur” (test-time constraints), but under “blur that actually happens during real shooting.” On social/industrial impact, deepfake detection is expected to move from “research demos” toward “quality that can be used in streaming workflows.” As a result, it may also influence suppression of impersonation harms and optimization of operational costs for content monitoring.


Paper 2: 「UFAL-CUNI at SemEval-2026 Task 11: An Efficient Modular Neuro-symbolic Method for Syllogistic Reasoning」

  • Authors/Affiliations: Ivan Kartáč et al. (Participation team for SemEval-2026 Task 11; affiliations are based on what is stated in the paper)
  • Research background and question: Large language models (LLMs) can perform reasoning “convincingly” in natural language, but there are challenges in guaranteeing formal correctness (logical validity) and in disentangling content understanding from formal reasoning. This task therefore asks whether the effectiveness of a model design based on decomposing and evaluating “content” and “formal reasoning” can be demonstrated.
  • Proposed method: The proposal is an efficient modular neuro-symbolic setup. Concretely, (1) an LLM-based parser converts syllogisms (reasoning problems) from natural language into a \textbf{FOL (First-Order Logic: first-order logic)} representation, and (2) an automatic theorem prover performs satisfaction/derivation over logical formulas. Additionally, for (3) multilingual inputs, a machine translation module can be optionally added “as desired,” and (4) a symbolic search option is available for selecting premises. The core idea is to split the roles between a reasoning engine (theorem proving) and a generator (LLM).
  • Main results: It is stated that, using a small reasoning LLM on the order of 4B parameters, they achieved better performance than an LLM-based zero-shot baseline; however, it was also suggested that the capability of small LLMs may become a limiting factor on multilingual settings. The task standings and detailed metrics depend on the corresponding descriptions in the paper.
  • Significance and limitations: The significance lies in trying to ensure \textbf{formally correct reasoning} not by relying on the LLM’s “linguistic fluency,” but by handling it on the \textbf{logic engine} side. The limitation is that if the conversion from natural language to FOL is wrong, even if the theorem prover works correctly afterward, the system may become unable to reach the correct conclusion (the conversion error becomes the bottleneck). In addition, the observed constraints on multilingual ability due to small LLM scale point to room for improvement.
  • Source: UFAL-CUNI at SemEval-2026 Task 11: An Efficient Modular Neuro-symbolic Method for Syllogistic Reasoning

This paper shows the neuro-symbolic idea as a “clear structure.” Here, \textbf{neuro-symbolic} reflects a design philosophy where the neural component (such as an LLM) takes charge of “formalization” and “preparation for search” that are difficult for it, while the symbolic component (such as a theorem prover) takes charge of “deterministic correctness” that it excels at. As an analogy, it is like an LLM being the \textbf{person who reads out the cooking recipe}, and a theorem prover being the \textbf{person who reliably verifies each step according to that recipe}. If the recipe is ambiguous, verification is impossible—but if the recipe is accurate, verification becomes strong; that is the advantage of role specialization. Industrially, there is broad applicability in areas like reviewing legal documents, standards, and specification sheets—domains where you “map from text to formal structures and confirm correctness.”


Paper 3: 「The First Controllable Bokeh Rendering Challenge at NTIRE 2026」

  • Authors/Affiliations: Tim Seizinger et al. (Participants of the NTIRE 2026 challenge; affiliations are based on what is stated in the paper)
  • Research background and question: Bokeh is an important element in photographic and video representation, but there is a challenge: if evaluation is done only via “pixel-level matching,” it is easy for the results to diverge from human perception. This challenge therefore asks, using \textbf{controllable bokeh generation} as the topic, not only for quantitative metrics but also for perceptual evaluation.
  • Proposed method: Rather than proposing a model, this paper focuses on summarizing the challenge results and the evaluation design. Broadly, it prepares (1) a track that evaluates numerical fidelity and (2) a track that emphasizes perceptual evaluation by an expert panel. It also organizes submission status and trends across participating teams. There is further mention of baselines (such as Bokehlicious), from which the directions for improvement can be inferred.
  • Main results: It is reported that there were 44 participants registered, and that 8 teams became valid solutions after the final test phase. It is also important that they evaluated both sides—quantitative metrics and qualitative (perceptual) evaluation—targeting things like portraits and complex subjects.
  • Significance and limitations: The significance is that the challenge specifications incorporate ways to make evaluation closer to human perception. On the other hand, the limitation is that the reproducibility of perceptual evaluation (evaluator bias) and the correlation with quantitative metrics may not necessarily be high.
  • Source: The First Controllable Bokeh Rendering Challenge at NTIRE 2026

The keyword \textbf{controllable} here means not only generating bokeh images, but reflecting “what kind of bokeh will appear” according to specified conditions and control signals. As part of the evaluation design, using perceptual evaluation by an expert panel—put simply—is the idea that you should not decide the “quality” of a photo only by the camera’s resolution (pixels). On the social/industrial side, this enables makers to generate “desired textures” in video production, advertising, and AR/VR content creation, and to compete with evaluations that are closer to real-world judgments. As a result, it can make “workable standards” for generative AI clearer and potentially speed up adoption in the field.


Paper 4: 「mdok-style at SemEval-2026 Task 10: Finetuning LLMs for Conspiracy Detection」

  • Authors/Affiliations: Dominik Macko (Individual/team participation for SemEval-2026 Task 10; affiliations are based on what is stated in the paper)
  • Research background and question: Conspiracy beliefs can directly lead to the spread of misinformation and social disruption. In conspiracy detection, insufficient labeled data and variation in writing style and topics tend to reduce performance. This task therefore presents a classification problem that is close to real application: classifying whether a Reddit comment expresses a conspiracy.
  • Proposed method: The proposal is fine-tuning using Qwen3-32B. Under the assumption that the training data is comparatively small, the design compensates for it by (1) data augmentation and (2) self-training to supplement pseudo-labels. Although the approach is originally positioned as coming from methods for detecting machine-generated text, it is described as being repurposed for conspiracy detection as well.
  • Main results: The submission results state that they had competitive performance at the 85th percentile (8th out of 52 submissions). It also suggests that ideas cultivated for machine-generated detection can be transferred to classification tasks like this.
  • Significance and limitations: The significance is that, by using data augmentation and self-learning, learning stability under small-data settings can be achieved in a realistic way. The limitation is that self-training depends on the quality of pseudo-labels, which can lead to incorrect self-reinforcing behavior (confirmation bias).
  • Source: mdok-style at SemEval-2026 Task 10: Finetuning LLMs for Conspiracy Detection

The key points for understanding this paper are that it does not try to solve the “depth of content” of conspiracy beliefs with only a single model capability, but instead raises the floor by tailoring \textbf{data quality and learning dynamics}. As terminology, \textbf{fine-tuning} is additional training of a pre-trained LLM on task data, and \textbf{self-training} is the process of first using a provisional model to estimate labels for unlabeled data, then reusing those estimates during training. In a familiar analogy: it’s like first taking an easy test, self-grading it, and then only sending the problems you are confident about into additional training. In terms of societal impact, it may contribute to improving the accuracy of tools that support misinformation countermeasures and moderation (post monitoring).


Paper 5: 「Fine-Tuning Pre-Trained Code Models for AI-Generated Code Detection」

  • Authors/Affiliations: Jany-Gabriel Ispas, Sergiu Nisioi (Participation team for SemEval-2026 Task 13; affiliations are based on what is stated in the paper)
  • Research background and question: Detecting AI-generated code involves practical issues such as copyright, misuse, and safety (including vulnerability injection). Since the classification targets require not only a simple binary decision (human vs AI-generated) but also identification of the specific generating model (11-class attribution), feature learning and evaluation design become critical.
  • Proposed method: Starting from a baseline of TF-IDF plus logistic regression, they fine-tune four lines of models: CodeBERT, GraphCodeBERT, UniXcoder, and CodeT5+. They change strategies for two subtasks: (1) for binary classification, they introduce \textbf{leave-one-language-out cross-validation (CV excluding each language)}; (2) for inference, they use chunking plus trimmed-mean aggregation; and (3) for improving accuracy, they introduce threshold calibration. For identifying the generating model (11 classes), they secure robustness with techniques such as sandwich token packing, class-balanced loss, multi-seed ensembling, and test-time data augmentation.
  • Main results: Subtask-A reports macro-F1 of 0.737, placing 6th among 81 teams. Subtask-B reports macro-F1 of 0.422, placing 7th among 34 teams.
  • Significance and limitations: The significance is that the detection problem is optimized not only via model selection, but also by including evaluation, inference, thresholds, and data splitting in the optimization target. The limitation is that it may depend on compute cost (multiple models/ensembles/test-time augmentation) and on the language balance during training.
  • Source: Fine-Tuning Pre-Trained Code Models for AI-Generated Code Detection

Here, you can see the “implementation know-how” in the security domain. \textbf{macro-F1} is a metric that captures average accuracy even when there is class imbalance, and often fits the task better than simple accuracy. As a familiar analogy, this is like “arranging the grading rubric (threshold calibration) and how you extract answers (chunking) so that grading doesn’t swing due to subjectivity.” Industrially, for code review assistance and compliance automation, this will likely provide material that allows decision-making not just based on the detector’s accuracy, but also on operational design (such as thresholds and language splits).


Cross-Paper Discussion

Although these five papers come from different fields, their shared trends can be organized into three major themes. First, there is a movement to \textbf{evaluate robustness by tying it to real-world changes}. In audio deepfake detection, robustness is evaluated under media transformations; in image generation, perceptual evaluation is used; and in code detection, language-split CV is employed. This represents a step beyond simply optimizing lab benchmarks and a search for metrics that actually work in deployment. Second, there is the \textbf{idea of not completing everything with a single model but improving performance via role specialization (modularization)}. In neuro-symbolic approaches, the LLM is pushed toward formalization (FOL-ification), and the theorem prover toward correctness. Even in conspiracy detection and code detection, “peripheral design of inference” directly impacts performance—such as data augmentation, self-training, threshold calibration, and chunk aggregation. Third, the strong (though obvious) claim that \textbf{“good evaluation determines research directions”} is reaffirmed through challenge formats and task design. RADAR, NTIRE, and SemEval all define what the research focus should be through their evaluation specifications.

As future implications, it is possible that, beyond proposing new architectures, the core of research competition will revolve around: (1) how to map real transformations into benchmarks, (2) where to cut the model into modules to clearly expose failure points, and (3) how to align the connection between metrics and operations (thresholds, CV design, and perceptual evaluation). When readers follow each paper, their understanding will accelerate if they focus not only on the “inside” of the model, but also on the evaluation protocol and surrounding design (data splitting, transformations, aggregation, thresholds).


References

TitleSourceURL
RADAR Challenge 2026: Robust Audio Deepfake Recognition under Media TransformationsarXivhttps://arxiv.org/abs/2605.09568
UFAL-CUNI at SemEval-2026 Task 11: An Efficient Modular Neuro-symbolic Method for Syllogistic ReasoningarXivhttps://arxiv.org/abs/2605.04941
The First Controllable Bokeh Rendering Challenge at NTIRE 2026arXivhttps://arxiv.org/abs/2605.05510
mdok-style at SemEval-2026 Task 10: Finetuning LLMs for Conspiracy DetectionarXivhttps://arxiv.org/abs/2605.02712
Fine-Tuning Pre-Trained Code Models for AI-Generated Code DetectionarXivhttps://arxiv.org/abs/2605.01596

This article was automatically generated by LLM. It may contain errors.