1
+ import { DocumentTextIcon , NewspaperIcon , PaperClipIcon , UserGroupIcon } from "@heroicons/react/outline" ;
1
2
import Link from "next/link" ;
2
3
import { useRouter } from "next/router" ;
3
4
function classNames ( ...classes ) {
@@ -39,56 +40,71 @@ export default function Header({ benchmarks }) {
39
40
</ p >
40
41
< ul className = "flex flex-row justify-start flex-wrap gap-x-16 gap-y-4" >
41
42
< li className = "flex items-center text-sm text-gray-600 gap-1" >
42
- < svg
43
- xmlns = "http://www.w3.org/2000/svg"
44
- className = "h-6 w-6"
45
- fill = "none"
46
- viewBox = "0 0 24 24"
47
- stroke = "currentColor"
48
- strokeWidth = { 2 }
43
+ < a
44
+ href = "https://arxiv.org/abs/2007.05558"
45
+ target = "_blank"
46
+ rel = "noreferrer"
47
+ className = "hover:underline flex items-center text-sm text-gray-600 gap-1"
49
48
>
50
- < path
51
- strokeLinecap = "round"
52
- strokeLinejoin = "round"
53
- d = "M9 12h6m-6 4h6m2 5H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z"
54
- />
55
- </ svg >
56
- Paper
49
+ < DocumentTextIcon className = "w-5 h-5" /> Paper
50
+ </ a >
57
51
</ li >
58
52
< li className = "flex items-center text-sm text-gray-600 gap-1" >
59
- < svg
60
- xmlns = "http://www.w3.org/2000/svg"
61
- className = "h-6 w-6"
62
- fill = "none"
63
- viewBox = "0 0 24 24"
64
- stroke = "currentColor"
65
- strokeWidth = { 2 }
66
- >
67
- < path
68
- strokeLinecap = "round"
69
- strokeLinejoin = "round"
70
- d = "M17 20h5v-2a3 3 0 00-5.356-1.857M17 20H7m10 0v-2c0-.656-.126-1.283-.356-1.857M7 20H2v-2a3 3 0 015.356-1.857M7 20v-2c0-.656.126-1.283.356-1.857m0 0a5.002 5.002 0 019.288 0M15 7a3 3 0 11-6 0 3 3 0 016 0zm6 3a2 2 0 11-4 0 2 2 0 014 0zM7 10a2 2 0 11-4 0 2 2 0 014 0z"
71
- />
72
- </ svg >
73
- Authors: Kristjan Greenewald, Keeheon Lee, and Gabriel Manso
53
+
54
+ < UserGroupIcon className = "w-5 h-5" /> Kristjan Greenewald, Keeheon Lee, and Gabriel
55
+ Manso
74
56
</ li >
75
- < li className = "flex items-center text-sm text-gray-600 gap-1" >
76
- < svg
77
- xmlns = "http://www.w3.org/2000/svg"
78
- className = "h-6 w-6"
79
- fill = "none"
80
- viewBox = "0 0 24 24"
81
- stroke = "currentColor"
82
- strokeWidth = { 2 }
57
+ < li className = "flex items-center text-sm text-gray-600 gap-1 flex-wrap" >
58
+ < NewspaperIcon className = "w-5 h-5" />
59
+ < a
60
+ href = "https://www.wired.com/story/prepare-artificial-intelligence-produce-less-wizardry/"
61
+ target = "_blank"
62
+ rel = "noreferrer"
63
+ className = "hover:underline"
64
+ >
65
+ Wired
66
+ </ a > ,
67
+ < a
68
+ href = "https://venturebeat.com/2020/07/15/mit-researchers-warn-that-deep-learning-is-approaching-computational-limits/"
69
+ target = "_blank"
70
+ rel = "noreferrer"
71
+ className = "hover:underline"
72
+ >
73
+ VentureBeat
74
+ </ a > ,
75
+ < a
76
+ href = "https://www.discovermagazine.com/technology/the-computational-limits-of-deep-learning-are-closer-than-you-think"
77
+ target = "_blank"
78
+ rel = "noreferrer"
79
+ className = "hover:underline"
80
+ >
81
+ Discover
82
+ </ a > ,
83
+ < a
84
+ href = "https://thenextweb.com/neural/2020/07/17/ai-researchers-say-weve-squeezed-nearly-as-much-out-of-modern-computers-as-we-can/"
85
+ target = "_blank"
86
+ rel = "noreferrer"
87
+ className = "hover:underline"
88
+ >
89
+ The Next Web
90
+ </ a > ,
91
+ < a
92
+ href = "https://interestingengineering.com/deep-learning-reaching-computational-limits-warns-new-mit-study"
93
+ target = "_blank"
94
+ rel = "noreferrer"
95
+ className = "hover:underline"
96
+ >
97
+ Interesting Engineering
98
+ </ a > ,
99
+ < a
100
+ href = "https://content.techgig.com/mit-researchers-warn-that-deep-learning-is-reaching-its-computational-limit/articleshow/77033239.cms"
101
+ target = "_blank"
102
+ rel = "noreferrer"
103
+ className = "hover:underline"
83
104
>
84
- < path
85
- strokeLinecap = "round"
86
- strokeLinejoin = "round"
87
- d = "M11 5.882V19.24a1.76 1.76 0 01-3.417.592l-2.147-6.15M18 13a3 3 0 100-6M5.436 13.683A4.001 4.001 0 017 6h1.832c4.1 0 7.625-1.234 9.168-3v14c-1.543-1.766-5.067-3-9.168-3H7a3.988 3.988 0 01-1.564-.317z"
88
- />
89
- </ svg > { " " }
90
- Wired, VentureBeat, Discover, The Next Web, Interesting
91
- Engineering, Tech Gig
105
+ Tech Gig
106
+ </ a >
107
+
92
108
</ li >
93
109
</ ul >
94
110
</ div >
@@ -104,11 +120,13 @@ export default function Header({ benchmarks }) {
104
120
< li
105
121
className = { classNames (
106
122
item . range == router . query . slug ? "font-bold" : "" ,
107
- "text-[#AA3248] mt-1"
123
+ "text-[#AA3248] mt-1 hover:underline "
108
124
) }
109
125
key = { item . range }
110
126
>
111
- < Link href = { '/benchmarks/' + item . range } > { item . dataset } </ Link >
127
+ < Link href = { "/benchmarks/" + item . range } >
128
+ { item . dataset }
129
+ </ Link >
112
130
</ li >
113
131
) ) }
114
132
</ ul >
0 commit comments