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++編程設計代寫
  • 下一篇:去菲律賓旅游免簽嗎(什么方法可以免簽)
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    急尋熱仿真分析?代做熱仿真服務+熱設計優化
    急尋熱仿真分析?代做熱仿真服務+熱設計優化
    出評 開團工具
    出評 開團工具
    挖掘機濾芯提升發動機性能
    挖掘機濾芯提升發動機性能
    海信羅馬假日洗衣機亮相AWE  復古美學與現代科技完美結合
    海信羅馬假日洗衣機亮相AWE 復古美學與現代
    合肥機場巴士4號線
    合肥機場巴士4號線
    合肥機場巴士3號線
    合肥機場巴士3號線
    合肥機場巴士2號線
    合肥機場巴士2號線
    合肥機場巴士1號線
    合肥機場巴士1號線
  • 短信驗證碼 豆包 幣安下載 AI生圖 目錄網

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

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

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

          国产一区二区你懂的| 日韩视频免费观看| 一区二区亚洲欧洲国产日韩| 国产日韩av在线播放| 国产精品视频一| 国产精品丝袜白浆摸在线| 欧美日本一区| 欧美日韩三级电影在线| 欧美日韩综合精品| 国产精品免费电影| 国产欧美日韩另类视频免费观看| 国产女人精品视频| 国产亚洲欧洲997久久综合| 狠狠色伊人亚洲综合网站色| 在线播放亚洲| 亚洲精品美女在线| 在线综合亚洲| 午夜免费电影一区在线观看| 久久精品国产第一区二区三区| 久久久久久久综合日本| 欧美~级网站不卡| 欧美日韩在线播放一区| 国产女同一区二区| 黄色欧美日韩| 亚洲免费福利视频| 亚洲一区制服诱惑| 久久影院午夜论| 欧美日韩国产页| 国产伪娘ts一区| 亚洲第一福利在线观看| 一区二区欧美国产| 久久精品免费观看| 欧美精品国产| 国产精品一区二区三区免费观看| 黄色一区二区在线| 夜夜嗨av一区二区三区网站四季av| 亚洲综合国产精品| 久久综合一区二区三区| 欧美午夜精品久久久久久人妖 | 欧美日韩中文在线| 国产午夜精品在线观看| 亚洲日本在线观看| 欧美亚洲日本国产| 欧美精品久久99| 国产日产精品一区二区三区四区的观看方式| 国内精品久久久久久久影视麻豆| 日韩视频―中文字幕| 欧美一区二区三区喷汁尤物| 欧美大色视频| 国产乱码精品1区2区3区| 91久久国产精品91久久性色| 性伦欧美刺激片在线观看| 欧美高清影院| 国产曰批免费观看久久久| 一区二区国产精品| 久久综合九色综合欧美就去吻 | 日韩视频免费| 久久久午夜视频| 国产精品国产三级国产普通话蜜臀 | 欧美一区=区| 欧美女同视频| 伊人婷婷欧美激情| 亚洲欧美日韩在线综合| 欧美精品在线观看播放| 在线成人性视频| 欧美在线欧美在线| 国产精品毛片| 日韩视频免费在线| 久久香蕉国产线看观看av| 国产精品一二三| 宅男噜噜噜66一区二区66| 欧美国产1区2区| 伊人久久综合97精品| 性8sex亚洲区入口| 国产精品五区| 亚洲午夜精品视频| 欧美日韩成人综合在线一区二区| 激情小说另类小说亚洲欧美| 欧美一区二区高清| 国产精品久久久久久福利一牛影视| 亚洲精品久久久久久下一站| 麻豆久久精品| 在线观看欧美激情| 久久久噜噜噜久久中文字免| 国产日韩精品视频一区二区三区| 亚洲特色特黄| 欧美日韩一区二区三区四区五区| 亚洲激情一区| 欧美国产欧美亚洲国产日韩mv天天看完整| 激情综合色丁香一区二区| 欧美亚洲在线| 国产日韩在线看片| 欧美在线播放一区| 国产一区亚洲一区| 久久久高清一区二区三区| 国产亚洲一二三区| 久久久久久一区| 国产在线视频不卡二| 久久精品国产免费| 激情久久久久久久久久久久久久久久 | 久久久久国产免费免费| 国产在线观看一区| 久久激情综合网| 狠狠久久五月精品中文字幕| 久久久久久久久久看片| 激情小说另类小说亚洲欧美| 麻豆精品视频在线| 亚洲人被黑人高潮完整版| 欧美极品aⅴ影院| 日韩午夜电影| 国产精品二区在线| 香蕉成人啪国产精品视频综合网| 国产三级欧美三级| 久久一日本道色综合久久| 在线免费观看日本一区| 欧美精品www在线观看| 亚洲视频在线观看三级| 国产精品一区二区a| 久久视频免费观看| 亚洲精品久久久久久下一站| 国产亚洲精品激情久久| 久久精品1区| 亚洲国产精品999| 欧美日韩一区二区免费视频| 亚洲一区二区免费| 国产亚洲人成a一在线v站| 欧美1级日本1级| 中文在线一区| 国语精品中文字幕| 欧美成人一品| 在线视频一区二区| 国产手机视频精品| 欧美精品123区| 亚洲女人天堂成人av在线| 狠狠爱成人网| 欧美日韩一区二区在线观看| 欧美诱惑福利视频| 亚洲精品免费看| 国产亚洲日本欧美韩国| 欧美女人交a| 欧美在线黄色| 亚洲人妖在线| 国产偷久久久精品专区| 欧美高清视频在线| 欧美一区二区三区免费视频| 亚洲精品日韩久久| 国产日韩精品视频一区| 欧美极品一区二区三区| 午夜一级在线看亚洲| 亚洲日韩欧美一区二区在线| 国产欧美精品在线播放| 欧美精品久久久久久| 久久黄色小说| 亚洲制服少妇| 亚洲精品在线观| 激情自拍一区| 国产精品一区2区| 欧美日韩一区二区精品| 久久香蕉国产线看观看网| 亚洲欧美国产精品桃花| 亚洲精品在线二区| 尹人成人综合网| 国产精品一区二区视频| 欧美另类在线观看| 久久一区激情| 久久精品99国产精品日本| 亚洲午夜精品| 亚洲免费电影在线观看| 伊人男人综合视频网| 国产欧美一区二区视频| 欧美三级第一页| 欧美国产日韩精品| 欧美在线中文字幕| 亚洲综合精品| 亚洲视频在线一区| 99热精品在线| 亚洲乱码视频| 亚洲日本aⅴ片在线观看香蕉| 国产一区二区三区自拍| 国产精品五区| 国产精品区一区二区三区| 欧美日韩亚洲免费| 欧美日韩国产一中文字不卡| 欧美成人三级在线| 你懂的成人av| 欧美成熟视频| 欧美a级大片| 牛牛国产精品| 免费观看成人鲁鲁鲁鲁鲁视频 | 国产精品网站在线播放| 欧美性生交xxxxx久久久| 欧美理论片在线观看| 欧美日本在线播放| 欧美激情在线狂野欧美精品| 欧美成人小视频| 欧美激情一二三区| 欧美理论大片| 欧美午夜电影网| 国产精品久久久久久久久久ktv| 欧美性开放视频|