Writing a scientific article: A step-by-step guide for beginners

Writing a scientific article: A step-by-step guide for beginners We describe here the basic steps to follow in writing a scientific article. We outline the main sections that an average article should contain; the elements that should appear in these sections, and some pointers for making the overall result attractive and acceptable for publication. The … Continue reading Writing a scientific article: A step-by-step guide for beginners

Build/Install GCC Compiler for C, C++, Fortran, Go, Ada in Ubuntu Operating System

I need to compare performance of various C,C++, Fortran,Go and ADA compiler. So I need to install or build various version of GCC compilers. Installing from apt is easier but not all versions are available from apt. First step is to install all prerequisites Most gcc is in C/C++, so we need to install any … Continue reading Build/Install GCC Compiler for C, C++, Fortran, Go, Ada in Ubuntu Operating System

Problem Compiling with Clang 16.0.0 in Ubuntu 20.04

I encountered a problem when compiling a C program with Clang compiler version 16.0.0 , in Ubuntu 20.04 Here is the error message: Most likely reason: clang version 16.0.0 need GLIBCXX_3.4.30 , which is not available in Ubuntu 20.04 Solution: find newer libstdc++.so.6. In my case, I obtained it from gcc 12.1.0 in other directory. … Continue reading Problem Compiling with Clang 16.0.0 in Ubuntu 20.04

You Only Look Once (YOLO) Object Detection Models

YOLOv1 Code Paper: JOseph Redmon, Santosh Divvala, Ross Girshick, Ali Farhadi, “You Only Look Once: Unified, Real-Time Object Detection“, 2016 Code: https://github.com/AlexeyAB/darknet YOLOv2 Paper: “YOLO9000:Better, Faster, Stronger“ Code: https://pjreddie.com/darknet/yolov2/ YOLOv3 Paper: YOLOv3: An Incremental Improvement Code: https://pjreddie.com/darknet/yolo/ YOLOv4 Paper: YOLOv4: Optimal Speed and Accuracy of Object Detection Scaled-YOLOv4: Scaling Cross Stage Partial Network Code: https://github.com/AlexeyAB/darknet … Continue reading You Only Look Once (YOLO) Object Detection Models