{"id":111,"date":"2025-12-10T20:51:30","date_gmt":"2025-12-10T20:51:30","guid":{"rendered":"https:\/\/mscvprojects.ri.cmu.edu\/2025team2-2\/?page_id=111"},"modified":"2025-12-10T21:35:18","modified_gmt":"2025-12-10T21:35:18","slug":"2025-fall-accelerating-video-generation-through-distillation","status":"publish","type":"page","link":"https:\/\/mscvprojects.ri.cmu.edu\/2025team2-2\/2025-fall-accelerating-video-generation-through-distillation\/","title":{"rendered":"2025 Fall: Accelerating Video Generation through Distillation"},"content":{"rendered":"\n<h1 class=\"wp-block-heading\">Introduction<\/h1>\n\n\n\n<h2 class=\"wp-block-heading\">Motivation<\/h2>\n\n\n\n<p>High-quality video diffusion models like <a href=\"https:\/\/huggingface.co\/Wan-AI\/Wan2.1-T2V-1.3B\">Wan 2.1<\/a> are promising, but their <strong>50-step<\/strong> generation is slow and expensive\u2014about <strong>~220s to generate a 480p 80-frame video<\/strong> in our setup. This makes them difficult to use for applications that need rapid iteration or large-scale sampling, where we want faster inference without catastrophic quality loss.<\/p>\n\n\n\n<p>In this project, in collaboration with <strong>NVIDIA<\/strong> and <strong>Pika<\/strong>, our core motivation is to build a practical distillation pipeline that Pika can deploy to cut inference costs for their video generation services, while maintaining the visual quality their users expect.<\/p>\n\n\n\n<p>Naive attempts to simply compress the teacher\u2019s denoising trajectory into fewer steps tend to produce over-smoothed, low-contrast results and still rely on costly teacher generation. This motivates our use of <strong>Distribution Matching Distillation<\/strong> (DMD), which <strong>matches distributions rather than trajectories<\/strong> to train a <strong>4-step<\/strong> student generator.<\/p>\n\n\n\n<h1 class=\"wp-block-heading\">Method<\/h1>\n\n\n\n<h3 class=\"wp-block-heading\"><a href=\"https:\/\/tianweiy.github.io\/dmd\/\">Distribution Matching Distillation<\/a><\/h3>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"319\" src=\"https:\/\/mscvprojects.ri.cmu.edu\/2025team2-2\/wp-content\/uploads\/sites\/136\/2025\/12\/image-1-1024x319.png\" alt=\"\" class=\"wp-image-129\" srcset=\"https:\/\/mscvprojects.ri.cmu.edu\/2025team2-2\/wp-content\/uploads\/sites\/136\/2025\/12\/image-1-1024x319.png 1024w, https:\/\/mscvprojects.ri.cmu.edu\/2025team2-2\/wp-content\/uploads\/sites\/136\/2025\/12\/image-1-300x93.png 300w, https:\/\/mscvprojects.ri.cmu.edu\/2025team2-2\/wp-content\/uploads\/sites\/136\/2025\/12\/image-1-768x239.png 768w, https:\/\/mscvprojects.ri.cmu.edu\/2025team2-2\/wp-content\/uploads\/sites\/136\/2025\/12\/image-1-1536x478.png 1536w, https:\/\/mscvprojects.ri.cmu.edu\/2025team2-2\/wp-content\/uploads\/sites\/136\/2025\/12\/image-1-2048x637.png 2048w\" sizes=\"auto, (max-width: 767px) 89vw, (max-width: 1000px) 54vw, (max-width: 1071px) 543px, 580px\" \/><figcaption class=\"wp-element-caption\">Pipeline of DMD Algorithm. Optimize the generator using the gradient of an implicit distribution matching objective (red arrow); Train a score function (blue) to model the distribution of \u201cfake\u201d samples produced by the generator.<\/figcaption><\/figure>\n\n\n\n<p>To accelerate Wan while keeping its visual quality, we build on <strong>Distribution Matching Distillation (DMD)<\/strong>, introduced by Yin et al. in <em>\u201cOne-step Diffusion with Distribution Matching Distillation\u201d (CVPR 2024)<\/em> and extended in <em>\u201cImproved Distribution Matching Distillation for Fast Image Synthesis\u201d (NeurIPS 2024).<\/em><\/p>\n\n\n\n<p>At a high level, DMD provides a way to distill a slow, multi-step diffusion model into a fast few-step generator by matching <strong>distributions<\/strong> rather than individual sampling trajectories.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Setup<\/h4>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Teacher (real score)<\/strong><br>A pre-trained, many-step diffusion model (Wan 2.1 in our case) that we treat as the <strong>target distribution<\/strong>.<\/li>\n\n\n\n<li><strong>Student (generator)<\/strong><br>A generator that produces samples in <strong>4 denoising steps<\/strong>. This is the model we ultimately want to deploy.<\/li>\n\n\n\n<li><strong>Critic (fake score)<\/strong><br>A diffusion-style network that estimates the <strong>score of the student\u2019s distribution<\/strong> at different noise levels.<\/li>\n<\/ul>\n\n\n\n<h4 class=\"wp-block-heading\">Key idea: match distributions, not trajectories<\/h4>\n\n\n\n<p>Traditional distillation for diffusion often tries to make the student <strong>mimic the teacher\u2019s denoising trajectory<\/strong> step by step. This tends to:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Over-constrain the student to specific paths in noise space<\/li>\n\n\n\n<li>Require large precomputed datasets of teacher trajectories<\/li>\n\n\n\n<li>Lead to over-smoothed, low-contrast generations when aggressively reducing steps<\/li>\n<\/ul>\n\n\n\n<p>DMD takes a different approach:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>The student is trained so that the <strong>distribution of its outputs<\/strong> matches the <strong>teacher\u2019s output distribution<\/strong>.<\/li>\n\n\n\n<li>There is <strong>no requirement<\/strong> that a specific student sample follow the same timestep path as any particular teacher sample \u2014 we only care that, over many samples, the <strong>student and teacher live on the same distribution<\/strong>.<\/li>\n\n\n\n<li>Practically, this is implemented by computing gradients from <strong>two score functions<\/strong> (one for the teacher \/ \u201creal\u201d distribution, one for the student \/ \u201cfake\u201d distribution) and using their difference to nudge the student toward higher realism.<\/li>\n<\/ul>\n\n\n\n<p>In our implementation, we also <strong>avoid precomputing a large teacher dataset of trajectories<\/strong> and the heavy regression losses that come with it, following ideas from improved DMD variants. This makes training more <strong>storage-friendly and scalable<\/strong>, which is crucial in the video setting.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Our Pipelines<\/h3>\n\n\n\n<p>We explore two distillation pipelines for fast video generation.<\/p>\n\n\n\n<p>First, we directly distill the base Wan 2.1 model with Distribution Matching Distillation, turning a slow 50-step teacher into a 4-step student that keeps most of the visual quality while cutting inference time dramatically.<\/p>\n\n\n\n<p>Second, in collaboration with NVIDIA and Pika, we finetune Wan on a custom \u201cSquish\u201d video effect and then distill this effect-specific model into a few-step generator\u2014showing that the same DMD pipeline can power both general-purpose and commercial, effect-specialized video generation.<\/p>\n\n\n\n<h1 class=\"wp-block-heading\">Results<\/h1>\n\n\n\n<h3 class=\"wp-block-heading\">General-purpose few-step generator samples<\/h3>\n\n\n\n<figure class=\"wp-block-video\"><video height=\"480\" style=\"aspect-ratio: 832 \/ 480;\" width=\"832\" autoplay controls loop muted src=\"http:\/\/mscvprojects.ri.cmu.edu\/2025team2-2\/wp-content\/uploads\/sites\/136\/2025\/12\/DMD_4.mp4\" playsinline><\/video><\/figure>\n\n\n\n<figure class=\"wp-block-video\"><video height=\"480\" style=\"aspect-ratio: 832 \/ 480;\" width=\"832\" autoplay controls loop muted src=\"http:\/\/mscvprojects.ri.cmu.edu\/2025team2-2\/wp-content\/uploads\/sites\/136\/2025\/12\/DMD_5.mp4\" playsinline><\/video><\/figure>\n\n\n\n<figure class=\"wp-block-video\"><video height=\"480\" style=\"aspect-ratio: 832 \/ 480;\" width=\"832\" autoplay controls loop muted src=\"http:\/\/mscvprojects.ri.cmu.edu\/2025team2-2\/wp-content\/uploads\/sites\/136\/2025\/12\/DMD_6.mp4\" playsinline><\/video><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Effect-specific few-step generator samples<\/h3>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<figure class=\"wp-block-video\"><video height=\"640\" style=\"aspect-ratio: 560 \/ 640;\" width=\"560\" autoplay controls loop muted src=\"http:\/\/mscvprojects.ri.cmu.edu\/2025team2-2\/wp-content\/uploads\/sites\/136\/2025\/12\/FinetuneTest01.mp4\" playsinline><\/video><\/figure>\n<\/div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<figure class=\"wp-block-video\"><video height=\"640\" style=\"aspect-ratio: 560 \/ 640;\" width=\"560\" autoplay controls loop muted src=\"http:\/\/mscvprojects.ri.cmu.edu\/2025team2-2\/wp-content\/uploads\/sites\/136\/2025\/12\/FinetuneTest02.mp4\" playsinline><\/video><\/figure>\n<\/div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<figure class=\"wp-block-video\"><video height=\"640\" style=\"aspect-ratio: 560 \/ 640;\" width=\"560\" autoplay controls loop muted src=\"http:\/\/mscvprojects.ri.cmu.edu\/2025team2-2\/wp-content\/uploads\/sites\/136\/2025\/12\/FinetuneTest03.mp4\" playsinline><\/video><\/figure>\n<\/div>\n<\/div>\n\n\n\n<h3 class=\"wp-block-heading\">Inference speed comparison<\/h3>\n\n\n\n<p>We also measure the inference speed-up after distillation. These results are measured by running inference for 480p videos on a single A100 GPU.<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td><\/td><td>Inference steps<\/td><td>Inference time per video<\/td><td>Relative speed<\/td><\/tr><tr><td>Wan base model<\/td><td>50<\/td><td>219.7s<\/td><td>1x<\/td><\/tr><tr><td>Wan DMD student<\/td><td>4<\/td><td>14.2s<\/td><td>15.4x<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction Motivation High-quality video diffusion models like Wan 2.1 are promising, but their 50-step generation is slow and expensive\u2014about ~220s to generate a 480p 80-frame video in our setup. This makes them difficult to use for applications that need rapid iteration or large-scale sampling, where we want faster inference without catastrophic quality loss. In this &hellip; <\/p>\n<p class=\"link-more\"><a href=\"https:\/\/mscvprojects.ri.cmu.edu\/2025team2-2\/2025-fall-accelerating-video-generation-through-distillation\/\" class=\"more-link\">Continue reading<span class=\"screen-reader-text\"> &#8220;2025 Fall: Accelerating Video Generation through Distillation&#8221;<\/span><\/a><\/p>\n","protected":false},"author":257,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-111","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>2025 Fall: Accelerating Video Generation through Distillation - Making Video Foundation Models Practical: From Physical Modalities to Fast Inference<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/mscvprojects.ri.cmu.edu\/2025team2-2\/2025-fall-accelerating-video-generation-through-distillation\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"2025 Fall: Accelerating Video Generation through Distillation - Making Video Foundation Models Practical: From Physical Modalities to Fast Inference\" \/>\n<meta property=\"og:description\" content=\"Introduction Motivation High-quality video diffusion models like Wan 2.1 are promising, but their 50-step generation is slow and expensive\u2014about ~220s to generate a 480p 80-frame video in our setup. This makes them difficult to use for applications that need rapid iteration or large-scale sampling, where we want faster inference without catastrophic quality loss. In this &hellip; Continue reading &quot;2025 Fall: Accelerating Video Generation through Distillation&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/mscvprojects.ri.cmu.edu\/2025team2-2\/2025-fall-accelerating-video-generation-through-distillation\/\" \/>\n<meta property=\"og:site_name\" content=\"Making Video Foundation Models Practical: From Physical Modalities to Fast Inference\" \/>\n<meta property=\"article:modified_time\" content=\"2025-12-10T21:35:18+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/mscvprojects.ri.cmu.edu\/2025team2-2\/wp-content\/uploads\/sites\/136\/2025\/12\/image-1-scaled.png\" \/>\n\t<meta property=\"og:image:width\" content=\"2560\" \/>\n\t<meta property=\"og:image:height\" content=\"796\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/mscvprojects.ri.cmu.edu\\\/2025team2-2\\\/2025-fall-accelerating-video-generation-through-distillation\\\/\",\"url\":\"https:\\\/\\\/mscvprojects.ri.cmu.edu\\\/2025team2-2\\\/2025-fall-accelerating-video-generation-through-distillation\\\/\",\"name\":\"2025 Fall: Accelerating Video Generation through Distillation - Making Video Foundation Models Practical: From Physical Modalities to Fast Inference\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/mscvprojects.ri.cmu.edu\\\/2025team2-2\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/mscvprojects.ri.cmu.edu\\\/2025team2-2\\\/2025-fall-accelerating-video-generation-through-distillation\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/mscvprojects.ri.cmu.edu\\\/2025team2-2\\\/2025-fall-accelerating-video-generation-through-distillation\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/mscvprojects.ri.cmu.edu\\\/2025team2-2\\\/wp-content\\\/uploads\\\/sites\\\/136\\\/2025\\\/12\\\/image-1-1024x319.png\",\"datePublished\":\"2025-12-10T20:51:30+00:00\",\"dateModified\":\"2025-12-10T21:35:18+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/mscvprojects.ri.cmu.edu\\\/2025team2-2\\\/2025-fall-accelerating-video-generation-through-distillation\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/mscvprojects.ri.cmu.edu\\\/2025team2-2\\\/2025-fall-accelerating-video-generation-through-distillation\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/mscvprojects.ri.cmu.edu\\\/2025team2-2\\\/2025-fall-accelerating-video-generation-through-distillation\\\/#primaryimage\",\"url\":\"https:\\\/\\\/mscvprojects.ri.cmu.edu\\\/2025team2-2\\\/wp-content\\\/uploads\\\/sites\\\/136\\\/2025\\\/12\\\/image-1-scaled.png\",\"contentUrl\":\"https:\\\/\\\/mscvprojects.ri.cmu.edu\\\/2025team2-2\\\/wp-content\\\/uploads\\\/sites\\\/136\\\/2025\\\/12\\\/image-1-scaled.png\",\"width\":2560,\"height\":796},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/mscvprojects.ri.cmu.edu\\\/2025team2-2\\\/2025-fall-accelerating-video-generation-through-distillation\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/mscvprojects.ri.cmu.edu\\\/2025team2-2\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"2025 Fall: Accelerating Video Generation through Distillation\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/mscvprojects.ri.cmu.edu\\\/2025team2-2\\\/#website\",\"url\":\"https:\\\/\\\/mscvprojects.ri.cmu.edu\\\/2025team2-2\\\/\",\"name\":\"Making Video Foundation Models Practical: From Physical Modalities to Fast Inference\",\"description\":\"Authors: Sheldon Liang, Yinghao Zhang; Advisor: John Galeotti, Ethan He, Linnan Wang\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/mscvprojects.ri.cmu.edu\\\/2025team2-2\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"2025 Fall: Accelerating Video Generation through Distillation - Making Video Foundation Models Practical: From Physical Modalities to Fast Inference","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/mscvprojects.ri.cmu.edu\/2025team2-2\/2025-fall-accelerating-video-generation-through-distillation\/","og_locale":"en_US","og_type":"article","og_title":"2025 Fall: Accelerating Video Generation through Distillation - Making Video Foundation Models Practical: From Physical Modalities to Fast Inference","og_description":"Introduction Motivation High-quality video diffusion models like Wan 2.1 are promising, but their 50-step generation is slow and expensive\u2014about ~220s to generate a 480p 80-frame video in our setup. This makes them difficult to use for applications that need rapid iteration or large-scale sampling, where we want faster inference without catastrophic quality loss. In this &hellip; Continue reading \"2025 Fall: Accelerating Video Generation through Distillation\"","og_url":"https:\/\/mscvprojects.ri.cmu.edu\/2025team2-2\/2025-fall-accelerating-video-generation-through-distillation\/","og_site_name":"Making Video Foundation Models Practical: From Physical Modalities to Fast Inference","article_modified_time":"2025-12-10T21:35:18+00:00","og_image":[{"width":2560,"height":796,"url":"https:\/\/mscvprojects.ri.cmu.edu\/2025team2-2\/wp-content\/uploads\/sites\/136\/2025\/12\/image-1-scaled.png","type":"image\/png"}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/mscvprojects.ri.cmu.edu\/2025team2-2\/2025-fall-accelerating-video-generation-through-distillation\/","url":"https:\/\/mscvprojects.ri.cmu.edu\/2025team2-2\/2025-fall-accelerating-video-generation-through-distillation\/","name":"2025 Fall: Accelerating Video Generation through Distillation - Making Video Foundation Models Practical: From Physical Modalities to Fast Inference","isPartOf":{"@id":"https:\/\/mscvprojects.ri.cmu.edu\/2025team2-2\/#website"},"primaryImageOfPage":{"@id":"https:\/\/mscvprojects.ri.cmu.edu\/2025team2-2\/2025-fall-accelerating-video-generation-through-distillation\/#primaryimage"},"image":{"@id":"https:\/\/mscvprojects.ri.cmu.edu\/2025team2-2\/2025-fall-accelerating-video-generation-through-distillation\/#primaryimage"},"thumbnailUrl":"https:\/\/mscvprojects.ri.cmu.edu\/2025team2-2\/wp-content\/uploads\/sites\/136\/2025\/12\/image-1-1024x319.png","datePublished":"2025-12-10T20:51:30+00:00","dateModified":"2025-12-10T21:35:18+00:00","breadcrumb":{"@id":"https:\/\/mscvprojects.ri.cmu.edu\/2025team2-2\/2025-fall-accelerating-video-generation-through-distillation\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/mscvprojects.ri.cmu.edu\/2025team2-2\/2025-fall-accelerating-video-generation-through-distillation\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/mscvprojects.ri.cmu.edu\/2025team2-2\/2025-fall-accelerating-video-generation-through-distillation\/#primaryimage","url":"https:\/\/mscvprojects.ri.cmu.edu\/2025team2-2\/wp-content\/uploads\/sites\/136\/2025\/12\/image-1-scaled.png","contentUrl":"https:\/\/mscvprojects.ri.cmu.edu\/2025team2-2\/wp-content\/uploads\/sites\/136\/2025\/12\/image-1-scaled.png","width":2560,"height":796},{"@type":"BreadcrumbList","@id":"https:\/\/mscvprojects.ri.cmu.edu\/2025team2-2\/2025-fall-accelerating-video-generation-through-distillation\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/mscvprojects.ri.cmu.edu\/2025team2-2\/"},{"@type":"ListItem","position":2,"name":"2025 Fall: Accelerating Video Generation through Distillation"}]},{"@type":"WebSite","@id":"https:\/\/mscvprojects.ri.cmu.edu\/2025team2-2\/#website","url":"https:\/\/mscvprojects.ri.cmu.edu\/2025team2-2\/","name":"Making Video Foundation Models Practical: From Physical Modalities to Fast Inference","description":"Authors: Sheldon Liang, Yinghao Zhang; Advisor: John Galeotti, Ethan He, Linnan Wang","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/mscvprojects.ri.cmu.edu\/2025team2-2\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/mscvprojects.ri.cmu.edu\/2025team2-2\/wp-json\/wp\/v2\/pages\/111","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/mscvprojects.ri.cmu.edu\/2025team2-2\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/mscvprojects.ri.cmu.edu\/2025team2-2\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/mscvprojects.ri.cmu.edu\/2025team2-2\/wp-json\/wp\/v2\/users\/257"}],"replies":[{"embeddable":true,"href":"https:\/\/mscvprojects.ri.cmu.edu\/2025team2-2\/wp-json\/wp\/v2\/comments?post=111"}],"version-history":[{"count":15,"href":"https:\/\/mscvprojects.ri.cmu.edu\/2025team2-2\/wp-json\/wp\/v2\/pages\/111\/revisions"}],"predecessor-version":[{"id":173,"href":"https:\/\/mscvprojects.ri.cmu.edu\/2025team2-2\/wp-json\/wp\/v2\/pages\/111\/revisions\/173"}],"wp:attachment":[{"href":"https:\/\/mscvprojects.ri.cmu.edu\/2025team2-2\/wp-json\/wp\/v2\/media?parent=111"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}