Hi. I am an AI Research Scientist at Bloomberg.
Before that, I was a PhD student at CS at Cornell University, advised by Claire Cardie.
And before that, I was an undergrad at Bogazici University, pursuing my BS in Computer Engineering and BA in Math.
My research interests lie primarily in the intersection of machine learning and natural language processing. Currently, I am particularly interested in representation learning and deep learning. My research has been focused on how to learn (possibly deep) representations for compositionality in language, with applications to sentiment analysis, opinion mining, question answering and dialogue understanding. I also regularly collaborate with my former (undergrad) advisor Ethem Alpaydın on decision trees, neural networks, and some other ML stuff.
<script> Vue.createApp({ data() { return { papers: null, kinds: ["Journal", "Conference", "Workshop", "Preprint"], }; }, created() { fetch("papers.yaml") .then((res) => res.text()) .then((text) => { this.papers = jsyaml.load(text) }) .catch((e) => console.error(e)); } }).mount('#main'); </script>