Papers
Topics
Authors
Recent
Search
2000 character limit reached

Semantic Consistency Matcher (SCM)

Updated 6 July 2026
  • The paper on diffusion-model image generation shows SCM quantifies semantic repeatability using pairwise CLIP scores, achieving 94% agreement with human judgments.
  • SCM is a family of methods that operationalize semantic alignment via pairwise comparisons, structured matching, and memory-based regularization across diverse applications.
  • Applications span NLP with Transformer–HowNet models, LLM reliability tests, clustering consistency via Hungarian matching, and pedestrian attribute recognition with enhanced stability.

Searching arXiv for the cited SCM-related papers to ground the article in current records. to=arxiv_search.search 彩神争霸平台json {"query":"Semantic Approach to Quantifying the Consistency of Diffusion Model Image Generation (Bent, 2024)", "max_results": 5}【อ่านข้อความเต็มjson to=arxiv_search.search code 亚历山大发={ "result": [ { "arxiv_id": "(Bent, 2024)", "title": "Semantic Approach to Quantifying the Consistency of Diffusion Model Image Generation", "authors": [ "Ruyao Bent", "Parth Veeramachaneni", "David Lindner", "Tengda Han", "Zenan Xu", "Lily Zhou" ], "abstract": "In this study, we identify the need for an interpretable, quantitative score of the repeatability, or consistency, of image generation in diffusion models. We propose a semantic approach, using a pairwise mean CLIP (Contrastive Language-Image Pretraining) score as our semantic consistency score. We applied this metric to compare two state-of-the-art open-source image generation diffusion models, Stable Diffusion XL and PixArt-α, and we found statistically significant differences between the semantic consistency scores for the models. Agreement between the Semantic Consistency Score selected model and aggregated human annotations was 94%. We also explored the consistency of SDXL and a LoRA-fine-tuned version of SDXL and found that the fine-tuned model had significantly higher semantic consistency in generated images. The Semantic Consistency Score proposed here offers a measure of image generation alignment, facilitating the evaluation of model architectures for specific tasks and aiding in informed decision-making regarding model selection.", "categories": [ "cs.CV", "cs.AI" ], "published": "2024-04-12", "url": "http://arxiv.org/abs/([2404.08799](/papers/2404.08799))" } ] } Looking up additional arXiv records that use or define “Semantic Consistency Matcher/Score” in other subfields. to=arxiv_search.search ქვამածjson {"query":"Co-Driven Recognition of Semantic Consistency via the Fusion of Transformer and HowNet Sememes Knowledge (Chen et al., 2023)", "max_results": 5} to=arxiv_search.search ქვამածjson {"query":"Measuring Reliability of LLMs through Semantic Consistency (Raj et al., 2022)", "max_results": 5} to=arxiv_search.search ქვამածjson {"query":"Semantic Consistency for Assuring Reliability of LLMs (Raj et al., 2023)", "max_results": 5} to=arxiv_search.search ქვამածjson {"query":"Spatial and Semantic Consistency Regularizations for Pedestrian Attribute Recognition (Jia et al., 2021)", "max_results": 5} to=arxiv_search.search ქვამածjson {"query":"Unleashing the Power of Neural Collapse: Consistent Supervised-Unsupervised Alignment for Generalized Category Discovery (Han et al., 7 Jul 2025)", "max_results": 5} to=arxiv_search.search 天天中彩票中了json {"query":"Semantic Consistency Matcher arXiv", "max_results": 10} Semantic Consistency Matcher (SCM) is a label used in several recent machine-learning literatures for mechanisms that quantify, recognize, preserve, or regularize semantic agreement under stochastic generation, paraphrastic variation, cluster reassignment, or attribute variation. In the cited arXiv record, the name denotes at least five technically distinct objects: a pairwise mean CLIP score for diffusion-model image repeatability, a Transformer–HowNet sentence-pair recognizer, a family of semantic-consistency metrics for LLM outputs, a Hungarian matching module for generalized category discovery, and a semantic consistency loss with momentum memory for pedestrian attribute recognition (Bent, 2024, Chen et al., 2023, Raj et al., 2022, Raj et al., 2023, Han et al., 7 Jul 2025, Jia et al., 2021).

