Tag Archives: artificial-intelligence

Building a Generic Stack in C++ with Object

This blog article shows you how to create a Stack with Object. If you’ve ever wondered how to create flexible, reusable data structures in C++, template-based programming is the answer. Today, let’s explore a well-implemented generic Stack class that can … Continue reading

Posted in .Net, Cloud, Community, Computers and Internet, programming | Tagged , , , , , | 1 Comment

From C++ to Python: A Lesson in Polymorphic Simplicity

This blog article shows you one of the possible way to do Polymorphic in Python. Ever wondered how object-oriented concepts like polymorphism translate from a statically-typed language like C++ to a dynamically-typed one like Python? Let’s break down a classic … Continue reading

Posted in .Net, Cloud, Community, Computers and Internet, programming | Tagged , , , | 1 Comment

C++ Single Linked List Isert At The End

This blog article shows you how to insert a node at the end of a single linked list. The provided C++ code demonstrates a clean implementation of a singly linked list with insertion at the end functionality: void insertAtEnd(int value) … Continue reading

Posted in .Net, Cloud, Community, Computers and Internet, programming | Tagged , , , , , | Leave a comment

Building a Small Language Model in Python Using GPT-2 and Custom Text

This short blog article that walks through building and testing a Small Language Model in Python using GPT-2 and your own text data (like a Dutch novel). The example includes the fix for the padding issue as well. Building a … Continue reading

Posted in .Net, Cloud, Community, Computers and Internet, Data Platform, data science, programming | Tagged , , , , , | 1 Comment