合肥生活安徽新聞合肥交通合肥房產(chǎn)生活服務(wù)合肥教育合肥招聘合肥旅游文化藝術(shù)合肥美食合肥地圖合肥社保合肥醫(yī)院企業(yè)服務(wù)合肥法律

        代做CMPUT 328、代寫(xiě)VAE and Diffusion Models

        時(shí)間:2023-12-02  來(lái)源:合肥網(wǎng)hfw.cc  作者:hfw.cc 我要糾錯(cuò)



        Assignment 5
        Generative Models (VAE and Diffusion Models)
        CMPUT **8 - Fall 2023
        1 Assignment Description
        The main objective in this assignment is to implement and evaluate two of the most popular generative
        models, namely Variational Auto-Encoders (VAE) and Diffusion Models. Our goal is to implement
        each of these models on the FashionMNIST dataset and see how such models can generate new images.
        However, instead of simply training the models on the whole dataset, we would like to be able to tell the
        model from which class it should generate samples. Hence, we are going to implement class-conditional VAEs
        and Diffusion Models.
        Figure 1: Sample images from the FashionMNIST dataset
        Note: Please the watch the video provided for this assignment for better understanding the tasks and
        objectives.
        2 What You Need to Do
        For this assignment, 5 files are given to you:
        • A5 vae submission.py
        • A5 vae helper.ipynb
        • A5 diffusion submission.py
        • A5 diffusion helper.ipynb
        • classifier.pt
        You only need to submit “A5 vae submission.py”, “A5 diffusion submission.py”, and weights
        of your networks (“vae.pt”, “diffusion.pt”).
        1
        2.1 Task 1: Conditional VAE (40%)
        2.1.1 A5 vae submission.py
        In this file there is a skeleton of a VAE class which you are required to complete.
        1. For the VAE you need to implement the following components as specified in the code file: Encoder,
        mu net (for estimating the mean), logvar net (for estimating the log-variance), class embedding module
        (for properly embedding the labels), and decoder (for reconstructing the samples).
        2. The forward function of the VAE class must receive the batch of images and their labels, and return
        the reconstructed image, estimated mean (output of mu net), and the estimated logvar (output of the
        logvar net).
        3. You need to fill in the “reparameterize” method of the class given mu and logvar vectors (as provided
        in the code), and implement the reparameterization trick to sample from a Gaussian distribution with
        mean “mu”, and log-variance “logvar”.
        4. You need to fill in the “kl loss” method of the class given mu and logvar vectors, and compute the
        Kullback-Leibler (KL) divergence between the Gaussian distribution with mean “mu” and log-variance
        “logvar” and the standard Gaussian distribution N (0, I). Recall that if the the mean and variance of
        the a Gaussian distribution are µ and σ
        2
        , respectively, the KL divergence with the standard Gaussian
        can be simply calculated as
        KL(N (µ, σ2
        )∥N (0, I)) = 1
        2
        Xn
        i=1

        2
        i + µ
        2
        i − 1 − ln (σ
        2
        i
        )) (1)
        5. You need to fill in the “get loss” method of the class given the input batch of images and their labels.
        In this method you need to find the estimated mu, estimated logvar, and the reconstructed image, find
        the KL divergence using mu and logvar and find the reconstruction loss between the input image and
        the reconstructed image. Usually for the reconstruction loss the Binary Cross-Entropy loss is used.
        6. Most importantly, you need to fill in the “generate sample” method of the class, which receives the
        number of images to be generated along with their labels, and generates new samples from the VAE.
        Basically, you need to sample from standard Gaussian noise, combine it with the class embedding and
        pass it to the networks decoder to generate new images.
        7. Please do not rename the VAE class and its methods. You can add as many extra functions/classes as
        you need in this file. You can change the arguments passed to the “ init ” method of the class based
        on your needs.
        8. Finally, you need to complete the “load vae and generate” function at the bottom of the file, which
        merely requires you to define your VAE.
        2.1.2 A5 vae helper.ipynb
        This file is provided to you so you can train and validate your model more simply. Once you are done with
        your implementation of the VAE class you can start running the blocks of this file to train your model, save
        the weights of your model, and generate new samples. You only need to specify some hyperparameters such
        as batch size, optimizer, learning rate, and epochs, and of course your model.
        There is also a brief description of the VAEs at the beginning of this file.
        2
        2.2 Task 2: Conditional Diffusion Model (60%)
        2.2.1 A5 diffusion submission.py
        In this file there are skeletons of a VarianceScheduler class, NoiseEstimatingNet class, and the DiffusionModel
        class, which you are required to complete.
        1. For the VarianceScheduler class you need to store the statistical variables required for making the
        images noisy and sampling from the diffusion model, such as βt, αt, and ¯αt. You also need to complete
        the “add noise” method which receives a batch of images and a batch of timesteps and computes the
        noisy version of the images based on the timesteps.
        2. You need to complete the NoiseEstimatingNet class, which is supposed to be a neural network (preferably a UNet) which receives the noisy version of the image, the timestep, and the label of the image,
        and estimates the amount of noise added to the image. You are encouraged to look at the network
        architectures you have seen in the notebooks provided to you on eClass resources. Note that you can
        add extra functions and classes (e.g., for time embedding module) in this file.
        3. You need to complete the “DiffusionModel” class. The forward method of the class receives a batch of
        input images and their labels, randomly adds noise to the images, estimates the noise using NoiseEstimating network, and finally computes the loss between the ground truth noise and the estimated noise.
        The forward method outputs the loss.
        4. Most importantly, you need to fill in the “generate sample” method of the DiffusionModel class which
        receives the number of images to be generated along with their labels, and generates new samples using
        the diffusion model.
        5. You need to fill in the “get loss” method of the class given the input batch of images and their labels.
        In this method you need to find the estimated mu, estimated logvar, and the reconstructed image, find
        the KL divergence using mu and logvar and find the reconstruction loss between the input image and
        the reconstructed image. Usually for the reconstruction loss the Binary Cross-Entropy loss is used.
        6. Most importantly, you need to fill in the “generate sample” method of the class, which receives the
        number of images to be generated along with their labels, and generates new samples from the VAE.
        Basically, you need to sample from standard Gaussian noise, combine it with the class embedding and
        pass it to the networks decoder to generate new images.
        7. Please do not rename the VarianceScheduler, NoiseEstimatingNet, and DiffusionModel classes and their
        methods. You can add as many extra functions/classes as you need in this file.
        8. Finally, you need to complete the “load diffusion and generate” function at the bottom of the file,
        which merely requires you to define your VarianceScheduler and NoiseEstimatingNet.
        2.2.2 A5 diffusion helper.ipynb
        This file is provided to you so you can train and validate your model more simply. Once you are done
        with your implementation of the VarianceScheduler, NoiseEstimatingNet, and DiffusionModel classes you
        can start running the blocks of this file to train your model, save the weights of your model, and generate
        new samples. You only need to specify some hyperparameters such as batch size, optimizer, learning rate,
        and epochs, and of course your model.
        3
        There is also a brief description of the Diffusion Models at the beginning of this file, including how to
        make the noisy images, and how to sample from the diffusion model, which could be helpful.
        3 Deliverables
        • The correct (working) implementation of the explained modules in the previous section.
        • For the diffusion model use a number of diffusion steps less than or equal to 1000 for a roughly fast
        image generation.
        • We verify the quality of the images generated by your models by using a classifier trained over the
        dataset. This classifier is provided to you in the helper notebooks, and without changing the code you
        can run the corresponding blocks to load the classifier and apply it to your generated images.
        • For the VAE model, a final accuracy of ≥ 65% gets a full mark and an accuracy of < 55% gets no mark.
        You mark will linearly vary for any accuracy in between.
        • For the Diffusion Model, a final accuracy of ≥ 60% gets a full mark and an accuracy of < 50% gets no
        mark. You mark will linearly vary for any accuracy in between.
        In the following you can see some sample outputs of a simple VAE and a simple DiffusionModel trained
        on the FashionMNIST.
        請(qǐng)加QQ:99515681 或郵箱:99515681@qq.com   WX:codehelp

        掃一掃在手機(jī)打開(kāi)當(dāng)前頁(yè)
      1. 上一篇:代做 COMP33 Modern Technologies程序語(yǔ)言代做
      2. 下一篇:ACS11001代做、 Embedded Systems程序語(yǔ)言代寫(xiě)
      3. 無(wú)相關(guān)信息
        合肥生活資訊

        合肥圖文信息
        急尋熱仿真分析?代做熱仿真服務(wù)+熱設(shè)計(jì)優(yōu)化
        急尋熱仿真分析?代做熱仿真服務(wù)+熱設(shè)計(jì)優(yōu)化
        出評(píng) 開(kāi)團(tuán)工具
        出評(píng) 開(kāi)團(tuán)工具
        挖掘機(jī)濾芯提升發(fā)動(dòng)機(jī)性能
        挖掘機(jī)濾芯提升發(fā)動(dòng)機(jī)性能
        海信羅馬假日洗衣機(jī)亮相AWE  復(fù)古美學(xué)與現(xiàn)代科技完美結(jié)合
        海信羅馬假日洗衣機(jī)亮相AWE 復(fù)古美學(xué)與現(xiàn)代
        合肥機(jī)場(chǎng)巴士4號(hào)線
        合肥機(jī)場(chǎng)巴士4號(hào)線
        合肥機(jī)場(chǎng)巴士3號(hào)線
        合肥機(jī)場(chǎng)巴士3號(hào)線
        合肥機(jī)場(chǎng)巴士2號(hào)線
        合肥機(jī)場(chǎng)巴士2號(hào)線
        合肥機(jī)場(chǎng)巴士1號(hào)線
        合肥機(jī)場(chǎng)巴士1號(hào)線
      4. 短信驗(yàn)證碼 酒店vi設(shè)計(jì) deepseek 幣安下載 AI生圖 AI寫(xiě)作 aippt AI生成圖片 trae

        關(guān)于我們 | 打賞支持 | 廣告服務(wù) | 聯(lián)系我們 | 網(wǎng)站地圖 | 免責(zé)聲明 | 幫助中心 | 友情鏈接 |

        Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網(wǎng) 版權(quán)所有
        ICP備06013414號(hào)-3 公安備 42010502001045

        主站蜘蛛池模板: 精品一区二区三区免费毛片爱 | 午夜福利av无码一区二区| 国产精品无码一区二区在线观一 | 无码日韩精品一区二区免费暖暖 | 亚洲国产一区明星换脸| 无码毛片视频一区二区本码| 亚洲综合一区二区| 一区二区三区伦理高清| 精品人体无码一区二区三区| 一区二区乱子伦在线播放| 久久久无码精品人妻一区| 国偷自产Av一区二区三区吞精| 在线观看日本亚洲一区| 国产午夜三级一区二区三| 亚洲一区二区三区偷拍女厕| 蜜桃视频一区二区三区在线观看 | 国产一区在线视频观看| 日韩人妻无码一区二区三区99| 久久精品无码一区二区无码| 波多野结衣中文字幕一区二区三区| 中文字幕aⅴ人妻一区二区| 乱码精品一区二区三区| 色综合视频一区二区三区| 麻豆AV无码精品一区二区| 亚洲一区动漫卡通在线播放| 夜夜精品视频一区二区| 亚洲综合一区二区三区四区五区| 高清一区二区三区视频| 无码国产亚洲日韩国精品视频一区二区三区 | 中文字幕无线码一区| 99在线精品一区二区三区| 中文字幕久久久久一区| 伊人色综合网一区二区三区| 国产精品自在拍一区二区不卡| 国产成人精品久久一区二区三区| 国产精品熟女一区二区| 亚洲AV无码一区东京热久久| 精品视频一区二区观看| 成人一区专区在线观看| 亚洲男女一区二区三区| 乱中年女人伦av一区二区|