diff --git a/README.md b/README.md
index 0c2dea7..198e58a 100644
--- a/README.md
+++ b/README.md
@@ -78,6 +78,7 @@ Some tricky operations encountered in these models, already solved, but might ha
|-|-|:-:|:-:|:-:|:-:|
| YOLOv3(darknet53) | Xavier | 1 | FP16 | 320x320 | 55 |
| YOLOv3-spp(darknet53) | Xeon E5-2620/GTX1080 | 1 | FP32 | 256x416 | 94 |
+| YOLOv3-spp(darknet53) | Xeon E5-2620/GTX1080 | 1 | FP16 | 608x608 | 38.5 |
| YOLOv4(CSPDarknet53) | Xeon E5-2620/GTX1080 | 1 | FP16 | 608x608 | 35.7 |
| YOLOv4(CSPDarknet53) | Xeon E5-2620/GTX1080 | 4 | FP16 | 608x608 | 40.9 |
| YOLOv4(CSPDarknet53) | Xeon E5-2620/GTX1080 | 8 | FP16 | 608x608 | 41.3 |
diff --git a/arcface/README.md b/arcface/README.md
index c16ae75..c0df3ec 100644
--- a/arcface/README.md
+++ b/arcface/README.md
@@ -4,7 +4,7 @@ The mxnet implementation is from [deepinsight/insightface.](https://github.com/d
The pretrained model is [LResNet50E-IR,ArcFace@ms1m-refine-v1.](https://github.com/deepinsight/insightface/wiki/Model-Zoo#32-lresnet50e-irarcfacems1m-refine-v1)
-The two images used in this project are joey0.ppm and joey1.ppm, download them from [Google Drive.](https://drive.google.com/drive/folders/1ctqpkRCRKyBZRCNwo9Uq4eUoMRLtFq1e)
+The two input images used in this project are joey0.ppm and joey1.ppm, download them from [Google Drive.](https://drive.google.com/drive/folders/1ctqpkRCRKyBZRCNwo9Uq4eUoMRLtFq1e). The input image is 112x112, and generated from `get_input()` in `insightface/deploy/face_model.py`, which is cropped and aligned face image.
diff --git a/yolov3-spp/CMakeLists.txt b/yolov3-spp/CMakeLists.txt
index a466470..4774663 100644
--- a/yolov3-spp/CMakeLists.txt
+++ b/yolov3-spp/CMakeLists.txt
@@ -32,8 +32,8 @@ cuda_add_library(yololayer SHARED ${PROJECT_SOURCE_DIR}/yololayer.cu)
find_package(OpenCV)
include_directories(OpenCV_INCLUDE_DIRS)
-add_executable(yolov3-spp ${PROJECT_SOURCE_DIR}/plugin_factory.cpp ${PROJECT_SOURCE_DIR}/yolov3-spp.cpp)
-target_link_libraries(yolov3-spp nvinfer nvinfer_plugin)
+add_executable(yolov3-spp ${PROJECT_SOURCE_DIR}/yolov3-spp.cpp)
+target_link_libraries(yolov3-spp nvinfer)
target_link_libraries(yolov3-spp cudart)
target_link_libraries(yolov3-spp yololayer)
target_link_libraries(yolov3-spp ${OpenCV_LIBS})
diff --git a/yolov3-spp/common.h b/yolov3-spp/common.h
deleted file mode 100644
index 3b9c30c..0000000
--- a/yolov3-spp/common.h
+++ /dev/null
@@ -1,356 +0,0 @@
-#ifndef _TRT_COMMON_H_
-#define _TRT_COMMON_H_
-#include "NvInfer.h"
-#include "NvOnnxConfig.h"
-#include "NvOnnxParser.h"
-#include
-#include
-#include
-#include
-#include
-#include
-#include