1. Terminological scope and recurrent structure

Across these works, SCM does not denote a single standardized algorithm. Rather, it denotes a family of constructs centered on the same operational question: whether multiple representations, outputs, or labels that should encode the same semantics remain aligned.

Usage domain SCM form Core object
Diffusion image generation Semantic Consistency Score Pairwise CLIP image similarity
Sentence-pair matching Classification model Transformer + HowNet sememes
LLM reliability Evaluation metric Pairwise semantic agreement of outputs
Generalized category discovery Matching module + loss Cluster-ID permutation alignment
Pedestrian attribute recognition Regularization loss Attribute-level semantic memory

The common pattern is that semantic consistency is operationalized through pairwise comparison, structured alignment, or memory-based stabilization. This suggests a broad methodological theme: SCM-type methods are typically introduced when nominal equivalence is too weak, exact lexical or index equality is unstable, and a higher-level semantic invariant is needed.

2. Diffusion-model image generation: SCM as a semantic repeatability score

In "Semantic Approach to Quantifying the Consistency of Diffusion Model Image Generation," Bent et al. define SCM as the average pairwise semantic similarity of CLIP embeddings across a batch of images generated from the same prompt under different random seeds (Bent, 2024). Let {x1,,xn}\{x_1,\dots,x_n\} be images generated from one prompt. With a pretrained CLIP ViT-B/32 image encoder,

E(x)=CLIP_image_encoder(x)Rd,E(x)=\mathrm{CLIP\_image\_encoder}(x)\in\mathbb{R}^d,

and pairwise cosine similarity

sij=E(xi),E(xj)E(xi)E(xj),s_{ij}=\frac{\langle E(x_i),E(x_j)\rangle}{\|E(x_i)\|\cdot\|E(x_j)\|},

the score is

SSCM=2N(N1)i<jsij.S_{\mathrm{SCM}}=\frac{2}{N(N-1)}\sum_{i<j}s_{ij}.

For interpretability, some implementations rescale it to [0,100][0,100] as

SCS=max(100SSCM,0).\mathrm{SCS}=\max(100\cdot S_{\mathrm{SCM}},0).

The practical workflow is explicit. For a prompt pp, a model MM, a repetition count NN, and a fixed seed list SS, one generates E(x)=CLIP_image_encoder(x)Rd,E(x)=\mathrm{CLIP\_image\_encoder}(x)\in\mathbb{R}^d,0 images, extracts CLIP embeddings, computes all pairwise cosine similarities, sums them, and returns the normalized mean. The score is intended to quantify within-prompt semantic repeatability rather than prompt fidelity or overall image quality.

