How to train your own object detection models using the TensorFlow Object Detection API (2020 Update)
This started as a summary of this nice tutorial, but has since then become its own thing.
| def caesar(plainText, shift): | |
| """Caesar Cipher implementation. | |
| Upper and lower case letters are kept accordingly, non-alphabetic characters are ignored. | |
| Implementation taken from here: https://stackoverflow.com/q/8886947/1245214 | |
| :param plainText: the text to be ciphered | |
| :param shift: shift value for the cipher | |
| :return: the ciphered text | |
| """ | |
| cipherText = "" |
| # split panes using | and - | |
| bind | split-window -h | |
| bind - split-window -v | |
| unbind '"' | |
| unbind % | |
| # Enable mouse mode (tmux 2.1 and above) | |
| set -g mouse on |
This started as a summary of this nice tutorial, but has since then become its own thing.
| #include <chrono> | |
| #include <cmath> | |
| #include <iomanip> | |
| #include <iostream> | |
| #include <mpi.h> | |
| #include <random> | |
| using namespace std; | |
| //! \param x |
| % no tabs as indentation, line size very big | |
| print.align.key = 0 | |
| print.use.tab = off | |
| print.line.length = 200 | |
| % sort order for fields | |
| sort = on | |
| sort.order {* = title # author # school # type # year # month # day # journal # booktitle # publisher # volume # pages # shorttitle # url # urlaccessdate} | |
| .ui-radiobutton .ui-radiobutton-box { | |
| height: 30px !important; | |
| width: 30px !important; | |
| } | |
| .ui-icon-bullet { | |
| background: none; | |
| } | |
| .ui-radiobutton .ui-state-active { |
| sudo apt install libncurses5:i386 libgtk2.0-0:i386 libasound2:i386 libsdl1.2debian:i386 libsdl-ttf2.0-0:i386 | |
| wget archive.debian.org/debian/pool/main/g/gcc-2.95/libstdc++2.10-glibc2.2_2.95.4-27_i386.deb | |
| sudo dpkg -i libstdc++2.10-glibc2.2_2.95.4-27_i386.deb |
| # remove any pre-installation of bison | |
| sudo apt remove bison -y && sudo apt-get autoremove -y | |
| # install prerequisites that don't come with the OS | |
| sudo apt install libboost-all-dev flex -y | |
| # download and install older version of bison (2.7.1) | |
| wget http://launchpadlibrarian.net/140087283/libbison-dev_2.7.1.dfsg-1_amd64.deb && sudo dpkg -i libbison-dev_2.7.1.dfsg-1_amd64.deb && rm libbison-dev_2.7.1.dfsg-1_amd64.deb | |
| wget http://launchpadlibrarian.net/140087282/bison_2.7.1.dfsg-1_amd64.deb && sudo dpkg -i bison_2.7.1.dfsg-1_amd64.deb && rm bison_2.7.1.dfsg-1_amd64.deb |