Giter Club home page Giter Club logo

ki's Introduction

Ki

SCREENSHOT

Use python and other free bits to create the files required to make an Elasticlunr.js searchable image tag website

This repository is a slightly modified example of Elasticlunr.js, to demonstrate the usage coupled with the Clarifai API. it should "just work" to give you a working thing to throw at a webserver.

The additional utilty scripts below should give you enough info to populate the model with stuff (thumbs that are logically linked to the data.JSON) of your own.

NOTES ON Supporting Documents

The scripts assume Windows OS since the unixers out there can probably bash up their own in short order.

We optionally use ImageMagick as Magick.exe and Jpeg-compress.exe command line utilities since they are free and Windows-friendly. Replace with your weapon of choice. You could do this stuff in the old CS2 version of Photoshop with a single batch command. Anything really.

Python is used to provide a relatively cross-platform overview of the steps needed, please amend directory separators and paths to something sensible.

TODO/MAYBES:

  • FIX THE BROKEN LAYOUT ON SLIM SCREENS Done
  • Make the partial rendering loop stop when you click a result before it is finished
  • Add transactional folders such as IN - PROCESSED - ERROR to allow for more efficent addition of new content
  • Check the EXIF/File attrs for Time Created and use that to compare against a stored "last sync" date for previous point
  • app.inputs.bulk_create_images(images) rather than loop over a single call. If we implement training. maybe.
  • Maybe just roll all the scripts in python examples
  • Import the scripts, after a tidy up, to the repo in the interim
  • Add a script that searches network drives and looks in areas that phones are likely to sync to.
  • Maybe centralise the JSON and offer a "single JSON Blob" switch for claripy.py reducing .txt file clutter
  • Do some corner case testing, yeah, some testing at all really...
  • update model in claripy.py to ... for p in pictures[:step_size]] , model='general-v1.3') Done
  • Update this repo to the latest 2 column layout with all the fixes Done

Supporting Documents and scripts

Here is a short sequence of reasonably accurate (and hastily slapped together) scripts to create a text driven image search engine. Time taken so far is only a few hours of actual coding and testing.

claripy.py walk over JPG files and create human readable output of the tagging values in one .txt file for each image via the Clarifai API using Python on Windows.

https://gist.github.com/twobob/241511cea52e19da42ce99c5934f9d04 (You could of course store the json, we wanted something legible in this stage)

looping the claripy I batched 100 images by running ten loops at a time using https://gist.github.com/twobob/03a6a00f757b0ff8733b10e822b4e8cc

for /L %a in (1,1,10) do (python.exe claripy.py && timeout 5 >nul)

With 10 images in the claripy.py document, you could do the 32 recommended images if you preferred. This way gave nice, regular visually parsable output on the command line, We processed circa 2000 images. Clarifai's free monthy plan allows for 5000 ops (so you can get it horribly wrong once with 2k, lol)

unify the txt's to JSON Then create a single unified JSON file from a list of txt files parsing the values https://gist.github.com/twobob/dad0a110b0c2b2eb4895d8e6e5e76760 (You could just store the original claripy 'results' value and walk over that, we preferred this two stage process for greater control of the resulting data blob )

we minified that output eventually, when testing was complete.

Next process the images use ImageMagick command line on Windows to make source images as unrotated as possible (Caveat emptor, YMMV) https://gist.github.com/twobob/38e796de3aa42b2fd7d296394f3c9279 this is helpful for making meaningful thumbnails later, uses EXIF to unrotate)

Now, make thumbs for web purposes and eventual display of the images https://gist.github.com/twobob/f5dd8a25195d730801df25bf048c3272 (We chose 240x240 in the end, it scales nicely to 480, which is plenty for previews, not the 128x128 in the title)

Since this is web facing we are all about size with thousands of files to serve, so we crunch the THUMB.JPG files in /thumbs with jpeg-recompress.exe cmd one liner https://gist.github.com/twobob/e10bb9163a6fc715be28610be58b5d8b this gets us pretty decent images for as little as 10-30kb depending on content, you could crush harder. our 7GB of images are now about 40Mb

Next up we get a tiny search engine - we used elasticlunr.js

They have a fully working example online here that we will modify http://elasticlunr.com/example/index.html

Rework the index.html to have less clutter and not require so much typing https://gist.github.com/twobob/85428a92477e7cbd3eb50a6652f27d60

We adjust the app.js to use handlebars.js over the older mustache.js in the demo - (download the code from a cdn, make it local) We add incremental rendering and limited index config to get decent loading times for 2000 results https://gist.github.com/twobob/82e2c9a628e50d5cf81f41a9a44e27f2 (loading 50 thumbs at a time with progress indication)

Please DO consider the file endings' CASE SENSITIVITY to .JPG not .jpg
(although pretty sure that is corner-case covered in the scripts IIRC, J.I.C.)

Hope this helps someone realise the power of AI tagging and a tiny Luceney, Elasticsearch style search indexing.

LICENSE

I claim no ownership of these and they were cobbled together from public domain code or mangled together by me. For my sins. Again, I take no credit. My pedagogical employer wanted one of these. There went the bank holiday w/e ;)

I release this under a "do what you want but dont sue me or anyone I know" license.
Or some other more legal one that is similar. suggestions politely accepted.

ki's People

Contributors

twobob avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.