Skip to content
This repository has been archived by the owner on Sep 4, 2024. It is now read-only.

YaleDHLab/neural-neighbors

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

55 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Note: This repository has been archived

This project was developed under a previous phase of the Yale Digital Humanities Lab. Now a part of Yale Library’s Computational Methods and Data department, the Lab no longer includes this project in its scope of work. As such, it will receive no further updates.

TSNE Image Browser

This repository hosts source code used to create a similar image browser. Users can mouse over images to identify similar images, or click on images to read more information about the particular photograph.

App preview

Dependencies

The scripts in utils/ are written in pure Python (3.5). The image resizing utilities require ImageMagick.

Quickstart

You can start a local web server and see the application by running:

git clone https://github.com/YaleDHLab/neural-neighbors
cd neural-neighbors

wget https://s3-us-west-2.amazonaws.com/lab-apps/meserve-kunhardt/image-browser/data.tar.gz
tar -zxf data.tar.gz

# Python 3
python -m http.server 7052

# Python 2
python -m SimpleHTTPServer 7052

The viewer will then be available on localhost:7052.