Skip to content

Commit c55b931

Browse files
Add team
1 parent 84572e4 commit c55b931

38 files changed

+1115
-20
lines changed

CONTRIBUTING.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
1-
Welcome! We are glad that you by willing to contribute to the field of data distillation.
1+
Welcome! We are glad that you by willing to contribute to the field of dataset distillation.
22

3-
**New Baselines**
4-
If you would like to report new baselines, please submit them by creating a pull request.
5-
The exact format is below:
6-
name of the baseline, code link, [paper link and score run using this tool].
3+
- **New Baselines**: If you would like to report new baselines, please submit them by creating a pull request. The exact format is below: name of the baseline, code link, [paper link and score run using this tool].
74

5+
- **New Components**: If you would like to integrate new components, such as new model architectures, new data augmentation methods, and new soft label strategies, please submit them by creating a pull request.
86

9-
**Issues**
10-
If you want to submit issues, you are encouraged to submit yes directly in issues.
7+
- **Issues**: If you want to submit issues, you are encouraged to submit yes directly in issues.
8+
9+
- **Appeal**: If you want to appeal for the score of your method, please submit an issue with your code and a detailed readme file of how to reproduce your results. We tried our best to replicate all methods in the leaderboard based on their papers and open-source code. We are sorry if we miss some details and will be grateful if you can help us improve the leaderboard.

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2024 DD-Ranking Team
3+
Copyright (c) 2024 Data Intelligence Team
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

book.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,12 @@
33
# * template https://github.com/kg4zow/mdbook-template/
44

55
[book]
6-
authors = ["DD-Ranking Team"]
6+
authors = ["Data Intelligence Team"]
77
language = "en"
88
multilingual = false
99
src = "doc"
1010
title = "DD-Ranking API Documentation"
1111

1212
[output.html]
1313
mathjax-support = true
14+
additional-css = ["theme/book.css"]

book/404.html

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
<link rel="stylesheet" href="ayu-highlight.css">
3131

3232
<!-- Custom theme stylesheets -->
33+
<link rel="stylesheet" href="theme/book.css">
3334

3435
<!-- MathJax -->
3536
<script async src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
@@ -175,6 +176,22 @@ <h1 id="document-not-found-404"><a class="header" href="#document-not-found-404"
175176

176177
</div>
177178

179+
<!-- Livereload script (if served using the cli tool) -->
180+
<script>
181+
const wsProtocol = location.protocol === 'https:' ? 'wss:' : 'ws:';
182+
const wsAddress = wsProtocol + "//" + location.host + "/" + "__livereload";
183+
const socket = new WebSocket(wsAddress);
184+
socket.onmessage = function (event) {
185+
if (event.data === "reload") {
186+
socket.close();
187+
location.reload();
188+
}
189+
};
190+
191+
window.onbeforeunload = function() {
192+
socket.close();
193+
}
194+
</script>
178195

179196

180197

book/augmentations/cutmix.html

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
<link rel="stylesheet" href="../ayu-highlight.css">
3030

3131
<!-- Custom theme stylesheets -->
32+
<link rel="stylesheet" href="../theme/book.css">
3233

3334
<!-- MathJax -->
3435
<script async src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
@@ -202,6 +203,22 @@ <h3 id="example"><a class="header" href="#example">Example</a></h3>
202203

203204
</div>
204205

206+
<!-- Livereload script (if served using the cli tool) -->
207+
<script>
208+
const wsProtocol = location.protocol === 'https:' ? 'wss:' : 'ws:';
209+
const wsAddress = wsProtocol + "//" + location.host + "/" + "__livereload";
210+
const socket = new WebSocket(wsAddress);
211+
socket.onmessage = function (event) {
212+
if (event.data === "reload") {
213+
socket.close();
214+
location.reload();
215+
}
216+
};
217+
218+
window.onbeforeunload = function() {
219+
socket.close();
220+
}
221+
</script>
205222

206223

207224

book/augmentations/dsa.html

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
<link rel="stylesheet" href="../ayu-highlight.css">
3030

3131
<!-- Custom theme stylesheets -->
32+
<link rel="stylesheet" href="../theme/book.css">
3233

3334
<!-- MathJax -->
3435
<script async src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
@@ -215,6 +216,22 @@ <h3 id="example"><a class="header" href="#example">Example</a></h3>
215216

216217
</div>
217218

219+
<!-- Livereload script (if served using the cli tool) -->
220+
<script>
221+
const wsProtocol = location.protocol === 'https:' ? 'wss:' : 'ws:';
222+
const wsAddress = wsProtocol + "//" + location.host + "/" + "__livereload";
223+
const socket = new WebSocket(wsAddress);
224+
socket.onmessage = function (event) {
225+
if (event.data === "reload") {
226+
socket.close();
227+
location.reload();
228+
}
229+
};
230+
231+
window.onbeforeunload = function() {
232+
socket.close();
233+
}
234+
</script>
218235

219236

220237

book/augmentations/mixup.html

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
<link rel="stylesheet" href="../ayu-highlight.css">
3030

3131
<!-- Custom theme stylesheets -->
32+
<link rel="stylesheet" href="../theme/book.css">
3233

3334
<!-- MathJax -->
3435
<script async src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
@@ -196,6 +197,22 @@ <h3 id="example"><a class="header" href="#example">Example</a></h3>
196197

197198
</div>
198199

200+
<!-- Livereload script (if served using the cli tool) -->
201+
<script>
202+
const wsProtocol = location.protocol === 'https:' ? 'wss:' : 'ws:';
203+
const wsAddress = wsProtocol + "//" + location.host + "/" + "__livereload";
204+
const socket = new WebSocket(wsAddress);
205+
socket.onmessage = function (event) {
206+
if (event.data === "reload") {
207+
socket.close();
208+
location.reload();
209+
}
210+
};
211+
212+
window.onbeforeunload = function() {
213+
socket.close();
214+
}
215+
</script>
199216

200217

201218

book/augmentations/overview.html

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
<link rel="stylesheet" href="../ayu-highlight.css">
3030

3131
<!-- Custom theme stylesheets -->
32+
<link rel="stylesheet" href="../theme/book.css">
3233

3334
<!-- MathJax -->
3435
<script async src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
@@ -212,6 +213,22 @@ <h1 id="augmentations"><a class="header" href="#augmentations">Augmentations</a>
212213

213214
</div>
214215

216+
<!-- Livereload script (if served using the cli tool) -->
217+
<script>
218+
const wsProtocol = location.protocol === 'https:' ? 'wss:' : 'ws:';
219+
const wsAddress = wsProtocol + "//" + location.host + "/" + "__livereload";
220+
const socket = new WebSocket(wsAddress);
221+
socket.onmessage = function (event) {
222+
if (event.data === "reload") {
223+
socket.close();
224+
location.reload();
225+
}
226+
};
227+
228+
window.onbeforeunload = function() {
229+
socket.close();
230+
}
231+
</script>
215232

216233

217234

0 commit comments

Comments
 (0)