国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看

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

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

時間:2024-04-26  來源:合肥網(wǎng)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++編程設(shè)計代寫
  • 下一篇:去菲律賓旅游免簽嗎(什么方法可以免簽)
  • 無相關(guān)信息
    合肥生活資訊

    合肥圖文信息
    流體仿真外包多少錢_專業(yè)CFD分析代做_友商科技CAE仿真
    流體仿真外包多少錢_專業(yè)CFD分析代做_友商科
    CAE仿真分析代做公司 CFD流體仿真服務(wù) 管路流場仿真外包
    CAE仿真分析代做公司 CFD流體仿真服務(wù) 管路
    流體CFD仿真分析_代做咨詢服務(wù)_Fluent 仿真技術(shù)服務(wù)
    流體CFD仿真分析_代做咨詢服務(wù)_Fluent 仿真
    結(jié)構(gòu)仿真分析服務(wù)_CAE代做咨詢外包_剛強度疲勞振動
    結(jié)構(gòu)仿真分析服務(wù)_CAE代做咨詢外包_剛強度疲
    流體cfd仿真分析服務(wù) 7類仿真分析代做服務(wù)40個行業(yè)
    流體cfd仿真分析服務(wù) 7類仿真分析代做服務(wù)4
    超全面的拼多多電商運營技巧,多多開團助手,多多出評軟件徽y1698861
    超全面的拼多多電商運營技巧,多多開團助手
    CAE有限元仿真分析團隊,2026仿真代做咨詢服務(wù)平臺
    CAE有限元仿真分析團隊,2026仿真代做咨詢服
    釘釘簽到打卡位置修改神器,2026怎么修改定位在范圍內(nèi)
    釘釘簽到打卡位置修改神器,2026怎么修改定
  • 短信驗證碼 豆包網(wǎng)頁版入口 破天一劍 目錄網(wǎng) 排行網(wǎng)

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

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

    国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看
    国产精品免费一区二区三区| 国产精品大片wwwwww| 国产精品国模大尺度私拍| 日本a级片电影一区二区| 99国产在线视频| 欧美区二区三区| 国产一二三四区在线观看| 日韩在线观看精品| 青青在线视频观看| 91国产丝袜在线放| 在线国产99| 国产区一区二区三区| 精品国产日本| 国产又粗又爽又黄的视频| 国产精品久久网| 国内成人精品视频| 国产精品欧美风情| 精品一区久久久| 久久夜色精品国产亚洲aⅴ| 狠狠色伊人亚洲综合网站色| 国产精品久久久久高潮| 国产一区二区三区四区五区在线| 国产精品久久久久久久天堂| 国产在线资源一区| 国产精品久久久久久久久久久久 | 国产亚洲精品久久久久久久| 久久夜色精品亚洲噜噜国产mv | 亚洲欧洲一区二区在线观看| 99久久精品免费看国产一区二区三区 | 免费在线观看的毛片| 国产精品久久久久久中文字| 经典三级在线视频| 欧美精品免费在线观看| 成人免费视频97| 亚洲一区美女| 久久精品午夜福利| 日韩欧美亚洲v片| 日韩日本欧美亚洲| 激情婷婷综合网| 久久99久久99精品免观看粉嫩 | 国产精品永久入口久久久| 亚洲一区二区三区四区视频| 久久久伊人欧美| 欧美一级电影久久| 久久电影一区二区| 成人av播放| 日韩欧美一区三区| 国产精品观看在线亚洲人成网| 成人a免费视频| 日韩av一二三四区| 国产精品久久久久77777| 99视频在线免费观看| 日韩a在线播放| 国产精品视频白浆免费视频| 国产裸体免费无遮挡| 日本精品福利视频| 不卡av日日日| 久久综合九色综合久99| 欧美亚洲另类制服自拍| 九九热精品在线| 久久久国产精华液999999 | 欧美精品在线一区| 一区二区三区一级片| 久久国产精品精品国产色婷婷| 蜜臀精品一区二区| 亚洲熟妇无码一区二区三区导航| 久久久久久久久久福利| 国产午夜福利在线播放| 欧美一区二区三区在线免费观看 | 国产精品久久久久久亚洲调教| 不卡一区二区三区视频| 欧美中文字幕在线观看视频| 一区二区精品国产| 国产精品欧美久久| 久久综合九色综合88i| 国产视频福利一区| 日韩精品一区二区三区色偷偷| 国产精品第七十二页| 国产成人亚洲综合青青| 国产欧美亚洲日本| 欧美性在线观看| 日韩在线国产| 欧美精品久久久久| 国产精品日韩一区| 国产成人高潮免费观看精品| 国产精品揄拍一区二区| 人人妻人人澡人人爽欧美一区| 亚洲一区二区三区在线观看视频 | 国产资源在线视频| 色综合久久av| 伊甸园精品99久久久久久| 久久精品久久久久久| 久久日韩精品| 99久re热视频这里只有精品6| 韩国精品久久久999| 日本三级久久久| 亚洲高潮无码久久| 美女999久久久精品视频| 国产精品三区在线| 日韩中文字幕精品| 久久久久久中文字幕| 国产高清免费在线| 7777奇米亚洲综合久久| 99在线国产| 国产区一区二区三区| 免费看成人午夜电影| 欧美高清性xxxxhdvideosex| 欧美诱惑福利视频| 日本不卡视频在线播放| 日韩一区二区三区高清| 亚洲日本精品一区| 亚洲一区二区三区乱码| 中文视频一区视频二区视频三区| 欧美精品性视频| 精品卡一卡二| 美日韩精品视频免费看| 精品免费日产一区一区三区免费| 久久久精品电影| 久久精品99久久久久久久久| 久久精品欧美| 国产h视频在线播放| 国产高清不卡av| 国产成人精品日本亚洲| 国产成人亚洲综合91| 久久久久亚洲精品成人网小说| 国产ts一区二区| www.日韩免费| 国产精品日韩欧美综合| 久久亚洲国产成人| 精品国产电影| 自拍另类欧美| 午夜精品久久久久久久99热浪潮| 午夜精品视频网站| 少妇一晚三次一区二区三区| 色一情一乱一伦一区二区三区丨| 日韩在线第三页| 人妻夜夜添夜夜无码av| 欧美乱偷一区二区三区在线| 免费观看精品视频| 国产美女视频免费| 91免费在线视频| 国产激情美女久久久久久吹潮| 九色在线视频观看| 国产精品无码一区二区在线| 欧美精品少妇videofree| 一区精品在线| 日本一区二区三区免费观看| 欧美欧美一区二区| 国产日韩欧美视频在线| 国产精品自拍片| 69精品丰满人妻无码视频a片| 久久99热只有频精品91密拍| 国产精品私拍pans大尺度在线| 久久国产精品久久国产精品| 亚洲a∨日韩av高清在线观看| 日韩精品在线视频免费观看| 国产主播在线一区| 国产精品678| 国产精品三级网站| 亚洲最大福利视频网| 日韩av在线第一页| 女女同性女同一区二区三区91| 国产欧美日韩精品在线观看| 久久久久福利视频| 久久久成人精品| 久久99青青精品免费观看| 欧美一级片免费在线| 精品视频一区二区| 久久免费视频在线| 国产精品久久网| 婷婷五月色综合| 国产日韩在线亚洲字幕中文| 久久九九国产视频| 久热精品视频在线观看一区| 亚洲福利av在线| 精品一区二区国产| 国产黑人绿帽在线第一区| 国产精品第2页| 日本丰满少妇黄大片在线观看| 经典三级在线视频| 国产精品69精品一区二区三区| 国产精品男女猛烈高潮激情| 亚洲精品一区二区三区樱花| 精品1区2区| 久久国产精品久久| 亚洲五月六月| 激情深爱综合网| 国产激情片在线观看| 久久99久久久久久久噜噜| 欧美中文字幕在线观看| 97久久精品国产| 国产精品传媒毛片三区| 日韩在线国产| 成人国内精品久久久久一区| 国产精品视频最多的网站| 伊人久久青草| 免费一区二区三区| 久久久久久久久一区二区| 一本久道久久综合| 国产一区国产精品|