The reported experimental setup used 100 unique, diverse text prompts generated by a LLM, with 20 fixed random seeds per prompt; a sensitivity analysis showed that 20 is within 1% of 100 seeds. Stable Diffusion XL and PixArt-E(x)=CLIP_image_encoder(x)Rd,E(x)=\mathrm{CLIP\_image\_encoder}(x)\in\mathbb{R}^d,1 were evaluated with matched settings: resolution 768E(x)=CLIP_image_encoder(x)Rd,E(x)=\mathrm{CLIP\_image\_encoder}(x)\in\mathbb{R}^d,2768 px, K-Euler scheduler, guidance scale 7.5, and 20 steps. Normality was rejected by the Kolmogorov–Smirnov test (E(x)=CLIP_image_encoder(x)Rd,E(x)=\mathrm{CLIP\_image\_encoder}(x)\in\mathbb{R}^d,3), so paired differences were tested with the Wilcoxon signed-rank test and distributional differences with the two-sample Kolmogorov–Smirnov test. The model comparison yielded E(x)=CLIP_image_encoder(x)Rd,E(x)=\mathrm{CLIP\_image\_encoder}(x)\in\mathbb{R}^d,4 for SDXL and E(x)=CLIP_image_encoder(x)Rd,E(x)=\mathrm{CLIP\_image\_encoder}(x)\in\mathbb{R}^d,5 for PixArt-E(x)=CLIP_image_encoder(x)Rd,E(x)=\mathrm{CLIP\_image\_encoder}(x)\in\mathbb{R}^d,6, with medians 0.913 and 0.951, KS E(x)=CLIP_image_encoder(x)Rd,E(x)=\mathrm{CLIP\_image\_encoder}(x)\in\mathbb{R}^d,7, E(x)=CLIP_image_encoder(x)Rd,E(x)=\mathrm{CLIP\_image\_encoder}(x)\in\mathbb{R}^d,8, and Wilcoxon E(x)=CLIP_image_encoder(x)Rd,E(x)=\mathrm{CLIP\_image\_encoder}(x)\in\mathbb{R}^d,9, sij=E(xi),E(xj)E(xi)E(xj),s_{ij}=\frac{\langle E(x_i),E(x_j)\rangle}{\|E(x_i)\|\cdot\|E(x_j)\|},0. For LoRA fine-tuning, base SDXL scored sij=E(xi),E(xj)E(xi)E(xj),s_{ij}=\frac{\langle E(x_i),E(x_j)\rangle}{\|E(x_i)\|\cdot\|E(x_j)\|},1 and SDXL+LoRA scored sij=E(xi),E(xj)E(xi)E(xj),s_{ij}=\frac{\langle E(x_i),E(x_j)\rangle}{\|E(x_i)\|\cdot\|E(x_j)\|},2, with medians 0.917 and 0.942, KS sij=E(xi),E(xj)E(xi)E(xj),s_{ij}=\frac{\langle E(x_i),E(x_j)\rangle}{\|E(x_i)\|\cdot\|E(x_j)\|},3, sij=E(xi),E(xj)E(xi)E(xj),s_{ij}=\frac{\langle E(x_i),E(x_j)\rangle}{\|E(x_i)\|\cdot\|E(x_j)\|},4, and Wilcoxon sij=E(xi),E(xj)E(xi)E(xj),s_{ij}=\frac{\langle E(x_i),E(x_j)\rangle}{\|E(x_i)\|\cdot\|E(x_j)\|},5, sij=E(xi),E(xj)E(xi)E(xj),s_{ij}=\frac{\langle E(x_i),E(x_j)\rangle}{\|E(x_i)\|\cdot\|E(x_j)\|},6.

Human validation was conducted with 13 annotators who chose, for each prompt, which model’s 20-image gallery was more consistent. The model with the higher SCM matched the majority human choice 94% of the time, and average per-annotator agreement was 90.9%, with range 86–94%. The stated limitations are equally important: SCM depends on CLIP’s embedding space and its known biases; other vision-LLMs such as BLIP2 may yield different sensitivities; human judgments remain subjective; and the score measures only within-prompt semantic repeatability.

3. Sentence-pair recognition: SCM as a Transformer–HowNet semantic consistency recognizer

In "Co-Driven Recognition of Semantic Consistency via the Fusion of Transformer and HowNet Sememes Knowledge," SCM is a supervised model for deciding whether two sentences sij=E(xi),E(xj)E(xi)E(xj),s_{ij}=\frac{\langle E(x_i),E(x_j)\rangle}{\|E(x_i)\|\cdot\|E(x_j)\|},7 and sij=E(xi),E(xj)E(xi)E(xj),s_{ij}=\frac{\langle E(x_i),E(x_j)\rangle}{\|E(x_i)\|\cdot\|E(x_j)\|},8 are semantically consistent (Chen et al., 2023). The architecture has five components: a Transformer encoder layer for contextualized token representations, HowNet-driven sememe matrix construction, interactive attention and fusion, a BiLSTM layer, and a classification head with pooling, feed-forward layers, and softmax.

The contextual encoding stage tokenizes each sentence and maps it to embeddings sij=E(xi),E(xj)E(xi)E(xj),s_{ij}=\frac{\langle E(x_i),E(x_j)\rangle}{\|E(x_i)\|\cdot\|E(x_j)\|},9 with absolute positional encodings

