REVIEW 3 major objections 5 minor 38 references
FaLCon: Facet-Anchored Retrieval with Late Consensus for Sim2Real Text-Based Person Anomaly Search
T0 review · 3 major / 5 minor · reviewed 2026-08-11 · deepseek-v4-flash
Pith's one-line read The paper demonstrates that anchoring retrieval to global captions while restricting three semantic rerankers to a shared top-10 pool reaches 95.41% mAP@10, 94.44% R@1, and 99.09% R@5 on the PAB Sim2Real person anomaly search benchmark.
desk verdict Competent systems paper with official benchmark numbers; the adaptive consensus gain is real but fragile—send it to review and ask for robustness evidence. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The load-bearing mechanism is the uncertainty-gated consensus over a shared top-10 candidate pool, sitting on top of an anchor-constrained retriever. Three experts — a query-candidate relevance scorer from the Qwen3-VL family, a masked-cloze verifier that reconstructs masked verbs and color attributes from candidate images, and a structured Detective–Analyst–Writer verifier that synthesizes candidate-specific descriptions — each produce scores for the same ten candidates, and per-query median-IQR calibration puts them on a common scale. Static late fusion with weights $(0.3, 0.3, 0.4)$ forms a baseline belief, and a gate $g(q)$, computed from entropy, top-two margin, and pairwise Jensen-Shannon divergence of expert beliefs, interpolates between that static fusion and a credibility-weighted logarithmic opinion pool that down-weights isolated experts. The whole consensus step costs $O(|M|^2 K)$ with $|M|=3$ and $K=10$ and adds no extra multimodal forward pass.
What would settle it
Re-run the PAB official evaluation with the gate fixed to $g(q)=0$ (never adapt) and $g(q)=1$ (always adapt) using the same three rerankers. If always-adapting does not beat static fusion by roughly the reported margin, or if the validation and test histograms of $u(q)$ put the 30th and 90th percentile cut points at very different locations, then the uncertainty gate is not the source of the gain.
Extended reading notes
Core claim
On its own terms, the paper's central discovery is that a two-stage architecture — anchor-constrained soft claim-aware retrieval followed by calibrated late fusion and uncertainty-gated consensus — is enough to make Sim2Real anomaly search work at benchmark scale. Each query is decomposed into a full caption, a structured concatenation, and appearance, action, object, and scene facets; the global views act as anchors that define the admissible candidate pool, and facet branches re-rank only anchor-supported candidates through per-query percentile-based score calibration and weighted fusion. The three rerankers then score the same top-10 pool, and a credibility-weighted logarithmic opinion pool combines their beliefs while a continuous gate $g(q)$ interpolates between static fusion and the adaptive consensus using entropy, top-two margin, and pairwise Jensen-Shannon disagreement. Official-test numbers, from 86.44% mAP@10 for retrieval to 95.41% mAP@10 for the complete framework, support the paper's conclusion that preserving strong global retrieval while restricting semantic reasoning to a small pool is effective.
Load-bearing premise
The load-bearing premise is that the uncertainty-gate thresholds and fusion weights picked on the synthetic validation set transfer to real test queries; if the uncertainty distribution shifts under the Sim2Real gap, the gate could reweight the three experts incorrectly and erase the reported gains.
Editorial extensions
If this is right
- Anchor-supported candidate generation prevents isolated facet branches from injecting unsupported candidates, so fine-grained cues can correct ranking without sacrificing recall.
- Per-query median-IQR calibration lets heterogeneous retrievers with different score scales be fused by simple weighted sums, which is why the fused retrieval stage beats every single backbone.
- Restricting three rerankers to a shared top-10 pool keeps semantic verification cost fixed and small, avoiding gallery-wide multimodal inference while still adding several mAP points over retrieval alone.
- The uncertainty gate improves on static fusion (from 95.18% to 95.41% mAP@10 and from 92.47% to 94.44% R@1), so selective, query-dependent consensus is preferable to applying adaptive weights to every query.
- Because the consensus reuses already-computed scores, any coarse-to-fine retrieval pipeline with multiple scorers on a shared pool could add it at negligible extra cost.
Reading between the lines
- We infer that the uncertainty-gated consensus is expert-agnostic and could transfer to other fine-grained retrieval tasks, such as video moment retrieval or product search, whenever several rerankers score the same candidate pool.
- We infer that the 30th and 90th percentile gate thresholds on the validation uncertainty distribution are the most fragile hyperparameters; recalibrating them on a small labeled set of real queries would directly test whether the consensus gain survives Sim2Real drift.
- We infer that adding more experts or facets will eventually saturate; because the structured verifier gives the largest single gain in the ablation, a natural extension is to test whether a pose or temporal expert still improves consensus or mainly adds correlated agreement.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. This paper proposes FaLCon, a coarse-to-fine framework for Sim2Real text-based person anomaly search on the PAB benchmark. The method constructs multiple textual views of a query (full caption, structured concatenation, and appearance/action/object/scene facets), fuses heterogeneous retrieval branches through anchor-constrained soft claim-aware fusion, forms a shared top-10 candidate pool, and then applies three reranking experts: a fine-tuned Qwen3 discriminative reranker, an AnomalyLMM-style cloze verifier, and an SSDC-inspired structured verifier. The expert scores are calibrated per query, combined by static late fusion, and optionally replaced by an uncertainty-gated logarithmic opinion pool that activates only on uncertain queries. The authors report official AI City 2026 Track 4 server results: soft claim-aware retrieval reaches 86.44% mAP@10, static fusion reaches 95.18% mAP@10, and the full uncertainty-gated consensus reaches 95.41% mAP@10, 94.44% R@1, and 99.09% R@5. All hyperparameters are stated to be selected on a synthetic validation split with no test-side calibration.
Significance. If the reported numbers are reliable, FaLCon is a strong empirical result on the PAB benchmark, and the paper is careful about evaluation protocol: it states that all configurations were frozen before official evaluation, reports official server scores rather than self-computed metrics, and candidly acknowledges the risk of Sim2Real calibration drift in the uncertainty gate. The component ablations are mostly monotonic and the design principle of preserving global retrieval while restricting expensive semantic reasoning to a small candidate pool is well motivated and practically attractive. The main caveat is that the final contribution, uncertainty-gated consensus, is supported by a single official test run with gate thresholds calibrated on synthetic validation, so the stability of the reported consensus gain is not yet established.
major comments (3)
- [Section 3.6 / Table 2] The central claim that uncertainty-gated consensus is effective rests on a single official test run whose gate thresholds δ_low and δ_high are set to the 30th and 90th percentiles of the synthetic validation u(q) distribution (Eq. 28). The paper itself warns that applying these thresholds to real queries "may remain sensitive to Sim2Real calibration drift" (Section 3.6). The consensus delta over static fusion is +0.23 mAP@10, +1.97 R@1, and +0.61 R@5, so if the real u(q) distribution is shifted upward the gate saturates at g(q)=1 and the method degenerates to a fixed log-opinion pool, while a downward shift makes consensus essentially never activate. Please provide a sensitivity analysis of the gate thresholds (e.g., varying the percentile pair or applying additive shifts to the validation u(q) distribution) and, if the evaluation protocol permits, multiple official-submission runs or a per-query breakdown showing that the adaptive-consensus gain is not a single-run artifact.
- [Table 2, rows 3-4] The rows '+ Qwen3 reranker' and '+ AnomalyLMM' report exactly identical R@1 (84.4287) and R@5 (97.9272). Since these are two independently implemented reranking modules, this coincidence is suspicious and, if it results from a transcription error, it undermines the component-ablation interpretation that each individual reranker improves retrieval. Please verify the official server outputs for these rows or explain the coincidence; if the row was mis-copied, correct the table and adjust the surrounding discussion.
- [Section 3.2 / Table 3] The 'No anchor' configuration in Table 3 is not precisely defined. The comparison between 'No anchor' and 'VM-concat anchor' conflates the effect of the anchor constraint of Eq. (3) with the effect of adding the VM-concat branch itself to the fusion, since that branch is also one of the fused retrievers. Please state explicitly which branches are active and whether the anchor constraint is applied in the 'No anchor' row, and ideally ablate the anchor constraint while keeping the same anchor branches in the fusion so that the +1.5 mAP attributed to anchoring isolates the constraint rather than the added branch.
minor comments (5)
- [Figure 2] The caption reads 'Overview of the our framework' and should be 'Overview of our framework'.
- [Section 4.2] The caption-sampling description is ambiguous: one paragraph says the VisMin CLIP is trained with Tfull/Tconcat/Tshort at 0.5/0.4/0.1, while the Qwen3 reranker paragraph says it uses mixed-caption sampling with Tfull/Tconcat at 0.5/0.5. Please state explicitly which sampling distribution applies to which model and whether the 0.5/0.4/0.1 distribution also applies to the EVA02 branch.
- [Equation (29)] The denominator of v_m uses d̄_ℓ, but the definition of d̄_m is given only for m; please state that d̄_ℓ is defined analogously for all ℓ ∈ M.
- [Section 5.3] The sentence 'The exact late-fusion fallback limits this risk' is grammatically unclear; consider 'The exact late-fusion fallback when g(q)=0 limits this risk'.
- [Section 6] The conclusion states that 'retrieval fusion and semantic reranking could improve performance'; 'could' should be 'can' or 'does' given that the paper reports improved official results.
Circularity Check
No significant circularity: the central benchmark claims are validated on an independent official test set; the only same-author citation (CREDENCE) is a component, not a load-bearing proof, and the uncertainty-gate thresholds are a validation-calibrated robustness concern, not a circular fit.
full rationale
This is an empirical systems paper; its derivation chain is a cascade of trained retrievers, rerankers, and fusion rules, not an analytical derivation. Every fusion weight, temperature, and gate threshold is selected on a held-out synthetic validation split, and official test scores are reported from the AI City 2026 Track 4 server only after configurations were frozen (Section 4.1: 'All temperatures, θ_JS, δ_low, and δ_high are selected using only the held-out synthetic validation set. No test-side calibration is performed...'). Therefore the headline numbers 95.41% mAP@10, 94.44% R@1, and 99.09% R@5 are not forced by construction from validation fits; they are independent test evaluations. The uncertainty gate (Eq. 28) uses thresholds at the 30th and 90th percentiles of validation u(q); this is a hyperparameter choice, and the paper itself flags the risk ('applying these thresholds to real queries may remain sensitive to Sim2Real calibration drift', Section 3.6), which is a limitation, not circularity. The only same-author citation is CREDENCE [33], used to decompose captions into facets. The method description gives the decomposition criteria (atomicity, fidelity, entity preservation, non-redundancy), and the retrieval ablations in Table 3 show that facet-anchored retrieval improves over standalone anchors on the official test set; nothing in the paper reduces the downstream result to CREDENCE's claims by construction. The logarithmic opinion pool and uncertainty gating are standard model-combination tools cited to external sources [6,11,22]. I therefore find no circular step; the minor self-citation is not load-bearing.
Assumptions & free parameters
free parameters (9)
- Branch weights w_b in soft claim-aware retrieval =
0.35 (VisMin-Tconcat), 0.25 (VisMin-Tfull), 0.30 (Qwen3-VL-Emb.-Tfull), 0.03, 0.02, 0.006, 0.006 (facets)
- Membership term weight lambda_mem =
0.05
- Late fusion weights omega = (0.3, 0.3, 0.4) =
(0.3, 0.3, 0.4)
- Temperatures tau_0, tau_LF, tau_Q, tau_A, tau_S =
1.0
- Credibility sharpness theta_JS =
0.5
- Uncertainty gate thresholds delta_low, delta_high =
30th/90th percentiles of validation u(q)
- Candidate pool size K =
10
- LoRA and training hyperparameters of Qwen3 reranker =
rank=16, alpha=32, LR=1e-4, 1 epoch, 7 hard negatives
- Caption sampling probabilities (0.5/0.4/0.1) =
0.5, 0.4, 0.1
assumptions (5)
- domain assumption The PAB benchmark's official test server scores are reliable and the gallery/query pairs are correctly labeled.
- domain assumption The synthetic validation split is representative of the real test distribution for hyperparameter selection.
- domain assumption The LLM-based facet decomposition (CREDENCE) preserves all discriminative attributes and does not introduce hallucinated claims.
- domain assumption Pretrained models (VisMin-CLIP, EVA02-CLIP, Qwen3-VL) behave as documented and are used within their intended inference procedures.
- standard math The standard mathematical operations (softmax, KL/Jensen-Shannon divergence, median-IQR calibration) are correctly implemented.
Cite this review
Pith. "Pith review of FaLCon: Facet-Anchored Retrieval with Late Consensus for Sim2Real Text-Based Person Anomaly Search." pith.science (2026). https://pith.science/paper/BATNG54I
@misc{pith2026260809474,
author = {Pith},
title = {Pith review of: FaLCon: Facet-Anchored Retrieval with Late Consensus for Sim2Real Text-Based Person Anomaly Search},
year = {2026},
howpublished = {\url{https://pith.science/paper/BATNG54I}},
note = {Machine review of arXiv:2608.09474}
}
read the original abstract
Text-based person anomaly search requires retrieving real-world pedestrian images from detailed natural-language descriptions using models trained primarily on synthetic data. This Sim2Real setting is particularly challenging because visually similar candidates may differ only in subtle actions, object interactions, or appearance attributes, while applying multimodal large language models to the entire gallery is computationally expensive. We propose an anchor-constrained coarse-to-fine retrieval framework that combines global semantic matching with fine-grained verification. First, each query is represented by its original caption, a structured concatenation, and several semantic facets. Heterogeneous vision-language retrievers are then integrated through robust per-query score calibration and soft claim-aware fusion. Full and concatenated captions serve as anchors to preserve candidate recall, whereas appearance, action, and object facets provide bounded corrective evidence. The resulting candidate pool is further refined by a discriminative Qwen3 reranker and two complementary semantic verification modules based on anomaly-aware cloze completion and multi-agent evidence reasoning. Finally, an uncertainty-gated consensus module adaptively reweights the three experts on ambiguous queries. Experiments on the PAB benchmark show that the proposed soft claim-aware retrieval achieves 86.44% mAP@10, substantially outperforming individual retrieval backbones. The complete framework further improves performance to 95.41% mAP@10, 94.44% R@1, and 99.09% R@5. These results demonstrate that preserving strong global retrieval while restricting expensive semantic reasoning to a small candidate pool is effective for fine-grained Sim2Real person anomaly search. Our code will be available on Github.
Figures
Figures from the paper (2 more)
Reference graph
Works this paper leans on
-
[1]
In: Advances in Neural Information Processing Systems (NeurIPS)
Awal, R., Ahmadi, S., Zhang, L., Agrawal, A.: Vismin: Visual minimal-change understanding. In: Advances in Neural Information Processing Systems (NeurIPS). vol. 37 (2024).https://doi.org/10.52202/079017-3423
-
[2]
In: Proceedings of the International Joint Conference on Artificial Intelligence (IJ- CAI)
Bai, Y., Cao, M., Gao, D., Cao, Z., Chen, C., Fan, Z., Nie, L., Zhang, M.: Rasa: Relation and sensitivity aware representation learning for text-based person search. In: Proceedings of the International Joint Conference on Artificial Intelligence (IJ- CAI). pp. 555–563 (2023)
work page 2023
-
[3]
In: Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition (CVPR)
Cao,Z.,Simon,T.,Wei,S.E.,Sheikh,Y.:Realtimemulti-person2dposeestimation using part affinity fields. In: Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition (CVPR). pp. 7291–7299 (2017)
work page 2017
-
[4]
Neurocomputing 494, 171–181 (2022)
Chen, Y., Zhang, G., Lu, Y., Wang, Z., Zheng, Y.: Tipcb: A simple but effective part-based convolutional baseline for text-based person search. Neurocomputing 494, 171–181 (2022)
work page 2022
-
[5]
Oxford University Press (1991)
Cooke, R.M.: Experts in Uncertainty: Opinion and Subjective Probability. Oxford University Press (1991)
work page 1991
-
[6]
Journal of the American Statistical Asso- ciation69(345), 118–121 (1974)
DeGroot, M.H.: Reaching a consensus. Journal of the American Statistical Asso- ciation69(345), 118–121 (1974)
work page 1974
-
[7]
In: Proceedings of the International Conference on Machine Learning (ICML) (2024)
Du, Y., Li, S., Torralba, A., Tenenbaum, J.B., Mordatch, I.: Improving factuality and reasoning in language models through multiagent debate. In: Proceedings of the International Conference on Machine Learning (ICML) (2024)
work page 2024
-
[8]
arXiv preprint arXiv:2407.21783 (2024)
Dubey, A., et al.: The llama 3 herd of models. arXiv preprint arXiv:2407.21783 (2024)
arXiv 2024
Show all 38 references
-
[9]
arXiv preprint arXiv:2504.05047 (2025),https://arxiv.org/abs/2504.05047
Eo, S., Moon, H., Zi, E.H., Park, C., Lim, H.: Debate only when necessary: Adaptive multiagent collaboration for efficient LLM reasoning. arXiv preprint arXiv:2504.05047 (2025),https://arxiv.org/abs/2504.05047
2025 arXiv
-
[10]
In: Proceedings of the AAAI Conference on Artificial Intelligence
Fan, W., Yoon, J., Ji, B.: iMAD: Intelligent multi-agent debate for efficient and accurate LLM inference. In: Proceedings of the AAAI Conference on Artificial Intelligence. vol. 40, pp. 29403–29411 (2026).https://doi.org/10.1609/aaai. v40i35.40181
2026 doi
-
[11]
Statistical Science1(1), 114–135 (1986)
Genest, C., Zidek, J.V.: Combining probability distributions: A critique and an annotated bibliography. Statistical Science1(1), 114–135 (1986)
1986
-
[13]
In: International Conference on Learning Representations (2022)
Hu, E.J., Shen, Y., Wallis, P., Allen-Zhu, Z., Li, Y., Wang, S., Wang, L., Chen, W.: Lora: Low-rank adaptation of large language models. In: International Conference on Learning Representations (2022)
2022
-
[15]
Ilharco, G., Wortsman, M., Wightman, R., Gordon, C., Carlini, N., Taori, R., Dave, A., Shankar, V., Namkoong, H., Miller, J., Hajishirzi, H., Farhadi, A., Schmidt, L.: Openclip (2021).https://doi.org/10.5281/zenodo.7506443, software release
2021 doi
-
[16]
In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR)
Jiang, D., Ye, M.: Cross-modal implicit relation reasoning and aligning for text-to- image person retrieval. In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR). pp. 2787–2797 (2023) 16 H. D. T. Pham et al
2023
-
[17]
In: Proceedings of the AAAI Conference on Artificial Intelligence (AAAI) (2020)
Jing, Y., Si, C., Wang, J., Wang, W., Wang, L., Tan, T.: Pose-guided multi- granularity attention network for text-based person search. In: Proceedings of the AAAI Conference on Artificial Intelligence (AAAI) (2020)
2020
-
[18]
arXiv preprint arXiv:2509.04376 (2025)
Ju, H., Zhang, H., Zheng, Z.: Anomalylmm: Bridging generative knowledge and discriminative retrieval for text-based person anomaly search. arXiv preprint arXiv:2509.04376 (2025)
2025 arXiv
-
[19]
arXiv preprint arXiv:2601.04720 (2026)
Li, M., Zhang, Y., Long, D., Chen, K., Song, S., Bai, S., Yang, Z., Xie, P., Yang, A., Liu, D., Zhou, J., Lin, J.: Qwen3-vl-embedding and qwen3-vl-reranker: A unified framework for state-of-the-art multimodal retrieval and ranking. arXiv preprint arXiv:2601.04720 (2026)
2026 arXiv
-
[20]
In: Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition (CVPR)
Li, S., Xiao, T., Li, H., Zhou, B., Yue, D., Wang, X.: Person search with natural language description. In: Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition (CVPR). pp. 1970–1979 (2017)
2017
-
[21]
In: Proceedings of the Conference on Empirical Methods in Natural Language Processing (EMNLP)
Liang, T., He, Z., Jiao, W., Wang, X., Wang, Y., Wang, R., Yang, Y., Shi, S., Tu, Z.: Encouraging divergent thinking in large language models through multi- agent debate. In: Proceedings of the Conference on Empirical Methods in Natural Language Processing (EMNLP). pp. 17889–1...
2024
-
[22]
IEEE Transactions on Information Theory37(1), 145–151 (1991)
Lin, J.: Divergence measures based on the shannon entropy. IEEE Transactions on Information Theory37(1), 145–151 (1991)
1991
-
[23]
In: Com- panion Proceedings of the ACM Web Conference 2025
Nguyen, T.H., Tran, H.L., Phan-Nguyen, H.P., Dinh, Q.V.: Hybrid, unified and iterative: A novel framework for text-based person anomaly retrieval. In: Com- panion Proceedings of the ACM Web Conference 2025. pp. 1576–1580 (2025). https://doi.org/10.1145/3701716.3717653
2025
-
[24]
IEEE Transactions on Image Processing29, 5542–5556 (2020)
Niu, K., Huang, Y., Ouyang, W., Wang, L.: Improving description-based person re-identification by multi-granularity image-text alignments. IEEE Transactions on Image Processing29, 5542–5556 (2020)
2020
-
[25]
In: Proceedings of the European Conference on Computer Vision (ECCV)
Park, J., Kim, D., Jeong, B., Kwak, S.: Plot: Text-based person search with part slot attention for corresponding part discovery. In: Proceedings of the European Conference on Computer Vision (ECCV). pp. 474–490 (2024)
2024
-
[26]
In: Proceedings of the International Conference on Machine Learning (ICML)
Radford, A., Kim, J.W., Hallacy, C., Ramesh, A., Goh, G., Agarwal, S., Sastry, G., Askell, A., Mishkin, P., Clark, J., Krueger, G., Sutskever, I.: Learning trans- ferable visual models from natural language supervision. In: Proceedings of the International Conference on Machin...
2021
-
[27]
In: Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition (CVPR)
Sultani, W., Chen, C., Shah, M.: Real-world anomaly detection in surveillance videos. In: Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition (CVPR). pp. 6479–6488 (2018)
2018
-
[28]
In: Proceedings of the ACM Web Conference (WWW)
Sun, J., Fei, H., Ding, G., Zheng, Z.: From data deluge to data curation: A filtering- wora paradigm for efficient text-based person search. In: Proceedings of the ACM Web Conference (WWW). pp. 2341–2351 (2025)
2025
-
[29]
arXiv preprint arXiv:2303.15389 (2023)
Sun, Q., Fang, Y., Wu, L., Wang, X., Cao, Y.: Eva-clip: Improved training tech- niques for clip at scale. arXiv preprint arXiv:2303.15389 (2023)
2023 arXiv
-
[30]
In: ECCV Workshops
Tang, Z., Wang, S., Anastasiu, D.C., Chang, M.C., et al.: The 10th AI City Chal- lenge. In: ECCV Workshops. Malm"o, Sweden (2026)
2026
-
[31]
arXiv preprint arXiv:2505.09388 (2025)
Team, Q.: Qwen3 technical report. arXiv preprint arXiv:2505.09388 (2025)
2025 arXiv
-
[32]
arXiv preprint arXiv:2511.21631 (2025)
Team, Q.: Qwen3-vl technical report. arXiv preprint arXiv:2511.21631 (2025)
2025 arXiv
-
[33]
arXiv preprint arXiv:2606.19819 (2026)
Tran, P.H.V., Mai, T.D., Le, B.X.: Credence: Claim reduction for decomposition & enhanced credibility–semantic metrics and convergence analysis. arXiv preprint arXiv:2606.19819 (2026)
2026 arXiv
-
[34]
In: Matu- sevych, Y., Eryiğit, G., Aletras, N
Verma, A., Gupta, S., Gupta, D., Sircar, P., Pillai, S.: SELENE: Selective and evidence-weighted LLM debating for efficient and reliable reasoning. In: Matu- sevych, Y., Eryiğit, G., Aletras, N. (eds.) Proceedings of the 19th Conference of FaLCon 17 the European Chapter of the...
2026 doi
-
[35]
In: Proceedings of the European Conference on Computer Vision (ECCV)
Wang, Z., Fang, Z., Wang, J., Yang, Y.: Vitaa: Visual-textual attributes alignment in person search by natural language. In: Proceedings of the European Conference on Computer Vision (ECCV). pp. 402–420 (2020)
2020
-
[36]
In: Findings of the Association for Computational Linguistics: ACL 2026
Xie, Z., Luo, G., Wang, C., Cai, S., Jin, T., Zhao, Z., Tang, Y.: Bridging the pose- semantic gap: A cascade framework for text-based person anomaly search. In: Findings of the Association for Computational Linguistics: ACL 2026. pp. 4040–
2026
-
[37]
In: Proceedings of the IEEE/CVF International Conference on Computer Vision (ICCV)
Yang, S., Wang, Y., Zhu, L., Zheng, Z.: Beyond walking: A large-scale image- text benchmark for text-based person anomaly search. In: Proceedings of the IEEE/CVF International Conference on Computer Vision (ICCV). pp. 11720– 11730 (2025)
2025
-
[38]
In: Proceedings of the International Conference on Machine Learning (ICML)
Zeng, Y., Zhang, X., Li, H.: Multi-grained vision language pre-training: Aligning texts with visual concepts. In: Proceedings of the International Conference on Machine Learning (ICML). pp. 25994–26009 (2022)
2022
-
[39]
In: Proceedings of the European Conference on Computer Vision (ECCV)
Zhang, Y., Lu, H.: Deep cross-modal projection learning for image-text matching. In: Proceedings of the European Conference on Computer Vision (ECCV). pp. 686–701 (2018)
2018
-
[4049]
Association for Computational Linguistics (2026)
2026
Reviewed August 11, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.