GithubHelp home page GithubHelp logo

takingsearchforaspin's Introduction

In this project, I am trying to implement a search method.  
I made up a few articles about animals that the program 
searches, given the string that the user provides.  

Each article added for searching must go in to the file 
articlelist  (one article per line).  

The code works by constructing a word vector for the search string.  Then 
the code runs through the articles and computes a word vector for each
article. 

The words in the word vector consist of the words in the search string.
Then the word vectors for each article have word counts in that particular
article for the words in the search string.

Ex.
search is:  "cats are furry"
so the words in the word vector are 'cats', 'are', 'furry'
The counts of those words in each article are tracked.
If the article has the word 'cats' 2x, 'are' 3x and 'furry' 1x, the word
vector is:
[2, 3, 1]

This vector can be normalized.

The simple_search.py code is very simple and uses minimum Euclidian 
distance between articles and the search string.  In search.py, I was 
testing the Inverse Document Frequency measure on the search.  This causes 
words that appear in a lot of articles to be given less importance 
(through a smaller weighting factor).  One example of this is the 
word 'are'.

I plan to test different methods for finding the best match and then work on adding different article sources.
  

takingsearchforaspin's People

Contributors

schwerdt avatar

Watchers

James Cloos 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.