• Breaking News

    Friday, May 14, 2021

    Social interaction in Computer Science Major? Computer Science

    Social interaction in Computer Science Major? Computer Science


    Social interaction in Computer Science Major?

    Posted: 14 May 2021 03:20 AM PDT

    Hello, I'm a fresh high school grad thinking of going into a Computer Science degree(specifically a Software Engineering degree). You hear a lot from the media and such that "programmers are quiet nerds who sit on front of a computer all day" or "Introverts should go into Computer Science" and whatnot, but obviously that's not (entirely) true. I know you need good communication skills to work on projects and to understand what your clients want from you as a Software Dev, but as I'm only a high school grad atm I don't know specifically what other aspects of this career path requires good social and communication skills. I'm honestly not the best socially so I'd like to prepare myself for university, and I'd appreciate some advice from more experienced people from this sub to know what to expect!

    submitted by /u/Madnas11
    [link] [comments]

    Nand game weird binary subtraction algorithm question

    Posted: 14 May 2021 04:47 AM PDT

    Evolution of search methods and the latest method - Neural Search. What is it and how to get started with it

    Posted: 14 May 2021 04:03 AM PDT

    TL;DR: Neural Search is a new approach to retrieving information using neural networks. Traditional techniques to search typically meant writing rules to "understand" the data being searched and return the best results. But with neural search, developers don't need to wrack their brains for these rules; The system learns the rules by itself and gets better as it goes along. Even developers who don't know machine learning can quickly build a search engine using open-source frameworks such as Jina.

    What is Neural Search?

    Search bar graphic

    There is a massive amount of data on the web; how can we effectively search through it for relevant information? And it's not just the web where we need it: Our computers store terabytes of company and personal data that we need to work with; we need effective search to get our day-to-day job done. And what do I mean by effective search

    • Can we go beyond just matching keywords?
    • Can we search using natural language, just like we would write or speak?
    • Can we make the search smart enough to forgive our minor mistakes?
    • Can we search for things that aren't an exact match but are "close enough"?

    We can answer all those questions with one word: Yes. To understand how, we need to enter the world of Natural Language Processing. NLP is a field of computer science that deals with analyzing natural language data, like the conversations people have every day. NLP is the foundation of intelligent search, and we have seen three different approaches in this field as follows.

    Evolution of search methods

    Evolution of search methods

    1. Rules (1950–1990s)
      Complex handwritten rules that emulate Natural Language Understanding.Drawbacks: Handwritten rules can only be made more accurate by increasing their complexity, which is a much more difficult task that becomes unmanageable over time.
    2. Statistics (1990s — 2010s)
      Probabilistic decisions based on weights, machine learning and feature engineering.Creating and managing rules was solved with machine learning, where the system automatically learns rules by analysing large real-world texts.Drawbacks: These statistical methods require elaborate feature engineering.
    3. Neural Networks (Present)
      Advanced machine learning methods such as deep neural networks and representation learning.Since 2015, statistical methods have been largely abandoned, and there has been a shift to neural networks in machine learning. Popular techniques using this method make it a more accurate and a scalable alternative. It involves
    • Use of `word embeddings` to capture semantic properties of words
    • Focus on end-to-end learning of higher-level tasks (e.g., question answering)

    When you use Neural Networks to make your search smarter, we call this a Neural Search System. And as you will see, it addresses some of the critical shortcomings of other methods.

    Note that the applications of Neural Search are not just limited to text. It goes well beyond what NLP covers. With neural search, we get additional capabilities to search images, audio, video, etc. Let's look at a comparison of the extreme ends of search methods — "Rules" vs "Neural Networks":

    Rules (Symbolic Search) vs Neural Networks (Neural Search)

    Comparison of Symbolic Search vs Neural Search

    While the Neural Search method has become more widespread since 2015, and should be the primary focus area of any new search system, we shouldn't completely rule out Symbolic (rule-based) Search methods. In fact, using a combination of Neural Search and Symbolic Search may result in optimized results. Let's look at some of the powerful applications of Neural Search

    Applications Of Neural Search

    Semantic search

    🔍 addidsa trosers (misspelled brand and category, still returns relevant results similar to query "adidas trousers")

    Example of semantic search

    Search between data types

    With Neural Search, you can use one kind of data to search another kind of data, for example using text to search for images, or audio to search for video.

    Example of cross modal search

    Search with multiple data types

    With Neural Search, you can build queries with multiple query data types e.g. search images with text+image

    Example of multi modal search

    Get started with Neural Search

    For rule-based searches, Apache Solr, Elasticsearch, and Lucene are the de-facto solutions. On the other hand, Neural Search is relatively new on the scene, there aren't so many off-the-shelf packages. Not to mention, training the neural network for such a system requires quite a bit of data. These challenges can be solved using Jina, an open-source neural search framework. To get started with building your own Neural Search system using Jina:

    References

    submitted by /u/opensourcecolumbus
    [link] [comments]

    Which book got you into computer science?

    Posted: 04 May 2021 10:30 PM PDT

    If you were asked to choose ONE book that got you interested in computer science, what would it be? The book that changed your idea about what computer science really is beyond just programming.

    It may be a non-fiction book or a text book. What was your experience level when you read that book?

    submitted by /u/dsengupta16
    [link] [comments]

    No comments:

    Post a Comment