精品深夜AV无码一区二区_伊人久久无码中文字幕_午夜无码伦费影视在线观看_伊人久久无码精品中文字幕

FIT5225 代做、代寫 java,c++語言程序

時間:2024-04-21  來源:  作者: 我要糾錯


 


Assignment 1
FIT5225 2024 SM1
CloudDetect:
Creating and Deploying an Image Object Detection Web Service within a Containerised Environment in Clouds
1 Synopsis and Background
This project aims to build a web-based system that we call CloudDetect. It will allow end-users to send an image to a web service hosted by Docker containers and receive a list of objects detected in their uploaded image. The project will make use of the YOLO (You Only Look Once) library, a state-of-the- art real-time object detection system, and OpenCV (Open-Source Computer Vision Library) to perform the required image operations/transformations. Both YOLO and OpenCV are Python-based open-source computer vision and machine learning software libraries. The web service will be hosted as containers in a Kubernetes cluster. Kubernetes will be used as the container orchestration system. The object detection web service is also designed to be a RESTful API that can use Python’s Flask library. We are interested in examining the performance of CloudDetect by varying the rate of requests sent to the system (demand) using load generation tools like Locust and the number of existing Pods within the Kubernetes cluster (resources).
This assignment has the following objectives:
• Writing a python web service that accepts images in JSON object format, uses YOLO and OpenCV to process images, and returns a JSON object with a list of detected objects.
• Building a Docker Image for the object detection web service.
• Creating a Kubernetes cluster on virtual machines (instances) in the Oracle Cloud Infrastructure
(OCI).
• Deploying a Kubernetes service to distribute inbound requests among pods that are running the object detection service.
• Writing a load generation scripts using Loucust.
• Testing the system under varying load and number of pods conditions. You can focus on these objectives one after another to secure partial marks.
2 The web service - [10 Marks]
You are required to develop a RESTful API that allows clients to upload images to the server. You must use Flask to build your web service and any port over 1024. Your Flask server should be able to handle multiple clients concurrently. Each image should be sent to the web service using an HTTP POST request containing a JSON object with a unique ID (e.g. UUID) and a base64-encoded image. Since an
1

