REVIEW 3 major objections 5 minor 46 references
Metadata Management for AI-Augmented Data Workflows
T0 review · 3 major / 5 minor · reviewed 2026-08-05 · deepseek-v4-flash
Pith's one-line read The paper argues that AI-augmented data workflows need a system-level metadata layer, and proposes TableVault, whose central claim is that every data artifact and operation should be recorded, with the records themselves usable as data arti
desk verdict A sensible design vision for metadata in AI-augmented workflows, with genuinely novel bits in TableReference and execution-parameter lineage, but the 'guaranteed' language outruns the file-system-based implementation. 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 central mechanism is the TableReference string, a custom Pythonic string type that references repository instances, columns, and row ranges, including a 'self.index' relative form for row-wise operations. These strings implicitly trace lineage between table instances, can be recursive so one reference embeds another, and encode common execution patterns (reduction, one-to-one, cumulation, convolution, selection) in a single declarative form. Working with declarative builder YAML files, they unify operation inputs and execution parameters, so parameters can themselves point at repository data — which is how execution-parameter lineage is captured. The repository layout, tables as folders
What would settle it
Test the 'guaranteed record of ingestion' claim by writing a file directly into a repository's artifact folder from an external script or model, bypassing the TableVault API, and then querying the metadata layer: if the repository cannot flag the unrecorded write, attribute it to an author, or expose it in lineage queries, the guarantee fails. A systematic version would run a corpus of external edits, with and without author-supplied descriptions, and measure how often the recorded metadata still supports a faithful downstream reproduction of the resulting dataset.
Extended reading notes
Core claim
The paper's central claim is that every data artifact and operation in collaborative human-model workflows should be recorded, and the records themselves should be usable as data artifacts. TableVault adopts an 'opportunistic' approach: in-system operations get full lineage tracing; external operations are flagged by recorded ingestion events. Four properties carry the design: guaranteed ingestion records (all data enters through the API), robust operation-status tracing across pauses and restarts, lineage of execution parameters back to their data origins, and a metadata layer queryable inside model executions. Because language models transform data using internal knowledge, full lineage is
Load-bearing premise
The load-bearing premise is that every piece of data enters the repository through TableVault's own API, and that anything changed outside the system — such as the manual pandas edit in the case study — is truthfully described by the author; bypass the API or omit the description, and the 'guaranteed record' is only as good as what someone remembers to write down.
Editorial extensions
If this is right
- A generated dataset's lineage stays reconstructible: which documents, prompts, and model calls produced it, and which human or process authored each operation.
- Operations can be paused, reverted, or restarted mid-run, with every such decision recorded, so data seen by later stages always matches the final recorded operation status.
- Agents inside a workflow can query the metadata layer programmatically, and those queries are themselves logged for later introspection.
- Execution parameters chosen by data-driven tuning — prompts, thread counts, model choices — get lineage back to the instances that determined them.
- Even partially observable environments remain governable: full tracing is required only inside the system, while external modifications are constrained by enforced, author-attributed ingestion records.
Reading between the lines
- Because TableVault stores its records as human-readable YAML, code, and log files, ordinary version-control and diff tools could audit the repository directly — an affordance the paper does not exploit but that follows from the storage choice.
- The recursive 'agent spawns agent' workflow the paper sketches is its real stress test: each generation piles more parent-process lineage onto the metadata, and whether that lineage stays faithful at depth is untested; running a multi-level generation tree and verifying child-table provenance would settle it.
- Routing every byte through one governing API is a strong architectural bet; a natural generalization is a provenance overlay that captures the same records from notebooks and ad-hoc scripts without requiring them to execute inside the vault, trading the 'guaranteed' record for wider adoption.
- The 'records as data artifacts' principle implies a model could be pointed at its own past executions to plan the next step of a workflow — the paper envisions self-organizing workflows but does not demonstrate a model actually consuming the metadata for planning.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper presents TableVault, a Python-based metadata governance framework for AI-augmented data workflows. TableVault stores data artifacts and metadata in a native file-system repository, exposes a declarative builder interface and TableReference strings for lineage-aware references, and claims four properties: guaranteed record of data ingestion, robust operation status tracing, lineage capture of execution parameters, and metadata querying within model execution. The design is illustrated with a document-classification case study that combines OpenAI API calls, manual pandas edits, and externally imported artifacts, plus a preliminary latency evaluation of basic operations.
Significance. If the system delivers on its claims, it would address a practically important gap: metadata management for mixed human-AI pipelines where prompts, execution parameters, and human edits all affect data lineage. The TableReference string design and the idea of making metadata directly accessible as data artifacts are useful contributions, as is the emphasis on operation status and partially observable execution. The paper is honest in its scope, noting that performance and scalability are future work and that dynamic recursive generation is only partially supported. However, the central 'guaranteed record' claim is not backed by any enforcement mechanism, and the evaluation is too thin to substantiate the broader robustness and reproducibility claims.
major comments (3)
- [§2.3, §2.1] The 'guaranteed record of data ingestion' is not actually guaranteed by the architecture. Section 2.1 states that all data is stored in human-readable files on the native file system, with no operating-system access control, filesystem monitoring, or checksum/diff verification described. Section 2.3 asserts that 'all data ingestion into the repository must occur through its API,' but this is an assumption rather than an enforced property. Any user or model agent with write access to the repository directory can modify dataframes or artifacts directly, bypassing the API and leaving no metadata. The case study in Section 3.4 relies on the user voluntarily calling create_instance(external=True) and providing a free-text description, which is not automatically verified. Thus the central claim in Section 2.4 that 'the existence of all data artifacts and operations ... should be recorded' hold
- [§4] The experimental evaluation is too limited to support the paper's broader claims. Figure 3 and Figure 4 report only three trials per configuration, with no error bars, confidence intervals, or statistical analysis. There is no comparison against existing metadata or provenance systems (e.g., Ground, MLInspect, Smoke, which are cited in Section 5). The single document-classification case study is illustrative but does not exercise the claimed 'robust operation status tracing' under concurrency, interruption, or multi-agent scenarios. Section 3.5 describes a more complex recursive generation pattern but openly states it is 'partially supported' and requires user-provided metadata. Consequently, the Abstract's statement that TableVault enables 'robust metadata management, even in partially observable execution environments' is not substantiated by the presented evidence.
- [§1 vs. §2.3] The introduction presents a 'practical opportunistic approach' where full metadata is traced only for operations inside the system and external operations are signaled through recorded ingestion points. This is a reasonable design stance. However, Section 2.3 makes the stronger claim that TableVault 'prevents' unrecorded ingestion by controlling the storage layer. These two positions are inconsistent: the former accepts best-effort capture, while the latter asserts a guarantee. The paper should either implement an actual enforcement mechanism (e.g., filesystem permissions, a staging directory, or write-ahead logging for all file changes) or explicitly restate the guarantee as a usage policy that requires all writes to go through the API.
minor comments (5)
- [§5] Typo: 'Palimspzet' should be 'Palimpsest' (appears twice in the Related Work section). Also 'user0defined' should be 'user-defined'.
- [§4] Figures 3 and 4 are not self-contained: they lack axis labels explaining what is being measured and the units. The text says 'execution time of basic TableVault operations' but the specific operations and scales are not defined.
- [§2.3] The TableReference examples in Table 1 would benefit from a more formal grammar or BNF definition. The text explains the intuition but not the exact precedence and escaping rules, which are needed for the claims about 'universal' lineage capture.
- [§3.1] The code snippets use fictional module names and functions (e.g., 'create_paper_table_from_folder') but do not specify whether these are part of the released TableVault package or user-provided. Clarifying this would help reproducibility.
- [§2.4] The statement 'the records themselves should be directly accessible as data artifacts' is central, but the paper does not describe how metadata is physically represented as queryable data artifacts (e.g., whether they are dataframes themselves). A concrete example of metadata querying within model execution would strengthen the paper.
Circularity Check
No significant circularity; a minor non-load-bearing self-citation and a guarantee/implementation gap that is a robustness issue, not a circular derivation.
full rationale
The paper makes no quantitative predictions and has no fitted parameters; its central contribution is a normative design principle and a system architecture. The claim that TableVault records ingestion events, operation status, and parameter lineage is implemented by construction through API-managed operations and TableReference strings, which is a design choice rather than a result derived from inputs. The only self-citation is [46] (Zhao & Krishnan, ICDE 2024), cited for common data operation patterns (reduction, one-to-one, cumulation, convolution, selection) supporting the TableReference syntax; this citation is illustrative and not load-bearing for the metadata-governance claim, since the patterns are also enumerated in Table 1 of this paper. The more substantive issue—the 'guaranteed record of data ingestion' claim versus the native-filesystem repository and the external=True manual-edit path (Sections 2.3 and 3.4)—is a mismatch between stated guarantee and actual enforcement, not a circular argument: the paper does not fit a parameter to data and then rename it a prediction, and it does not import a uniqueness theorem from its own prior work. Thus circularity burden is low; score 2 reflects the minor self-citation, not any load-bearing circular step.
Assumptions & free parameters
assumptions (4)
- domain assumption A single overarching system can control top-level workflow orchestration and all data storage and versioning in a human-AI data workflow.
- domain assumption Data ingestion into the repository always occurs through the TableVault API.
- domain assumption LLM execution is opaque, so full lineage cannot be traced by the execution system; linking to operation executions and relying on application-level explainability is sufficient.
- ad hoc to paper The TableReference string and YAML builder files, when used, capture the data dependencies of operations accurately.
Cite this review
Pith. "Pith review of Metadata Management for AI-Augmented Data Workflows." pith.science (2026). https://pith.science/paper/GBGYBE2U
@misc{pith2026250806814,
author = {Pith},
title = {Pith review of: Metadata Management for AI-Augmented Data Workflows},
year = {2026},
howpublished = {\url{https://pith.science/paper/GBGYBE2U}},
note = {Machine review of arXiv:2508.06814}
}
read the original abstract
AI-augmented data workflows introduce complex governance challenges, as both human and model-driven processes generate, transform, and consume data artifacts. These workflows blend heterogeneous tools, dynamic execution patterns, and opaque model decisions, making comprehensive metadata capture difficult. In this work, we present TableVault, a metadata governance framework designed for human-AI collaborative data creation. TableVault records ingestion events, traces operation status, links execution parameters to their data origins, and exposes a standardized metadata layer. By combining database-inspired guarantees with AI-oriented design, such as declarative operation builders and lineage-aware references, TableVault supports transparency and reproducibility across mixed human-model pipelines. Through a document classification case study, we demonstrate how TableVault preserves detailed lineage and operational context, enabling robust metadata management, even in partially observable execution environments.
Figures
Reference graph
Works this paper leans on
-
[1]
Josh Abramson, Jonas Adler, Jack Dunger, Richard Evans, Tim Green, Alexander Pritzel, Olaf Ronneberger, Lindsay Willmore, Andrew J Ballard, Joshua Bambrick, Sebastian Bodenstein, David A Evans, Chia-Chun Hung, Michael O’Neill, David Metadata Management for AI-Augmented Data Workflows tbd. ’25, tbd., tbd/ Reiman, Kathryn Tunyasuvunakool, Zachary Wu, Akvil˙...
work page 2024
-
[3]
Eric Anderson, Jonathan Fritz, Austin Lee, Bohou Li, Mark Lindblad, Henry Lindeman, Alex Meyer, Parth Parmar, Tanvi Ranade, Mehul A. Shah, Ben Sowell, Dan G. Tecuci, Vinayak Thapliyal, and Matt Welsh. 2024. The Design of an LLM-powered Unstructured Analytics System. ArXiv abs/2409.00847 (2024). https://api.semanticscholar.org/CorpusID:272368251
arXiv 2024
-
[4]
Anthropic PBC. 2025. Model Context Protocol Specification . https:// modelcontextprotocol.io/specification/2025-06-18 Version 2025-06-18
work page 2025
-
[5]
Simran Arora, Brandon Yang, Sabri Eyuboglu, Avanika Narayan, Andrew Ho- jel, Immanuel Trummer, and Christopher Ré. 2023. Language Models Enable Simple Systems for Generating Structured Views of Heterogeneous Data Lakes. Proc. VLDB Endow. 17 (2023), 92–105. https://api.semanticscholar.org/CorpusID: 258212828
work page 2023
-
[6]
Shao-Qian Cai, Li qing Qiu, Xiaojun Chen, Qin Zhang, and Long Chen. 2022. Semantic-enhanced Image Clustering. ArXiv abs/2208.09849 (2022). https: //api.semanticscholar.org/CorpusID:251718842
work page Pith review arXiv 2022
-
[7]
Harrison Chase and LangChain Inc. 2025. LangGraph: A framework for building stateful, long-running LLM agents . https://github.com/langchain-ai/langgraph Accessed 2025-08-04
work page 2025
-
[8]
James Cheney, Laura Chiticariu, and Wang Chiew Tan. 2009. Provenance in Databases: Why, How, and Where. Found. Trends Databases 1 (2009), 379–474. https://api.semanticscholar.org/CorpusID:1778556
work page 2009
-
[9]
Xin Luna Dong, Evgeniy Gabrilovich, Geremy Heitz, Wilko Horn, Kevin Murphy, Shaohua Sun, and Wei Zhang. 2015. From data fusion to knowledge fusion.arXiv preprint arXiv:1503.00302 (2015)
work page Pith review arXiv 2015
Show all 46 references
-
[10]
Darren Edge, Ha Trinh, Newman Cheng, Joshua Bradley, Alex Chao, Apurva Mody, Steven Truitt, and Jonathan Larson. 2024. From Local to Global: A Graph RAG Approach to Query-Focused Summarization. ArXiv abs/2404.16130 (2024). https://api.semanticscholar.org/CorpusID:269363075
2024 arXiv
-
[11]
Elmore, Michael J
Raul Castro Fernandez, Aaron J. Elmore, Michael J. Franklin, Sanjay Krishnan, and Chenhao Tan. 2023. How Large Language Models Will Disrupt Data Man- agement. Proc. VLDB Endow. 16 (2023), 3302–3309. https://api.semanticscholar. org/CorpusID:261193780
2023
-
[12]
Franklin, Donald Kossmann, Tim Kraska, Sukriti Ramesh, and Reynold Xin
Michael J. Franklin, Donald Kossmann, Tim Kraska, Sukriti Ramesh, and Reynold Xin. 2011. CrowdDB: answering queries with crowdsourcing. In ACM SIGMOD Conference. https://api.semanticscholar.org/CorpusID:12809868
2011
-
[13]
Stefan Grafberger, Julia Stoyanovich, and Sebastian Schelter. 2021. Lightweight Inspection of Data Preprocessing in Native Machine Learning Pipelines. In Con- ference on Innovative Data Systems Research . https://api.semanticscholar.org/ CorpusID:232203702
2021
-
[14]
Jim Gray and Andreas Reuter. 1993. Transaction Processing: Concepts and Tech- niques. Morgan–Kaufmann, San Mateo, CA
1993
-
[15]
Harris, K
Charles R. Harris, K. Jarrod Millman, Stéfan J. van der Walt, Ralf Gommers, Pauli Virtanen, David Cournapeau, Eric Wieser, Julian Taylor, Sebastian Berg, Nathaniel J. Smith, Robert Kern, Matti Picus, Stephan Hoyer, Marten H. van Kerkwijk, Matthew Brett, Allan Haldane, Jaime Fe...
2020
-
[16]
Joseph M Hellerstein, Vikram Sreekanti, Joseph E. Gonzalez, James Dalton, Akon Dey, Sreyashi Nag, Krishna Ramachandran, Sudhanshu Arora, Arka Bhat- tacharyya, Shirshanka Das, Mark Donsky, Gabriel Fierro, Chang She, Carl Steinbach, Venkat Ram Subramanian, and Eric Sun. 2017. Gr...
2017
-
[17]
Mohammad Hosseini and Serge P.J.M. Horbach. 2023. Fighting reviewer fatigue or amplifying bias? Considerations and recommendations for use of ChatGPT and other large language models in scholarly peer review. Research Integrity and Peer Review 8 (2023). https://api.semanticscho...
2023
-
[18]
Yaojie Hu, Ilias Fountalis, Jin Tian, and Nikolaos Vasiloglou. 2024. An- notatedTables: A Large Tabular Dataset with Language Model Annotations. arXiv:2406.16349 [cs.LG] https://arxiv.org/abs/2406.16349
2024 arXiv
-
[19]
Gaurav Tarlok Kakkar, Jiashen Cao, Aubhro Sengupta, Joy Arulraj, and Hyesoon Kim. 2025. Aero: Adaptive Query Processing of ML Queries. Proceedings of the ACM on Management of Data 3 (2025), 1 – 27. https://api.semanticscholar.org/ CorpusID:279575403
2025
-
[20]
Joshi, Hanna Moazam, Heather Miller, Matei Zaharia, and Christopher Potts
Omar Khattab, Arnav Singhvi, Paridhi Maheshwari, Zhiyuan Zhang, Keshav Santhanam, Sri Vardhamanan, Saiful Haq, Ashutosh Sharma, Thomas T. Joshi, Hanna Moazam, Heather Miller, Matei Zaharia, and Christopher Potts. 2023. DSPy: Compiling Declarative Language Model Calls into Self...
2023 arXiv
-
[21]
Thomas Kluyver, Benjamin Ragan-Kelley, Fernando Pérez, Brian Granger, Matthias Bussonnier, Jonathan Frederic, Kyle Kelley, Jessica Hamrick, Jason Grout, Sylvain Corlay, Paul Ivanov, Damián Avila, Safia Abdalla, and Carol Willing. 2016. Jupyter Notebooks – a publishing format f...
2016 doi
-
[22]
Daniel Levine, Syed Asad Rizvi, Sacha Lévy, Nazreen Pallikkavaliyaveetil, David Zhang, Xingyu Chen, Sina Ghadermarzi, Ruiming Wu, Zihe Zheng, Ivan Vrkic, Anna Zhong, Daphne Raskin, Insu Han, Antonio Henrique de Oliveira Fonseca, Josue Ortega Caro, Amin Karbasi, Rahul Madhav Dh...
-
[23]
Chunwei Liu, Matthew Russo, Michael Cafarella, Lei Cao, Peter Baille Chen, Zui Chen, Michael Franklin, Tim Kraska, Samuel Madden, and Gerardo Vitagliano. 2024. A Declarative System for Optimizing AI Workloads. arXiv:2405.14696 [cs.CL] https://arxiv.org/abs/2405.14696
2024 arXiv
-
[24]
Mingxuan Liu, Zhun Zhong, Jun Li, Gianni Franchi, Subhankar Roy, and Elisa Ricci. 2024. Organizing Unstructured Image Collections using Natural Lan- guage. ArXiv abs/2410.05217 (2024). https://api.semanticscholar.org/CorpusID: 273186686
2024 arXiv
-
[25]
Zhi Liu. 2006. Reuter5050. UCI Machine Learning Repository. DOI: https://doi.org/10.24432/C5DS42
2006 doi
-
[26]
Cafarella, Michael J
Samuel Madden, Michael J. Cafarella, Michael J. Franklin, and Tim Kraska. 2024. Databases Unbound: Querying All of the World’s Bytes with AI. Proc. VLDB En- dow. 17 (2024), 4546–4554. https://api.semanticscholar.org/CorpusID:272727978
2024
-
[27]
Ryan Marcus, Parimarjan Negi, Hongzi Mao, Nesime Tatbul, Mohammad Al- izadeh, and Tim Kraska. 2021. Bao: Making Learned Query Optimization Practical. In Proceedings of the 2021 ACM SIGMOD International Conference on Management of Data (SIGMOD ’21) . ACM, 1275–1288. doi:10.1145...
2021
-
[28]
João Moura and the CrewAI contributors. 2025. CrewAI: A flexible multi-agent orchestration framework. CrewAI Inc. https://github.com/crewAIInc/crewAI Python package. Available on PyPI
2025
-
[29]
The pandas development team. 2020. pandas-dev/pandas: Pandas. doi:10.5281/ zenodo.3509134
2020
-
[30]
Liana Patel, Siddharth Jha, Melissa Pan, Harshit Gupta, Parth Asawa, Carlos Guestrin, and Matei Zaharia. 2025. Semantic Operators: A Declarative Model for Rich, AI-based Data Processing. arXiv:2407.11418 [cs.DB] https://arxiv.org/abs/ 2407.11418
2025 arXiv
-
[31]
Gonzalez, Joseph M
Devin Petersohn, Stephen Macke, Doris Xin, William Ma, Doris Lee, Xi- angxi Mo, Joseph E. Gonzalez, Joseph M. Hellerstein, Anthony D. Joseph, and Aditya Parameswaran. 2020. Towards Scalable Dataframe Systems. arXiv:2001.00888 [cs.DB] https://arxiv.org/abs/2001.00888
2020 arXiv
-
[32]
Miller, and Sebastian Riedel
Fabio Petroni, Tim Rocktäschel, Patrick Lewis, Anton Bakhtin, Yuxiang Wu, Alexander H. Miller, and Sebastian Riedel. 2019. Language Models as Knowledge Bases? ArXiv abs/1909.01066 (2019). https://api.semanticscholar.org/CorpusID: 202539551
2019 arXiv
-
[33]
Fotis Psallidas and Eugene Wu. 2018. Smoke: Fine-grained Lineage at Interactive Speed. Proc. VLDB Endow. 11 (2018), 719–732. https://api.semanticscholar.org/ CorpusID:3591285
2018
-
[34]
Matthew Russo, Sivaprasad Sudhir, Gerardo Vitagliano, Chunwei Liu, Tim Kraska, Samuel Madden, and Michael Cafarella. 2025. Abacus: A Cost-Based Optimizer for Semantic Operator Systems. arXiv:2505.14661 [cs.DB] https://arxiv.org/abs/ 2505.14661
2025
-
[35]
Tobias Schomacker. 2018. Grimms’ Fairy Tales. Data set. Accessed 2025-08-04
2018
-
[36]
Parameswaran, and Eugene Wu
Shreya Shankar, Tristan Chambers, Tarak Shah, Aditya G. Parameswaran, and Eugene Wu. 2025. DocETL: Agentic Query Rewriting and Evaluation for Complex Document Processing. arXiv:2410.12189 [cs.DB] https://arxiv.org/abs/2410.12189
2025 arXiv
-
[37]
Logan IV, Eric Wallace, and Sameer Singh
Taylor Shin, Yasaman Razeghi, Robert L. Logan IV, Eric Wallace, and Sameer Singh. 2020. AutoPrompt: Eliciting Knowledge from Language Models with Automatically Generated Prompts. In Proc. of the 2020 Conf. on Empirical Methods in Natural Language Processing (EMNLP 2020) . 4222...
-
[38]
Jasper Snoek, Hugo Larochelle, and Ryan P. Adams. 2012. Practical Bayesian Optimization of Machine Learning Algorithms. InAdvances in Neural Information Processing Systems 25 (NeurIPS 2012) . 2951–2959. https://arxiv.org/abs/1206.2944
2012 arXiv
-
[39]
van Schaik and Brittany Pugh
Tempest A. van Schaik and Brittany Pugh. 2024. A Field Guide to Automatic Evaluation of LLM-Generated Summaries. Proceedings of the 47th International ACM SIGIR Conference on Research and Development in Information Retrieval tbd. ’25, tbd., tbd/ Jinjin Zhao and Sanjay Krishnan...
2024
-
[40]
Vijay Viswanathan, Kiril Gashteovski, Carolin (Haas) Lawrence, Tong- shuang Sherry Wu, and Graham Neubig. 2023. Large Language Models Enable Few-Shot Clustering. Transactions of the Association for Computational Linguistics 12 (2023), 321–333. https://api.semanticscholar.org/C...
2023
-
[41]
Junke Wang, Lingchen Meng, Zejia Weng, Bo He, Zuxuan Wu, and Yu-Gang Jiang. 2023. To See is to Believe: Prompting GPT-4V for Better Visual Instruction Tuning. arXiv:2311.07574 [cs.CV] https://arxiv.org/abs/2311.07574
2023 arXiv
-
[42]
Wilkinson, Michel Dumontier, Iain J
Mark D. Wilkinson, Michel Dumontier, Iain J. Aalbersberg, Gabrielle Appleton, Myles Axton, Arie Baak, Niklas Blomberg, Jan-Willem Boiten, Luiz Bonino da Silva Santos, Philip E. Bourne, Jildau Bouwman, Anthony J. Brookes, Timothy Clark, Mercè Crosas, Ingrid Dillo, Olivier Dumon...
2016
-
[43]
Shunyu Yao, Jeffrey Zhao, Dian Yu, Nan Du, Izhak Shafran, Karthik Narasimhan, and Yuan Cao. 2023. ReAct: Synergizing Reasoning and Acting in Language Models. arXiv:2210.03629 [cs.CL] https://arxiv.org/abs/2210.03629
2023 arXiv
-
[44]
Qi Zeng, Mankeerat Sidhu, Hou Pong Chan, Lu Wang, and Heng Ji. 2023. Scientific Opinion Summarization: Paper Meta-review Generation Dataset, Methods, and Evaluation. In AI4Research/DemocrAI@IJCAI. https://api.semanticscholar.org/ CorpusID:258865977
2023
-
[45]
Yuwei Zhang, Zihan Wang, and Jingbo Shang. 2023. ClusterLLM: Large Language Models as a Guide for Text Clustering. ArXiv abs/2305.14871 (2023). https: //api.semanticscholar.org/CorpusID:258866119
2023 arXiv
-
[46]
Jinjin Zhao and Sanjay Krishnan. 2024. Compression and In-Situ Query Pro- cessing for Fine-Grained Array Lineage. In 40th IEEE International Conference on Data Engineering, ICDE 2024, Utrecht, The Netherlands, May 13-16, 2024 . IEEE, 3654–3667. doi:10.1109/ICDE60146.2024.00281
2024
-
[2024]
bioRxiv (2024)
Cell2Sentence: Teaching Large Language Models the Language of Biology. bioRxiv (2024). https://api.semanticscholar.org/CorpusID:262014469
2024
Reviewed August 5, 2026 · model on record in the stance chip above.
Discussion (0). Sign in to comment.