Tinkering with bare metal
#include <string>
#include <vector>
using Information = std::vector<std::string>;
Information myself() {
Information shawon = {
"PhD @ TU/e Eindhoven",
"Open Source LLMs",
"Learning Dyanmics, Evaluations, AI4Science, Safety",
"Pytorch, CUDA, Jax, Pallas",
"Photography, Music, Books"
};
return shawon;
}