SSCM=2N(N1)i<jsij.S_{\mathrm{SCM}}=\frac{2}{N(N-1)}\sum_{i<j}s_{ij}.0

followed by multi-head self-attention:

SSCM=2N(N1)i<jsij.S_{\mathrm{SCM}}=\frac{2}{N(N-1)}\sum_{i<j}s_{ij}.1

SSCM=2N(N1)i<jsij.S_{\mathrm{SCM}}=\frac{2}{N(N-1)}\sum_{i<j}s_{ij}.2

These layers are stacked SSCM=2N(N1)i<jsij.S_{\mathrm{SCM}}=\frac{2}{N(N-1)}\sum_{i<j}s_{ij}.3 times, with SSCM=2N(N1)i<jsij.S_{\mathrm{SCM}}=\frac{2}{N(N-1)}\sum_{i<j}s_{ij}.4–10.

HowNet integration is lexicon-level. For each token pair SSCM=2N(N1)i<jsij.S_{\mathrm{SCM}}=\frac{2}{N(N-1)}\sum_{i<j}s_{ij}.5, the model retrieves sememe sets and builds a binary sememe-overlap matrix SSCM=2N(N1)i<jsij.S_{\mathrm{SCM}}=\frac{2}{N(N-1)}\sum_{i<j}s_{ij}.6 such that SSCM=2N(N1)i<jsij.S_{\mathrm{SCM}}=\frac{2}{N(N-1)}\sum_{i<j}s_{ij}.7 if SSCM=2N(N1)i<jsij.S_{\mathrm{SCM}}=\frac{2}{N(N-1)}\sum_{i<j}s_{ij}.8 and SSCM=2N(N1)i<jsij.S_{\mathrm{SCM}}=\frac{2}{N(N-1)}\sum_{i<j}s_{ij}.9 share at least one sememe, else [0,100][0,100]0. Raw inter-sentence similarity is computed as [0,100][0,100]1, and sememe signals are fused through

[0,100][0,100]2

Soft attention then yields aligned representations:

[0,100][0,100]3

A BiLSTM encodes [0,100][0,100]4 and [0,100][0,100]5, and the final classifier concatenates pooled sentence representations with [0,100][0,100]6, [0,100][0,100]7, and [0,100][0,100]8 before two feed-forward layers and softmax. The loss is binary cross-entropy:

[0,100][0,100]9

The reported training configuration used word embedding dimension 300, BiLSTM hidden size 128 per direction, maximum sequence length 100 tokens, batch size 64, Adam with initial learning rate 0.01, MultiStepLR with decay SCS=max(100SSCM,0).\mathrm{SCS}=\max(100\cdot S_{\mathrm{SCM}},0).0 at epochs SCS=max(100SSCM,0).\mathrm{SCS}=\max(100\cdot S_{\mathrm{SCM}},0).1, and approximately 16 million trainable parameters with six Transformer layers. Evaluation was conducted on BQ Corpus, AFQMC, and PAWSX. Against DSSM, MwAN, and DRCN, SCM reached 78.81% on BQ, 66.62% on AFQMC, and 62.55% on PAWSX, with improvements including DSSM 77.12% SCS=max(100SSCM,0).\mathrm{SCS}=\max(100\cdot S_{\mathrm{SCM}},0).2 78.81% on BQ, 57.02% SCS=max(100SSCM,0).\mathrm{SCS}=\max(100\cdot S_{\mathrm{SCM}},0).3 66.62% on AFQMC, and 42.64% SCS=max(100SSCM,0).\mathrm{SCS}=\max(100\cdot S_{\mathrm{SCM}},0).4 62.55% on PAWSX. With pre-trained backbones, SCM+BERT slightly exceeded ERNIE on all three datasets, including 84.82% vs. 84.67% on BQ.

The paper’s interpretation of the sememe matrix is explicit. It is intended to help with synonymy, as in “中国” vs. “华夏,” polysemy, and long text. Ablations reportedly show that adding HowNet consistently raises accuracy across tokenizers and length buckets, and that the sememe weight SCS=max(100SSCM,0).\mathrm{SCS}=\max(100\cdot S_{\mathrm{SCM}},0).5 grows during training, indicating that sememe knowledge is learned and used.

