Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
dlib
Commits
f1a29f35
Unverified
Commit
f1a29f35
authored
Mar 14, 2022
by
Adrià Arrufat
Committed by
GitHub
Mar 14, 2022
Browse files
Update docs (#2544)
* Update docs * escape & in git_logs_as_xml
parent
516b744b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
2 deletions
+20
-2
docs/bash_helper_functions
docs/bash_helper_functions
+1
-1
docs/docs/release_notes.xml
docs/docs/release_notes.xml
+19
-1
No files found.
docs/bash_helper_functions
View file @
f1a29f35
...
@@ -35,7 +35,7 @@ git_logs_as_xml()
...
@@ -35,7 +35,7 @@ git_logs_as_xml()
(echo "<log>"; git log --stat=80 --date=iso-strict --pretty=format:"</files_changed></logentry>%n<logentry revision=\"%H\">%n<author email=\"%ae\">%an</author>%n<date>%ad</date>%nGIT_COMMIT_MESSAGE_BEGIN%sGIT_COMMIT_MESSAGE_END%n<files_changed>%n" $logrange $paths | tail -n+2 ; echo; echo '</files_changed></logentry>' ; echo "</log>" ) > $outfile
(echo "<log>"; git log --stat=80 --date=iso-strict --pretty=format:"</files_changed></logentry>%n<logentry revision=\"%H\">%n<author email=\"%ae\">%an</author>%n<date>%ad</date>%nGIT_COMMIT_MESSAGE_BEGIN%sGIT_COMMIT_MESSAGE_END%n<files_changed>%n" $logrange $paths | tail -n+2 ; echo; echo '</files_changed></logentry>' ; echo "</log>" ) > $outfile
# sanitize git commit messages
# sanitize git commit messages
sed -e '/GIT_COMMIT_MESSAGE_BEGIN.*GIT_COMMIT_MESSAGE_END/ { s/</\</g; s/>/\>/g; s/GIT_COMMIT_MESSAGE_BEGIN/<msg>/g; s/GIT_COMMIT_MESSAGE_END/<\/msg>/g; }' -i $outfile
sed -e '/GIT_COMMIT_MESSAGE_BEGIN.*GIT_COMMIT_MESSAGE_END/ { s/</\</g; s/>/\>/g;
s/&/&/g;
s/GIT_COMMIT_MESSAGE_BEGIN/<msg>/g; s/GIT_COMMIT_MESSAGE_END/<\/msg>/g; }' -i $outfile
# trim whitespace at start and end of <files_changed> tags.
# trim whitespace at start and end of <files_changed> tags.
sed -e ':a' -e 'N' -e '$!ba' -e "s/<files_changed>[ \n]*/<files_changed> /g" -e "s/[ \n]*<\/files_changed>/<\/files_changed>/g" -i $outfile
sed -e ':a' -e 'N' -e '$!ba' -e "s/<files_changed>[ \n]*/<files_changed> /g" -e "s/[ \n]*<\/files_changed>/<\/files_changed>/g" -i $outfile
...
...
docs/docs/release_notes.xml
View file @
f1a29f35
...
@@ -11,6 +11,24 @@
...
@@ -11,6 +11,24 @@
<!-- ************************************************************************************** -->
<!-- ************************************************************************************** -->
<current>
<current>
New Features and Improvements:
- Added Beta distribution to dlib::rand.
- Deep learning tooling:
- Added ReOrg layer.
- Added visitor to draw network architectures using the DOT language.
- Made Barlow Twins loss much faster for high dimensionality inputs.
Non-Backwards Compatible Changes:
- Do not round coordinates in rectangle_transform (PR #2498).
Bug fixes:
- Fix missing ssize_t definition on Windows (PR #2492)
- Fix Barlow Twins loss gradient (PR #2518)
</current>
<!-- ************************************************************************************** -->
<old
name=
"19.23"
date=
"Jan 24, 2022"
>
New Features and Improvements:
New Features and Improvements:
- Added serialization support for std::variant and std::optional.
- Added serialization support for std::variant and std::optional.
- Added upgrades to dlib::type_safe_union: type_safe_union_size, type_safe_union_alternative_t,
- Added upgrades to dlib::type_safe_union: type_safe_union_size, type_safe_union_alternative_t,
...
@@ -35,7 +53,7 @@ Bug fixes:
...
@@ -35,7 +53,7 @@ Bug fixes:
- Fix trainer with unsupervised loss (PR #2436)
- Fix trainer with unsupervised loss (PR #2436)
- Fix dnn_trainer trying to decrease the learning rate (PR #2442)
- Fix dnn_trainer trying to decrease the learning rate (PR #2442)
- Fix Layer Normalize (PR #2489)
- Fix Layer Normalize (PR #2489)
</
current
>
</
old
>
<!-- ************************************************************************************** -->
<!-- ************************************************************************************** -->
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment