99爱在线视频这里只有精品_窝窝午夜看片成人精品_日韩精品久久久毛片一区二区_亚洲一区二区久久

合肥生活安徽新聞合肥交通合肥房產生活服務合肥教育合肥招聘合肥旅游文化藝術合肥美食合肥地圖合肥社保合肥醫院企業服務合肥法律

代寫CS 6476、代做Python/Java程序

時間:2024-04-26  來源:合肥網hfw.cc  作者:hfw.cc 我要糾錯



GEORGIA TECH’S CS 6**6 COMPUTER VISION
Final Project : Classification and Detection with
Convolutional Neural Networks
April 1, 2023
PROJECT DESCRIPTION AND INSTRUCTIONS
Description
For this topic you will design a digit detection and recognition system which takes in a single
image and returns any sequence of digits visible in that image. For example, if the input image
contains a home address 123 Main Street, you algorithm should return “123”. One step in your
processing pipeline must be a Convolutional Neural Network (CNN) implemented in TensorFlow or PyTorch . If you choose this topic, you will need to perform additional research about
CNNs. Note that the sequences of numbers may have varying scales, orientations, and fonts,
and may be arbitrarily positioned in a noisy image.
Sample Dataset: http://ufldl.stanford.edu/housenumbers/
Related Lectures (not exhaustive): 8A-8C, 9A-9B
Problem Overview
Methods to be used: Implement a Convolutional Neural Network-based method that is capable of detecting and recognizing any sequence of digits visible in an image.
RULES:
• Don’t use external libraries for core functionality You may use TensorFlow, keras and Pytorch and are even required to use pretrained models as part of your pipeline.
• However, you will receive a low score if the main functionality of your code is provided
via an external library.
• Don’t copy code from the internet The course honor code is still in effect during the final
project. All of the code you submit must be your own. You may consult tutorials for
libraries you are unfamiliar with, but your final project submission must be your own
work.
1
• Don’t use pre-trained machine learning pipelines If you choose a topic that requires the
use of machine learning techniques, you are expected to do your own training. Downloading and submitting a pre-trained models that does all the work is not acceptable for
this assignment. For the section on reusing pre-trained weights you expected to use a
network trained for another classification task and re-train it for this one.
• Don’t rely on a single source We want to see that you performed research on your chosen topic and incorporated ideas from multiple sources in your final results. Your project
must not be based on a single research paper and definitely must not be based on a single
online tutorial.
Please do not use absolute paths in your submission code. All paths must be relative
to the submission directory. Any submissions with absolute paths are in danger of receiving a penalty!
Starter Code
There is no starter code for this project
Programming Instructions
In order to work with Convolutional Neural Networks we are providing a conda environment
description with the versions of the libraries that the TA will use in the grading environment
in canvas->files->Project files. This environment includes PyTorch, Tensorflow, Scikit-learn,
and SciPy. You may use any of these. It is your responsibility to use versions of libraries that
are compatible with those in the environment. It is also up to you to organize your files and
determine the code’s structure. The only requirement is that the grader must only run one
file to get your results. This, however, does not prevent the use of helper files linked to this
main script. The grader will not open and run multiple files. Include a README.md file with
usage instructions that are clear for the grader to run your code.
Write-up Instructions
The report must be a PDF of 4-6 pages including images and references. Not following this
requirement will incur a significant penalty and the content will be graded only up to page 6.
Note that the report will be graded subject to a working code. There will be no report templates
provided with the project materials.
The report must contain:
You report must be written to show your work and demonstrate a deep understanding of your
chosen topic. The discussion in your report must be technical and quantitative wherever possible.
• A clear and concise description of the algorithms you implemented. This description
must include references to recently published computer vision research and show a deep
understanding of your chosen topic.
• Results from applying your algorithm to images or video. Both positive and negative results must be shown in the report and you must explain why your algorithm works on
some images, but not others.
2
How to Submit
Similar to the class assignments, you will submit the code and the report to Gradescope (note:
there will be no autograder part). Find the appropriate project and make your submission into
the correct project. Important: Submissions sent to Email, Piazza or anything that is not
Gradescope will not be graded.
Grading
The report will be graded following the scheme below:
• Code (30%): We will verify that the methods and rules indicated above have been followed.
• Report (70%): Subject to a working code.
• Description of existing methods published in recent computer vision research.
• Description of the method you implemented.
• Results obtained from applying your algorithms to images or videos.
• Analysis on why your method works on some images and not on others. (with images)
• References and citations.
ASSIGNMENT OVERVIEW
This project requires you to research how Convolutional Neural Networks work and their application to number detection and recognition. This is not to be a replica of a tutorial found
online. Keep in mind this content is not widely covered in this course lectures and resources.
The main objective of this assignment is to demonstrate your understanding of how these tools
work. We allow you to use a very powerful training framework that helps you to avoid many of
the time-consuming implementation details because the emphasis of this project will be on
the robustness of your implementation and in-depth understanding of the tools you are using.
Installation and Compatibility
The provided environment yml description gives you with the versions of the libraries the TA’s
will during grading. We recommend you use conda to install the environment. Make sure the
forward pass of your pipeline runs in a reasonable amount of time when using only a CPU as
some TA’s do not have a GPU.
OS Warning:
Be warned that TA’s may grade on linux, Windows or Mac machines. Thus, it is your responsibility to make sure that your code is platform independent. This is particularly important when
using paths to files. If your code doesn’t run during grading due to some incompatibility you
will incur a penalty.
Classifier Requirements
Your classification pipeline must be robust in the following ways:
1. Scale Invariance:
3
The scale of the sequence of numbers in an image in vary.
2. Location Invariance:
The location of the sequence of numbers in the image may vary.
3. Font Invariance:
You are expected to detect numbers despite their fonts.
4. Pose Invariance:
The sequence of numbers can be at any angle with respect to the frame of the image.
5. Lighting Invariance:
We expect robustness to the lighting conditions in which the image was taken.
6. Noise Invariance:
Make sure that your pipeline is able to handle gaussian noise in the image.
Pipeline Overview:
The final pipeline should incorporate the following preprocessing and classification components. We expect you to clearly explain in your report what you did at each stage and why.
Preprocessing
Your pipeline should start from receiving an image like this:
Notice that this is not the type of image your classification network trained on. You will have to
do some preprocessing to correctly detect the number sequence in this image.
In the preprocessing stage your algorithm should take as input an image like the one above and
return region of interest. Those ROI will be regions in the image where there is a digit. In order
to perform this preprocessing step you can use the MSER and/or sliding window algorithm with
image pyramid approach. (see https://docs.opencv.org/4.1.0/d3/d28/classcv_1_1MSER.html)
Note: The region proposal stage has to be separated from the classification stage. For this
project we will use MSER and/or sliding window to detect the ROI. This means that one-stage
approaches (detection + classification) such as YOLO are not allowed.
4
Noise Management
We expect to see you handle gaussian noise and varying lighting conditions in the image. Please
explain what you do in order to handle these types of perturbations and still have your classifier
work.
Location Invariance
Since you don’t know where the numbers will appear on the image you will have to search for
them using a sliding window method.
Scale Invariance
Make sure to implement an image pyramid with non-maxima suppression to detect numbers
at any scale.
Performance Considerations
Running your full classifier through a sliding window can be very expensive. Did you do anything to mitigate forward pass runtime?
Classification
This section is concerned with the implementation of a number classifier based on the sample
dataset.
Model Variation
There are several approaches to implementing a classifier and we want you get exposure to all
of them:
1. Make your own architecture and train it from scratch.
(https://pytorch.org/tutorials/beginner/blitz/cifar10_tutorial.html) (without pre-trained weights).
2. Use a VGG 16 implementation and train it with pre-trained weights.
(Note: Final Linear layer will have 11 classes,
https://pytorch.org/tutorials/beginner/transfer_learning_tutorial.html(finetuning-the-convnet)
Make sure you mention in your report what changes you made to the VGG16 model in order to
use it for your particular classification task. What weights did you reuse and why? Did you train
over the pre-trained weights?
Training Variation
We want you to have some familiarity with stochastic gradient descent. For this reason we
want you to explain your choice of loss function during training. We also want an explanation
for your choice of batch size and learning rate. In the report we expect a definition of these
parameters and an explanation of why you chose the numbers you did. We also want to see
5
how you decided to stop the training procedure.
Evaluating Performance
In order to evaluate the performance of your learning model we expect you to include training curves with validation, training and test set errors. When you compare the performance of
each model we also want you include tables with the test set performance of the each model.
We want to see a discussion of your performance in each of the models outlined above and we
want to see empirical data demonstrating which is better. Your final pipeline should use the
model and training that empirically demonstrates better performance.
FINAL RESULTS
Image Classification Results
During grading, TAs expect to be able to run a python 3 file named run.py that writes five images to a graded_images folder in the current directory. The images should be named 1.png,
2.png, 3.png, 4.png and 5.png.
You can pick these images; however, across the five of them we will be checking that you
demonstrate following:
1. Correct classification at different scales
2. Correct classification at different orientations
3. Correct classification at different locations within the image.
4. Correct classification with different lighting conditions.
Notice, that since we allow you to pick the images, we expect good results.
In addition, add extra images showing failure cases of your implementation in the report. Analyse and comment why your algorithm is failing on those images.

 

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




















 

掃一掃在手機打開當前頁
  • 上一篇:代做COMP10002、c++編程設計代寫
  • 下一篇:去菲律賓旅游免簽嗎(什么方法可以免簽)
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    2025年10月份更新拼多多改銷助手小象助手多多出評軟件
    2025年10月份更新拼多多改銷助手小象助手多
    有限元分析 CAE仿真分析服務-企業/產品研發/客戶要求/設計優化
    有限元分析 CAE仿真分析服務-企業/產品研發
    急尋熱仿真分析?代做熱仿真服務+熱設計優化
    急尋熱仿真分析?代做熱仿真服務+熱設計優化
    出評 開團工具
    出評 開團工具
    挖掘機濾芯提升發動機性能
    挖掘機濾芯提升發動機性能
    海信羅馬假日洗衣機亮相AWE  復古美學與現代科技完美結合
    海信羅馬假日洗衣機亮相AWE 復古美學與現代
    合肥機場巴士4號線
    合肥機場巴士4號線
    合肥機場巴士3號線
    合肥機場巴士3號線
  • 短信驗證碼 trae 豆包網頁版入口 目錄網 排行網

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

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網 版權所有
    ICP備06013414號-3 公安備 42010502001045

    99爱在线视频这里只有精品_窝窝午夜看片成人精品_日韩精品久久久毛片一区二区_亚洲一区二区久久

          9000px;">

                久久精工是国产品牌吗| 成人午夜免费电影| 成人av电影在线| 国产精品成人一区二区三区夜夜夜| 国产精品影视天天线| 久久久激情视频| 一本到高清视频免费精品| 一区二区三区精品| 欧美绝品在线观看成人午夜影视| 天天综合天天综合色| 久久亚洲综合色| 色综合中文字幕国产 | 亚洲图片自拍偷拍| 欧美一区二区黄色| 成人免费视频一区| 日本特黄久久久高潮| 欧美激情在线看| 欧美日韩一区视频| 国产乱码精品一区二区三区忘忧草| 一区二区在线观看视频| 欧美第一区第二区| 欧美视频一区二区三区四区 | 视频一区视频二区中文| 国产日产欧美一区二区三区| 色婷婷久久久久swag精品| 久久精品国产精品亚洲红杏 | caoporen国产精品视频| 日本视频一区二区三区| 亚洲少妇最新在线视频| 日韩美一区二区三区| 欧洲精品一区二区三区在线观看| 国产精品自产自拍| 久久精品99国产精品| 日韩综合小视频| 亚洲综合免费观看高清完整版 | 91免费观看视频在线| 久久精品国产77777蜜臀| 亚洲成人高清在线| 亚洲三级久久久| 一区二区中文字幕在线| 久久精品一区二区三区不卡 | 91麻豆精品在线观看| 国产东北露脸精品视频| 秋霞成人午夜伦在线观看| 亚洲午夜精品网| 一区av在线播放| 亚洲人成在线观看一区二区| 久久精品欧美一区二区三区不卡| 精品美女一区二区三区| 日韩免费观看高清完整版| 欧美高清精品3d| 欧美精品xxxxbbbb| 欧美调教femdomvk| 欧美无砖专区一中文字| 欧美日本一道本在线视频| 欧洲精品一区二区| 7777精品久久久大香线蕉| 欧美日韩不卡一区| 3atv一区二区三区| 日韩三级在线观看| 精品少妇一区二区三区在线播放 | 日韩av中文字幕一区二区三区| 亚洲线精品一区二区三区| 亚洲精品国产成人久久av盗摄 | 日本亚洲一区二区| 日韩av电影免费观看高清完整版 | 欧美一区二区三区四区久久| 日韩亚洲欧美在线| 欧美激情资源网| 亚洲综合区在线| 美女久久久精品| 国产大片一区二区| 91日韩在线专区| 91精品国产欧美日韩| 欧美精品一区二区三区久久久| 日本一区二区在线不卡| 亚洲欧美日韩中文播放| 午夜a成v人精品| 国产精品一区三区| 色成年激情久久综合| 91精品国产色综合久久久蜜香臀| 久久免费精品国产久精品久久久久| 国产精品少妇自拍| 午夜精品一区在线观看| 国产毛片精品一区| 97se亚洲国产综合自在线| 欧美一区二区三区视频在线| 国产精品久久久久久亚洲毛片 | 免费在线一区观看| www.欧美精品一二区| 欧美少妇性性性| 日韩欧美激情四射| 亚洲综合视频在线观看| 狠狠色伊人亚洲综合成人| 欧日韩精品视频| 久久久一区二区三区捆绑**| 亚洲h动漫在线| 99久久久精品| 国产日韩欧美综合一区| 午夜成人在线视频| 91久久精品一区二区三| 久久久不卡网国产精品一区| 亚洲国产视频一区二区| 成人激情午夜影院| 精品国产露脸精彩对白| 亚洲 欧美综合在线网络| 粉嫩一区二区三区在线看| 日韩一级大片在线| 午夜精品aaa| 欧美在线观看18| 综合婷婷亚洲小说| 丰满白嫩尤物一区二区| 国产日韩成人精品| 国产精品小仙女| 91精品国产色综合久久| 丝袜亚洲另类丝袜在线| 欧美体内she精高潮| 一区二区三区国产精华| 91视频xxxx| 亚洲人成人一区二区在线观看| 风间由美性色一区二区三区| 国产婷婷色一区二区三区| 美女视频黄久久| 精品国产在天天线2019| 另类小说视频一区二区| 宅男在线国产精品| 日韩电影在线观看网站| 欧美一级高清大全免费观看| 日本欧美在线看| 精品国产sm最大网站| 国产一区二区免费看| 久久久99精品久久| 99久久伊人精品| 亚洲精品视频免费看| 欧美色视频一区| 首页欧美精品中文字幕| 欧美一二三在线| 国产福利一区在线| 国产精品白丝在线| 懂色av中文一区二区三区| 欧美一二三区在线| 国产精品系列在线观看| 国产精品不卡在线| 精品视频资源站| 捆绑紧缚一区二区三区视频 | 亚洲精品国产第一综合99久久| 欧美天堂一区二区三区| 日本三级韩国三级欧美三级| 久久久久国产精品麻豆ai换脸| 成人av网址在线| 五月天激情小说综合| 久久色中文字幕| 色婷婷综合久久| 久久国产精品无码网站| 综合久久一区二区三区| 4438成人网| 91一区二区在线| 久久精品国产精品亚洲综合| 亚洲欧美在线视频观看| 91精品国产综合久久小美女| 国产成人在线影院| 亚洲第四色夜色| 久久精品夜色噜噜亚洲aⅴ| 在线观看一区不卡| 国产曰批免费观看久久久| 一区二区三区美女视频| 久久精品亚洲乱码伦伦中文| 欧美视频一区二区| 岛国精品在线播放| 婷婷夜色潮精品综合在线| 国产精品视频一区二区三区不卡| 3d成人动漫网站| 色婷婷久久综合| 黑人巨大精品欧美黑白配亚洲| 亚洲你懂的在线视频| 精品日韩在线一区| 91精品国产一区二区三区| 色综合久久久久综合99| 奇米一区二区三区| 中文字幕亚洲精品在线观看| 日韩一级欧美一级| 91丨九色丨国产丨porny| 日韩av电影天堂| 欧美日韩一卡二卡三卡 | 午夜影院在线观看欧美| 日韩一级二级三级| 欧美色图12p| 欧美主播一区二区三区| 成人av综合在线| 国产一区二区三区| 精品一区二区在线看| 免费成人深夜小野草| 天天操天天干天天综合网| 一区二区三区.www| 亚洲男帅同性gay1069| 亚洲柠檬福利资源导航| 中文字幕人成不卡一区| 国产精品久久久久永久免费观看 | 国产一区二区三区美女| 欧美在线|欧美|