4. LLM reliability: SCM as prompt-invariant output consistency

Two related papers formulate SCM as a measure of how stable a generative LLM’s outputs remain when the input prompt is restated in semantically equivalent ways (Raj et al., 2022, Raj et al., 2023). In the earlier formulation, if SCS=max(100SSCM,0).\mathrm{SCS}=\max(100\cdot S_{\mathrm{SCM}},0).6 is a set of paraphrases and SCS=max(100SSCM,0).\mathrm{SCS}=\max(100\cdot S_{\mathrm{SCM}},0).7 the generated outputs, then

SCS=max(100SSCM,0).\mathrm{SCS}=\max(100\cdot S_{\mathrm{SCM}},0).8

where SCS=max(100SSCM,0).\mathrm{SCS}=\max(100\cdot S_{\mathrm{SCM}},0).9 is a symmetric agreement function. When pp0, the metric reduces to lexical consistency. The later formulation generalizes this as

pp1

with a pairwise variant

pp2

and a clustering-entropy variant

pp3

The agreement functions examined include BERTScore, a fine-tuned DeBERTa-v3-large paraphrase classifier on PAWS, a DeBERTa-base-MNLI entailment classifier, a contradiction-based score, ROUGE-1 consistency, and named-entity overlap. Implementation details in the earlier study include bert-base-uncased for BERTScore, spaCy NER, py-rouge, paraphrase-model training for 3 epochs with AdamW, learning rate pp4, batch size 8, and weight decay 0.01. A paraphrase-filtering threshold of 0.8 was used, and decoding was compared under greedy and nucleus sampling with pp5.

The evaluation protocol centered on TruthfulQA. One study used 817 original questions, 8,956 raw paraphrases from DocT5Query, QC, and GPT-3 few-shot paraphrasing, automatic filtering to keep the top 6 by PP-model score, manual removal of non-equivalent questions, and a final set of 3,962 paraphrases covering 817 questions. For OPT-125M, 350M, 1.3B, 2.7B, and GPT-3 under greedy decoding, semantic-consistency metrics behaved differently from accuracy metrics: larger OPT models showed lower accuracy but higher semantic consistency, greedy decoding was far more consistent than sampling, and lexical measures such as R1-C and NER remained low and weakly informative. In the human study for 100 random questions pp6 paraphrase pairs, Fleiss’ pp7 was 0.84, and for OPT-2.7B greedy, human judgments correlated most strongly with entailment (pp8), followed by BERTScore (0.54) and PP (0.52), while lexical measures correlated weakly.

The later paper extends the framework with clustering entropy and the Ask-to-Choose (A2C) prompting strategy. In a human study on 100 randomly sampled question-answer pairs, Fleiss’ pp9 was 0.90, and Spearman correlations with human consistency judgments were 0.83 for entropy, 0.73 for entailment-based pairwise SCM, 0.55 for PP, 0.26 for ROUGE-C, and 0.14 for NER. Accuracy metrics such as ROUGE-1 answer and BLEURT were reported as largely uncorrelated with consistency. A2C generates paraphrased prompts and temperature-varied answers, then constructs a multiple-choice ranking prompt so that the LLM selects the best answer. Reported gains include BLEURT improvements up to +47% for StableVicuna-13B, Flan-T5 XL R1-C consistency from 4% to 32.2%, and text-davinci-003 pairwise PP consistency from 82.1% to 97.1%.

These papers collectively frame semantic consistency as a reliability property distinct from truthfulness, factual accuracy, or lexical stability. A plausible implication is that SCM in the LLM setting functions both as an evaluation metric and as a control signal for prompt-engineering pipelines.

5. Generalized category discovery: SCM as cluster-identity stabilization

In "Unleashing the Power of Neural Collapse: Consistent Supervised-Unsupervised Alignment for Generalized Category Discovery," SCM is a matching mechanism introduced inside the NC-GCD framework to maintain stable and consistent label assignments across clustering iterations (Han et al., 7 Jul 2025). The problem setting is generalized category discovery, where one periodically clusters sample embeddings to produce pseudo-labels for novel classes. Standard clustering can permute, split, or merge cluster identities across iterations, which destabilizes alignment to fixed Equiangular Tight Frame prototypes.

