FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
ml4code.github.io/papers.html at source · ml4code/ml4code.github.io · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
ml4code
/
ml4code.github.io
Public
Notifications
You must be signed in to change notification settings
Fork
86
Star
296
Code
Issues
2
Pull requests
2
Actions
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Security and quality
Insights
Expand file tree
Breadcrumbs
ml4code.github.io
/
papers.html
Copy path
More file actions
More file actions
Latest commit
History
History
History
59 lines (52 loc) · 1.87 KB
Breadcrumbs
ml4code.github.io
/
papers.html
Copy path
File metadata and controls
59 lines (52 loc) · 1.87 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
---
layout: default
title: Search all Publications on Machine Learning for Source Code
description: A list of research papers for machine learning models for source code.
---
Search across all paper titles, abstracts, authors by using the search field.
Please consider
<
a
href
="
/contributing.html
"
>
contributing
</
a
>
by updating
the information of existing papers or adding new work.
<
table
id
="
allPapers
"
>
<
thead
>
<
th
>
Year
</
th
>
<
th
>
Title
</
th
>
<
th
>
Authors
</
th
>
<
th
>
Venue
</
th
>
<
th
>
Abstract
</
th
>
</
thead
>
<
tbody
>
{% assign publicationsByYear = site.publications | sort: "year" | group_by: "year" %}
{% for year in publicationsByYear reversed %}
{% for publication in year.items %}
<
tr
>
<
td
>
{{ publication.year }}
</
td
>
<
td
>
<
a
href
="
{{ publication.url | prepend: site.baseurl }}
"
>
{{publication.title}}
</
a
>
<
span
class
="
externallinks
"
>
<
a
href
='
http://scholar.google.com/scholar?q={{ publication.title }}
'
target
="
_blank
"
>
<
img
style
="
display: inline; margin: 0;
"
src
="
/public/media/google-scholar.png
"
/>
</
a
>
<
a
href
='
https://www.semanticscholar.org/search?q={{ publication.title }}
'
target
="
_blank
"
>
<
img
style
="
display: inline; margin: 0;
"
src
="
/public/media/semscholar.png
"
/>
</
a
>
</
span
>
</
td
>
<
td
>
{{ publication.authors }}
</
td
>
<
td
>
{{ publication.conference }}
</
td
>
<
td
>
{{ publication.content }}
</
td
>
<
td
>
{% for tag in publication.tags %}{{ tag }} {% endfor %}
</
td
>
</
tr
>
{% endfor %}
{% endfor %}
</
tbody
>
</
table
>
<
script
>
var
datatable
;
function
searchTable
(
)
{
var
hash
=
decodeURIComponent
(
window
.
location
.
hash
.
substr
(
1
)
)
;
datatable
.
search
(
hash
)
.
draw
(
)
;
}
$
(
document
)
.
ready
(
function
(
)
{
datatable
=
$
(
'#allPapers'
)
.
DataTable
(
{
paging
:
false
,
"order"
:
[
[
0
,
'desc'
]
,
[
1
,
'asc'
]
]
,
columnDefs
:
[
{
targets
:
[
3
,
4
,
5
]
,
visible
:
false
,
searchable
:
true
}
]
}
)
;
searchTable
(
)
;
}
)
;
$
(
window
)
.
on
(
'hashchange'
,
function
(
)
{
searchTable
(
)
;
}
)
;
</
script
>
Back
|
FazBrowse Home
|
New Git URL