-
Ask Your Neurons: A Neural-Based Approach to Answering Questions About Images
- Mateusz Malinowski, Marcus Rohrbach, Mario Fritz
-
Aligning Books and Movies: Towards Story-Like Visual Explanations by Watching Movies and Reading Books
- Yukun Zhu, Ryan Kiros, Rich Zemel, Ruslan Salakhutdinov, Raquel Urtasun, Antonio Torralba, Sanja Fidler
-
Learning Query and Image Similarities With Ranking Canonical Correlation Analysis
-
Wah Ngo
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Dan Walkes | |
| # 2014-01-29 | |
| # Call this script after configuring variables: | |
| # version - the version of OpenCV to be installed | |
| # downloadfile - the name of the OpenCV download file | |
| # dldir - the download directory (optional, if not specified creates an OpenCV directory in the working dir) | |
| if [[ -z "$version" ]]; then | |
| echo "Please define version before calling `basename $0` or use a wrapper like opencv_latest.sh" | |
| exit 1 | |
| fi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| # Set CPU to full performance on NVIDIA Jetson TK1 Development Kit | |
| if [ $(id -u) != 0 ]; then | |
| echo "This script requires root permissions" | |
| echo "$ sudo "$0"" | |
| exit | |
| fi | |
| # To obtain full performance on the CPU (eg: for performance measurements or benchmarking or when you don't care about power draw), you can disable CPU scaling and force the 4 main CPU cores to always run at max performance until reboot: | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| # Install and compile Caffe on NVIDIA Jetson TK1 Development Kit | |
| sudo add-apt-repository universe | |
| sudo apt-get update | |
| sudo apt-get install libprotobuf-dev protobuf-compiler gfortran \ | |
| libboost-dev cmake libleveldb-dev libsnappy-dev \ | |
| libboost-thread-dev libboost-system-dev \ | |
| libatlas-base-dev libhdf5-serial-dev libgflags-dev \ | |
| libgoogle-glog-dev liblmdb-dev -y | |
NewerOlder