REVIEW 4 major objections 5 minor 116 references
This paper claims that the craft of film editing—choosing which shots to keep, where to cut, and how to pace them—can be learned by an autoregressive transformer trained on movies, and that the resulting model, FilmGPT, edits raw footage in
Reviewed by Pith at T0; open to challenge. T0 means a machine referee read the full paper against a public rubric. the ladder, T0–T4 →
An autoregressive transformer with an explicit cut token and footage-constrained decoding edits raw video into sequences that people rate as better than two prior automated editing methods.
T0 review reviewed 2026-08-02 challenge →
load-bearing objection Genuinely new AR editing formulation, but both headline evals are setup-confounded; worth refereeing with requested ablations. the 4 major comments →
Autoregressive Modeling of Film with Applications in Video Montage
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
Core claim
On its own terms, the central claim is that next-token prediction over discrete visual tokens, interleaved with a dedicated cut token, captures enough of the structure of professional editing to drive shot selection, trimming, and ordering. FilmGPT tokenizes each frame of a movie into 32 discrete tokens via TiTok-L, inserts a single ⟨CUT⟩ token at every shot boundary, and trains a decoder-only transformer with sliding-window attention (up to 128k tokens of context) using a cut-weighted cross-entropy loss that upweights the cut token and the tokens immediately following it. Audio features are injected via time-aligned cross-attention. Because the model is trained purely on the sequence of fra
What carries the argument
The central machinery is an autoregressive sequence model over frame tokens plus a special cut token. FilmGPT treats an edited movie as a token sequence x_1,...,x_T where each frame is a block of 32 TiTok-L tokens and each shot boundary is a ⟨CUT⟩ token; it maximizes the factorized probability p(x)=∏ p(x_t | x_<t). At inference, the footage-constrained decoding algorithm enforces a hard subsequence constraint—every generated prefix must match a contiguous span of a video in the input collection—and finds the most likely shot and trim length by greedy beam search. The cut-weighted cross-entropy loss is what makes the model pay attention to editing decisions rather than just within-shot visual
Load-bearing premise
Editing decisions are determined by past context alone: FilmGPT and its decoding are strictly causal, so any editing idiom whose purpose is to set up a later shot cannot be learned or reproduced.
What would settle it
A benchmark or user study that includes edits whose correctness depends on future context (e.g., a point-of-view shot that only makes sense once the next shot is seen) would settle whether the causal, prefix-only model captures full editing grammar; if a non-causal or bidirectional model performs better on such items while matching FilmGPT on prefix-determined edits, the clean autoregressive claim would be weakened.
If this is right
- Editing decisions can be cast as causal next-token prediction, so methods that scale language models (more data, longer context, better tokenizers) should directly improve editing quality.
- An explicit cut token lets a single model jointly decide shot selection and trimming; removing it drops shot-ordering accuracy from 29.7% to 25.3% in the paper's ablations.
- Extending context from 16k to 128k tokens raises shot-ordering accuracy from 34.5% to 44.5%, and adding audio conditioning pushes it to 50.5%, showing that long-range and audio cues carry much of editing's structure.
- The model needs no manual annotations such as shot size or genre; it learns directly from raw movie sequences and preceding context, outperforming a method that uses such labels.
- The same inference algorithm, with small constraint changes, handles practical tasks: trimming unusable footage, assembling stringouts, multi-camera live editing, and human-in-the-loop workflows.
Where Pith is reading between the lines
- A causal, prefix-only model cannot represent editing idioms whose purpose is to set up a later shot (e.g., a point-of-view shot that only reads as POV because the next shot shows the subject looking); the paper's own limitation section acknowledges this, and it is a natural consequence of the greedy footage-constrained decoding.
- Because FilmGPT never synthesizes frames, it cannot invent new action or hallucinate events outside the captured footage, which is a safety property for re-editing real video; the flip side is that it can only rearrange and re-time what was already shot.
- The user study compares against two specific text-driven systems; extending the comparison to a broader set of editing tools and to human editors would test how much of the perceived quality is due to FilmGPT's learned grammar versus the inherent quality of the source footage.
- The model's learned 'grammar' is an emergent property of the training distribution; if trained on a corpus with different conventions (e.g., mostly static surveillance footage), the resulting edits would presumably conform to that distribution, suggesting the grammar is learned rather than universal.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper introduces FilmGPT, a decoder-only autoregressive transformer trained on a large corpus of movies to model sequences of discrete visual tokens interleaved with an explicit ⟨CUT⟩ token. At inference, a footage-constrained decoding algorithm selects and trims shots from raw footage to assemble a montage. The authors claim state-of-the-art performance on the AVE shot-ordering benchmark (53.9% Acc@1 vs. 35.3% for UQNet) and report a user study in which participants prefer FilmGPT output over Transcript2Video (83.07%) and EditDuet (61.49%). They also demonstrate applications in trimming, stringouts, multi-camera editing, and human-in-the-loop editing, and argue that film-editing idioms such as establishing sequences, cutting on action, and point-of-view shots emerge from the learned model.
Significance. If the findings hold, this is a meaningful advance: it is among the first attempts to treat video montage as long-context next-token prediction over a discrete visual vocabulary, with an explicit cut token and a constrained decoding procedure. The scale of training data (6200 hours), the use of audio conditioning, and the external user-study signal are strengths, as is the internally consistent ablation sequence that isolates the contributions of the CUT token, cut-weighted loss, long context, and audio. However, the two headline claims—SOTA on AVE and user preference over prior systems—are currently under-evidenced: the AVE comparison changes the task protocol without re-baselining, the training/evaluation split is not stated, and the user-study winner is the full LLM+CLIP+FilmGPT pipeline rather than FilmGPT alone. The no-lookahead property of the causal model also limits the scope of the qualitative claims about emergent idioms. These issues are fixable with additional experiments and reframing, and the core idea remains promising.
major comments (4)
- [Sec. 4.2, Table 1] The AVE experiments never state whether the clips used for the shot-ordering evaluation are excluded from training. The text says the model is trained 'on AVE only' and then evaluated on 'AVE shot sequence ordering,' but no train/test split is specified. If the same scenes appear in both, the reported 53.9% Acc@1 may partly reflect memorization rather than learned editing structure. Please report the exact split (e.g., scene-disjoint or film-disjoint) and confirm no overlap between training and evaluation.
- [Sec. 4.2, Table 1, rows '+128k Context' onward] The comparison with UQNet is not controlled. Starting at the '+128k Context' row, the model receives the preceding shots as context, and the text explicitly states that 'previous approaches are unable to incorporate' this information. UQNet's 35.3% Acc@1 is obtained without such context. The claimed 18.6-point improvement therefore conflates model quality with a changed evaluation protocol. Please either evaluate UQNet under the same context-augmented protocol or report a context-free FilmGPT variant on the same task as the direct SOTA comparison.
- [Sec. 4.1, Fig. 5] The user study compares the full FilmGPT pipeline—LLM planner, CLIP-based top-50 footage preselection, and footage-constrained decoding—against Transcript2Video and EditDuet, which do not receive the same pre-filtered candidate set. The preference results therefore validate the complete system, not the contribution of FilmGPT's learned editing model. No ablation removes or randomizes FilmGPT while holding the LLM/CLIP preselection fixed. Please add such an ablation or explicitly reframe the claim as evaluating the full pipeline rather than FilmGPT alone.
- [Sec. 3.2 and Sec. 5.2, Fig. 7] Because decoding is strictly left-to-right and greedy, the model never conditions on future shots. Editing idioms whose identity depends on a subsequent shot—notably point-of-view shots—cannot be deliberately produced by this causal model; their appearance in the stringout examples is at best accidental. The paper should state this limitation explicitly in Sec. 6 and temper the qualitative claim that such idioms 'emerge' from the model. This is a scope limitation for the claimed cinematic grammar, not an error in the decoding algorithm itself.
minor comments (5)
- [Sec. 4.1, Fig. 5] The preference percentages are reported without confidence intervals. With 1242 data points and p<0.001 the result is strong, but the EditDuet comparison (61.49%) would benefit from a CI or a per-participant breakdown.
- [Sec. 4.2, Table 1] The Δ columns are not explicitly defined in the caption. State that they are relative to the immediately preceding row, or to the base model, to avoid ambiguity.
- [Sec. 3.2, Algorithm 1] The prose in Step 2 refers to 'highest per-token likelihood' while the pseudocode in FindCut minimizes NLL. Align the terminology (e.g., 'lowest per-token NLL').
- [Sec. 5.3] Typo in the first sentence: 'Mutli-camera' should be 'Multi-camera'.
- [Sec. 3.1.2] A one-sentence description of how the sliding-window attention is positioned across the 128k-token context and how positions are encoded would improve reproducibility, even if full details are in the supplement.
Circularity Check
No circular derivation: FilmGPT's outputs are evaluated against external human preference and a benchmark ordering task, not against its own training objective or fitted parameters.
full rationale
The paper's central claims are empirical. FilmGPT is trained with a standard autoregressive next-token objective (Eq. 1) and a cut-weighted loss (Eqs. 2-3); these do not encode the evaluation targets. The AVE shot-ordering task evaluates the model's ability to order held-out shots by likelihood, and the user study measures human preference for edited outputs. Neither reduces to the training loss by construction. The footage-constrained decoding algorithm is a constrained generation procedure that selects shots by model likelihood; it is not a fitted parameter renamed as a prediction. Self-citations to EditDuet are used as a baseline, as a source of the LLM planner, and as a user-study protocol reference, but they are not invoked as proof of the central result or to forbid alternatives, so they are not load-bearing. Potential concerns—no ablation of the LLM/CLIP preselection in the user study and no explicit statement of AVE train/test exclusion—are attribution and rigor issues, not circularity by construction, and should be addressed in correctness review. The paper's limitations section also acknowledges concrete failure modes (e.g., cutting on unrelated actions), which further indicates the evaluation is not tautological.
Axiom & Free-Parameter Ledger
free parameters (7)
- tokens per frame =
32 (TiTok-L)
- sliding window size =
16k tokens
- cut-weight w and decay window =
w=32, decay over w tokens
- audio drop probability =
0.4
- CLIP top-k for LLM planner =
50
- max shot extension =
10 seconds
- beam width =
k (not stated in main text)
axioms (6)
- domain assumption Film editing grammar is learnable from sequences of frame tokens and cut tokens
- domain assumption Sliding-window attention over 16k tokens with 128k context adequately approximates full attention for editing decisions
- domain assumption TiTok-L's 32-token reconstruction preserves the visual information needed for editing (motion, continuity, subject identity)
- domain assumption A single ⟨CUT⟩ token adequately represents a cut event
- domain assumption The ground-truth shot ordering in AVE measures editing quality
- standard math Autoregressive factorization is valid
invented entities (1)
-
⟨CUT⟩ token
no independent evidence
Cite this review
Pith. "Pith review of Autoregressive Modeling of Film with Applications in Video Montage." pith.science (2026). https://pith.science/paper/ZQ4STNFG
@misc{pith2026260714645,
author = {Pith},
title = {Pith review of: Autoregressive Modeling of Film with Applications in Video Montage},
year = {2026},
howpublished = {\url{https://pith.science/paper/ZQ4STNFG}},
note = {Machine review of arXiv:2607.14645}
}
read the original abstract
This work introduces FilmGPT, an autoregressive transformer designed to address the challenge of video montage--turning a collection of raw, "unwatchable" footage into coherent cinematic sequences. Inspired by language learning in modern LLMs, we train a long-context autoregressive transformer on a large corpus of movies. The aim is to implicitly capture the "grammar" of film directly from data rather than from hand-coded rules. Unlike other generative models, FilmGPT does not generate any new video frames. Instead, at inference time, we introduce a footage-constrained decoding algorithm to select the best next shot from the input raw footage according to the statistical patterns learned from films. We first evaluate these learned statistics directly by using the FilmGPT autoregressive model for next shot prediction on a standard benchmark of shot sequence ordering, outperforming the previous state of the art. We then evaluate our footage-constrained decoding algorithm on the full film editing task via a user study, and find that our FilmGPT-based editing significantly outperforms previous approaches. Finally, we demonstrate the applicability of FilmGPT to a wide range of applications in video montage, from automatic video segment trimming to human-in-the-loop film editing.
Figures
Reference graph
Works this paper leans on
-
[1]
Leake, Mackenzie and Davis, Abe and Truong, Anh and Agrawala, Maneesh , journal=TOG, volume=
-
[2]
Workshop on Intelligent Camera Control, Cinematography and Editing , pages=
Gandhi, Vineet and Ronfard, R. Workshop on Intelligent Camera Control, Cinematography and Editing , pages=. 2015 , organization=
2015
-
[3]
ACM Transactions on Multimedia Computing, Communications, and Applications (TOMM) , volume=
Wu, Hui-Yin and Pal. ACM Transactions on Multimedia Computing, Communications, and Applications (TOMM) , volume=. 2018 , publisher=
2018
-
[4]
Interactive Storytelling: Fourth International Conference on Interactive Digital Storytelling, ICIDS , pages=
Lino, Christophe and Chollet, Mathieu and Christie, Marc and Ronfard, R. Interactive Storytelling: Fourth International Conference on Interactive Digital Storytelling, ICIDS , pages=. 2011 , organization=
2011
-
[5]
Jhala, Arnav and Young, Robert Michael , booktitle=AAAI, volume=
-
[6]
1993 , organization=
Karp, Peter and Feiner, Steven , booktitle=. 1993 , organization=
1993
-
[7]
Christianson, David B and Anderson, Sean E and He, Li-wei and Salesin, David H and Weld, Daniel S and Cohen, Michael F , booktitle=AAAI, pages=
-
[8]
He, Li-wei and Cohen, Michael F. and Salesin, David H. , title =. 1996 , isbn =. doi:10.1145/237170.237259 , booktitle =
arXiv 1996
-
[9]
Wu, Hui-Yin and Christie, Marc , booktitle=
-
[10]
2024 , pages =
Argaw, Dawit Mureja and Soldan, Mattia and Pardo, Alejandro and Zhao, Chen and Heilbron, Fabian Caba and Chung, Joon Son and Ghanem, Bernard , title =. 2024 , pages =
2024
-
[11]
arXiv preprint arXiv:1508.07593 , year=
Ronfard, R. arXiv preprint arXiv:1508.07593 , year=
-
[12]
2020 , organization=
Huang, Qingqiu and Xiong, Yu and Rao, Anyi and Wang, Jiaze and Lin, Dahua , booktitle=ECCV, pages=. 2020 , organization=
2020
-
[13]
2022 , organization=
Argaw, Dawit Mureja and Heilbron, Fabian Caba and Lee, Joon-Young and Woodson, Markus and Kweon, In So , booktitle=ECCV, pages=. 2022 , organization=
2022
-
[14]
Rao, Anyi and Wang, Jiaze and Xu, Linning and Jiang, Xuekun and Huang, Qingqiu and Zhou, Bolei and Lin, Dahua , booktitle = ECCV, year=
-
[15]
Tapaswi, Makarand and Zhu, Yukun and Stiefelhagen, Rainer and Torralba, Antonio and Urtasun, Raquel and Fidler, Sanja , title =
-
[16]
Lei, Jie and Yu, Licheng and Bansal, Mohit and Berg, Tamara L , booktitle=EMNLP, year=
-
[17]
Ridouane Ghermi and Xi Wang and Vicky Kalogeiton and Ivan Laptev , journal=
-
[18]
Joseph Mascelli , title =
-
[19]
Daniel Arijon , title =
-
[20]
Roy Thompson and Christopher Bowen , title =
-
[21]
Christian Metz , title =
-
[22]
Frank Manchel , title =
-
[23]
1968 , publisher =
Roy Knight , title =. 1968 , publisher =
1968
-
[24]
Qihang Yu and Mark Weber and Xueqing Deng and Xiaohui Shen and Daniel Cremers and Liang-Chieh Chen , title =
-
[25]
Peters and Arman Cohan , journal=
Iz Beltagy and Matthew E. Peters and Arman Cohan , journal=
-
[26]
Guangxuan Xiao and Yuandong Tian and Beidi Chen and Song Han and Mike Lewis , booktitle=ICLR, year=
-
[27]
arXiv preprint arXiv:2302.13971 , year=
Touvron, Hugo and Lavril, Thibaut and Izacard, Gautier and Martinet, Xavier and Lachaux, Marie-Anne and Lacroix, Timoth. arXiv preprint arXiv:2302.13971 , year=
- [28]
-
[29]
Communications , number =
Metz, Christian , doi =. Communications , number =. 1964 , Bdsk-Url-1 =
1964
-
[30]
2016 , organization=
Merabti, Billal and Christie, Marc and Bouatouch, Kadi , booktitle=CGF, volume=. 2016 , organization=
2016
-
[31]
Learning Transferable Visual Models From Natural Language Supervision , author =
-
[32]
D\'idac Sur\'is and Sachit Menon and Carl Vondrick , booktitle=iccv, year=
-
[33]
Visual Programming: Compositional visual reasoning without training , author =
-
[34]
Manning and Peter Shaw and Mandar Joshi and Kenton Lee , booktitle=icml, year=
Shikhar Murty and Christopher D. Manning and Peter Shaw and Mandar Joshi and Kenton Lee , booktitle=icml, year=
-
[35]
Gomez, Aidan and Cohere , year=2024, howpublished=
2024
-
[36]
Abhimanyu Dubey and Abhinav Jauhri and et. al , year=. 2407.21783 , archivePrefix=
-
[37]
Xiong, Yu and Heilbron, Fabian Caba and Lin, Dahua , booktitle=acmmm, year=
-
[38]
Wang, Bryan and Li, Yuliang and Lv, Zhaoyang and Xia, Haijun and Xu, Yan and Sodhi, Raj , booktitle=
-
[39]
Madaan, Aman and Tandon, Niket and Gupta, Prakhar and Hallinan, Skyler and Gao, Luyu and Wiegreffe, Sarah and Alon, Uri and Dziri, Nouha and Prabhumoye, Shrimai and Yang, Yiming and others , journal=nips, volume=
-
[40]
Romera-Paredes, Bernardino and Barekatain, Mohammadamin and Novikov, Alexander and Balog, Matej and Kumar, M Pawan and Dupont, Emilien and Ruiz, Francisco JR and Ellenberg, Jordan S and Wang, Pengming and Fawzi, Omar and others , journal=
-
[41]
Chiquier, Mia and Mall, Utkarsh and Vondrick, Carl , journal=
-
[42]
Yang, John and Jimenez, Carlos E and Wettig, Alexander and Lieret, Kilian and Yao, Shunyu and Narasimhan, Karthik and Press, Ofir , journal=
-
[43]
Hu, Ziniu and Iscen, Ahmet and Jain, Aashi and Kipf, Thomas and Yue, Yisong and Ross, David A and Schmid, Cordelia and Fathi, Alireza , booktitle=icml, year=
-
[44]
Huang, Kaixuan and Qu, Yuanhao and Cousins, Henry and Johnson, William A and Yin, Di and Shah, Mihir and Zhou, Denny and Altman, Russ and Wang, Mengdi and Cong, Le , journal=
-
[45]
Yao, Shunyu and Zhao, Jeffrey and Yu, Dian and Du, Nan and Shafran, Izhak and Narasimhan, Karthik and Cao, Yuan , journal=
-
[46]
Kim, Joongwon and Paranjape, Bhargavi and Khot, Tushar and Hajishirzi, Hannaneh , journal=
-
[47]
VideoAgent: Long-form Video Understanding with Large Language Model as Agent , author=
-
[48]
Min, Juhong and Buch, Shyamal and Nagrani, Arsha and Cho, Minsu and Schmid, Cordelia , booktitle=cvpr, year=
-
[49]
and Zhang, Hao and Gonzalez, Joseph E
Zheng, Lianmin and Chiang, Wei-Lin and Sheng, Ying and Zhuang, Siyuan and Wu, Zhanghao and Zhuang, Yonghao and Lin, Zi and Li, Zhuohan and Li, Dacheng and Xing, Eric P. and Zhang, Hao and Gonzalez, Joseph E. and Stoica, Ion , title =. 2024 , publisher =
2024
-
[50]
Ioannidis and Karthik Subbian and Jure Leskovec and James Zou , booktitle=NIPS, year=
Shirley Wu and Shiyu Zhao and Qian Huang and Kexin Huang and Michihiro Yasunaga and Kaidi Cao and Vassilis N. Ioannidis and Karthik Subbian and Jure Leskovec and James Zou , booktitle=NIPS, year=. AvaTaR: Optimizing
-
[51]
2025 , organization=
Video Question Answering with Procedural Programs , author=. 2025 , organization=
2025
-
[52]
2025 , organization=
V-Trans4Style: Visual Transition Recommendation for Video Production Style Adaptation , author=. 2025 , organization=
2025
-
[53]
2022 , organization=
Autotransition: Learning to recommend video transition effects , author=. 2022 , organization=
2022
-
[54]
2025 , organization=
VideoStudio: Generating Consistent-Content and Multi-scene Videos , author=. 2025 , organization=
2025
-
[55]
2024 , booktitle =
Han Lin and Abhay Zala and Jaemin Cho and Mohit Bansal , title =. 2024 , booktitle =
2024
-
[56]
arXiv preprint arXiv:2411.04925 , year=
StoryAgent: Customized Storytelling Video Generation via Multi-Agent Collaboration , author=. arXiv preprint arXiv:2411.04925 , year=
-
[57]
arXiv preprint arXiv:2405.01535 , year=
Prometheus 2: An open source language model specialized in evaluating other language models , author=. arXiv preprint arXiv:2405.01535 , year=
-
[58]
Gonzalez and Ion Stoica , booktitle=NIPS, year=
Lianmin Zheng and Wei-Lin Chiang and Ying Sheng and Siyuan Zhuang and Zhanghao Wu and Yonghao Zhuang and Zi Lin and Zhuohan Li and Dacheng Li and Eric Xing and Hao Zhang and Joseph E. Gonzalez and Ion Stoica , booktitle=NIPS, year=. Judging
-
[59]
arXiv preprint arXiv:2401.06591 , year=
Prometheusvision: Vision-language model as a judge for fine-grained evaluation , author=. arXiv preprint arXiv:2401.06591 , year=
-
[60]
2023 , eprint=
GPT-4V(ision) as a Generalist Evaluator for Vision-Language Tasks , author=. 2023 , eprint=
2023
-
[61]
GPT-4V(ision) Technical Work and Authors , author=
-
[62]
Sarfraz, Saquib and Murray, Naila and Sharma, Vivek and Diba, Ali and Van Gool, Luc and Stiefelhagen, Rainer , title =
-
[63]
LLaVA-NeXT: A Strong Zero-shot Video Understanding Model , url=
Zhang, Yuanhan and Li, Bo and Liu, haotian and Lee, Yong jae and Gui, Liangke and Fu, Di and Feng, Jiashi and Liu, Ziwei and Li, Chunyuan , month=. LLaVA-NeXT: A Strong Zero-shot Video Understanding Model , url=
-
[64]
arXiv preprint arXiv:2307.09702 , year=
Efficient Guided Generation for LLMs , author=. arXiv preprint arXiv:2307.09702 , year=
-
[65]
2024 , eprint=
Transcrib3D: 3D Referring Expression Resolution through Large Language Models , author=. 2024 , eprint=
2024
-
[66]
Findings of the Association for Computational Linguistics: EMNLP 2023 , pages=
Towards mitigating LLM hallucination via self reflection , author=. Findings of the Association for Computational Linguistics: EMNLP 2023 , pages=
2023
-
[67]
Adobe Premiere Pro , author=
-
[68]
Avid Media Composer , author=
-
[69]
2023 , publisher=
Eventfulness for interactive video alignment , author=. 2023 , publisher=
2023
-
[70]
2014 , publisher=
Videosnapping: Interactive synchronization of multiple videos , author=. 2014 , publisher=
2014
-
[71]
2014 , publisher=
Automatic editing of footage from multiple social cameras , author=. 2014 , publisher=
2014
-
[72]
2022 , publisher=
PopStage: The Generation of Stage Cross-Editing Video based on Spatio-Temporal Matching , author=. 2022 , publisher=
2022
-
[73]
2015 , publisher=
Gaze-driven video re-editing , author=. 2015 , publisher=
2015
-
[74]
2012 , publisher=
Tools for placing cuts and transitions in interview video , author=. 2012 , publisher=
2012
-
[75]
Iberian Conference on Pattern Recognition and Image Analysis , pages=
Film Shot Type Classification Based on Camera Movement Styles , author=. Iberian Conference on Pattern Recognition and Image Analysis , pages=. 2022 , organization=
2022
-
[76]
arXiv preprint arXiv:1308.0850 , year=
Generating sequences with recurrent neural networks , author=. arXiv preprint arXiv:1308.0850 , year=
-
[77]
2016 , organization=
Ssd: Single shot multibox detector , author=. 2016 , organization=
2016
-
[78]
2020 , organization=
A unified framework for shot type classification based on subject centric lens , author=. 2020 , organization=
2020
-
[79]
Searching for mobilenetv3 , author=
-
[80]
arXiv preprint arXiv:2411.12293 , year=
Generative Timelines for Instructed Visual Assembly , author=. arXiv preprint arXiv:2411.12293 , year=
This paper was first reviewed by deepseek-v4-flash on August 2, 2026.
discussion (0)
Sign in with ORCID, Apple, or X to comment. Anyone can read and Pith papers without signing in.