-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathqualifications_HTML.html
More file actions
75 lines (72 loc) · 3.57 KB
/
qualifications_HTML.html
File metadata and controls
75 lines (72 loc) · 3.57 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Qualifications</title>
</head>
<body>
<header>
<h1>My Qualifications</h1>
<p><a href="https://drive.google.com/file/d/1W-iBPiUgA8MiK41TnWtvvP8OVjQ1lwuB/view?usp=sharing">Click here to see my resume</a></p>
</header>
<section id="projects-double-column">
<div id="projects-triple-row">
<div class="project-triple-row">
<h2>Data Analysis</h2>
<p>
My stock trading project has taught me a tremendous amount about data analysis and how to use it to make informed trading decisions.
I have used solely python and have learned how to use pandas, matplotlib, and numpy to clean and analyze data.
</p>
</div>
<div class="project-triple-row">
<h2><a href="https://www.youtube.com/watch?v=2-mzxsSWVCU&list=PL2zRqk16wsdo3VJmrusPU6xXHk37RuKzi">Machine Learning</a></h2>
<p>
My research into neural radiance fields and computer graphics has taught me a lot about machine learning.
The best algorithms use an encoding scheme that is then input into a fully fused multilayer perceptron.
I have learned how to use tensorflow and pytorch to train and test models.
</p>
</div>
<div class="project-triple-row">
<h2><a href="https://docs.nvidia.com/cuda/">CUDA</a></h2>
<p>
The best algorithms used in neural radiance fields take advantage of cuda programming and its powerful gpu acceleration capabilities.
Because of such, I have learned how to use cuda and its unique capabilities to train and test models with cuda kernels.
</p>
</div>
</div>
<div id="projects-double-row">
<div class="project-double-row">
<h2><a href="https://80000hours.org/wp-content/uploads/2021/08/Quant_Trading_Guide_v0-1.pdf">Quantitative Trading</a></h2>
<p>
One area of interest for me is quantitative trading.
I have always been interested in math and statistics.
Then when I began picking up computer science, I wanted to combine all of my skills and saw quantitative trading as a natural fit.
Additionally, the field of quantitative trading will be around for a long time even with the uprising of AI and machine learning.
AI will be a great supplement to quantitative trading but it will never replace it.
</p>
</div>
<div class="project-double-row">
<h2><a href="https://arxiv.org/abs/2003.08934">NeRFs and Computer Graphics</a></h2>
<p>
Another area of interest for me is neural radiance fields and computer graphics.
NeRFs represent a groundbreaking advancement in computer graphics, combining deep learning with 3D scene reconstruction to generate realistic images.
They are an important part of the future of computer graphics and have the potential to revolutionize the way we view and interact with the world.
Additionally, the continual improvements in the machine learning world will be reflected in the field of computer graphics.
</p>
</div>
</div>
</section>
<nav>
<div class="container">
<ul>
<li><a href="index_HTML.html">Home</a></li>
<li><a href="portfolio_HTML.html">Projects</a></li>
<li><a href="qualifications_HTML.html">Qualifications</a></li>
<li><a href="service_HTML.html">Volunteering</a></li>
<li><a href="genai_HTML.html">GenAI</a></li>
</ul>
</div>
</nav>
</body>
</html>