-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnews.html
More file actions
150 lines (149 loc) · 20.4 KB
/
news.html
File metadata and controls
150 lines (149 loc) · 20.4 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
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
<!DOCTYPE html>
<html class="light" lang="en">
<head>
<meta charset="utf-8"/>
<meta content="width=device-width, initial-scale=1.0" name="viewport"/>
<title>e-Lab news</title>
<script src="https://cdn.tailwindcss.com?plugins=forms,container-queries"></script>
<link href="https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;600;700;800;900&family=Space+Grotesk:wght@400;600;700&family=Inter:wght@400;700&family=Material+Symbols+Outlined:wght,FILL@100..700,0..1&display=swap" rel="stylesheet"/>
<link href="img/favicon.ico" rel="shortcut icon" type="image/x-icon"/>
<script id="tailwind-config">
tailwind.config = {
darkMode: "class",
theme: {
extend: {
colors: {
"surface": "#f9f9f9", "surface-container": "#eeeeee", "surface-container-high": "#e8e8e8",
"on-surface": "#1a1c1c", "on-surface-variant": "#4c4546", "primary": "#000000"
},
borderRadius: { "DEFAULT": "0.125rem", "lg": "0.25rem", "xl": "0.5rem", "full": "0.75rem" },
spacing: { "unit": "4px", "container-padding": "1rem", "window-margin": "2rem", "gutter": "1rem" },
fontFamily: {
"headline-lg": ["Work Sans"], "headline-md": ["Work Sans"], "title-bar": ["Work Sans"],
"label-caps": ["Space Grotesk"], "mono": ["Space Grotesk"], "body-md": ["Inter"], "body-sm": ["Inter"]
},
fontSize: {
"headline-lg": ["24px", {"lineHeight": "32px", "fontWeight": "700"}],
"headline-md": ["18px", {"lineHeight": "24px", "fontWeight": "700"}],
"title-bar": ["14px", {"lineHeight": "18px", "fontWeight": "700"}],
"body-md": ["14px", {"lineHeight": "20px", "fontWeight": "400"}],
"body-sm": ["12px", {"lineHeight": "16px", "fontWeight": "400"}]
}
}
}
}
</script>
<style>
.dither-bg { background-image: radial-gradient(#000 1px, transparent 0); background-size: 4px 4px; background-color: #f9f9f9; }
.racing-stripes { background: repeating-linear-gradient(0deg, #000, #000 1px, transparent 1px, transparent 4px); }
.retro-window-shadow { box-shadow: 4px 4px 0 0 #000; }
.btn-double-border { border: 1px solid #000; outline: 2px solid #000; outline-offset: -4px; }
.content h2 { margin: 2rem 0 1rem; font-family: Work Sans, sans-serif; font-size: 1.5rem; line-height: 2rem; font-weight: 900; text-transform: uppercase; }
.content h3 { margin: 2rem 0 1rem; border-bottom: 1px solid #000; padding-bottom: .5rem; font-family: Work Sans, sans-serif; font-size: 1.1rem; line-height: 1.5rem; font-weight: 800; text-transform: uppercase; }
.content h4 { margin: 1.25rem 0 .35rem; font-family: Work Sans, sans-serif; font-size: .95rem; line-height: 1.35rem; font-weight: 800; text-transform: uppercase; }
.content p { margin: .85rem 0; font-size: 14px; line-height: 1.65; }
.content a { color: #000; font-weight: 700; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 2px; }
.content a:hover { background: #000; color: #fff; }
.content img { border: 1px solid #000; filter: grayscale(1) contrast(1.2); max-width: 100%; height: auto; }
.content hr { margin: 2rem 0; border: 0; border-top: 1px solid #000; }
.content strong { font-weight: 800; }
.content div[style*="display:table"] { display: grid !important; grid-template-columns: minmax(120px, 200px) 1fr; gap: 1rem; align-items: start; margin: 1rem 0; }
.content div[style*="display:table-row"], .content div[style*="display:table-cell"] { display: block !important; padding-left: 0 !important; }
@media (max-width: 640px) { .content div[style*="display:table"] { grid-template-columns: 1fr; } }
</style>
</head>
<body class="bg-surface dither-bg font-body-md text-on-surface min-h-screen pt-10">
<header class="fixed top-0 left-0 w-full h-6 border-b border-black z-50 bg-white flex items-center px-4 overflow-hidden">
<div class="text-[14px] font-black text-black mr-6 uppercase tracking-tighter font-['Work_Sans'] whitespace-nowrap">e-Lab</div>
<nav class="flex gap-4 items-center h-full overflow-x-auto">
<a class="text-black hover:bg-black hover:text-white px-2 py-0.5 font-['Work_Sans'] text-[14px] font-bold uppercase tracking-tighter whitespace-nowrap" href="index.html">Home</a>
<a class="text-black hover:bg-black hover:text-white px-2 py-0.5 font-['Work_Sans'] text-[14px] font-bold uppercase tracking-tighter whitespace-nowrap" href="index.html#about">About</a>
<a class="bg-black text-white px-2 py-0.5 font-['Work_Sans'] text-[14px] font-bold uppercase tracking-tighter whitespace-nowrap" href="news.html">News</a>
<a class="text-black hover:bg-black hover:text-white px-2 py-0.5 font-['Work_Sans'] text-[14px] font-bold uppercase tracking-tighter whitespace-nowrap" href="publications.html">Publications</a>
<a class="text-black hover:bg-black hover:text-white px-2 py-0.5 font-['Work_Sans'] text-[14px] font-bold uppercase tracking-tighter whitespace-nowrap" href="teaching.html">Teaching</a>
<a class="text-black hover:bg-black hover:text-white px-2 py-0.5 font-['Work_Sans'] text-[14px] font-bold uppercase tracking-tighter whitespace-nowrap" href="index.html#contact">Contact</a>
</nav><div class="ml-auto hidden md:flex items-center"><span class="material-symbols-outlined text-[16px]">settings</span></div></header>
<main class="max-w-6xl mx-auto px-gutter py-window-margin space-y-12">
<section class="flex flex-col items-center justify-center py-12" id="home">
<div class="bg-white border-2 border-black p-6 md:p-8 retro-window-shadow text-center max-w-full">
<h1 class="text-[36px] md:text-[64px] font-black tracking-[0.14em] md:tracking-[0.2em] leading-none mb-4 uppercase">E - L A B<br/>N E W S</h1>
<div class="h-1 bg-black w-full mb-4 racing-stripes"></div>
<p class="font-mono text-headline-md uppercase tracking-widest">Archive of lab milestones, awards, papers and press</p>
</div>
</section>
<section class="bg-white border border-black retro-window-shadow ">
<div class="h-6 border-b border-black bg-surface-container flex items-center px-2 justify-between">
<div class="flex items-center gap-1"><div class="w-3 h-3 border border-black"></div><div class="racing-stripes w-16 h-3 opacity-20 hidden sm:block"></div></div>
<span class="font-title-bar text-title-bar uppercase">News.archive</span>
<div class="flex items-center gap-1"><div class="racing-stripes w-16 h-3 opacity-20 hidden sm:block"></div><span class="material-symbols-outlined text-sm">unfold_more</span></div>
</div>
<div class="p-container-padding"><div class="content">
<!-- <h2>News</h2> -->
<p><strong>October 2019:</strong> Our startup FWDNXT Inc., a maker of hardware and software tools for artificial intelligence and deep learning applications, was acquired by Micron Inc.</p>
<p><strong>January 2018:</strong> Our new <a href="http://www.purdue.edu/newsroom/releases/2018/Q1/new-c-bric-center-will-tackle-brain-inspired-computing.html">research center</a>, named The Center for Brain-inspired Computing Enabling Autonomous Intelligence, or C-BRIC. This is a five-year project supported by $27 million in funding from the Semiconductor Research Corp. (SRC).</p>
<p><strong>March 2017:</strong> Check out <a href="https://codeac29.github.io/projects/linknet/index.html">LinkNet, our new neural network for autonomous vehicles</a> - very efficient network and very good accuracy in one simple solution. By Abhishek Chaurasia!</p>
<p><strong>March 2014:</strong> Our nn-X vision system has been featured on the <a href="http://www.jconline.com/videonetwork/3399982126001/Purdue-research-allows-cell-phone-to-behave-like-human-brain">Journal and Courier</a>, on <a href="http://wlfi.com/2014/03/19/purdue-researchers-working-to-make-smartphones-smarter/">18WLFI TV</a>, <a href="http://www.businessinsider.com.au/human-like-tech-for-phones-2014-3">Business Insider</a>, <a href="http://phys.org/news/2014-03-enabling-smartphones.html">Phys org</a>, <a href="http://www.theengineer.co.uk/electronics/news/deep-learning-gives-visual-identity-to-smartphones/1018223.article">the Engineer</a>, <a href="http://www.imperialvalleynews.com/index.php/news/latest-news/7668-smartphone-to-become-smarter-with-deep-learning-innovation.html">Imperial Valley News</a>, <a href="http://www.purdue.edu/newsroom/releases/2014/Q1/smartphone-to-become-smarter-with-deep-learning-innovation.html">Purdue News</a>, <a href="http://www.phonearena.com/news/Smartphones-will-get-smarter-with-deep-learning-developments_id54151">Phone Arena</a>, <a href="http://www.hoosieragtoday.com/smartphone-to-become-smarter-with-deep-learning-innovation/">Hoosier AG Today</a>, <a href="http://www.cnbeta.com/articles/277401.htm">CN beta</a>, to name a few!</p>
<p><img src=img/JC-3-2014-ec-2.png width=100% style="max-width:450px;"></p>
<p><strong>February 2014:</strong> We have been invited to the Embedded Vision Workshop at CVPR 2014, to present our new <a href="http://www.youtube.com/watch?v=7I-zLjLKZV8">vision system nn-X</a>.</p>
<p><strong>January 2014:</strong> Our nn-X vision system, presented at NIPS 2013, has been featured on the <a href="http://www.technologyreview.com/news/523181/an-ai-chip-to-help-computers-understand-images/">MIT Technology Review</a>, on <a href="http://www.bbc.co.uk/programmes/p01pfmzl">BBC</a>, <a href="http://www.fiercewireless.com/tech/story/teradeep-hopes-see-apple-qualcomm-others-use-its-artificial-intelligence-te/2014-01-05">FierceWireless</a>, and more!</p>
<p>October 2013: Our neural network micro-chips find a use by cell-phone giants, such as Qualcomm: see <a href="http://www2.technologyreview.com/emtech/13/video/day1/">EmTech MIT videos</a> (on right: select talk by Matt Grob), and also read this <a href="http://m.technologyreview.com/news/520211/qualcomm-to-build-neuro-inspired-chips/">report</a>.</p>
<p><strong>September 2013:</strong> Our self-published book is finally out: “Biomedical Circuits and Systems”, Integrated Instrumentation, by Wei Tang, Evan Joon Hyuk Park, Brian Goldstein, Dongsoo Kim, Pujitha Weerakoon, Eugenio Culurciello, e-Lab. Lulu 2013. <a href="http://www.lulu.com/shop/eugenio-culurciello-and-wei-tang-and-evan-joon-hyuk-park-and-brian-goldstein/biomedical-circuits-and-systems/hardcover/product-21233739.html#productDetails">Ordering info</a>.</p>
<p><strong>March 2013:</strong> our <a href="http://arxiv.org/abs/1301.2820">first open access</a> paper got accepted at a new revolutionary conference with open acces and open review systems. Please look at <a href="http://openreview.net/">here</a> and <a href="https://sites.google.com/site/representationlearning2013/">there</a></p>
<p><strong>September 2012:</strong> neuFlow SoC (sytem-on-a-chip) arrived from the IBM 45 nm factory!</p>
<p><img src=img/neuflow-soc.png width=100% style="max-width:548px;"></p>
<p><strong>July 2012:</strong> Our work on hardware accelerated visual system is featured on <a href="http://www.popsci.com/technology/article/2012-07/how-teach-robot-improvise">Popular Science</a>.</p>
<p><strong>February 2012:</strong> Eugenio Culurciello gave a talk at the Yahoo-sponsored Machine Learning Seminar at Purdue: Talk Slides.</p>
<p><strong>February 2012:</strong> Eugenio Culurciello Purdue BME seminar Feb 15th 2012: "Scaling up neuroscience: optogenetic neural recording": <a href="http://www.youtube.com/watch?v=iGcVhkkDSho&list=UUQQzotkfVnXzBUMzpPaVdNw&index=1&feature=plcp">Talk Slides</a>.</p>
<p><strong>November 2011:</strong> Eugenio Culurciello gave a keynote address at the at <a href="http://www.socconference.com/">System-On-A-Chip conference 2011</a>. A video is available <a href="http://www.youtube.com/watch?v=bgtX3JYdUTQ">here</a>.</p>
<p><strong>July 2011:</strong> Eugenio Culurciello is now an Associate Professor at Purdue University Weldon School of Biomedical Engineering. e-Lab has now moved to Purdue!</p>
<p><strong>June 2011:</strong> Eugenio Culurciello became a Senior Member of the IEEE.</p>
<p><strong>May 2011:</strong> We have presented 3 papers IEEE ISCAS/CASFEST 2011 in Rio, Brazil. For details please refer to publications.</p>
<p><strong>April 2011:</strong> Eugenio Culurciello and e-Lab is moving to Purdue University in July.</p>
<p><strong>November 2010:</strong> Eugenio Culurciello was selected as recipient of the Presidential Early Career Award for Scientists and Engineers (PECASE). The PECASE is the highest honor bestowed by the United States government on outstanding scientists and engineers in the early stages of their independent research careers. A photo of the event:</p>
<p><img src=img/pecase.jpg width=100%></p>
<p><strong>November 2010:</strong> Eugenio Culurciello was elected to be a Distinguished Lecturer of the IEEE by the society of Circuits and Systems (CASS) for 2011-2012 by the Neural Systems & Applications Technical Committee. Distinguished Lecturer of the IEEE are engineering professionals who help lead their fields in new technical developments that shape the global community. As a Distinguished Lecturer, IEEE will support travel to selected institutions to present our research work and results, and also publicize our school and activities.</p>
<p><strong>September 2010:</strong> BREAKTHROUGH: NeuFlow, our first synthetic model of the mammalian visual system in hardware is live!. This breakthrough was featured in the media (<a href="http://www.msnbc.msn.com/id/39233118">MSNBC</a>, <a href="http://dts.podtrac.nytimes.com/redirect.mp3/podcasts.nytimes.com/podcasts/2010/10/06/07techtalk.mp3">New York Times podcast</a>, <a href="http://www.economist.com/node/17305316">the Economist</a>, <a href="http://www.ibtimes.com/articles/63070/20100916/supercomputers-microchips-self-driving-cars.htm">International Business Times</a>, <a href="http://www.sciencedaily.com/releases/2010/09/100915171544.htm">Science Daily</a>, <a href="http://www.gizmag.com/neuflow-seeing-supercomputer/16387/">gizmag</a>, <a href="http://opa.yale.edu/news/article.aspx?id=7752">Yale News</a>, to name a few – Google “Neuflow” or “NeoVision + Culurciello” to get them all) in the Fall 2010.</p>
<p><strong>July 2010:</strong> BREAKTHROUGH: Our Voltage-Sensitive Dye Imaging (VSDI) system was tensted on the mouse visual cortex at the University of Osaka, with prof. Tetsuya Yagi. A summary of results will follow.</p>
<p><strong>June 2010:</strong> BREAKTHROUGH: Our patch-clamp system <a href="https://engineering.purdue.edu/elab/blog/wp-content/uploads/2011/12/JNM2010.pdf">was published</a> in the Journal of Neuroscience Methods. A grant from NIH (phase II STTR with Warner Instrument) was set up to commecialize this device.</p>
<p><strong>March 2010:</strong> Eugenio Culurciello and his team won a DARPA award to develop hardware for synthetic vision in the context of project NeoVision2.</p>
<p><strong>February 2010:</strong> Eugenio Culurciello and his team won an ONR MURI award titled: “Figure-Ground Processing, Saliency and Guided Attention for Analysis of Large Natural Scenes”.</p>
<p><strong>January 2010:</strong> Six of our papers were accepted for presentation at IEEE ISCAS 2010 in Paris.</p>
<p><strong>August 2009:</strong> The book “Silicon-on-Sapphire Circuits and Systems, Sensor and Biosensor interfaces by Eugenio Culurciello has been published by McGraw Hill and is available <a href="http://www.mhprofessional.com/product.php?isbn=0071608486">here</a>.</p>
<p><strong>July 2009:</strong> Eugenio Culurciello won an NSF award for the project: “A lightweight event-based synthetic vision system for assisted-living and machine vision applications”.</p>
<p><strong>June 2009:</strong> Eugenio Culurciello and Vincent Pieribone won an NIH award for the project: “High-Speed, Wide Field Fluorescent Imaging of Cortex in Freely Moving Animals (R01 NS065110-01)”.</p>
<p><strong>May 2009:</strong> We have presented 4 papers and two demos at IEEE ISCAS 2009 in Taipei, Taiwan. For details please refer to publications.</p>
<p><strong>April 2009:</strong> Eugenio Culurciello was promoted to Associate Professor of Electrical Engineering.</p>
<p><strong>November 2008:</strong> Eugenio Culurciello was invited to the National Academies Keck Foundation Future Initiatives Conference, where he was part of group 6B on the study of the human brain.</p>
<p><strong>October 2008:</strong> We presented an invited paper at the 2008 IEEE International SOI conference titled: “Mixed Signal Microsystems in Emerging SOI Technologies”.</p>
<p><strong>May 2008:</strong> We obtained ONR funding for our project on optical brain-machine interfaces, the title of the project is “A high-speed, in-vivo optical neural recording system”.</p>
<p><strong>May 2008:</strong> Our paper “Fall Detection Using an Address-Event Temporal Contrast Vision Sensor”, has won the Best Paper Award at the 2008 IEEE International Symposium on Circuits and Systems, Seattle USA, May 18-21, 2008.</p>
<p><strong>January 2008:</strong> We obtained ONR funding for our project on hyperbaric instruments for electro-physiology, the title of the project is “Integrated Microscale Biosensor for Cell Membrane and Patch-Clamp”.</p>
<p><strong>January 2008:</strong> Eugenio Culurciello is writing a book on SOS circuits and systems with the Peregrine Semiconductors Process.</p>
<p><strong>January 2008:</strong> All six of our submitted papers were accepted for oral presentation at IEEE ISCAS 2008. For details please refer to publications.</p>
<p><strong>September 2007:</strong> We partnered with Peregrine Semiconductors to evaluate ultra low-power sensory and communication interfaces.</p>
<p><strong>August 2007:</strong> We obtained ARO seed funding for our project on voltage-sensitive-dyes-imaging titled: “Development of an Implantable Optical Neuroprosthetic: System Integration and Testing” with Vincent Pieribone (Yale-Pierce Fnd.).</p>
<p><strong>July 2007:</strong> We obtained NSF funding for our project on high-density patch-clamp amplifiers titled: “IDBR: High-Performance Integrated Patch Clamp Amplifiers” with prof. Fred Sigworth (Yale).</p>
<p><strong>January 2007:</strong> 5 papers were accepted at IEEE ISCAS 2007. For details please refer to publications.</p>
<p><strong>October 2006:</strong> We participated to the 2nd 3D-run by MIT Lincoln Laboratories with the design of a Silicon Retina.</p>
<p><strong>September 2006:</strong> We obtained NSF funding for our project titled: “A Lightweight Event-Driven Network of Biomemetic Image Sensors” with A. Savvides (Yale).</p>
<p><strong>March 2006:</strong> We co-developed an AER image sensor simulator to test the sensors before fabrication using a webcam. For details please look <a href="http://www.eng.yale.edu/enalab/AERnets.html">here</a>.</p>
<p><strong>March 2005:</strong> Farah won the best student paper award for: “Integrated Patch clamp amplifier”, Farah Laiwalla, Zhengming Fu, Kate Klemic, Fred Sigworth, Eugenio Culurciello, Yale University CMOC Symposium March 17th, 2005.</p>
</div></div>
</section>
</main>
<footer class="w-full border-t border-black bg-zinc-100 mt-20">
<div class="flex flex-col md:flex-row gap-4 md:gap-6 justify-between items-start md:items-center px-8 py-4 w-full">
<div class="font-['Work_Sans'] text-[10px] uppercase tracking-widest text-black">All Rights Reserved. © 2026 - e-Lab</div>
<div class="flex flex-wrap gap-6">
<a class="font-['Work_Sans'] text-[10px] uppercase tracking-widest text-zinc-600 hover:text-black hover:underline" href="https://e-lab.github.io/">e-Lab</a>
<a class="font-['Work_Sans'] text-[10px] uppercase tracking-widest text-zinc-600 hover:text-black hover:underline" href="https://medium.com/@culurciello/">Medium</a>
<a class="font-['Work_Sans'] text-[10px] uppercase tracking-widest text-zinc-600 hover:text-black hover:underline" href="https://www.linkedin.com/in/eugenioculurciello/">LinkedIn</a>
</div>
</div>
</footer>
<a class="fixed bottom-8 right-8 w-16 h-16 bg-white border border-black retro-window-shadow flex flex-col items-center justify-center p-1 cursor-pointer hover:bg-black group" href="index.html#contact" aria-label="Contact">
<span class="material-symbols-outlined text-black group-hover:text-white" style="font-size: 32px;">mail</span>
<span class="text-[8px] font-black uppercase mt-1 text-black group-hover:text-white">Contact</span>
</a>
</body>
</html>