Advertisement
Guest User

Untitled

a guest
May 5th, 2016
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.42 KB | None | 0 0
  1. Sir,
  2. Sorry for late reply as I was traveling and this is not my primary mail ID. Got pretty excited reading the question you gave.
  3.  
  4. To go about building a search engine better than google first we must define what the search engine must do :
  5.  
  6. *It should take any query as input, make sense of it, then after going through its knowledge library/database, outputs the result according the query*
  7.  
  8. I strongly believe the solution to most problems is identifying the hidden abstracted pattern in data/information.
  9.  
  10. So we can initialy go with training a model to filter tons of raw meaningless data(that we get by 24/7 crawling the internet) under keywords.
  11. After filtering and labeling the previously cluttered data we now have somewhat catagorized data( knowledge library/dictionary?).
  12. All possioble words in dictionary will have some crawled data associated with it.
  13.  
  14. Now we are somewhat ready with our basic engine. If we search "man and the universe"
  15. We get the intersection of the data under "man" and "universe" keywords in our library/dictionary and outputs it.
  16.  
  17. Next logical steps will be go about improving each part of engine like, adding natural language processing capablity to our query parser so we can now make sense of queries better and get more information out of it to search our knowledge library.
  18. adding more types of filters and relations to our knowledge library and to organize the information in diffrent layers of abstraction.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement