Advertisement
Guest User

Untitled

a guest
May 22nd, 2019
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.92 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.       <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css">
  5.       <style type="text/css">
  6.         .previous {
  7.               background-color: #f1f1f1;
  8.               color: black;
  9.             }
  10.             .round {
  11.               border-radius: 50%;
  12.             }
  13.             a {
  14.               text-decoration: none;
  15.               display: inline-block;
  16.               padding: 8px 16px;
  17.             }
  18.  
  19.             a:hover {
  20.               background-color: #ddd;
  21.               color: black;
  22.             }
  23.       </style>
  24. </head>
  25. <body>
  26.     <nav class="navbar navbar-inverse">
  27.       <div class="container-fluid">
  28.         <div class="navbar-header">
  29.             <a href="home.html" class="previous round">&#8249;</a>
  30.           <!-- <a class="navbar-brand" href="#">Deep Learning Course Projects</a> -->
  31.         </div>
  32.       </div>
  33.     </nav>
  34.     <div class="text-center">
  35.         <h2>Car Brand detection</h2>
  36.         <h5>Ahmed Adel</h5>
  37.         <h5>Fady George</h5>
  38.     </div>
  39.     <h2>Problem Statment</h2>
  40.     <h3> There are many people who are crazy about cars so
  41. we decided to implement this idea which is detecting
  42. car make-year-model from an image.</h3>
  43.     <h2>Input/ output Example</h2>
  44.     <h2>Gantt chart</h2>
  45.     <h2>Dataset</h2>
  46.     <h3> We used Stanford Car Dataset by classes folder which has 16185 images </h3>
  47.     <h2>State of the art</h2>
  48.     <h3>The best accuracy was 88% implemented by samuel
  49. Freshman where the network trained on 49 classes
  50. while the accuracy of GoogleNet was 80% by having
  51. 196 classes.</h3>
  52.     <h2>Data pre-processing</h2>
  53.     <h3>We have applied data augmentation as follows : random horizontal flips , random rotation < 30 degree , random zoom < 10 and random lighting < 10</h3>
  54.     <h2>Models Used</h2>
  55.     <h3>1) Yolo v3 for image segmentation</h3>
  56.     <h3>2) ResNet34 for image detection</h3>
  57.     <h3>3) VGG16 for image detection</h3>
  58.     <h2>Fine Tuning apllied</h2>
  59.     <h2>Results</h2>
  60.     <h3>VGG16 reached validation accuracy 71%</h3>
  61.     <h3>Fine tuning ResNet34 the model was able to reach 87% of
  62. accuracy</h3>
  63. </body>
  64. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement