-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathnews.html
86 lines (73 loc) · 3.83 KB
/
news.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
<!DOCTYPE html>
<html lang="en">
<head>
<style>
p {
font-size: 24px;
}
</style>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-14TNT3WGGV"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-14TNT3WGGV');
</script>
<title>Sign-up</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<nav class="navbar">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="signup.html">Sign-up</a></li>
<li><a href="news.html">News</a></li>
<li><a href="demo.html">Demo</a></li>
<li><a href="team.html">Team</a></li>
</ul>
</nav>
<div class="banner">
<img src="images/logo.png" class="logo">
<div class="content">
<h2>
News
</h2>
<!--Add news items below. New items go to the top-->
<div class="news-item">
<h4 class="news-date">27-Nov-2024</h4>
<p class="news-text">Our first paper <a href="https://www.nature.com/articles/s41562-024-02046-9">Large language models surpass human experts in predicting neuroscience results</a> has been published at Nature Human Behaviour! <br>
</p>
<div class="news-item">
<h4 class="news-date">04-Sept-2024</h4>
<p class="news-text">Xiaoliang gave a talk about the BrainGPT project at RSEcon24, invited by Microsoft, covering results in the recent preprint and his experience using Microsoft Azure: <a href="https://www.linkedin.com/feed/update/urn:li:activity:7237523058184388608/">LinkedIn Post</a> <br>
</p>
<div class="news-item">
<h4 class="news-date">20-March-2024</h4>
<p class="news-text">Brad gave a talk about the BrainGPT project, covering results in our recent preprint: <a href="https://www.youtube.com/watch?v=sDt4-Q_jz7g">YouTube link</a> <br>
<!--- <iframe width="560" height="315" src="https://www.youtube.com/watch?v=sDt4-Q_jz7g" frameborder="0" allowfullscreen></iframe> -->
</p>
<div class="news-item">
<h4 class="news-date">7-March-2024</h4>
<p class="news-text">Our first paper <a href="https://arxiv.org/abs/2403.03230">Large language models surpass human experts in predicting neuroscience results</a> is now available.
<div class="news-item">
<h4 class="news-date">1-October-2023<!--Add The date here--></h4>
<p class="news-text">Microsoft Research's <a href="https://www.microsoft.com/en-us/research/collaboration/accelerating-foundation-models-research/phase-ii/" target="_blank">Accelerating Foundation Models Research initiative</a> has provided computing to help train BrainGPT. Thank You!
</p>
</p>
<!--Add The news text here--></p>
</div>
<div class="news-item">
<h4 class="news-date">9-September-2023</h4> <!--Uncomment the inside of the element-->
<p class="news-text">Brad gave a talk about the BrainGPT project, covered in the first 25 minutes of this video: <br>
<iframe width="560" height="315" src="https://www.youtube.com/embed/7G4gR8LfI04?si=T-1YX5J4vX-4Rez0" frameborder="0" allowfullscreen></iframe>
</p>
</div>
<div class="news-item">
<h4 class="news-date"><!--Add The date here--></h4>
<p class="news-text"><!--Add The news text here--></p>
</div>
</div>
</div>
</body>
</html>