Commit
·
3e40086
1
Parent(s):
5b82be9
removed emoji from title
Browse files- config.json +2 -2
- index.html +2 -2
- js/main.js +2 -2
- js/paper-atlas.js +2 -2
config.json
CHANGED
|
@@ -5,12 +5,12 @@
|
|
| 5 |
"logo": {
|
| 6 |
"file": "",
|
| 7 |
"link": "",
|
| 8 |
-
"text": "
|
| 9 |
},
|
| 10 |
"text": {
|
| 11 |
"more": "<p><strong>About:</strong> This visualization represents a network of research papers and authors, showing connections and relationships between them. The network is based on the graph.graphml file and converted to a format suitable for web visualization.</p>",
|
| 12 |
"intro": "A demo network of the top research papers in Machine Learning featured in <a href='https://huggingface.co/papers' target='_blank'>Hugging Face Daily Papers</a>.<br>The full report and project: <a href='https://github.com/hesamsheikh/daily-papers-analysis' target='_blank'>GitHub</a>",
|
| 13 |
-
"title": "
|
| 14 |
},
|
| 15 |
"legend": {
|
| 16 |
"edgeLabel": "Connection",
|
|
|
|
| 5 |
"logo": {
|
| 6 |
"file": "",
|
| 7 |
"link": "",
|
| 8 |
+
"text": "Daily Papers Atlas"
|
| 9 |
},
|
| 10 |
"text": {
|
| 11 |
"more": "<p><strong>About:</strong> This visualization represents a network of research papers and authors, showing connections and relationships between them. The network is based on the graph.graphml file and converted to a format suitable for web visualization.</p>",
|
| 12 |
"intro": "A demo network of the top research papers in Machine Learning featured in <a href='https://huggingface.co/papers' target='_blank'>Hugging Face Daily Papers</a>.<br>The full report and project: <a href='https://github.com/hesamsheikh/daily-papers-analysis' target='_blank'>GitHub</a>",
|
| 13 |
+
"title": "Daily Papers Atlas"
|
| 14 |
},
|
| 15 |
"legend": {
|
| 16 |
"edgeLabel": "Connection",
|
index.html
CHANGED
|
@@ -2,7 +2,7 @@
|
|
| 2 |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-gb" lang="en" xmlns:og="http://opengraphprotocol.org/schema/" xmlns:fb="http://www.facebook.com/2008/fbml" itemscope itemtype="http://schema.org/Map">
|
| 3 |
|
| 4 |
<head>
|
| 5 |
-
<title
|
| 6 |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
| 7 |
<meta charset="utf-8">
|
| 8 |
<meta name="viewport" content="width=device-width,height=device-height,initial-scale=1,user-scalable=no" />
|
|
@@ -39,7 +39,7 @@
|
|
| 39 |
</div>
|
| 40 |
<div id="mainpanel">
|
| 41 |
<div class="col">
|
| 42 |
-
<div id="title"
|
| 43 |
<div id="titletext">A demo network of the top research papers in Machine Learning featured in <a href='https://huggingface.co/papers' target='_blank'>Hugging Face Daily Papers</a>.<br>Report and Project: <a href='https://github.com/hesamsheikh/daily-papers-analysis' target='_blank'>GitHub</a></div>
|
| 44 |
</div>
|
| 45 |
|
|
|
|
| 2 |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-gb" lang="en" xmlns:og="http://opengraphprotocol.org/schema/" xmlns:fb="http://www.facebook.com/2008/fbml" itemscope itemtype="http://schema.org/Map">
|
| 3 |
|
| 4 |
<head>
|
| 5 |
+
<title>Daily Papers Atlas</title>
|
| 6 |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
| 7 |
<meta charset="utf-8">
|
| 8 |
<meta name="viewport" content="width=device-width,height=device-height,initial-scale=1,user-scalable=no" />
|
|
|
|
| 39 |
</div>
|
| 40 |
<div id="mainpanel">
|
| 41 |
<div class="col">
|
| 42 |
+
<div id="title">Daily Papers Atlas</div>
|
| 43 |
<div id="titletext">A demo network of the top research papers in Machine Learning featured in <a href='https://huggingface.co/papers' target='_blank'>Hugging Face Daily Papers</a>.<br>Report and Project: <a href='https://github.com/hesamsheikh/daily-papers-analysis' target='_blank'>GitHub</a></div>
|
| 44 |
</div>
|
| 45 |
|
js/main.js
CHANGED
|
@@ -28,8 +28,8 @@ $(document).ready(function() {
|
|
| 28 |
$.getJSON('config.json', function(data) {
|
| 29 |
console.log("Configuration loaded:", data);
|
| 30 |
config = data;
|
| 31 |
-
document.title = config.text.title || '
|
| 32 |
-
$('#title').text(config.text.title || '
|
| 33 |
|
| 34 |
// Don't modify the intro text at all - using hardcoded HTML
|
| 35 |
|
|
|
|
| 28 |
$.getJSON('config.json', function(data) {
|
| 29 |
console.log("Configuration loaded:", data);
|
| 30 |
config = data;
|
| 31 |
+
document.title = config.text.title || 'Daily Papers Atlas';
|
| 32 |
+
$('#title').text(config.text.title || 'Daily Papers Atlas');
|
| 33 |
|
| 34 |
// Don't modify the intro text at all - using hardcoded HTML
|
| 35 |
|
js/paper-atlas.js
CHANGED
|
@@ -23,8 +23,8 @@ $(document).ready(function() {
|
|
| 23 |
// Load configuration
|
| 24 |
$.getJSON('config.json', function(data) {
|
| 25 |
config = data;
|
| 26 |
-
document.title = config.title || '
|
| 27 |
-
$('#title').text(config.title || '
|
| 28 |
|
| 29 |
// Don't modify the intro text at all - using hardcoded HTML
|
| 30 |
|
|
|
|
| 23 |
// Load configuration
|
| 24 |
$.getJSON('config.json', function(data) {
|
| 25 |
config = data;
|
| 26 |
+
document.title = config.title || 'Daily Papers Atlas';
|
| 27 |
+
$('#title').text(config.title || 'Daily Papers Atlas');
|
| 28 |
|
| 29 |
// Don't modify the intro text at all - using hardcoded HTML
|
| 30 |
|