Lecturer · Researcher · PhD Applicant
Trustworthy AI · Explainable Machine Learning · Cybersecurity · Secure Systems
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
@author: Obinna Awoke
@version: 6.0.RESEARCH
@status: ACTIVE
"""
class ResearcherProfile:
def __init__(self):
self.identity = {
"name": "Obinna Awoke",
"role": "Lecturer & Researcher",
"focus": "Trustworthy AI and Cybersecurity",
"status": "PhD Applicant"
}
self.education = {
"msc_computer_science": {
"institution": "African University of Science & Technology",
"cgpa": "3.77 / 4.0",
"honours": "Distinction (Best Graduating Student)"
},
"engineering_diploma": {
"institution": "ISEP Paris",
"program": "Digital Security & Networks",
"status": "On-going"
}
}
self.research_interests = [
"Trustworthy & Explainable AI",
"AI-Driven Cybersecurity",
"Intrusion Detection Systems",
"Security of Intelligent Systems",
"Adversarial Machine Learning"
]
self.publications = [
"CRC Press Book Chapter (AI-Driven Intrusion Detection, 2025)",
"ICICT 2026 Conference Paper (Explainable AI for Healthcare)"
]
def mission(self):
return "Build secure, explainable, and trustworthy AI systems for critical domains"