REVIEW 3 major objections 7 minor 9 cited by
MRWeb: An Exploration of Generating Multi-Page Resource-Aware Web Code from UI Designs
T0 review · 3 major / 7 minor · reviewed 2026-08-11 · deepseek-v4-flash
Pith's one-line read This paper argues that a machine-readable resource list is what lets multimodal models turn UI screenshots into multi-page, navigable websites—raising functional resource matching from near zero to 66–80%.
desk verdict Useful benchmark and IQA data, but the headline RER boost is an artifact of giving the model the answer; the navigation claim is not supported by the metric. 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 resource list: a dictionary-like data structure in which each actionable element of a webpage is recorded with its position (bounding box), its type (link, image, or backend route), and its target URL or source. It is the input channel through which the model learns the exact URLs it must emit, which is why the self-contained baseline—which receives only a screenshot—has no way to reproduce any real resource. The paper's MRWeb dataset of 300 synthetic and 200 real-world websites, and its human-rated set of 600 UI-similarity pairs, are the supporting instruments that give the resource-list mechanism empirical force.
What would settle it
Take a model that scores 66–80% RER, then click through every internal link in its generated multi-page site. If the proportion of links that lead to a real, rendered page with the expected content is far below 66–80%—or near zero—the paper's claim that resource lists "boost navigation functionality" would be falsified.
Extended reading notes
Core claim
On its own terms, the paper's central claim is that the missing ingredient in design-to-code is a machine-readable map of the page's resources. Providing the model with a resource list—entries of the form {position: bounding box, type: image/link, url}—makes it possible to reproduce the exact image sources and link targets that make a site functional. Empirically, this lifts the Resource Existence Ratio from 0.006–0.008 under self-contained prompting to 0.640–0.832 depending on model and prompting strategy, and improves MAE, NEMD, and CLIP visual scores across all three tested models. The paper further discovers that when choosing an automated similarity metric for web UIs, pixel-level MAE and NEMD correlate most strongly with human similarity ratings, and that semantic and structural metrics such as SSIM, CLIP, and LPIPS only align with humans in highly similar pairs. The authors treat these results as evidence that resource-aware prompting, not just larger models, is the lever that unlocks functional multi-page generation.
Load-bearing premise
The claim rests on defining a resource as "matched" when the generated element points to the same URL or image source as the reference, regardless of whether the link resolves or the target page exists; under that definition the near-zero baseline is almost forced, because the self-contained model is never told the ground-truth URLs.
Editorial extensions
If this is right
- Design-to-code systems that adopt a resource list can generate pages with genuine image sources and link targets instead of placeholders, which is the difference between a static mockup and a usable site.
- For evaluating generated web UIs, the paper's human study makes a case for using pixel-level MAE and NEMD as primary metrics, rather than the semantic or structural scores that prior work favored.
- The reported degradation with input image size and resource-list length implies a concrete scaling target: models and prompts must handle large, dense pages before MRWeb generation works on complex real-world websites.
- Self-refine prompting consistently outperformed direct and chain-of-thought prompting, while CoT actually hurt performance, giving a practical prompt-design rule for this task.
- If reproduced, the 66–80% RER numbers suggest that resource lists are a cheap, data-free way to make multimodal models produce navigable multi-page code from UI designs.
Reading between the lines
- Beyond the paper: the RER metric defines "exists" as pointing to the same URL/source, so the 66–80% numbers mostly measure whether the model transcribes the supplied list into code; whether the resulting multi-page site actually navigates end-to-end is a separate question the paper does not test.
- Beyond the paper: because MAE and NEMD excel in low-to-medium similarity while semantic metrics excel in high similarity, a hybrid metric—pixel error plus a learned semantic score—could match human judgment more uniformly than any single metric in the study.
- Beyond the paper: the resource-list trick likely generalizes beyond HTML, e.g., to mobile UI code generation or accessible document generation, wherever the failure mode is that models invent rather than reproduce resource references.
- Beyond the paper: a testable extension would be an end-to-end crawl of generated sites, counting what fraction of internal links lead to real rendered pages; the paper's tool case study suggests this could be high on simple sites, but the benchmark's 66–80% figure does not by itself establish it.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper introduces MRWeb, a task and benchmark for generating multi-page, resource-aware web code from UI screenshots and an accompanying 'resource list' that specifies the positions, types, and URLs of links and images. The authors collect 300 synthetic and 200 real-world websites, propose a suite of visual and functional metrics, and evaluate Gemini, GPT-4o, and Claude-3.5 under self-contained, zero-shot, CoT, and self-refine prompting. They also run a human study to identify which image-similarity metric best matches human judgments, concluding that MAE and NEMD correlate best (SROCC 0.542 and 0.508). The headline finding is that providing the resource list raises the Resource Existence Ratio from near zero to 66-80%, interpreted as a boost in navigation functionality.
Significance. If the headline claim were rigorously supported, the work would be a meaningful step beyond single-page design-to-code. The dataset, the resource-list formalism, and the IQA comparison are concrete contributions, and the release of the tool, dataset, and evaluation framework supports reproducibility. The experimental setup is transparent, with temperature 0 and seed 42 and exact prompts in the appendix. However, the functional metric and the task setup undermine the central navigation claim, so the significance currently rests on the benchmarking and IQA contributions rather than on the claimed functional advance.
major comments (3)
- [Section 5.3.1 and Table 4] The Resource Existence Ratio (RER) is defined as the proportion of reference resources matched to generated resources by exact URL/source equality. Because the self-contained (SC) baseline is given no resource list, it cannot know ground-truth URLs, so its near-zero RER is forced by the input design. The 66-80% scores under zero-shot, CoT, and self-refine largely measure whether the model copies the provided URLs from the resource list into the generated code, which is a transcription check rather than a navigation check. Moreover, RER does not verify that a matched link resolves, that an internal link leads to a generated page with the expected content, or that backend routing works. The abstract and Section 6.2 claim that resource lists 'boost navigation functionality from 0% to 66%-80%', but the reported numbers do not establish end-to-end navigability.
- [Section 3 and Section 5.2] The task formulation Cg = M(I0, R0) and the prompt designs in Appendix C change two variables at once when comparing SC (no resource list) with ZS/CoT/SR (resource list provided): the presence of R0 and the prompt content. The reported improvements in RER and visual metrics cannot be attributed solely to the resource list because the prompting strategies also differ in instruction and supplementary text. A controlled comparison, for example providing a resource list with incorrect or scrambled URLs, or placing the same URL information in a non-structured textual format, is needed to isolate the effect of the resource list itself.
- [Section 6.4 and Table 6] The case study reports a 100% success rate for the MRWeb tool on a three-page personal website, but the criteria for success are not defined. It is unclear whether 'success' means that the generated code contains the correct URL strings, that the links are actually clickable and resolve, that the internal pages are generated and consistent, or that the backend route was tested with an actual request. Without an explicit evaluation protocol, this anecdote does not substantiate end-to-end navigation functionality.
minor comments (7)
- [Section 3, Appendix C, Appendix I] The terms 'resource list' and 'action list' are used interchangeably; unify the terminology throughout the paper.
- [Section 3] The string 'bonding_box' in the resource list example is a typo for 'bounding_box'.
- [Section 6.2] The model name 'Genimi-Pro' is a typo; it should be 'Gemini-Pro'.
- [Appendix E] The sentence 'SROCC ... where a indicates perfect positive or negative correlation' is missing the value '1' after 'a'; it should read 'where a value of 1 indicates'.
- [Tables 3 and 4] The visual and functional metric tables report point estimates with no error bars or significance tests; given the small gaps between some models and methods, the reader cannot assess whether the differences are meaningful.
- [Figure 3 and Appendix H] The binning of image sizes and action-list lengths into five bins is not described, including the number of samples per bin, which makes the complexity-trend analysis difficult to interpret.
- [Introduction and References] The citation key '(web, 2024)' in the Introduction does not match any reference entry; the corresponding TechJury entry should be cited with an author or consistent key.
Circularity Check
The headline RER boost reduces to transcription of the provided resource list: the metric matches generated elements to the exact URLs that were supplied as input, and the self-contained baseline is forced to near zero because those URLs are withheld.
-
self definitional
[Sec. 3 (Task Definition), Sec. 5.3.1 (Resource Existence Ratio), Sec. 6.2 (Effectiveness of the Resource List)]
"Task Definition Let the ground-truth webpage’s HTML+CSS code be C0, screenshot be I0, and resource list be R0, the MRWeb generation task uses an MLLM M to produce HTML+CSS code Cg = M (I0, R0). ... RER = # Matched Resources in G / # Total Resources in R. Matching is determined based on relevant attributes of resources, such as whether navigational elements direct to the same link or whether images share the same source. Resource lists enable MLLMs to generate webpages with valid resources, significantly boosting RER from 0% to 66%-80%."
R0 is an input to generation (Cg = M (I0, R0)), and RER is defined by matching the generated resources to R0's exact links and image sources. The self-contained baseline is run without R0, so it cannot know the ground-truth URLs; a near-zero RER is forced by the experimental design, not by a failure of navigation. The 66-80% scores under ZS/CoT/SR therefore measure whether the model copied the supplied URLs into the generated code, i.e., transcription of the input list. RER never checks whether a link resolves, leads to a generated page, or triggers backend routing, so the claim that resource lists 'boost navigation functionality from 0% to 66%-80%' reduces by construction to providing the answer and then scoring a metric defined over that answer.
full rationale
The central functional claim in the abstract and Sec. 6.2 is not self-contained: RER is computed against the same resource list R0 that is fed to the model in the zero-shot, chain-of-thought, and self-refine settings, while the self-contained baseline does not receive R0 at all. This makes the 0-to-66-80% jump a measure of list-to-code transcription rather than of navigability. The paper does not check whether matched links resolve, whether internal links lead to generated pages, or whether backend routing works, so the word 'navigation functionality' overstates what RER establishes. This is a partial circularity: the visual-similarity comparisons in Sec. 6.1, including the human IQA study and the ranking of MAE/NEMD against human judgments, are independent and self-contained, and the fine-grained layout metrics are computed against rendered screenshots and human-labeled properties. There is no load-bearing self-citation or imported uniqueness theorem; the IQA study is an external human-evaluation benchmark. The score is 6 because the headline functional claim reduces by construction, while the remaining contributions retain independent content.
Assumptions & free parameters
assumptions (5)
- domain assumption The three assumptions about real websites (multi-page, with external links and real images) are over-simplified in prior work; the motivating Tranco study (top 300 sites) is representative of real-world web development needs.
- domain assumption Resource lists extracted via Selenium (positions, types, URLs) constitute ground truth for the resources a webpage needs, including visibility and functionality filtering.
- ad hoc to paper Exact URL/source matching between reference and generated resource lists is a valid measure of functional similarity (RER).
- domain assumption Randomly assigned C4 links in synthetic data are treated as valid external links, even though they are not semantically related to page content.
- domain assumption Human ratings from 14 college students over 600 pairs provide a reliable gold standard for image-similarity metric evaluation.
invented entities (1)
-
Resource list (action list)
independent evidence
Cite this review
Pith. "Pith review of MRWeb: An Exploration of Generating Multi-Page Resource-Aware Web Code from UI Designs." pith.science (2026). https://pith.science/paper/35RL3BUW
@misc{pith2026241215310,
author = {Pith},
title = {Pith review of: MRWeb: An Exploration of Generating Multi-Page Resource-Aware Web Code from UI Designs},
year = {2026},
howpublished = {\url{https://pith.science/paper/35RL3BUW}},
note = {Machine review of arXiv:2412.15310}
}
read the original abstract
Multi-page websites dominate modern web development. However, existing design-to-code methods rely on simplified assumptions, limiting to single-page, self-contained webpages without external resource connection. To address this gap, we introduce the Multi-Page Resource-Aware Webpage (MRWeb) generation task, which transforms UI designs into multi-page, functional web UIs with internal/external navigation, image loading, and backend routing. We propose a novel resource list data structure to track resources, links, and design components. Our study applies existing methods to the MRWeb problem using a newly curated dataset of 500 websites (300 synthetic, 200 real-world). Specifically, we identify the best metric to evaluate the similarity of the web UI, assess the impact of the resource list on MRWeb generation, analyze MLLM limitations, and evaluate the effectiveness of the MRWeb tool in real-world workflows. The results show that resource lists boost navigation functionality from 0% to 66%-80% while facilitating visual similarity. Our proposed metrics and evaluation framework provide new insights into MLLM performance on MRWeb tasks. We release the MRWeb tool, dataset, and evaluation framework to promote further research.
Figures
Figures from the paper (6 more)
Forward citations
Cited by 9 Pith papers
-
UI2App: Benchmarking Visual Interaction Inference in Executable Web Application Generation
UI2App introduces a benchmark showing that vision-language models can reconstruct web page visuals but largely fail to infer the underlying interaction logic from screenshots alone.
-
CodeShrink: Adaptive Visual Compression for Efficient Multimodal Code Understanding
A three-part pipeline (blank-free rendering, instruction-aware visual-token pruning, and per-input compression settings) cuts visual tokens for code-image MLLM inputs by up to 71% without losing accuracy.
-
EfficientUICoder: A Bidirectional Token Compression Framework for Efficient MLLM-Based UI Code Generation
EfficientUICoder compresses UI image tokens by 55-60% and suppresses duplicate HTML/CSS/text output, cutting LLM FLOPs by ~45% and inference time by ~49% on Llava-1.6-34b without quality loss on two benchmarks.
-
When Cars Have Stereotypes: Auditing Demographic Bias in Objects from Text-to-Image Models
A new audit framework, SODA, measures demographic bias in objects generated by text-to-image models and finds strong default-to-majority and stereotype-collapse patterns across five models.
-
FullFront: Benchmarking MLLMs Across the Full Front-End Engineering Workflow
FullFront adds a three-task benchmark for webpage design, perception, and code generation, and finds top MLLMs still fail at fine-grained layout and interaction implementation.
-
P2P: Automated Paper-to-Poster Generation and Fine-Grained Benchmark
P2P is a multi-agent framework that automatically generates HTML-rendered academic posters from papers, backed by a 30k instruction dataset and a 121-pair evaluation benchmark.
-
SAM2-UNeXT: An Improved High-Resolution Baseline for Adapting Foundation Models to Downstream Segmentation Tasks
The full text describes LaTCoder, a block-wise chain-of-thought method for webpage design-to-code, reporting improved layout preservation on two benchmarks, while the title and abstract are for a different paper.
-
LaTCoder: Converting Webpage Design to Code with Layout-as-Thought
LaTCoder cuts a webpage screenshot into blocks, generates code for each block with chain-of-thought prompting, and assembles the blocks, improving layout fidelity over direct whole-page generation.
-
SlideCoder: Layout-aware RAG-enhanced Hierarchical Slide Generation from Design
SlideCoder converts slide design images to editable python-pptx code and reports large gains over prior baselines on a new difficulty-tiered benchmark.
Reference graph
Works this paper leans on
-
[1]
URL: " 'urlintro :=
ENTRY address author booktitle chapter edition editor howpublished institution journal key month note number organization pages publisher school series title type volume year eprint doi pubmed url lastchecked label extra.label sort.label short.list INTEGERS output.state before.all mid.sentence after.sentence after.block STRINGS urlintro eprinturl eprintpr...
-
[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]
2024. https://techjury.net/blog/how-many-websites-are-there/ How many websites are there in 2024? (13 latest statistics) . TechJury. Accessed: 2024-05-30
work page 2024
-
[4]
The White Label Agency. n.d. https://thewhitelabelagency.com/pixel-perfect-web-development-5-essential-steps/ Pixel-perfect web development: 5 essential steps . Accessed: 2024-11-21
work page 2024
-
[5]
Anthropic . 2024 a . https://www.anthropic.com/claude Claude . Accessed: 2024-06-06
work page 2024
-
[6]
Anthropic . 2024 b . https://docs.anthropic.com/en/docs/vision Vision documentation . Accessed: 2024-06-06
work page 2024
-
[7]
Mart \'i n Arjovsky, Soumith Chintala, and L \'e on Bottou. 2017. https://api.semanticscholar.org/CorpusID:13943041 Wasserstein gan . ArXiv, abs/1701.07875
arXiv 2017
-
[8]
Batuhan A s ro g lu, B \"u s ta R \"u meysa Mete, Eyy \"u p Y ld z, Ya g z Nal c akan, Alper Sezen, Mustafa Da g tekin, and Tolga Ensari. 2019. Automatic html code generation from mock-up images using machine learning techniques. In 2019 Scientific Meeting on Electrical-Electronics & Biomedical Engineering and Computer Science (EBBT), pages 1--4. Ieee
work page 2019
Show all 48 references
-
[9]
Tony Beltramelli. 2018. pix2code: Generating code from a graphical user interface screenshot. In Proceedings of the ACM SIGCHI symposium on engineering interactive computing systems, pages 1--6
2018
-
[10]
HTML Burger. n.d. https://htmlburger.com/blog/pixelparallel-free-pixel-perfect-tool/ Pixelparallel: Free pixel-perfect tool . Accessed: 2024-11-21
2024
-
[11]
Hyungjoo Chae, Yeonghyeon Kim, Seungone Kim, Kai Tzu iunn Ong, Beong woo Kwak, Moohyeon Kim, Seonghwan Kim, Taeyoon Kwon, Jiwan Chung, Youngjae Yu, and Jinyoung Yeo. 2024. https://api.semanticscholar.org/CorpusID:268876471 Language models as compilers: Simulating pseudocode ex...
2024 arXiv
-
[12]
C. Chen, T. Su, G. Meng, Z. Xing, and Y. Liu. 2018. From ui design image to gui skeleton: a neural machine translator to bootstrap mobile gui implementation. In Proceedings of the 40th International Conference on Software Engineering, pages 665--676
2018
-
[13]
W.-Y. Chen, P. Podstreleny, W.-H. Cheng, Y.-Y. Chen, and K.-L. Hua. 2022. Code generation from a graphical user interface via attention-based encoder--decoder model. Multimedia Systems, 28(1):121--130
2022
-
[14]
Xinyun Chen, Maxwell Lin, Nathanael Sch \"a rli, and Denny Zhou. 2023. https://api.semanticscholar.org/CorpusID:258059885 Teaching large language models to self-debug . ArXiv, abs/2304.05128
2023 arXiv
-
[15]
A. A. J. Cizotto, R. C. T. de Souza, V. C. Mariani, and L. dos Santos Coelho. 2023. Web pages from mockup design based on convolutional neural network and class activation mapping. Multimedia Tools and Applications, pages 1--27
2023
-
[16]
Google . 2024. https://ai.google.dev/gemini-api Gemini api . Accessed: 2024-06-06
2024
-
[17]
Google AI . 2024. https://ai.google.dev/gemini-api/docs/api-overview Api overview . Accessed: 2024-06-06
2024
-
[18]
Yi Gui, Zhen Li, Yao Wan, Yemin Shi, Hongyu Zhang, Yi Su, Shaoling Dong, Xing Zhou, and Wenbin Jiang. 2024. https://api.semanticscholar.org/CorpusID:269010048 Vision2ui: A real-world dataset with layout for code generation from ui designs . ArXiv, abs/2404.06369
2024 arXiv
-
[19]
Vanita Jain, Piyush Agrawal, Subham Banga, Rishabh Kapoor, and Shashwat Gulyani. 2019. Sketch2code: transformation of sketches to ui in real-time using deep neural network. arXiv preprint arXiv:1910.08930
2019 arXiv
-
[20]
Ankur Joshi, Saket Kale, Satish Chandel, and D Kumar Pal. 2015. Likert scale: Explored and explained. British journal of applied science & technology, 7(4):396--403
2015
-
[21]
Krishna Kiran. 2018. https://medium.com/@krishnakiran1992/pixel-perfect-web-implementation-5598a10bc761 Pixel perfect web implementation . Accessed: 2024-11-21
2018
-
[22]
Hugo Laurençon, Léo Tronchon, and Victor Sanh. 2024. http://arxiv.org/abs/2403.09029 Unlocking the conversion of web screenshots into html code with the websight dataset
2024 arXiv
-
[23]
Bee Lim, Sanghyun Son, Heewon Kim, Seungjun Nah, and Kyoung Mu Lee. 2017. https://api.semanticscholar.org/CorpusID:6540453 Enhanced deep residual networks for single image super-resolution . 2017 IEEE Conference on Computer Vision and Pattern Recognition Workshops (CVPRW), pag...
2017
-
[24]
Ming Ronnier Luo, Guihua Cui, and Bryan Rigg. 2001. https://api.semanticscholar.org/CorpusID:118281853 The development of the cie 2000 colour difference formula
2001
-
[25]
Moran, C
K. Moran, C. Bernal-Cárdenas, M. Curcio, R. Bonett, and D. Poshyvanyk. 2018. Machine learning-based prototyping of graphical user interfaces for mobile apps. IEEE Transactions on Software Engineering, 46(2):196--221
2018
-
[26]
T. A. Nguyen and C. Csallner. 2015 a . Reverse engineering mobile application user interfaces with remaui (t). In 2015 30th IEEE/ACM International Conference on Automated Software Engineering (ASE), pages 248--259
2015
-
[27]
Tuan Anh Nguyen and Christoph Csallner. 2015 b . Reverse engineering mobile application user interfaces with remaui (t). In 2015 30th IEEE/ACM International Conference on Automated Software Engineering (ASE), pages 248--259. IEEE
2015
-
[28]
OpenAI . 2024 a . https://openai.com/index/hello-gpt-4o/ Hello gpt-4o . Accessed: 2024-06-06
2024
-
[29]
OpenAI . 2024 b . https://platform.openai.com/docs/guides/vision Vision guide . Accessed: 2024-06-06
2024
-
[30]
Alec Radford, Jong Wook Kim, Chris Hallacy, Aditya Ramesh, Gabriel Goh, Sandhini Agarwal, Girish Sastry, Amanda Askell, Pamela Mishkin, Jack Clark, Gretchen Krueger, and Ilya Sutskever. 2021. https://api.semanticscholar.org/CorpusID:231591445 Learning transferable visual model...
2021
-
[31]
Shazeer, Adam Roberts, Katherine Lee, Sharan Narang, Michael Matena, Yanqi Zhou, Wei Li, and Peter J
Colin Raffel, Noam M. Shazeer, Adam Roberts, Katherine Lee, Sharan Narang, Michael Matena, Yanqi Zhou, Wei Li, and Peter J. Liu. 2019. https://api.semanticscholar.org/CorpusID:204838007 Exploring the limits of transfer learning with a unified text-to-text transformer . J. Mach...
2019
-
[32]
Yossi Rubner, Carlo Tomasi, and Leonidas J. Guibas. 2000. https://api.semanticscholar.org/CorpusID:14106275 The earth mover's distance as a metric for image retrieval . International Journal of Computer Vision, 40:99--121
2000
-
[33]
Chenglei Si, Yanzhe Zhang, Zhengyuan Yang, Ruibo Liu, and Diyi Yang. 2024. https://api.semanticscholar.org/CorpusID:268248801 Design2code: How far are we from automating front-end engineering? ArXiv, abs/2403.03163
2024 arXiv
-
[34]
Karen Simonyan and Andrew Zisserman. 2014. https://api.semanticscholar.org/CorpusID:14124313 Very deep convolutional networks for large-scale image recognition . CoRR, abs/1409.1556
2014 arXiv
-
[35]
VQEG. 2000. Final report from the video quality experts group on the validation of objective models of video quality assessment. Online. [Online] Available: http://www.vqeg.org/
2000
-
[36]
Yuxuan Wan, Chaozheng Wang, Yi Dong, Wenxuan Wang, Shuqing Li, Yintong Huo, and Michael R Lyu. 2024. Automatically generating ui code from screenshot: A divide-and-conquer-based approach. arXiv preprint arXiv:2406.16386
2024 arXiv
-
[37]
Xintao Wang, Kelvin C. K. Chan, K. Yu, Chao Dong, and Chen Change Loy. 2019. https://api.semanticscholar.org/CorpusID:146808596 Edvr: Video restoration with enhanced deformable convolutional networks . 2019 IEEE/CVF Conference on Computer Vision and Pattern Recognition Worksho...
2019
-
[38]
Sheikh, and Eero P
Zhou Wang, Alan Conrad Bovik, Hamid R. Sheikh, and Eero P. Simoncelli. 2004. https://api.semanticscholar.org/CorpusID:207761262 Image quality assessment: from error visibility to structural similarity . IEEE Transactions on Image Processing, 13:600--612
2004
-
[39]
Way to Grow Editorial Team . 2024. https://www.waytogrow.com/blog/understanding-spa-vs-mpa/ Understanding spa vs. mpa: What’s the difference? Accessed: 2024-10-02
2024
-
[40]
Web.com Editorial Team . 2024. https://www.web.com/blog/one-page-vs-multi-page-website/ One-page vs. multi-page website: What’s best for your business? Accessed: 2024-10-02
2024
-
[41]
Xia, Quoc Le, and Denny Zhou
Jason Wei, Xuezhi Wang, Dale Schuurmans, Maarten Bosma, Ed Huai hsin Chi, F. Xia, Quoc Le, and Denny Zhou. 2022. https://api.semanticscholar.org/CorpusID:246411621 Chain of thought prompting elicits reasoning in large language models . ArXiv, abs/2201.11903
2022 arXiv
-
[42]
WellDoneCode. n.d. https://www.welldonecode.com/perfectpixel/ Perfectpixel by welldonecode . Accessed: 2024-11-21
2024
-
[43]
Jingyu Xiao, Yuxuan Wan, Yintong Huo, Zhiyao Xu, and Michael R Lyu. 2024. Interaction2code: How far are we from automatic interactive webpage generation? arXiv preprint arXiv:2411.03292
2024
-
[44]
Y. Xu, L. Bo, X. Sun, B. Li, J. Jiang, and W. Zhou. 2021. image2emmet: Automatic code generation from web user interface image. Journal of Software: Evolution and Process, 33(8):e2369
2021
-
[45]
Xing, Xiaodan Liang, and Zhiqiang Shen
Sukmin Yun, Haokun Lin, Rusiru Thushara, Mohammad Qazim Bhat, Yongxin Wang, Zutao Jiang, Mingkai Deng, Jinhong Wang, Tianhua Tao, Junbo Li, Haonan Li, Preslav Nakov, Timothy Baldwin, Zhengzhong Liu, Eric P. Xing, Xiaodan Liang, and Zhiqiang Shen. 2024. https://api.semanticscho...
2024 arXiv
-
[46]
Efros, Eli Shechtman, and Oliver Wang
Richard Zhang, Phillip Isola, Alexei A. Efros, Eli Shechtman, and Oliver Wang. 2018. https://api.semanticscholar.org/CorpusID:4766599 The unreasonable effectiveness of deep features as a perceptual metric . 2018 IEEE/CVF Conference on Computer Vision and Pattern Recognition, p...
2018
-
[47]
Ting Zhou, Yanjie Zhao, Xinyi Hou, Xiaoyu Sun, Kai Chen, and Haoyu Wang. 2024 a . https://api.semanticscholar.org/CorpusID:272708114 Bridging design and development with automated declarative ui code generation
2024
-
[48]
Ting Zhou, Yanjie Zhao, Xinyi Hou, Xiaoyu Sun, Kai Chen, and Haoyu Wang. 2024 b . Bridging design and development with automated declarative ui code generation. arXiv preprint arXiv:2409.11667
2024 arXiv
Reviewed August 11, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.