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

Block or report urigoren

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. decorators4DS decorators4DS Public

    Useful decorators every Data Scientist should know

    Python 28 5

  2. nlp_classification_workshop nlp_classification_workshop Public

    NLP Classification Workshop

    Jupyter Notebook 24 22

  3. argmaxml/conjugate_prior argmaxml/conjugate_prior Public

    Implementation of the conjugate prior table for Bayesian Statistics

    Python 52 7

  4. argmaxml/annotbot argmaxml/annotbot Public

    Image and text annotation with Telegram

    Python 8 1

  5. nlp_ner_workshop nlp_ner_workshop Public

    Named-Entity-Recognition Workshop

    Jupyter Notebook 16 12

  6. LSTM Binary classification with Keras LSTM Binary classification with Keras
    1
    from keras.layers import Dense, Dropout, LSTM, Embedding
    2
    from keras.preprocessing.sequence import pad_sequences
    3
    from keras.models import Sequential
    4
    import pandas as pd
    5
    import numpy as np