image is binary data, it cannot be directly inserted into JSON. You must convert the image into a textual representation that can then be used as a normal string. The most common way to encode an image into text is using the base64 method. A sample JSON request used to send an image could be as follows:
{
"id":"06e8b9e0-8d2e-11eb-8dcd-0242ac130003",
"image":"YWRzZmFzZGZhc2RmYXNkZmFzZGYzNDM1MyA7aztqMjUzJyBqaDJsM2 ..."
}
The web service creates a thread per request and uses YOLO and OpenCV python libraries to detect objects in the image. As a suggestion, you can begin with the image encoding part of the JSON message, consider developing your web service and testing it with basic Postman HTTP requests. Once you’ve confirmed that your web service functions correctly, you can proceed to create your client requests in accordance with the webservice API using Locust. For each image (request), your web service returns a JSON object with a list of all objects detected in that image as follows:
{
"id":"The id from the client request",
"objects": [
}
    {
    "label": "human/book/cat/...",
    "accuracy": a real number between 0-1,
    "rectangle": {
        "height": number,
        "left": number,
        "top": number,
        "width": number
} }
... ]
The “id” is the same id sent by the client along with the image. This is used to associate an asynchronous response with the request at the client-side. The “label” represents the type of object detected, e.g., cat, book, etc. “Accuracy” represents the precision in object detection and a rectangle is a JSON object showing the position of a box around the object in the image. A sample response is shown below:
{
"id": "2b7082f5-d31a-54b7-a46e-5e4889bf69bd",
"objects": [
    {
      "label": "book",
      "accuracy": 0.7890481352806091,
      "rectangle": {"height": 114, "left": 380, "top": 363, "width": 254}
}, {
      "label": "cat",
      "accuracy": 0.6877481352806091,
      "rectangle": {"height": 114, "left": 180, "top": 63, "width": 254}
}
2

] }
You are required to use the yolov3-tiny framework to develop a fast and reliable RESTful API for object detection. You will use pre-trained network weights, so there is no need to train the object detection program yourself1. We have provided the yolov3-tiny config file and weights in the yolo_tiny_configs.zip file. Note that this network is trained on the COCO dataset (http://cocodataset.org/#home). We have also provided you with a sample group of images (128 images in inputfolder in a zip file) from this dataset, and you should use them for testing2.
3 Dockerfile - [10 Marks]
Docker builds images by reading the instructions from a file known as Dockerfile. Dockerfile is a text file that contains all ordered commands needed to build a given image. You are required to create a Dockerfile that includes all the required instructions to build your Docker image. You can find Dockerfile reference documentation here: https://docs.docker.com/engine/reference/builder/.
To reduce complexity, dependencies, file sizes, and build times, avoid installing extra or unnecessary packages just because they might be “nice to have.” For example, you don’t need to include a text editor in your image. Optimisation of your Dockerfile while keeping it easy to read and maintain is important.
4 Kubernetes Cluster - [10 Marks]
You are tasked to install and configure a Kubernetes cluster on OCI VMs. For this purpose, you are going to install K8s on three VM instances on OCI (All your VM instances should be Intel machines, shape VM.Standard.E4.Flex, 8GB Memory and 4 OCPUs). You need to setup a K8s cluster with 1 controller and 2 worker nodes that run on OCI VMs. You need to install Docker engine on VMs. You should configure your K8s cluster with Kubeadm.
5 Kubernetes Service - [20 Marks]
After you have a running Kubernetes cluster, you need to create service and deployment configurations that will in turn create and deploy required pods in the cluster. The official documentation of Kubernetes contains various resources on how to create pods from a Docker image, set CPU and/or memory limitations and the steps required to create a deployment for your pods using selectors. Please make sure you set CPU request and CPU limit to “0.5” and memory request and limit to “512MiB” for each pod.
Initially, you will start with a single pod to test your web service and gradually increase the number as described in the Section 7. The preferred way of achieving this is by creating replica sets and scaling them accordingly.
Finally, you are required to expose your deployment to enable communication with the web service running inside your pods. You can make use of Service and NodePort to expose your deployment. You will need to call the object detection service from various locations as described in the next section. OCI restricts access to your VMs through its networking security measures. Therefore, you should ensure that your controller instance has all the necessary ports opened and that necessary network configurations,
1For your reference, a sample network weights for yolov3-tiny can be found at https://pjreddie.com/media/files/ yolov3-tiny.weights and required configuration files and more information can be found at https://github.com/ pjreddie/darknet and https://github.com/pjreddie/darknet/tree/master/cfg
2For your reference, the full COCO dataset can be found at http://images.cocodataset.org/zips/test2017.zip. 3
 
including OCI “Security Lists,” are properly set up. You may also need to open ports on instance-level firewall (e.g. firewall or iptables).
6 Locust load generation - [10 Marks]
Create a Locust script to simulate concurrent users accessing your RESTful API. Ensure the API can handle the load and respond promptly without crashing or experiencing significant delays. Your next task involves monitoring and recording relevant performance metrics such as response time, query per second (QPS), and error rate during load testing.
First, install Locust (if not already installed) and familiarize yourself with its documentation to create load-testing scenarios. Configure the Locust script to gradually increase the number of users and sustain load to identify potential bottlenecks. Your script should be able to send 128 images provided to the RESTful API deployed in the Kubernetes cluster.
Ensure the script encodes the images to base64 and embeds them into JSON messages as specified in Section 2 for seamless integration. note: you can reuse part of your client code developed in 2.
7 Experiments and Report - [40 Marks]
Your next objective is to test your system for the maximum load your service can handle under a different number of resources (pods) in your cluster. When the system is up and running, you will run experiments with various number of pods (available resources) in the cluster.
You need to conduct two sets of experiments: one where the Locust client runs locally on the master node of Kubernetes, and another where it runs on a VM instance in your pt-project in Nectar. The number of pods must be scaled to 1, 2, 4, and 8. Considering the limited CPU and Memory allocated to each pod (CPU request and limit: 0.5, memory request and limit: 512MiB), increasing the number of pods enhances resource accessibility.
Your goal is to determine the maximum number of concurrent users the system can handle before experiencing failures. To achieve this, vary the number of concurrent users in the Locust client to analyze the impact of increased load on the deployed service. You can set the spawn rate to a reasonable value to gradually increase the number of users for various pod configurations. For each trial, continuously send 128 images to the server in a loop until the response time stabilizes and the success rate remains at 100%.
The response time of a service is the duration between when an end-user makes a request and when a response is sent back. This data is automatically collected by Locust. When the first unsuccessful request occurs, note the maximum number of concurrent users, decrease by it by one, and record this number. Then rerun the experiment with the recorded number of concurrent users and a spawn rate of 1 user/second to ensure a 100% success rate.
Finally, report your results along with the average response time in table format, as shown below: Table 1: Experiment Results
   # of Pods
1 2 4 8
Max Users
Nectar
Avg. Response Time (ms)
Max Users
Master
Avg. Response Time (ms)
  Ensure to run each experiment multiple times to verify the correctness of your experiment and con- sistency of average response time values across various experiments. This is because network traffic and
4

some other environmental aspects might affect your experiments.
In your report, discuss this table and justify your observations. To automate your experimentation and
collect data points, you can write a script that automatically varies the parameters for the experiments and collects data points.
Your report must be a maximum 1500 words excluding your table and references. You need to include the following in your report:
• The table as explained above.
• Explanation of results and observations in your experiments (1000 words).
• Select three challenges of your choice from the list of distributed systems challenges discussed in the first week seminar, give a practical example from your project that illustrates that challenge and how it is addressed in your system (500 words).
Use 12pt Times font, single column, 1-inch margin all around. Put your full name, your tutor name, and student number at the top of your report.
8 Video Recording
You should submit a video recording and demonstrate your assignment. You should cover the following items in your Video Submission for this assignment:
• Web Service - (approx 2 minutes) Open the source code of your application and briefly explain your program’s methodology and overall architecture. Put emphasis on how web service is created, how JSON messages are created.
• Dockerfile - (approx 1 minute) Briefly explain your approach for containerising the application. Show your Dockerfile, explain it briefly.
• Kubernetes Cluster and Kubernetes Service - (approx 4 minutes)
1. Briefly discuss how did you install Docker and Kubernetes and mention which version of these tools are being used. Also mention that which networking module of Kuberentes is used in your setup and why?
2. List your cluster nodes (kubectl get nodes, using -o wide) and explain cluster-info.
3. Show your deployment YAML file and briefly explain it.
4. Show your service configuration file and briefly explain it.
5. Explain and show how your docker image is built and loaded in your Kubernetes cluster.
6. Show your VMs in OCI dashboard.
7. Show the public IP address of the controller node, and its security group. If you have VCN and subnets you can discuss them as well. Explain why you have configured your security groups and port(s).
8. For the 4 pods configuration, show that your deployment is working by listing your pods. Then show your service is working and can be reached from outside your controller VM by running the client code on your local computer.
9. Finally, show the log for pods to demonstrate load balancing is working as expected.
• Locust script - (approx 1 minutes) Explain your Locust client and show a quick demo.
5

9

• • • •
• • •
Technical aspects
Keep your setup up and running during the marking period, as we may access and test your service. Do not remove anything before the teaching team’s announcement. Make sure you provide the URL of your service endpoint in the ReadMe.txt.
You can use any programming language. Note that the majority of this project description is written based on Python.
Make sure you install all the required packages wherever needed. For example, python, Yolov3-tiny, opencv-python, flask, NumPy and etc.
When you are running experiments, do not use your bandwidth for other network activities, as it might affect your results.
Since failure is probable in cloud environments, make sure you will take regular backups of your work and snapshot of VMs.
Make sure your Kubernetes service properly distributes tasks between pods (check logs). Make sure you limit the CPU and memory for each pod (0.5 and 512MiB).
It’s important to ensure that your cluster is functioning correctly after each experiment and if rede- ployment might be necessary in some cases.
• Experiments - There is NO need for any discussion regarding this part in the video.
Caution: Please note that if you do not cover the items requested above in your video you will lose marks even if your code and configurations work properly.
Caution: Your video should be no longer than 8 minutes. Please note that any content exceeding this duration will result in penalties. Also, kindly refrain from adjusting the recording speed of your video to 1.5x or 2x. The examiners may penalize you if they are unable to follow your talk at a normal pace or understand the content of your presentation.
Recommendation: To ensure that you do not miss any important points in your video recording and stay on track with time, we recommend preparing a script for yourself beforehand. During the recording session, it can be helpful to refer to your script and read through it as needed. You should also prepare all the commands you need to copy paste before recoding.
10 Submission
You need to submit four files via Moodle:
• A report in PDF format as requested.
• A .ZIP file (not .RAR or other formats) containing the following:
1. Your Dockerfile.
2. Your web service source code.
3. Your Kubernetes deployment and service configurations (YAML files). 4. Your Locust Client script.
5. Any script that automates running experiments if you have one.
6

• A ReadMe.txt file with:
1. The URL to a 8-minute video demonstrating your system. You can use Google Drive,
Panopto, or YouTube, e.g., https://www.youtube.com/watch?v=8frmloR4gTY&t=7s.
2. The URL to your web service endpoint, e.g, http://118.138.43.2:5000/api/object detection.
Please make sure the video can be accessed by the teaching team (all tutors and the lecturer). If you would like to inform us regarding anything else you can use this ReadMe file.

請加QQ:99515681  郵箱:99515681@qq.com   WX:codinghelp

 

 

 

 

 

 

標簽:

掃一掃在手機打開當前頁
  • 上一篇:代做CITS5508、代做 Python 語言程序
  • 下一篇:COMP282代做、C++設計程序代寫
  • 無相關信息
    昆明生活資訊

    昆明圖文信息
    蝴蝶泉(4A)-大理旅游
    蝴蝶泉(4A)-大理旅游
    油炸竹蟲
    油炸竹蟲
    酸筍煮魚(雞)
    酸筍煮魚(雞)
    竹筒飯
    竹筒飯
    香茅草烤魚
    香茅草烤魚
    檸檬烤魚
    檸檬烤魚
    昆明西山國家級風景名勝區
    昆明西山國家級風景名勝區
    昆明旅游索道攻略
    昆明旅游索道攻略
  • 短信驗證碼平臺 理財 WPS下載

    關于我們 | 打賞支持 | 廣告服務 | 聯系我們 | 網站地圖 | 免責聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 kmw.cc Inc. All Rights Reserved. 昆明網 版權所有
    ICP備06013414號-3 公安備 42010502001045

    精品深夜AV无码一区二区_伊人久久无码中文字幕_午夜无码伦费影视在线观看_伊人久久无码精品中文字幕
    <samp id="e4iaa"><tbody id="e4iaa"></tbody></samp>
    <ul id="e4iaa"></ul>
    <blockquote id="e4iaa"><tfoot id="e4iaa"></tfoot></blockquote>
    • <samp id="e4iaa"><tbody id="e4iaa"></tbody></samp>
      <ul id="e4iaa"></ul>
      <samp id="e4iaa"><tbody id="e4iaa"></tbody></samp><ul id="e4iaa"></ul>
      <ul id="e4iaa"></ul>
      <th id="e4iaa"><menu id="e4iaa"></menu></th>
      免费国产亚洲视频| 亚洲丝袜精品丝袜在线| 欧美人牲a欧美精品| 色呦呦国产精品| 色综合天天综合色综合av| 99久久精品99国产精品 | 欧美日韩精品欧美日韩精品一综合| 国产成人免费视频网站 | 欧美国产精品一区二区三区| 久久精品一区四区| 国产农村妇女精品| 最近中文字幕一区二区三区| 亚洲欧美偷拍另类a∨色屁股| 亚洲激情自拍视频| 日精品一区二区三区| 免费人成精品欧美精品| 黑人巨大精品欧美黑白配亚洲| 精品系列免费在线观看| 大胆欧美人体老妇| 欧美影视一区在线| 欧美刺激午夜性久久久久久久| 久久综合成人精品亚洲另类欧美| 久久久www成人免费无遮挡大片| 久久久亚洲精品石原莉奈| 国产精品免费网站在线观看| 夜色激情一区二区| 久久疯狂做爰流白浆xx| www.亚洲精品| 欧美精品精品一区| 欧美激情一区二区三区全黄| 自拍偷自拍亚洲精品播放| 午夜亚洲福利老司机| 国产伦精品一区二区三区在线观看| 99热国产精品| 在线不卡的av| 国产精品久久久久精k8| 肉肉av福利一精品导航| 成人性色生活片| 欧美一区二区精品| 国产精品萝li| 免费成人结看片| 色婷婷精品久久二区二区蜜臂av| 欧美一区二区网站| 亚洲欧美激情插| 国产成人日日夜夜| 91精品国产色综合久久| 亚洲少妇30p| 国产乱对白刺激视频不卡| 欧美日韩三级视频| 中文字幕一区二区三中文字幕| 日韩av在线播放中文字幕| 97久久人人超碰| 久久免费的精品国产v∧| 午夜视频在线观看一区| 97久久精品人人做人人爽| 久久蜜桃香蕉精品一区二区三区| 亚洲h在线观看| 色一情一乱一乱一91av| 国产精品视频在线看| 狠狠色丁香久久婷婷综合丁香| 欧美日韩黄色一区二区| 中文字幕中文在线不卡住| 国产一区视频导航| 日韩视频在线一区二区| 日韩成人午夜精品| 欧美裸体一区二区三区| 亚洲一区在线电影| 在线欧美日韩国产| 亚洲资源在线观看| 精品视频色一区| 亚洲一级二级三级在线免费观看| 色悠悠久久综合| 亚洲精品成a人| 91丝袜国产在线播放| 日韩美女精品在线| 色婷婷综合中文久久一本| 亚洲视频免费看| 在线观看日韩av先锋影音电影院| 中文字幕字幕中文在线中不卡视频| 成人免费视频一区二区| 日韩毛片高清在线播放| 色婷婷精品久久二区二区蜜臂av| 亚洲人成伊人成综合网小说| 91麻豆国产福利在线观看| 樱花影视一区二区| 在线观看日韩av先锋影音电影院| 亚洲一区二区三区在线播放| 欧美日韩mp4| 久久99精品国产麻豆不卡| 精品成人私密视频| 成人动漫在线一区| 一区二区三区在线观看视频| 欧美日韩国产bt| 久久国产日韩欧美精品| 国产色产综合产在线视频| 99国产精品99久久久久久| 亚洲自拍偷拍av| 欧美mv日韩mv国产网站| 成人av午夜电影| 亚洲h精品动漫在线观看| 精品免费日韩av| 99免费精品视频| 五月婷婷综合在线| 欧美国产精品一区| 欧美日韩国产经典色站一区二区三区 | eeuss鲁片一区二区三区在线观看| 亚洲天堂免费在线观看视频| 欧美日本高清视频在线观看| 韩国三级在线一区| 亚洲视频狠狠干| 日韩欧美一二区| 91原创在线视频| 精品一二三四在线| 亚洲午夜电影在线观看| 久久久久久久综合日本| 欧美亚洲禁片免费| 大白屁股一区二区视频| 午夜久久久久久| 亚洲三级电影全部在线观看高清| 欧美一区二区在线不卡| a4yy欧美一区二区三区| 久久成人免费网站| 亚洲国产视频在线| 国产精品麻豆视频| 精品国产91久久久久久久妲己| 在线观看日韩av先锋影音电影院| 国产在线视频一区二区三区| 亚洲成人动漫一区| 亚洲免费色视频| 日本一区二区三区在线不卡| 欧美一区二区观看视频| 欧美色图天堂网| 99热99精品| 成人av影视在线观看| 国产精品一区二区久久精品爱涩 | 精品久久国产老人久久综合| 欧美性大战xxxxx久久久| 成人av午夜影院| 福利一区二区在线| 国产一区不卡精品| 黄色精品一二区| 经典一区二区三区| 久久91精品久久久久久秒播| 日韩黄色在线观看| 日韩在线观看一区二区| 亚洲丶国产丶欧美一区二区三区| 亚洲蜜臀av乱码久久精品| 综合网在线视频| 亚洲欧美日韩久久精品| 亚洲精品一二三| 亚洲美女屁股眼交3| 亚洲男人的天堂在线观看| 国产精品久久综合| 国产精品白丝在线| 亚洲欧美综合色| 亚洲精品国产视频| 一区二区三区美女视频| 亚洲一区二区三区激情| 香蕉av福利精品导航| 午夜成人免费电影| 久久99久久99| 国产suv精品一区二区6| 波多野结衣91| 色成人在线视频| 91麻豆精品国产91久久久资源速度| 欧美日韩另类一区| 欧美成人a∨高清免费观看| 久久久噜噜噜久久中文字幕色伊伊| 精品国产亚洲在线| 中文字幕在线观看不卡| 一区二区三区免费看视频| 青青草国产精品亚洲专区无| 国产精品一线二线三线精华| 成人爱爱电影网址| 欧美四级电影网| 精品国产免费一区二区三区香蕉| 国产欧美精品一区aⅴ影院 | 在线播放中文字幕一区| 久久久久国产精品麻豆| 中文字幕在线不卡| 日韩和的一区二区| 国产成人久久精品77777最新版本| 99在线精品一区二区三区| 欧美三级资源在线| 国产日韩欧美电影| 亚洲第一搞黄网站| 国产91精品露脸国语对白| 欧美视频在线播放| 久久精品夜夜夜夜久久| 一区二区三区成人在线视频| 极品瑜伽女神91| 欧美三级在线看| 国产精品丝袜一区| 蜜臀久久99精品久久久久久9 | 极品美女销魂一区二区三区| 91色婷婷久久久久合中文| 亚洲精品一区二区三区蜜桃下载| 亚洲色图制服诱惑| 国产一区91精品张津瑜| 欧美系列在线观看|