mirror of
https://github.com/open-mmlab/mmclassification.git
synced 2025-06-03 21:53:55 +08:00
* [Docs] Support sort and search the Model Summary table. * Add description. * Fix according to comments
11 lines
205 B
JavaScript
11 lines
205 B
JavaScript
var collapsedSections = ['Model zoo'];
|
|
|
|
$(document).ready(function () {
|
|
$('.model-summary').DataTable({
|
|
"stateSave": false,
|
|
"lengthChange": false,
|
|
"pageLength": 20,
|
|
"order": []
|
|
});
|
|
});
|