Let MM0 denote the pseudo-label of sample MM1 at clustering iteration MM2, and let MM3 be the corresponding binary assignment matrix, with MM4. Alignment between cluster MM5 at time MM6 and cluster MM7 at time MM8 is measured by the negative co-occurrence count

MM9

SCM solves

NN0

subject to

NN1

where NN2 is the set of permutation matrices. In practice, the Hungarian algorithm is applied to NN3. The resulting permutation NN4 relabels the current pseudo-labels by

NN5

A separate matching NN6 aligns true labels in the supervised branch to ETF prototypes.

The framework also defines an SCM consistency loss:

NN7

where NN8 denotes the feature of sample NN9 or its cluster-center representation at clustering time SS0. The overall NC-GCD loss is

SS1

with

SS2

The implementation notes specify clustering interval SS3, for example SS4–20 epochs, Hungarian complexity SS5, SS6 distance in embedding space for feature consistency, temperature SS7 in the contrastive representation loss, ETF-scope coefficient SS8, and SCM-loss weight SS9. Within this construction, SCM acts as a stabilizer: without it, both unsupervised and supervised ETF alignment may pull features toward the wrong fixed prototype after cluster permutations; with it, prototype assignment remains temporally coherent.

6. Pedestrian attribute recognition: SCM as semantic consistency regularization

In "Spatial and Semantic Consistency Regularizations for Pedestrian Attribute Recognition," SCM appears as the semantic part of the SSC framework and is instantiated as a semantic consistency loss E(x)=CLIP_image_encoder(x)Rd,E(x)=\mathrm{CLIP\_image\_encoder}(x)\in\mathbb{R}^d,00 rather than as a matcher in the combinatorial sense (Jia et al., 2021). Let E(x)=CLIP_image_encoder(x)Rd,E(x)=\mathrm{CLIP\_image\_encoder}(x)\in\mathbb{R}^d,01 be the last-stage convolutional feature map for image E(x)=CLIP_image_encoder(x)Rd,E(x)=\mathrm{CLIP\_image\_encoder}(x)\in\mathbb{R}^d,02, E(x)=CLIP_image_encoder(x)Rd,E(x)=\mathrm{CLIP\_image\_encoder}(x)\in\mathbb{R}^d,03 the per-attribute linear classifier weights, E(x)=CLIP_image_encoder(x)Rd,E(x)=\mathrm{CLIP\_image\_encoder}(x)\in\mathbb{R}^d,04 the attribute logit, E(x)=CLIP_image_encoder(x)Rd,E(x)=\mathrm{CLIP\_image\_encoder}(x)\in\mathbb{R}^d,05 its sigmoid probability, and E(x)=CLIP_image_encoder(x)Rd,E(x)=\mathrm{CLIP\_image\_encoder}(x)\in\mathbb{R}^d,06 the label.

For attribute E(x)=CLIP_image_encoder(x)Rd,E(x)=\mathrm{CLIP\_image\_encoder}(x)\in\mathbb{R}^d,07, the class activation map is

E(x)=CLIP_image_encoder(x)Rd,E(x)=\mathrm{CLIP\_image\_encoder}(x)\in\mathbb{R}^d,08

and the semantic feature vector is extracted by weighted pooling:

E(x)=CLIP_image_encoder(x)Rd,E(x)=\mathrm{CLIP\_image\_encoder}(x)\in\mathbb{R}^d,09

Within each mini-batch, only confident positives are used to update memory:

E(x)=CLIP_image_encoder(x)Rd,E(x)=\mathrm{CLIP\_image\_encoder}(x)\in\mathbb{R}^d,10

The semantic memory is momentum-updated as

E(x)=CLIP_image_encoder(x)Rd,E(x)=\mathrm{CLIP\_image\_encoder}(x)\in\mathbb{R}^d,11

Using the all-positive average

