Ahdus Technology partners with Pro-Drei GmbH

Ahdus Technology, a leading technology solutions provider, has announced a strategic partnership with Pro-Drei, a renowned global company focused on innovation and digital transformation. This alliance marks a significant milestone for Ahdus Technology and positions them as Pro-Drei’s technology and startup consulting partner. By leveraging their extensive expertise and cutting-edge technologies, Ahdus Technology will collaborate closely with Pro-Drei to deliver innovative solutions for clients embarking on digital transformation journeys.

The IT industry in Pakistan has experienced rapid growth in recent years. According to the Pakistan Software Export Board (PSEB), the industry has been expanding at a rate of 18% per year and is projected to reach $7 billion by 2023. The primary hubs for the IT industry in Pakistan are Karachi, Lahore, and Islamabad, collectively employing over 300,000 professionals.

Pakistani IT experts are making their mark globally, with a significant presence in Silicon Valley. It is estimated that 12,000 to 15,000 Pakistani Americans are based in Silicon Valley, working for renowned companies such as Apple, Cisco, Google, Intel, Oracle, and many others. These professionals contribute to a wide range of organizations, from small startups to large Fortune 500 corporations.

Pakistan’s potential in the field of AI is significant. The scope of AI in the country extends from solving local challenges in agriculture, governance, climate change, and manufacturing to nurturing tech unicorns and specialized AI software export service companies. The partnership between Ahdus Technology and Pro-Drei aligns with this potential, as they aim to accelerate digital innovation, drive business growth, and make a lasting impact in the global market.
This partnership with Pro-Drei represents an exciting milestone for Ahdus Technology,” said Ammar Asjad, Founder of Ahdus Technology. “We are honored to be chosen as their technology partner and look forward to empowering startups and enterprises alike with our transformative solutions. Together with Pro-Drei, we will accelerate digital innovation, drive business growth, and make a lasting impact in the global market.
Pro-Drei is recognized for its commitment to delivering excellence and driving change across diverse industries. By joining forces with Ahdus Technology, they gain access to an extended network of talented professionals and a broad spectrum of technological capabilities.

Traffic Sign Detection With Yolov3

Real-Time Traffic Sign Detection

An Era that is bringing ease for the drivers who are getting tired of driving their vehicles manually and are wasting most of the focus and energies on driving rather than keeping that energy for their daily work. This gap is now been filled by the enormous autonomous industry working on a massive level to make self-driving cars capable of producing highly accurate decisions

There is extensive research in Object detection Algorithms nowadays; self-driving vehicles are one of the most focused areas in Research and Development (R&D). Traffic Sign detection System plays a vital role in the Autonomous Vehicle industry. It is very efficient in assisting drivers or self-driving modes in the detection of Traffic Signs. Convolutional Neural Networks gave good results in training and proved efficient, as described in the literature review. The Data-Set was taken from online repositories like Kaggle. So, this technology’s future is bringing innovations and how we will travel throughout in the coming future.

Companies like Tesla have an impact in revolutionizing the world using Autonomous Electric Vehicles. They are using intense research in Pattern Recognition, Making bounding boxes, and learning from their live big datasets towards making models that are highly accurate in solving self-driving cars’ problems.

Following are the Past Algorithms / Methods being applied to solve this problem,

  • TensorFlow Library and parallel architecture of multithreaded programming CUDA.
  • Viola-Jones detector, a linear classifier based on Histogram of Oriented Gradients (HOG) features and a model-based approach.
  • Convolutional Neural Network (CNN)
  • Fast Recurrent Convolutional Neural network (Fast-RCNN)
  • Instead of using one pixel at a time, this paper focuses on utilizing the block of pixels and giving it an input vector to the SVM for color classification. The block approach is applied to diversify the training and testing.
  • Support Vector Machine (SVM). Instead of using one pixel at a time, this paper focuses on utilizing the block of pixels and giving it an input vector to the SVM for color classification. The block approach is applied to diversify the training and testing.
  • A modified YOLOv2
  • LeNet-5 convolutional neural network
  • YOLOv3

The use of artificial intelligence and machine learning in technology facilitates the detection to be more precise and accurate. After going through the literature review and the accuracy matrices of these methods, we decided to go for YOLOv3.

As YOLOv3 proved to be better than other algorithms and more efficient in detecting and classifying traffic sign detection.

We have also done experimentation on Customized CNN, First-of-all we shuffled the dataset and preprocessed them. Then we used three layers, consisting of the following details,

  • First Layer: 32 Neurons using RELU Activation and kernel Size of 3*3
  • Max pooling using 2*2 window
  • Second Layer: 64 Neurons using RELU Activation and kernel Size of 3*3
  • Max pooling using 2*2 window
  • Dropout by the factor of 0.25
  • Third Layer: 128 Neurons using RELU Activation and kernel Size of 3*3
  • Flattening
  • Two Dense Layers

o First Dense layer of 128 neurons using RELU Activation

o Second Dense layer gives probability distribution in the output using softmax and having neurons equal to the data set class size, 43.

The Loss Function Graph is shown as follows,

The Accuracy Graph is shown as follows,

Then we used a loss function named “categorical_crossentropy” and “Adam” Optimizer. Accuracy Metrics are generated to compare our results. The dataset used in this experimentation is from Kaggle, and we got 99.566 Accuracy.