-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (22 loc) · 996 Bytes
/
index.html
File metadata and controls
27 lines (22 loc) · 996 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
---
layout: home
author_profile: true
classes: wide
---
<p>Welcome to my site!</p>
<p>
I am a Data Scientist on the dev team for <a href="https://www.fisglobal.com/products/fis-cleared-derivatives-suite">FIS Cleared Derivatvies Suite</a>.
I have deployed LLM models to extract features, classify, and recommend decisions based on free-form PDFs, TXTs, and TIFs at FIS and Elevance Health.
</p>
<p> I am currently working on a side project (product idea?) based on my experience with language models.
<a href="https://github.com/optimalcharb/pdf-entity-labeling">Open Source GitHub</a>
</p>
<div id="pdf-viewer" style="height: 1000px"></div>
<script async type="module">
import EmbedPDF from 'https://snippet.embedpdf.com/embedpdf.js';
const viewer = EmbedPDF.init({
type: 'container',
target: document.getElementById('pdf-viewer'),
src: 'https://raw.githubusercontent.com/optimalcharb/optimalcharb.github.io/main/assets/files/Charles_Bauer_Resume.pdf'
});
</script>