From 452c2510de3d9ba914fd3c2ba4414d81bdcc6ea7 Mon Sep 17 00:00:00 2001 From: nunzip Date: Mon, 4 Feb 2019 17:09:04 +0000 Subject: Add IEEE structure for report --- report/.gitignore | 2 + report/.travis.yml | 7 + report/LICENSE | 21 +++ report/bibliography.bib | 17 +++ report/bibliography.csl | 339 ++++++++++++++++++++++++++++++++++++++++++++++++ report/makefile | 19 +++ report/metadata.yaml | 13 ++ report/paper.md | 7 + 8 files changed, 425 insertions(+) create mode 100644 report/.gitignore create mode 100644 report/.travis.yml create mode 100644 report/LICENSE create mode 100644 report/bibliography.bib create mode 100644 report/bibliography.csl create mode 100644 report/makefile create mode 100644 report/metadata.yaml create mode 100644 report/paper.md (limited to 'report') diff --git a/report/.gitignore b/report/.gitignore new file mode 100644 index 0000000..5236e1e --- /dev/null +++ b/report/.gitignore @@ -0,0 +1,2 @@ +*~ + diff --git a/report/.travis.yml b/report/.travis.yml new file mode 100644 index 0000000..49d89e9 --- /dev/null +++ b/report/.travis.yml @@ -0,0 +1,7 @@ +sudo: enabled +dist: trusty +install: + - sudo apt-get -qq update + - sudo apt-get install -y pandoc pandoc-citeproc texlive-full +script: + - make diff --git a/report/LICENSE b/report/LICENSE new file mode 100644 index 0000000..6c59dbd --- /dev/null +++ b/report/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2016 Santos Gallegos + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/report/bibliography.bib b/report/bibliography.bib new file mode 100644 index 0000000..fe80de4 --- /dev/null +++ b/report/bibliography.bib @@ -0,0 +1,17 @@ +@article{rerank-paper, + author = {Zhun Zhong and + Liang Zheng and + Donglin Cao and + Shaozi Li}, + title = {Re-ranking Person Re-identification with k-reciprocal Encoding}, + journal = {CoRR}, + volume = {abs/1701.08398}, + year = {2017}, + url = {http://arxiv.org/abs/1701.08398}, + archivePrefix = {arXiv}, + eprint = {1701.08398}, + timestamp = {Mon, 13 Aug 2018 16:47:43 +0200}, + biburl = {https://dblp.org/rec/bib/journals/corr/ZhongZCL17}, + bibsource = {dblp computer science bibliography, https://dblp.org} +} + diff --git a/report/bibliography.csl b/report/bibliography.csl new file mode 100644 index 0000000..9d967b0 --- /dev/null +++ b/report/bibliography.csl @@ -0,0 +1,339 @@ + + \ No newline at end of file diff --git a/report/makefile b/report/makefile new file mode 100644 index 0000000..b77aca0 --- /dev/null +++ b/report/makefile @@ -0,0 +1,19 @@ +FILES = paper.md \ + metadata.yaml + +OUTPUT = build + +FLAGS = --bibliography=bibliography.bib \ + --csl=bibliography.csl \ + -s \ + -f markdown + +FLAGS_PDF = --template=template.latex + +pdf: + mkdir -p $(OUTPUT) + pandoc -o $(OUTPUT)/cw2_vz215_np1915.pdf $(FLAGS) $(FLAGS_PDF) $(FILES) + +clean: + rm build/* + diff --git a/report/metadata.yaml b/report/metadata.yaml new file mode 100644 index 0000000..906172a --- /dev/null +++ b/report/metadata.yaml @@ -0,0 +1,13 @@ +--- +title: 'EE4-62 Selected Topics in Computer Vision (2018-2019) CW1' +author: + - name: Vasil Zlatanov (01120518), Nunzio Pucci (01113180) + email: vz215@ic.ac.uk, np1915@ic.ac.uk +numbersections: yes +lang: en +babel-lang: english + +abstract: | + This is a very good abstract. +... + diff --git a/report/paper.md b/report/paper.md new file mode 100644 index 0000000..8396cc1 --- /dev/null +++ b/report/paper.md @@ -0,0 +1,7 @@ +# Formulation of the Addressed Machine Learning Problem + +## Probelm Definition + +# References + + -- cgit v1.2.3-54-g00ecf