diff --git a/AWESOME_REID.html b/AWESOME_REID.html
index 5166d4c..e1e4ef3 100644
--- a/AWESOME_REID.html
+++ b/AWESOME_REID.html
@@ -186,81 +186,81 @@
Model Zoo
-- Results are presented in the format of <Rank-1 (mAP)>.
-- When computing model size and FLOPs, only layers that are used at test time are considered (see
torchreid.utils.compute_model_complexity
).
-- Asterisk (*) means the model is trained from scratch.
-combineall=True
means all images in the dataset are used for model training.
+Results are presented in the format of <Rank-1 (mAP)>.
+When computing model size and FLOPs, only layers that are used at test time are considered (see torchreid.utils.compute_model_complexity
).
+Asterisk (*) means the model is trained from scratch.
+combineall=True
means all images in the dataset are used for model training.
ImageNet pretrained models
diff --git a/_sources/datasets.rst.txt b/_sources/datasets.rst.txt
index 1b10b11..c49f593 100644
--- a/_sources/datasets.rst.txt
+++ b/_sources/datasets.rst.txt
@@ -221,7 +221,7 @@ PRID2011 (``prid2011``)
^^^^^^^^^^^^^^^^^^^^^^^^^
- Create a directory named "prid2011" under ``$REID``.
- Download the dataset from https://www.tugraz.at/institute/icg/research/team-bischof/lrs/downloads/PRID11/ and extract it under "prid2011".
-- Download the split created by *iLIDS-VID* from `here ` and put it under "prid2011/". Following the standard protocol, only 178 persons whose sequences are more than a threshold are used.
+- Download the split created by *iLIDS-VID* from `this google drive `_ and put it under "prid2011/". Following the standard protocol, only 178 persons whose sequences are more than a threshold are used.
- The data structure should end up with
.. code-block:: none
diff --git a/_static/ajax-loader.gif b/_static/ajax-loader.gif
deleted file mode 100644
index 61faf8c..0000000
Binary files a/_static/ajax-loader.gif and /dev/null differ
diff --git a/_static/basic.css b/_static/basic.css
index 0807176..ea6972d 100644
--- a/_static/basic.css
+++ b/_static/basic.css
@@ -231,6 +231,16 @@ a.headerlink {
visibility: hidden;
}
+a.brackets:before,
+span.brackets > a:before{
+ content: "[";
+}
+
+a.brackets:after,
+span.brackets > a:after {
+ content: "]";
+}
+
h1:hover > a.headerlink,
h2:hover > a.headerlink,
h3:hover > a.headerlink,
@@ -279,6 +289,12 @@ img.align-center, .figure.align-center, object.align-center {
margin-right: auto;
}
+img.align-default, .figure.align-default {
+ display: block;
+ margin-left: auto;
+ margin-right: auto;
+}
+
.align-left {
text-align: left;
}
@@ -287,6 +303,10 @@ img.align-center, .figure.align-center, object.align-center {
text-align: center;
}
+.align-default {
+ text-align: center;
+}
+
.align-right {
text-align: right;
}
@@ -358,6 +378,11 @@ table.align-center {
margin-right: auto;
}
+table.align-default {
+ margin-left: auto;
+ margin-right: auto;
+}
+
table caption span.caption-number {
font-style: italic;
}
@@ -391,6 +416,16 @@ table.citation td {
border-bottom: none;
}
+th > p:first-child,
+td > p:first-child {
+ margin-top: 0px;
+}
+
+th > p:last-child,
+td > p:last-child {
+ margin-bottom: 0px;
+}
+
/* -- figures --------------------------------------------------------------- */
div.figure {
@@ -460,11 +495,58 @@ ol.upperroman {
list-style: upper-roman;
}
+li > p:first-child {
+ margin-top: 0px;
+}
+
+li > p:last-child {
+ margin-bottom: 0px;
+}
+
+dl.footnote > dt,
+dl.citation > dt {
+ float: left;
+}
+
+dl.footnote > dd,
+dl.citation > dd {
+ margin-bottom: 0em;
+}
+
+dl.footnote > dd:after,
+dl.citation > dd:after {
+ content: "";
+ clear: both;
+}
+
+dl.field-list {
+ display: grid;
+ grid-template-columns: fit-content(30%) auto;
+}
+
+dl.field-list > dt {
+ font-weight: bold;
+ word-break: break-word;
+ padding-left: 0.5em;
+ padding-right: 5px;
+}
+
+dl.field-list > dt:after {
+ content: ":";
+}
+
+dl.field-list > dd {
+ padding-left: 0.5em;
+ margin-top: 0em;
+ margin-left: 0em;
+ margin-bottom: 0em;
+}
+
dl {
margin-bottom: 15px;
}
-dd p {
+dd > p:first-child {
margin-top: 0px;
}
@@ -537,6 +619,12 @@ dl.glossary dt {
font-style: oblique;
}
+.classifier:before {
+ font-style: normal;
+ margin: 0.5em;
+ content: ":";
+}
+
abbr, acronym {
border-bottom: dotted 1px;
cursor: help;
diff --git a/_static/comment-bright.png b/_static/comment-bright.png
deleted file mode 100644
index 15e27ed..0000000
Binary files a/_static/comment-bright.png and /dev/null differ
diff --git a/_static/comment-close.png b/_static/comment-close.png
deleted file mode 100644
index 4d91bcf..0000000
Binary files a/_static/comment-close.png and /dev/null differ
diff --git a/_static/comment.png b/_static/comment.png
deleted file mode 100644
index dfbc0cb..0000000
Binary files a/_static/comment.png and /dev/null differ
diff --git a/_static/doctools.js b/_static/doctools.js
index 344db17..b33f87f 100644
--- a/_static/doctools.js
+++ b/_static/doctools.js
@@ -87,14 +87,13 @@ jQuery.fn.highlightText = function(text, className) {
node.nextSibling));
node.nodeValue = val.substr(0, pos);
if (isInSVG) {
- var bbox = span.getBBox();
var rect = document.createElementNS("http://www.w3.org/2000/svg", "rect");
- rect.x.baseVal.value = bbox.x;
+ var bbox = node.parentElement.getBBox();
+ rect.x.baseVal.value = bbox.x;
rect.y.baseVal.value = bbox.y;
rect.width.baseVal.value = bbox.width;
rect.height.baseVal.value = bbox.height;
rect.setAttribute('class', className);
- var parentOfText = node.parentNode.parentNode;
addItems.push({
"parent": node.parentNode,
"target": rect});
diff --git a/_static/documentation_options.js b/_static/documentation_options.js
index 9751a48..cf0d0cb 100644
--- a/_static/documentation_options.js
+++ b/_static/documentation_options.js
@@ -6,5 +6,5 @@ var DOCUMENTATION_OPTIONS = {
FILE_SUFFIX: '.html',
HAS_SOURCE: true,
SOURCELINK_SUFFIX: '.txt',
- NAVIGATION_WITH_KEYS: false,
+ NAVIGATION_WITH_KEYS: false
};
\ No newline at end of file
diff --git a/_static/down-pressed.png b/_static/down-pressed.png
deleted file mode 100644
index 5756c8c..0000000
Binary files a/_static/down-pressed.png and /dev/null differ
diff --git a/_static/down.png b/_static/down.png
deleted file mode 100644
index 1b3bdad..0000000
Binary files a/_static/down.png and /dev/null differ
diff --git a/_static/jquery-3.2.1.js b/_static/jquery-3.4.1.js
similarity index 89%
rename from _static/jquery-3.2.1.js
rename to _static/jquery-3.4.1.js
index d2d8ca4..773ad95 100644
--- a/_static/jquery-3.2.1.js
+++ b/_static/jquery-3.4.1.js
@@ -1,5 +1,5 @@
/*!
- * jQuery JavaScript Library v3.2.1
+ * jQuery JavaScript Library v3.4.1
* https://jquery.com/
*
* Includes Sizzle.js
@@ -9,7 +9,7 @@
* Released under the MIT license
* https://jquery.org/license
*
- * Date: 2017-03-20T18:59Z
+ * Date: 2019-05-01T21:04Z
*/
( function( global, factory ) {
@@ -71,16 +71,70 @@ var ObjectFunctionString = fnToString.call( Object );
var support = {};
+var isFunction = function isFunction( obj ) {
+
+ // Support: Chrome <=57, Firefox <=52
+ // In some browsers, typeof returns "function" for HTML