Skip to content
View yardstick17's full-sized avatar
🐢
🐢
Block or Report

Block or report yardstick17

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. AspectBasedSentimentAnalysis AspectBasedSentimentAnalysis Public

    Aspect Based Sentiment Analysis is a special type of sentiment analysis. In an explicit aspect, opinion is expressed on a target(opinion target), this aspect-polarity extraction is known as ABSA.

    Python 74 25

  2. image_text_reader image_text_reader Public

    The module extracts text from image using the tesseract-OCR engine. Generally, text present in the images are blur or are of uneven sizes. The image is pre-processed for better comprehension by OCR…

    Python 143 41

  3. ConnectingDots ConnectingDots Public

    1. Perceptron: The very basic entity in Machine Learning. It's training and weights update in code. 2. Image Aesthetic Assessment: Determining the aesthetic content of an image. The network defined…

    Python 11 6

  4. extract_phrase extract_phrase Public

    Frequent Phrase Extraction : This module extracts the most common occurring phrases in the corpus. It is based on the NLP rule based extraction. All the corpus processing done is out of the main me…

    Python 8 4

  5. DDIExtraction DDIExtraction Public

    Detecting drug-drug interaction (DDI) has become a vital part of public health safety. This project is an implementation of NLP based approach for such relation extraction between entities.

    Python 15 12

  6. Spatial pyramid pooling (SPP) is a p... Spatial pyramid pooling (SPP) is a pooling strategy to result in an output of fixed size. It will turn a 2D input of arbitrary size into an output of fixed dimension. Hence, the convolutional part of a DNN can be connected to a dense part with a fixed number of nodes even if the dimensions of the input image are unknown.
    1
    CUSTOM_OUTPUT_CATEGORIES = 2
    2
    import keras.backend as K
    3
    from keras.engine.topology import Layer
    4
    
                  
    5