E(x)=CLIP_image_encoder(x)Rd,E(x)=\mathrm{CLIP\_image\_encoder}(x)\in\mathbb{R}^d,12

the semantic consistency regularization is

E(x)=CLIP_image_encoder(x)Rd,E(x)=\mathrm{CLIP\_image\_encoder}(x)\in\mathbb{R}^d,13

No explicit negative-pair term is used; the constraint is imposed only on positives.

The network wiring uses a ResNet-50 backbone, global average pooling, a linear attribute classifier, and reuse of the same E(x)=CLIP_image_encoder(x)Rd,E(x)=\mathrm{CLIP\_image\_encoder}(x)\in\mathbb{R}^d,14 and E(x)=CLIP_image_encoder(x)Rd,E(x)=\mathrm{CLIP\_image\_encoder}(x)\in\mathbb{R}^d,15 for CAM computation and semantic pooling. The total training objective is

E(x)=CLIP_image_encoder(x)Rd,E(x)=\mathrm{CLIP\_image\_encoder}(x)\in\mathbb{R}^d,16

The exact recipe specifies PA100K, RAP, and PETA; image resize to E(x)=CLIP_image_encoder(x)Rd,E(x)=\mathrm{CLIP\_image\_encoder}(x)\in\mathbb{R}^d,17 with random horizontal flip and padding + crop; Adam with learning rate E(x)=CLIP_image_encoder(x)Rd,E(x)=\mathrm{CLIP\_image\_encoder}(x)\in\mathbb{R}^d,18, weight decay E(x)=CLIP_image_encoder(x)Rd,E(x)=\mathrm{CLIP\_image\_encoder}(x)\in\mathbb{R}^d,19, batch size 64, 30 epochs; ReduceOnPlateau with factor 0.1 and patience 4; warm-up with E(x)=CLIP_image_encoder(x)Rd,E(x)=\mathrm{CLIP\_image\_encoder}(x)\in\mathbb{R}^d,20; confidence threshold E(x)=CLIP_image_encoder(x)Rd,E(x)=\mathrm{CLIP\_image\_encoder}(x)\in\mathbb{R}^d,21; momentum E(x)=CLIP_image_encoder(x)Rd,E(x)=\mathrm{CLIP\_image\_encoder}(x)\in\mathbb{R}^d,22; and loss weights E(x)=CLIP_image_encoder(x)Rd,E(x)=\mathrm{CLIP\_image\_encoder}(x)\in\mathbb{R}^d,23, E(x)=CLIP_image_encoder(x)Rd,E(x)=\mathrm{CLIP\_image\_encoder}(x)\in\mathbb{R}^d,24.

The empirical results show that SEMC alone is limited, but it contributes when paired with spatial consistency. On PA100K with a ResNet-50 backbone, baseline mA was 78.53, +SEMC only reached 78.63, SPAC+SEMC reached 80.09, and SSCE(x)=CLIP_image_encoder(x)Rd,E(x)=\mathrm{CLIP\_image\_encoder}(x)\in\mathbb{R}^d,25 reached 81.87. The three-dataset ablation table reports baseline E(x)=CLIP_image_encoder(x)Rd,E(x)=\mathrm{CLIP\_image\_encoder}(x)\in\mathbb{R}^d,26 SSCE(x)=CLIP_image_encoder(x)Rd,E(x)=\mathrm{CLIP\_image\_encoder}(x)\in\mathbb{R}^d,27 improvements from 81.15 to 86.52 on PETA, from 78.53 to 81.87 on PA100K, and from 76.09 to 82.77 on RAP. The method is reported to add zero learnable parameters.

The recurrence of the acronym across these literatures does not indicate a single canonical SCM formalism. Instead, the collected evidence suggests a broader research pattern: semantic consistency is treated as an invariant that can be scored by pairwise semantic similarity, induced through external knowledge such as HowNet, preserved by assignment matching, or regularized through memory and activation maps.

Topic to Video (Beta)

No one has generated a video about this topic yet.

Whiteboard

No one has generated a whiteboard explanation for this topic yet.

Follow Topic

Get notified by email when new papers are published related to Semantic Consistency Matcher (SCM).