Skip to content

Commit

Permalink
feat: update portfolio and projects
Browse files Browse the repository at this point in the history
  • Loading branch information
umuthopeyildirim committed Sep 9, 2024
1 parent 6dd870a commit bc50ab8
Show file tree
Hide file tree
Showing 4 changed files with 80 additions and 22 deletions.
12 changes: 7 additions & 5 deletions src/components/Hero.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,13 @@ export default function Hero() {
<br />
</h1>
<p>
As a junior software developer, I am passionate about turning AI
tools and research into practical, scalable software solutions. My
focus is on implementing AI technologies efficiently and
effectively, ensuring they serve real-world applications. My goal
is to make advanced AI accessible and useful in various
As an ML engineer, I specialize in transforming cutting-edge AI
research into robust, production-ready systems. My expertise lies
in optimizing model performance, implementing efficient MLOps
pipelines, and leveraging cloud infrastructure to scale AI
solutions. I'm passionate about bridging the gap between academic
AI advancements and real-world applications, making powerful
machine learning models accessible and impactful across various
industries.
</p>
<Link
Expand Down
79 changes: 69 additions & 10 deletions src/data/_Projects.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,64 @@
import React from 'react';

const projects = [
{
category: 'AI',
title: 'Experimentation in Content Moderation using RWKV',
slug: '#content-moderation-rwkv',
imageUrl: 'img/projects/content-moderation.png',
subtitle: 'Exploring RWKV for Efficient Content Moderation',
period: '05 Sept 2024',
tech: 'RWKV, Content Moderation, AI, LLM, NLP, Datasets',
team: [
{
name: 'Umut Hope YILDIRIM',
link: 'https://github.com/umuthopeyildirim/',
},
{
name: 'Rohan Dutta',
link: 'https://github.com/rohan-dutta-123',
},
],
description: (
<>
<p>
This paper investigates the RWKV model's efficacy in content
moderation through targeted experimentation. We introduce a novel
dataset specifically designed for distillation into smaller models,
enhancing content moderation practices. This comprehensive dataset
encompasses images, videos, sounds, and text data that present
societal challenges. Leveraging advanced Large Language Models (LLMs),
we generated an extensive set of responses -- 558,958 for text and
83,625 for images -- to train and refine content moderation systems.
Our core experimentation involved fine-tuning the RWKV model,
capitalizing on its CPU-efficient architecture to address large-scale
content moderation tasks. By highlighting the dataset's potential for
knowledge distillation, this study not only demonstrates RWKV's
capability in improving the accuracy and efficiency of content
moderation systems but also paves the way for developing more compact,
resource-efficient models in this domain.
</p>
</>
),
links: [
{
name: 'HuggingFace',
link: 'https://huggingface.co/modrwkv',
},
{
name: 'Paper',
link: 'https://arxiv.org/abs/2409.03939',
},
],
},
{
category: 'AI',
title: 'Fin-RWKV',
slug: '#fin-rwkv',
imageUrl: 'img/projects/finrwkv.png',
subtitle: 'Attention-Free LLM For Scalable Financial Analysis',
period: '08 Feb 2024',
tech: 'RWKV, Fine-Tuning, Finance, LLM, Linear Transformers',
tech: 'RWKV, Fine-Tuning, Finance, LLM, Linear Transformers',
team: [
{
name: 'Umut Hope YILDIRIM',
Expand All @@ -20,14 +70,23 @@ const projects = [
description: (
<>
<p>
The problem? Transformers Attention are reaching their limits.
Competing on training with GPT-4 or BloombergGPT for finance is just unfeasible for
startups or individuals, since costs are in the magnitude of millions.
Fin-RWKV is a fine-tuned version of RWKV that was fine-tuned on the finance-alpaca dataset
for a few dollars in a few hours. This can be used to answer user prompts along with real-time
data aggregated by MindsDB, like OpenBB, vector DBs, or internal datasets.
</p>
<iframe width="560" height="315" src="https://www.youtube.com/embed/MQI2CJ9kn-E?si=acdi7bkF3EKgkz-w" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
The problem? Transformers Attention are reaching their limits.
Competing on training with GPT-4 or BloombergGPT for finance is just
unfeasible for startups or individuals, since costs are in the
magnitude of millions. Fin-RWKV is a fine-tuned version of RWKV that
was fine-tuned on the finance-alpaca dataset for a few dollars in a
few hours. This can be used to answer user prompts along with
real-time data aggregated by MindsDB, like OpenBB, vector DBs, or
internal datasets.
</p>
<iframe
width="560"
height="315"
src="https://www.youtube.com/embed/MQI2CJ9kn-E?si=acdi7bkF3EKgkz-w"
title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
allowfullscreen></iframe>
</>
),
links: [
Expand All @@ -42,7 +101,7 @@ const projects = [
{
name: 'Slides',
link: 'https://docs.google.com/presentation/d/1vNQ8Y5wwR0WXlO60fsXjkru5R9I0ZgykTmgag0B3Ato/edit?usp=sharing',
}
},
],
},
{
Expand Down
11 changes: 4 additions & 7 deletions src/pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export default function Home() {
return (
<Layout
title={`Home`}
description="I like full-stack development. Also, I am interested in the cloud, computer vision and artificial intelligence.">
description="ML engineer specializing in deploying and scaling AI models for production environments. Passionate about MLOps, cloud infrastructure, and optimizing model performance.">
<Hero />
<section className={styles.servers_wrapper}>
<h2>Projects</h2>
Expand Down Expand Up @@ -119,12 +119,9 @@ export default function Home() {
of its Computer Science program.
</p>
<p>
☁️ I am passionate about cloud-native technologies and open
source software. <br />
🔥 I am a huge fan of Google Cloud Platform and Firebase.
<br />
At the moment, I am working on a Firebase and Cloudflare
project that I am very excited about.
🥇 I&apos;m currently working as a Machine Learning Engineer
at <a href="https://medal.tv">Medal.TV</a>&apos;s{' '}
<a href="https://highlight.ing">Highlight</a> project.
</p>
</div>
</div>
Expand Down
Binary file added static/img/projects/content-moderation.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit bc50ab8

Please sign in to comment.