-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
104 lines (96 loc) · 6 KB
/
index.html
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Yang Tian - Personal Website</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="stars"></div>
<div class="twinkling"></div>
<header>
<nav>
<ul>
<li><a href="#about">About</a></li>
<li><a href="#education">Education</a></li>
<li><a href="#experience">Experience</a></li>
<li><a href="#research">Research</a></li>
<li><a href="publications.html">Publications</a></li>
</ul>
</nav>
</header>
<main>
<section id="hero">
<h1>Yang Tian</h1>
<p class="tagline typing-effect">To explore and discover.</p>
</section>
<section id="about">
<h2>About Me</h2>
<div class="about-content">
<div class="profile-photo">
<img src="./yang-tian-photo.jpg" alt="Yang Tian" class="rounded-image">
</div>
<div class="about-text">
<p>I am a researcher in the fields of statistical physics, machine learning, and computational science. My work spans these seemingly distinct areas due to my focus on understanding the physical principles governing complex and heterogeneous systems, and exploring how to control and optimize these systems. My research centers on topics such as renormalization group theory, randomized algorithms, operator theory, percolation, and neural networks, with a particular emphasis on identifying their applications across various scientific and technological challenges.</p>
<div class="social-links">
<a href="https://scholar.google.com.hk/citations?hl=zh-CN&user=mRAghwIAAAAJ&view_op=list_works" target="_blank" rel="noopener noreferrer">Google Scholar</a>
<a href="https://github.com/doloMing" target="_blank" rel="noopener noreferrer">GitHub</a>
<a href="https://orcid.org/0000-0003-1970-0413" target="_blank" rel="noopener noreferrer">ORCID</a>
</div>
</div>
</div>
</section>
<section id="education">
<h2>Education</h2>
<div class="card">
<h3>Ph.D. in Cognitive Science (although I barely learn)</h3>
<p>Tsinghua Laboratory of Brain and Intelligence, Tsinghua University. During my time at the THBI, I shift my focus towards the study of statistical physics and computational physics, and begin conducting research in these related areas.</p>
<p>2020 - 2024</p>
</div>
<div class="card">
<h3>Bachelor of Science</h3>
<p>Tsinghua University. During my undergraduate studies, I focus primarily on computer science and mathematics, with a keen interest in neuroscience. I have explored theoretical neuroscience and attempted to conduct research in this field.</p>
<p>2016 - 2020</p>
</div>
</section>
<section id="experience">
<h2>Work Experience</h2>
<div class="card">
<h3>Researcher</h3>
<p>Infplane AI Technologies Ltd. I serve as the CEO and a researcher at Infplane AI Technologies Ltd. My primary research focuses on optimal control of complex, integrated hardware systems and high-performance computing.</p>
<p>July 2024 - Present</p>
</div>
<div class="card">
<h3>Researcher</h3>
<p>Laboratory of Computational Biology and Complex Systems, City University of Macau. During this period, my research focuses on the development of high-performance computing tools related to computational physics and computational biology.</p>
<p>August 2024 - December 2024</p>
</div>
<div class="card">
<h3>Research Intern</h3>
<p>Central Research Institute, 2012 Laboratories, Huawei Technologies Co. Ltd. I am primarily responsible for developing systems related to scientific computing. In this role, I develop neural operators and various differential equation-based neural network solvers, focusing on improving the efficiency and accuracy of computational methods for solving complex mathematical problems.
</p>
<p>2021 - 2023</p>
</div>
</section>
<section id="research">
<h2>Research Work</h2>
<div class="card">
<h3>Analytical methods for complex systems</h3>
<p>My first research direction is the analytical methods for complex systems. I explore theories and computational tools such as renormalization group theory, percolation, and stochastic networks, aiming to provide a foundation for characterizing, understanding, and predicting the behaviors of complex systems.</p>
</div>
<div class="card">
<h3>Computational science for everything</h3>
<p>My second research direction is scientific computing and high-performance computing. I explore how to combine tools from machine learning, randomized algorithms, and operator theory to design high-performance computational tools. These tools aim to solve a wide range of scientific and industrial problems more efficiently, using fewer computational resources and less time.</p>
</div>
<div class="card">
<h3>Computational statistics for complex data</h3>
<p>My third research direction is computational statistics. I explore new statistical methods and their computational implementations, aiming to provide tools for statistical inference and hypothesis testing in complex scenarios.</p>
</div>
</section>
</main>
<footer>
<p>© 2024 Yang Tian. Explore the frontiers of science for fun.</p>
</footer>
</body>
</html>