Neural Network API
Built a custom neural network model that can be trained via API. The idea behind it was initially a chatbot which evolved to become a NPC creator for games. The API was built using FastAPI and SQLAlchemy. The neural network was built using PyTorch, utilising 3 linear layers and a relu activation function.
Tech Stack |
NEURAL NETWORK
Created a feed forward neural network model with 3 linear layers and a relu activation function using PyTorch. This was an attempt to learn more about artificial intelligence, as well as explore PyTorch's open source library.

AI CHAT
The neural network model was built as a basic chatbot. The model selects an appropriate response based on the intents provided to it. For example: If the AI chatbot knows the intent behind the input 'Hi', it will assign and pick at random a response related to that intents 'tag'. In this case, the intents 'tag' would be under a 'greeting'.
DATA PROCESSING
The project focused on understanding how neural networks are trained and how to pre-process the data to achieve a desired output response from the model. This step involved processes such as tokenization, lemmatization, stemming and word vectors/bag of words functions.

DATABASE
Designed and built a relational database model using PostgreSQL. The schema was designed to allow users to train their own AI chat model through an API, rather than a JSON or text file. This was originally built to create non-player characters (NPC's) powered by AI for games. The thought process behind this idea was that users would be able to create their own NPC's which would each have their own set of knowledge, voice style and attributes. Essentially, the NPC would only respond based on what it knew from it's knowledge base (which could be provided to it as 'Intents').
FASTAPI
The API was built using FastAPI in Python, this library is known for having great documentation and high performance. The Pydantic library was also used to setup the database schemas for our AI model.