REVIEW 5 major objections 6 minor 40 references
Quality over Quantity: Boosting Data Efficiency Through Ensembled Multimodal Data Curation
T0 review · 5 major / 6 minor · reviewed 2026-08-08 · deepseek-v4-flash
Pith's one-line read A CLIP model trained on 3.5M carefully chosen image-text pairs beats one trained on the full 12.8M pool in DataComp's small-scale filtering track.
desk verdict A workmanlike data-curation ensemble that probably does help on DataComp small-scale, but the claimed SOTA margin is within typical training noise and the tuning protocol is under-specified. 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 weak supervision ensemble. Eight operators are converted into labeling functions whose threshold bands produce labels of $1$ (selected), $0$ (filtered), or $-1$ (abstain), as in Eq. (2); the abstain option lets an operator stay silent when its score is ambiguous. A LabelModel—a probabilistic model of labeling-function accuracy and correlation—turns the resulting label matrix into a per-sample quality score. Search-based optimization chooses the labeling functions by maximizing $M=\alpha_1 F1_{\mathrm{tiny}}+\alpha_2 f_{\mathrm{Overlap}}-\alpha_3 f_{\mathrm{Conflict}}+\alpha_4 f_{\mathrm{Coverage}}$ on a tiny labeled dataset, where the F1 term measures agreement with hand-built clean/noisy labels and the other terms reward coverage and penalize conflicts. Quality-guided deduplication runs first: perceptual hashing groups near-duplicates and the CLIP score selects the best-aligned pair in each group. Flip-CLIP (horizontal and vertical flips before CLIP scoring) counters the tendency of CLIP scores to be inflated by text embedded in images.
What would settle it
Run the released EcoDatum pipeline on the DataComp small-scale pool twice, building two independently resampled tiny labeled sets from the same recipe; if the labeling-function combination that maximizes the composite metric on one tiny set scores below 0.180 on the 38 tasks, or below the combination selected on the other tiny set, the claimed transfer from the tiny set to full-scale curation fails.
Extended reading notes
Core claim
On its own terms, the discovery is that the agreement pattern among diverse curation operators carries enough signal to rank web-crawled image-text pairs by quality. EcoDatum converts each operator's continuous score into a ternary vote (select, filter, or abstain), feeds the votes into a probabilistic LabelModel, and learns weights that reflect how much each operator contributes. A search procedure tunes the vote thresholds by optimizing a composite metric on a tiny labeled set built from clean COCO images, random web images, and artificially swapped pairs. The curated subset of about 3.5 million pairs yields a CLIP model with 0.182 average performance over 38 evaluation datasets, the top published result on the DataComp small-scale filtering track and a 28% improvement over the DataComp basic filter.
Load-bearing premise
The load-bearing premise is that the tiny labeled set—clean COCO images, random web images, and swapped image-text pairs—faithfully represents what 'high quality' means for the full 12.8 million web-crawled pairs, so that optimizing against it improves the 38-task downstream benchmark.
Editorial extensions
If this is right
- A CLIP trained on EcoDatum's 3.5M subset scores 0.182 on the 38-task benchmark, above the 12.8M unfiltered pool (0.132), the basic DataComp filter (0.142), and the prior best filters T-MARS and WS (0.180).
- The 3.5M subset is 72% smaller than the 12.8M pool, so the same benchmark result comes with a substantial cut in downstream data-processing and training cost.
- Global cross-modal alignment operators carry the largest learned weights, and removing the vertical flip variant degrades performance, so the largest gains come from alignment scoring rather than unimodal filters.
- The search-based LF optimization is load-bearing: random LabelModel weight assignments produced 0.141–0.161 average scores, all below the optimized 0.182.
- The improvement over no filtering grows with pool size (0.002 at 0.128M, 0.016 at 1.28M, 0.050 at 12.8M), which the paper reads as evidence that the curation gain scales.
Reading between the lines
- Because the ensemble is operator-agnostic, the same weak-supervision search recipe could be transferred to other data modalities—video-text pairs, audio captions, or language-model pretraining corpora—provided a tiny labeled proxy of clean versus noisy examples can be built; the paper does not test these transfers.
- Part of the gain likely comes from demoting pairs where text embedded in the image inflates vanilla CLIP similarity, which makes EcoDatum a natural complement to OCR-based filters rather than a replacement for them.
- The paper's scaling table suggests the method is aimed at large noisy pools; on an already aggressively cleaned pool the operator votes would be more correlated, and one should not expect the same margin over unfiltered data.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. EcoDatum is a data-curation pipeline for the DataComp small-scale filtering track. It combines quality-guided perceptual-hash deduplication, a set of unimodal (blur, geometry, language identification, caption concreteness) and multimodal (CLIP/Flip-CLIP global alignment and GroundingDINO local alignment) operators, and a weak-supervision LabelModel that converts operator scores into labels via threshold-based labeling functions. A search procedure over LF combinations is guided by a composite metric M = α1 F1_tiny + α2 fOverlap − α3 fConflict + α4 fCoverage evaluated on a tiny labeled set (COCO-clean, DataComp-noisy, and swapped pairs). The paper reports that the selected subset of 3.5M pairs from 12.8M yields an average score of 0.182 over 38 datasets, claiming 1st place on the DataComp leaderboard and a 28% improvement over the DataComp baseline.
Significance. If the result were statistically robust, EcoDatum would be a useful demonstration that ensembling complementary quality operators via weak supervision can curate web-scale data more efficiently than single-metric filters, and the proposed search-based LF optimization is a step toward automating threshold selection. The evaluation on the standardized DataComp benchmark with fixed training code is a strength, as is the availability of the code link. However, the current evidence does not establish the claimed SOTA: the reported margin over T-MARS and WS is 0.002 with no measure of run-to-run variance, and key hyperparameters (final data volume and composite-metric coefficients) appear to be tuned on the same 38-task benchmark used for the final score. These issues must be resolved before the central claim is credible.
major comments (5)
- [Table 1 and 'Result Analysis'] Table 1 reports a single run for EcoDatum (0.182) and for all baselines, with no seeds or error bars. The difference between EcoDatum and T-MARS/WS (both 0.180) is 0.002, which is within the run-to-run variance typically observed for CLIP training at this scale; the claim of state-of-the-art status is therefore not supported by the presented evidence. I request a multi-seed evaluation with means and standard deviations, or an explicit description of the DataComp leaderboard's official single-run protocol and its precision.
- [Implementation Details; Appendix A.1; Figure 7] The final data volume (top 40%, 3.5M) is selected by varying the filtered dataset size and comparing downstream performance on the same 38-task benchmark (Figure 7; 'conducted extensive experiments'). This makes the reported 0.182 the maximum of a tuning curve on the evaluation benchmark rather than a held-out estimate. To support the data-efficiency claim, the volume selection should be performed on an independent validation split (e.g., a subset of the 38 tasks) or via a nested procedure, and the final comparison should be reported on tasks not used for the volume selection.
- [Search-based Optimization, Eq. (3)] The manuscript is internally inconsistent about what was optimized using the 38-task benchmark. It states that the tiny-labeled dataset 'does not contribute to training the model or optimizing Eq (3) coefficients,' but the next paragraph says α1–α4 are 'determined through a few rounds of experiments,' and the subsequent paragraph describes a systematic search whose results are 'repeatedly evaluating their impact on the average performance across a diverse set of 38 benchmark tasks' (Figure 6). If any of these experiments used the 38-task benchmark, the LF selection and coefficient tuning are not independent of the final evaluation metric; if they did not, the text must be rewritten to state exactly which data were used for each tuning step and to report the chosen α values.
- [Figure 6 and 'Result Analysis'] The only evidence that the composite metric is a valid proxy for downstream quality is Figure 6, which plots the composite metric against the average performance on the same 38-task benchmark. This is a post-hoc correlation, not a predictive validation, and it cannot detect overfitting of the LF search to the benchmark. I recommend evaluating the selected LFs on a held-out set of tasks or on an independently labeled web-crawl quality set to establish that F1-tiny on the tiny labeled set transfers to unseen evaluation data.
- [Search-based Optimization, tiny-labeled dataset construction] The tiny labeled set is constructed by labeling COCO images as clean, randomly sampled DataComp images as noisy, and artificially swapped pairs as cross-modal noise. This construction may not cover the actual failure modes of web-crawl data (e.g., OCR text in images, non-English captions, near-duplicate images with different captions), and no evidence is given that F1-tiny on this set predicts curation quality on the benchmark. At minimum, report the composition and size of the tiny set and perform a sensitivity analysis over its construction (e.g., different noise ratios), or validate on an externally labeled web-crawl quality dataset.
minor comments (6)
- [Modality Operators Ensemble, Eq. (2)] The thresholds b_j and β_j in Eq. (2) and the TopK-based LF construction in Table 6 are not formally connected; please define how b_j and β_j are derived from the operator score distributions.
- [Ablation Study, Table 2] The row 'QGD+Ens.(Mul.)' is ambiguous; state explicitly which multimodal operators (global, local, or both) are included in each ablation row.
- [Appendix A.1] The repeated text 'uni000...' in Appendix A.1 appears to be a rendering artifact and should be removed or fixed.
- [Throughout] The spelling 'Datacomp' is used in several places (e.g., Table 1 caption, Related Work); unify to 'DataComp'.
- [Result Analysis] The claim of reducing 'computational overhead by 72%' should specify whether this refers to training compute or total curation compute, and should state how it is derived from the dataset-size reduction.
- [Figure 6] The caption says 'Downtasks'; it should read 'downstream tasks'.
Circularity Check
No formal circularity: EcoDatum's reported 0.182 average is an external DataComp benchmark measurement, and the LF search is validated on a tiny-labeled set that is not the evaluation benchmark.
full rationale
The paper's derivation chain is self-contained with respect to the definitional circularity patterns. The central claim is an empirical benchmark score from the external DataComp 38-task suite, not an algebraic consequence of the method's equations. The weak supervision LF search (Algorithm 1) optimizes the composite metric M in Eq. (3), which is constructed from F1 on a tiny-labeled dataset (COCO clean samples, random DataComp noisy samples, and swapped image-text pairs) plus LF overlap, conflict, and coverage statistics; none of these components is defined in terms of the 38-task average. The final 0.182 is therefore not forced by construction from the method's inputs. Two methodological concerns are worth flagging but do not amount to circularity. First, Appendix A.1 and Figure 7 show the final data volume (top 40%, 3.5M) was selected by varying dataset size and comparing downstream performance on the same 38-task benchmark used for the headline claim, so the reported number is a selected maximum of a tuning curve rather than an independent prediction; this is a benchmark-selection risk, not a definitional reduction. Second, the text around Eq. (3) is internally inconsistent: it states the tiny-labeled dataset "does not contribute to training the model or optimizing Eq (3) coefficients," yet immediately says the coefficients "are determined through a few rounds of experiments," leaving unclear whether downstream signal leaked into the composite metric. Again, this is a missing protocol detail and an overfitting risk, not a circular derivation. No load-bearing self-citations, imported uniqueness theorems, or ansatz-smuggling citations were found; the method borrows operators and the LabelModel from external prior work. Accordingly, the paper scores 0 on the circularity scale.
Assumptions & free parameters
free parameters (5)
- Selected data-volume threshold =
top 40% of quality-scored samples; 3.5M of 8.8M after dedup
- Composite metric coefficients alpha_1..alpha_4 =
not reported
- LF cutoff thresholds (b_j, beta_j / TopK) =
TopK values in Table 6, e.g., Top20-Top80 for global, ICC, local alignment
- GroundingDINO confidence threshold t =
0.1
- Perceptual-hash duplicate threshold =
unspecified
assumptions (5)
- domain assumption Operator scores are informative monotone signals of data quality for CLIP pretraining.
- domain assumption The tiny-labeled dataset (COCO clean, random DataComp noisy, swapped pairs) is an unbiased proxy for real web-crawl quality.
- domain assumption Vertical and horizontal flipping removes text-overlap bias in CLIP scores without losing useful visual signal.
- domain assumption Perceptual hashing can identify semantically redundant image-text pairs for deduplication.
- standard math Snorkel LabelModel's generative model assumptions hold for these labeling functions.
Cite this review
Pith. "Pith review of Quality over Quantity: Boosting Data Efficiency Through Ensembled Multimodal Data Curation." pith.science (2026). https://pith.science/paper/2V6UDYAK
@misc{pith2026250208211,
author = {Pith},
title = {Pith review of: Quality over Quantity: Boosting Data Efficiency Through Ensembled Multimodal Data Curation},
year = {2026},
howpublished = {\url{https://pith.science/paper/2V6UDYAK}},
note = {Machine review of arXiv:2502.08211}
}
read the original abstract
In an era overwhelmed by vast amounts of data, the effective curation of web-crawl datasets is essential for optimizing model performance. This paper tackles the challenges associated with the unstructured and heterogeneous nature of such datasets. Traditional heuristic curation methods often inadequately capture complex features, resulting in biases and the exclusion of relevant data. We introduce an advanced, learning-driven approach, Ensemble Curation Of DAta ThroUgh Multimodal Operators (EcoDatum), incorporating a novel quality-guided deduplication method to ensure balanced feature distributions. EcoDatum strategically integrates various unimodal and multimodal data curation operators within a weak supervision ensemble framework, utilizing automated optimization to score each data point effectively. EcoDatum, which significantly improves the data curation quality and efficiency, outperforms existing state-of-the-art (SOTA) techniques, ranked 1st on the DataComp leaderboard, with an average performance score of 0.182 across 38 diverse evaluation datasets. This represents a 28% improvement over the DataComp baseline method, demonstrating its effectiveness in improving dataset curation and model training efficiency.
Figures
Figures from the paper (11 more)
Reference graph
Works this paper leans on
-
[1]
, " * write output.state after.block = add.period write newline
ENTRY address archivePrefix author booktitle chapter edition editor eid eprint howpublished institution isbn journal key month note number organization pages publisher school series title type volume year label extra.label sort.label short.list INTEGERS output.state before.all mid.sentence after.sentence after.block FUNCTION init.state.consts #0 'before.a...
-
[2]
write newline
" write newline "" before.all 'output.state := FUNCTION n.dashify 't := "" t empty not t #1 #1 substring "-" = t #1 #2 substring "--" = not "--" * t #2 global.max substring 't := t #1 #1 substring "-" = "-" * t #2 global.max substring 't := while if t #1 #1 substring * t #2 global.max substring 't := if while FUNCTION word.in bbl.in capitalize " " * FUNCT...
-
[3]
Abbas, A.; Tirumala, K.; Simig, D.; Ganguli, S.; and Morcos, A. S. 2023. Semdedup: Data-efficient learning at web-scale through semantic deduplication. arXiv preprint arXiv:2303.09540
arXiv 2023
-
[4]
Alayrac, J.-B.; Donahue, J.; Luc, P.; Miech, A.; Barr, I.; Hasson, Y.; Lenc, K.; Mensch, A.; Millican, K.; Reynolds, M.; et al. 2022. Flamingo: a visual language model for few-shot learning. Advances in neural information processing systems, 35: 23716--23736
2022
-
[5]
Bach, S. H.; Rodriguez, D.; Liu, Y.; Luo, C.; Shao, H.; Xia, C.; Sen, S.; Ratner, A.; Hancock, B.; Alborzi, H.; et al. 2019. Snorkel drybell: A case study in deploying weak supervision at industrial scale. In Proceedings of the 2019 International Conference on Management of Data, 362--375
work page 2019
-
[6]
Beluch, W. H.; Genewein, T.; N \"u rnberger, A.; and K \"o hler, J. M. 2018. The power of ensembles for active learning in image classification. In Proceedings of the IEEE conference on computer vision and pattern recognition, 9368--9377
work page 2018
-
[7]
Breiman, L. 1996. Bagging predictors. Machine learning, 24: 123--140
work page 1996
-
[8]
Brown, T. B. 2020. Language models are few-shot learners. arXiv preprint ArXiv:2005.14165
arXiv 2020
Show all 40 references
-
[9]
Chen, D.; Huang, Y.; Ma, Z.; Chen, H.; Pan, X.; Ge, C.; Gao, D.; Xie, Y.; Liu, Z.; Gao, J.; et al. 2024. Data-juicer: A one-stop data processing system for large language models. In Companion of the 2024 International Conference on Management of Data, 120--134
2024
-
[10]
Chen, T.; Kornblith, S.; Norouzi, M.; and Hinton, G. 2020. A simple framework for contrastive learning of visual representations. In International conference on machine learning, 1597--1607. PMLR
2020
-
[11]
Devlin, J. 2018. Bert: Pre-training of deep bidirectional transformers for language understanding. arXiv preprint arXiv:1810.04805
2018 arXiv
-
[12]
Farid, H. 2021. An overview of perceptual hashing. Journal of Online Trust and Safety, 1(1)
2021
-
[13]
Freund, Y.; and Schapire, R. E. 1997. A decision-theoretic generalization of on-line learning and an application to boosting. Journal of computer and system sciences, 55(1): 119--139
1997
-
[14]
Y.; Ilharco, G.; Fang, A.; Hayase, J.; Smyrnis, G.; Nguyen, T.; Marten, R.; Wortsman, M.; Ghosh, D.; Zhang, J.; Orgad, E.; Entezari, R.; Daras, G.; Pratt, S
Gadre, S. Y.; Ilharco, G.; Fang, A.; Hayase, J.; Smyrnis, G.; Nguyen, T.; Marten, R.; Wortsman, M.; Ghosh, D.; Zhang, J.; Orgad, E.; Entezari, R.; Daras, G.; Pratt, S. M.; Ramanujan, V.; Bitton, Y.; Marathe, K.; Mussmann, S.; Vencu, R.; Cherti, M.; Krishna, R.; Koh, P. W.; Sau...
2023
-
[15]
Y.; Ilharco, G.; Fang, A.; Hayase, J.; Smyrnis, G.; Nguyen, T.; Marten, R.; Wortsman, M.; Ghosh, D.; Zhang, J.; et al
Gadre, S. Y.; Ilharco, G.; Fang, A.; Hayase, J.; Smyrnis, G.; Nguyen, T.; Marten, R.; Wortsman, M.; Ghosh, D.; Zhang, J.; et al. 2024. Datacomp: In search of the next generation of multimodal datasets. Advances in Neural Information Processing Systems, 36
2024
-
[16]
Hoffmann, J.; Borgeaud, S.; Mensch, A.; Buchatskaya, E.; Cai, T.; Rutherford, E.; Casas, D. d. L.; Hendricks, L. A.; Welbl, J.; Clark, A.; et al. 2022. Training compute-optimal large language models. arXiv preprint arXiv:2203.15556
2022 arXiv
-
[17]
J.; Adila, D.; and Sala, F
Huang, T.-H.; Shin, C.; Tay, S. J.; Adila, D.; and Sala, F. 2024. Multimodal Data Curation via Object Detection and Filter Ensembles. arXiv preprint arXiv:2401.12225
2024 arXiv
-
[18]
Jia, C.; Yang, Y.; Xia, Y.; Chen, Y.-T.; Parekh, Z.; Pham, H.; Le, Q.; Sung, Y.-H.; Li, Z.; and Duerig, T. 2021. Scaling up visual and vision-language representation learning with noisy text supervision. In International conference on machine learning, 4904--4916. PMLR
2021
-
[19]
Joulin, A.; Grave, E.; Bojanowski, P.; Douze, M.; J \'e gou, H.; and Mikolov, T. 2016. Fasttext. zip: Compressing text classification models. arXiv preprint arXiv:1612.03651
2016 arXiv
-
[20]
Kim, W.; Chun, S.; Kim, T.; Han, D.; and Yun, S. 2024. HYPE: Hyperbolic Entailment Filtering for Underspecified Images and Texts. arXiv preprint arXiv:2404.17507
2024 arXiv
-
[21]
Li, J.; Li, D.; Xiong, C.; and Hoi, S. 2022. Blip: Bootstrapping language-image pre-training for unified vision-language understanding and generation. In International conference on machine learning, 12888--12900. PMLR
2022
-
[22]
Lin, T.-Y.; Maire, M.; Belongie, S.; Hays, J.; Perona, P.; Ramanan, D.; Doll \'a r, P.; and Zitnick, C. L. 2014. Microsoft coco: Common objects in context. In Computer Vision--ECCV 2014: 13th European Conference, Zurich, Switzerland, September 6-12, 2014, Proceedings, Part V 1...
2014
-
[23]
Liu, S.; Zeng, Z.; Ren, T.; Li, F.; Zhang, H.; Yang, J.; Jiang, Q.; Li, C.; Yang, J.; Su, H.; et al. 2025. Grounding dino: Marrying dino with grounded pre-training for open-set object detection. In European Conference on Computer Vision, 38--55. Springer
2025
-
[24]
Liu, S.; Zeng, Z.; Ren, T.; Li, F.; Zhang, H.; Yang, J.; Li, C.; Yang, J.; Su, H.; Zhu, J.; et al. 2023. Grounding dino: Marrying dino with grounded pre-training for open-set object detection. arXiv preprint arXiv:2303.05499
2023 arXiv
-
[25]
C.; Kolter, J
Maini, P.; Goyal, S.; Lipton, Z. C.; Kolter, J. Z.; and Raghunathan, A. 2023. T-mars: Improving visual representations by circumventing text feature learning. arXiv preprint arXiv:2307.03132
2023 arXiv
-
[26]
Maini, P.; Yaghini, M.; and Papernot, N. 2021. Dataset inference: Ownership resolution in machine learning. arXiv preprint arXiv:2104.10706
2021 arXiv
-
[27]
M.; Razzak, M
Mindermann, S.; Brauner, J. M.; Razzak, M. T.; Sharma, M.; Kirsch, A.; Xu, W.; H \"o ltgen, B.; Gomez, A. N.; Morisot, A.; Farquhar, S.; et al. 2022. Prioritized training on points that are learnable, worth learning, and not yet learnt. In International Conference on Machine L...
2022
-
[28]
Y.; Ilharco, G.; Oh, S.; and Schmidt, L
Nguyen, T.; Gadre, S. Y.; Ilharco, G.; Oh, S.; and Schmidt, L. 2024. Improving multimodal datasets with image captioning. Advances in Neural Information Processing Systems, 36
2024
-
[29]
Radenovic, F.; Dubey, A.; Kadian, A.; Mihaylov, T.; Vandenhende, S.; Patel, Y.; Wen, Y.; Ramanathan, V.; and Mahajan, D. 2023. Filtering, distillation, and hard negatives for vision-language pre-training. In Proceedings of the IEEE/CVF conference on computer vision and pattern...
2023
-
[30]
W.; Hallacy, C.; Ramesh, A.; Goh, G.; Agarwal, S.; Sastry, G.; Askell, A.; Mishkin, P.; Clark, J.; et al
Radford, A.; Kim, J. W.; Hallacy, C.; Ramesh, A.; Goh, G.; Agarwal, S.; Sastry, G.; Askell, A.; Mishkin, P.; Clark, J.; et al. 2021. Learning transferable visual models from natural language supervision. In International conference on machine learning, 8748--8763. PMLR
2021
-
[31]
Rasmus, A.; Berglund, M.; Honkala, M.; Valpola, H.; and Raiko, T. 2015. Semi-supervised learning with ladder networks. Advances in neural information processing systems, 28
2015
-
[32]
H.; Ehrenberg, H.; Fries, J.; Wu, S.; and R \'e , C
Ratner, A.; Bach, S. H.; Ehrenberg, H.; Fries, J.; Wu, S.; and R \'e , C. 2017. Snorkel: Rapid training data creation with weak supervision. In Proceedings of the VLDB endowment. International conference on very large data bases, volume 11, 269. NIH Public Access
2017
-
[33]
Schuhmann, C.; Beaumont, R.; Vencu, R.; Gordon, C.; Wightman, R.; Cherti, M.; Coombes, T.; Katta, A.; Mullis, C.; Wortsman, M.; et al. 2022. Laion-5b: An open large-scale dataset for training next generation image-text models. Advances in Neural Information Processing Systems,...
2022
-
[34]
Schuhmann, C.; Vencu, R.; Beaumont, R.; Kaczmarczyk, R.; Mullis, C.; Katta, A.; Coombes, T.; Jitsev, J.; and Komatsuzaki, A. 2021. Laion-400m: Open dataset of clip-filtered 400 million image-text pairs. arXiv preprint arXiv:2111.02114
2021 arXiv
-
[35]
Song, H.; Kim, M.; Park, D.; Shin, Y.; and Lee, J.-G. 2022. Learning from noisy labels with deep neural networks: A survey. IEEE transactions on neural networks and learning systems, 34(11): 8135--8153
2022
-
[36]
M.; and Reza, A
Torkashvand, A.; Jameii, S. M.; and Reza, A. 2023. Deep learning-based collaborative filtering recommender systems: A comprehensive and systematic review. Neural Computing and Applications, 35(35): 24783--24827
2023
-
[37]
Yanuka, M.; Alper, M.; Averbuch-Elor, H.; and Giryes, R. 2024. ICC: Quantifying Image Caption Concreteness for Multimodal Dataset Curation. arXiv preprint arXiv:2403.01306
2024 arXiv
-
[38]
Yokoo, S.; Zhu, P.; Ishikawa, Y.; Tanaka, M.; Kondo, M.; and Kataoka, H. 2023. Leveraging Image-Text Similarity and Caption Modification for the DataComp Challenge: Filtering Track and BYOD Track. arXiv preprint arXiv:2310.14581
2023 arXiv
-
[39]
Yu, H.; Tian, Y.; Kumar, S.; Yang, L.; and Wang, H. 2023. The devil is in the details: A deep dive into the rabbit hole of data filtering. arXiv preprint arXiv:2309.15954
2023 arXiv
-
[40]
Zimek, A.; Schubert, E.; and Kriegel, H.-P. 2012. A survey on unsupervised outlier detection in high-dimensional numerical data. Statistical Analysis and Data Mining: The ASA Data Science Journal, 5(5): 363--387
2012
Reviewed August 8, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.