From dd2c36288aa1e8af14588f9258f6785879b8638c Mon Sep 17 00:00:00 2001 From: adamhrv Date: Mon, 28 Jan 2019 18:11:36 +0100 Subject: add utils for analyzing identities --- notes/datasets/new_datasets.md | 4 + notes/datasets/youtube_faces.html | 1065 +++++++++++++++++++++++++++++++++++++ notes/datasets/youtube_faces.md | 6 + notes/utils/bash_utils.md | 6 + 4 files changed, 1081 insertions(+) create mode 100644 notes/datasets/new_datasets.md create mode 100644 notes/datasets/youtube_faces.html create mode 100644 notes/datasets/youtube_faces.md create mode 100644 notes/utils/bash_utils.md (limited to 'notes') diff --git a/notes/datasets/new_datasets.md b/notes/datasets/new_datasets.md new file mode 100644 index 00000000..2704077b --- /dev/null +++ b/notes/datasets/new_datasets.md @@ -0,0 +1,4 @@ +# New Datasets + +- EmotionNet: +- ChaLearn \ No newline at end of file diff --git a/notes/datasets/youtube_faces.html b/notes/datasets/youtube_faces.html new file mode 100644 index 00000000..ce8422c6 --- /dev/null +++ b/notes/datasets/youtube_faces.html @@ -0,0 +1,1065 @@ +youtube_faces \ No newline at end of file diff --git a/notes/datasets/youtube_faces.md b/notes/datasets/youtube_faces.md new file mode 100644 index 00000000..3b73a69b --- /dev/null +++ b/notes/datasets/youtube_faces.md @@ -0,0 +1,6 @@ +# YouTube Faces + +- Ellen Saracini was captured into the LFW dataset because her husband was killed in the 9/11 attack + - http://vis-www.cs.umass.edu/lfw/person/Ellen_Saracini.html + - https://chicago.cbslocal.com/2013/09/11/911-widow-recalls-last-words-with-pilot-husband-i-love-you/ + - https://www.pennmedicine.org/updates/blogs/giving-blog/2014/may/breast-cancer-ellen \ No newline at end of file diff --git a/notes/utils/bash_utils.md b/notes/utils/bash_utils.md new file mode 100644 index 00000000..00623280 --- /dev/null +++ b/notes/utils/bash_utils.md @@ -0,0 +1,6 @@ + +#### Grep + +Grep utf-16 unicode files + +`iconv -f utf-16 -t utf-8 file.txt |grep yourtext` \ No newline at end of file -- cgit v1.2.3-70-g09d2 From 74eb3c7a3e5481d8a2811136521419f91ae77486 Mon Sep 17 00:00:00 2001 From: adamhrv Date: Sat, 9 Feb 2019 14:05:12 +0100 Subject: add cairo install notes --- notes/frameworks/cairo.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 notes/frameworks/cairo.md (limited to 'notes') diff --git a/notes/frameworks/cairo.md b/notes/frameworks/cairo.md new file mode 100644 index 00000000..3eeb2159 --- /dev/null +++ b/notes/frameworks/cairo.md @@ -0,0 +1,17 @@ +# Cairo + +WeasyPrint relies on Cairo>1.14.~ but cairo=1.15.* didn't install correctly. Cairo 1.16.0 tested and works as of Feb 9 + +Install cairo on Ubuntu 16.04 for WeasyPrint + +``` +wget https://www.cairographics.org/releases/cairo-1.16.0.tar.xz +tar -xf cairo-1.16.0.tar.xz +cd cairo-1.16.0 +./configure --prefix=$HOME/code/cairo +make +make install +export PKG_CONFIG_PATH=$HOME/code/cairo/lib/pkgconfig +export LD_LIBRARY_PATH=$HOME/code/cairo/lib +# pip install weasyprint +``` \ No newline at end of file -- cgit v1.2.3-70-g09d2